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

57 lines
960 B
Python
Raw Normal View History

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)
if r:
fout.write(
f'#ifndef {r[1]}\n'
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()