ddnet/scripts/copyright.py

66 lines
1.9 KiB
Python
Raw Normal View History

2010-11-20 10:36:48 +00:00
import os, re, sys
2011-04-02 02:47:19 +00:00
match = re.search('(.*)/', sys.argv[0])
2010-11-20 10:36:48 +00:00
if match != None:
2011-04-02 02:47:19 +00:00
os.chdir(match.group(1))
os.chdir('../')
2007-11-25 19:42:40 +00:00
2010-11-20 10:36:48 +00:00
notice = [b"/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */\n", b"/* If you are missing that file, acquire a complete release at teeworlds.com. */\n"]
exclude = ["src%sengine%sexternal" % (os.sep, os.sep), "src%sosxlaunch" % os.sep]
2010-11-20 10:36:48 +00:00
updated_files = 0
2007-11-25 19:42:40 +00:00
def fix_copyright_notice(filename):
2010-11-20 10:36:48 +00:00
global updated_files
2007-11-25 19:42:40 +00:00
f = open(filename, "rb")
lines = f.readlines()
f.close()
2010-11-20 10:36:48 +00:00
i = 0
length_lines = len(lines)
if length_lines > 0:
while i <= length_lines and (lines[i].decode("utf-8").lstrip()[:2] == "//" or lines[i].decode("utf-8").lstrip()[:2] == "/*" and lines[i].decode("utf-8").rstrip()[-2:] == "*/") and ("Magnus" in lines[i].decode("utf-8") or "magnus" in lines[i].decode("utf-8") or "Auvinen" in lines[i].decode("utf-8") or "auvinen" in lines[i].decode("utf-8") or "license" in lines[i].decode("utf-8") or "teeworlds" in lines[i].decode("utf-8")):
i += 1
length_notice = len(notice)
if i > 0:
j = 0
while lines[j] == notice[j]:
j += 1
if j == length_notice:
return
k = j
j = 0
while j < length_notice -1 - k:
lines = [notice[j]] + lines
j += 1
while j < length_notice:
lines[j] = notice[j]
j += 1
if length_lines == 0 or i == 0:
j = length_notice - 1
while j >= 0:
lines = [notice[j]] + lines
j -= 1
open(filename, "wb").writelines(lines)
updated_files += 1
skip = False
for root, dirs, files in os.walk("src"):
2010-11-20 10:36:48 +00:00
for excluding in exclude:
if root[:len(excluding)] == excluding:
skip = True
break
if skip == True:
skip = False
continue
for name in files:
filename = os.path.join(root, name)
if filename[-2:] != ".c" and filename[-4:] != ".cpp" and filename[-2:] != ".h":
continue
fix_copyright_notice(filename)
output = "file"
if updated_files != 1:
output += "s"
print("*** updated %d %s ***" % (updated_files, output))