43 lines
1.2 KiB
Python
43 lines
1.2 KiB
Python
HEADERS = []
|
|
|
|
src = open("wiringpi.i").read().split('\n')
|
|
|
|
print("extern unsigned char getGpioNum(void);")
|
|
|
|
for line in src:
|
|
line = line.strip()
|
|
if line.startswith('#include') and line.endswith('.h"'):
|
|
HEADERS.append(line.replace('#include','').replace('"','').strip())
|
|
|
|
def is_c_decl(line):
|
|
for fn in ['wiringPiISR','wiringPiSetupPiFace','wiringPiSetupPiFaceForGpioProg']:
|
|
if fn in line:
|
|
return False
|
|
for prefix in ['extern','void','int','uint8_t']:
|
|
if line.startswith(prefix):
|
|
return True
|
|
|
|
print("// Generated by generate-bindings.py - do not edit manually!")
|
|
|
|
for file in HEADERS:
|
|
print("\n// Header file {}".format(file))
|
|
if file == "wiringOP/devLib/font.h":
|
|
continue # continue here
|
|
h = open(file).read().split('\n')
|
|
extern = False
|
|
cont = False
|
|
if 'extern "C" {' not in h:
|
|
extern = True
|
|
for line in h:
|
|
line = line.strip()
|
|
if cont:
|
|
print("\t{}".format(line))
|
|
cont = ";" not in line
|
|
continue
|
|
if line.startswith('extern "C"'):
|
|
extern = True
|
|
continue
|
|
if is_c_decl(line) and extern:
|
|
print(line)
|
|
cont = ";" not in line
|