1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00
lvgl/scripts/lv_conf_checker.py

61 lines
1.0 KiB
Python
Raw Normal View History

#!/usr/bin/env python3.6
2018-12-20 00:04:09 +01:00
'''
2019-06-27 16:46:54 +02:00
Generates a checker file for lv_conf.h from lv_conf_templ.h define all the not defined values
2018-12-20 00:04:09 +01:00
'''
2018-12-20 00:01:24 +01:00
import re
2019-06-27 16:46:54 +02:00
fin = open("../lv_conf_template.h", "r")
fout = open("../src/lv_conf_checker.h", "w")
2018-12-20 00:01:24 +01:00
fout.write(
2019-06-27 16:46:54 +02:00
'''/**
* GENERATED FILE, DO NOT EDIT IT!
* @file lv_conf_checker.h
* Make sure all the defines of lv_conf.h have a default value
**/
#ifndef LV_CONF_CHECKER_H
#define LV_CONF_CHECKER_H
'''
)
2018-12-20 00:01:24 +01:00
started = 0
2019-06-27 16:46:54 +02:00
for i in fin.read().splitlines():
if not started:
if '#define LV_CONF_H' in i:
started = 1
2018-12-20 00:01:24 +01:00
continue
else:
continue
2019-06-27 16:46:54 +02:00
if '/*--END OF LV_CONF_H--*/' in i: break
r = re.search(r'^ *# *define ([^\s]+).*$', i)
2019-06-27 16:46:54 +02:00
if r:
line = re.sub('\(.*?\)', '', r[1], 1) #remove parentheses from macros
2019-06-27 16:46:54 +02:00
fout.write(
f'#ifndef {line}\n'
2019-06-27 16:46:54 +02:00
f'{i}\n'
'#endif\n'
)
elif re.search('^ *typedef .*;.*$', i):
continue #ignore typedefs to avoide redeclaration
2018-12-20 00:01:24 +01:00
else:
2019-06-27 16:46:54 +02:00
fout.write(f'{i}\n')
2018-12-20 00:01:24 +01:00
fout.write(
2019-06-27 16:46:54 +02:00
'''
#endif /*LV_CONF_CHECKER_H*/
'''
)
fin.close()
fout.close()