1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-24 16:55:20 +03:00
opentx/radio/util/include-guard.py
Sean Vig 5efa5d47d3 Use Python 2/3 compatible scripts
Almost entirely fixing print statements, but also a couple importing
changes, wrapped in try/excepts, and one case where dict.keys() not
being a list would be a problem.

Also reverts e41139a397

The real fix for #1907
2015-12-13 18:28:44 -06:00

30 lines
927 B
Python
Executable file

#!/usr/bin/env python
from __future__ import print_function
import sys, os
for filename in sys.argv[1:]:
f = file(filename, "r")
lines = f.readlines()
f.close()
newguard = "_" + os.path.basename(filename).upper().replace(".", "_") + "_"
for i, line in enumerate(lines):
line = line.strip()
if line.startswith("#ifndef "):
guard = line[8:]
if lines[i+1].strip() == "#define %s" % guard:
print(filename, ":", guard, "=>", newguard)
lines[i] = "#ifndef %s\n" % newguard
lines[i+1] = "#define %s\n" % newguard
end = -1
while not lines[end].strip().startswith("#endif"):
end -= 1
lines[end] = "#endif // %s\n" % newguard
f = file(filename, "w")
f.write("".join(lines))
f.close()
break