-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
build-checks.py
executable file
·190 lines (163 loc) · 6.05 KB
/
build-checks.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
#!/usr/bin/env python3
import csv
import json
import os
import sys
csv_directory = "voices"
sound_directory = "SOUNDS"
# TODO: Check for duplicate filenames in CSV files
# TODO: Check for files in SOUNDS that are not in CSV files
def checkCSVcolumnCount():
print("VOICES: Checking CSV files for missing fields ...")
missing_csv_field = False
for filename in os.listdir(csv_directory):
f = os.path.join(csv_directory, filename)
if os.path.isfile(f) and filename.endswith(".csv"):
reader = csv.reader(open(f, "r"))
for row in reader:
if not len(row) == 6:
print(f"{filename}: Insufficient columns of data - {row}")
missing_csv_field = True
continue
if missing_csv_field:
return 1
else:
return 0
def checkFilenameLengthsInCSV():
print("VOICES: Checking filename lengths in CSV files ...")
invalid_filename_found = False
for filename in os.listdir(csv_directory):
if filename.endswith("_scripts.csv"):
continue
f = os.path.join(csv_directory, filename)
if os.path.isfile(f) and filename.endswith(".csv"):
reader = csv.reader(open(f, "r"))
next(reader) # Skip the header row
for row in reader:
if len(row) == 6:
filename_in_csv = row[5]
path_in_csv = row[4]
if (
path_in_csv == "SYSTEM"
and len(os.path.splitext(filename_in_csv)[0]) > 8
):
print(f"{filename}: Filename too long - {filename_in_csv}")
invalid_filename_found = True
elif (
path_in_csv != "SYSTEM"
and len(os.path.splitext(filename_in_csv)[0]) > 6
):
print(f"{filename}: Filename too long - {filename_in_csv}")
invalid_filename_found = True
if invalid_filename_found:
return 1
else:
return 0
def checkFilenameLengths():
print("SOUNDS: Checking file name lengths ...")
invalid_filename_found = False
for dirpath, dirnames, filenames in os.walk(sound_directory):
for fn in filenames:
path = os.path.join(dirpath, fn)
if path.split(os.path.sep)[2] == "SYSTEM":
if len(os.path.splitext(fn)[0]) > 8:
print(f"Filename too long for a SYSTEM file: {path}")
invalid_filename_found = True
elif path.split(os.path.sep)[2] == "SCRIPTS":
continue
elif len(os.path.splitext(fn)[0]) > 6:
print(f"Filename too long for a non-SYSTEM file: {path}")
invalid_filename_found = True
if invalid_filename_found:
return 1
else:
return 0
def checkNoZeroByteFiles():
print("SOUNDS: Checking for zero byte sound files ...")
zero_byte_file_found = False
for root, dirs, files in os.walk(sound_directory):
path = root.split(os.sep)
for fn in files:
path = os.path.join(root, fn)
if os.stat(path).st_size == 0:
print(f"Zero byte file: {path}")
zero_byte_file_found = True
if zero_byte_file_found:
return 1
else:
return 0
def validateSoundsJson():
print("SOUNDS: Validating sounds.json ...")
invalid_json_found = False
f = open("sounds.json")
try:
json.load(f)
except ValueError as err:
print(f"JSON not valid: {str(err)}")
invalid_json_found = True
if invalid_json_found:
return 1
else:
return 0
def checkForDuplicateStringID():
print("VOICES: Check for duplicate StringIDs ...")
duplicate_found = False
pathName = os.path.join(os.getcwd(), csv_directory)
voiceFiles = []
# scan for voice CSV files
fileNames = os.listdir(pathName)
for fileNames in fileNames:
if fileNames.endswith(".csv"):
voiceFiles.append(fileNames)
# iterate over files found
for filename in voiceFiles:
f = os.path.join(csv_directory, filename)
if os.path.isfile(f):
with open(f, "rt") as csvfile:
reader = csv.reader(csvfile, delimiter=",", quotechar='"')
line_count = 0
StringID_count = {}
for row in reader:
if line_count == 0:
# absorb header row
line_count += 1
else:
StringID = row[0]
if StringID in StringID_count.keys():
print(f"{f}: {StringID} is duplicated")
StringID_count[StringID] = StringID_count[StringID] + 1
duplicate_found = True
else:
StringID_count[StringID] = 1
if duplicate_found:
return 1
else:
return 0
def checkCSVNewline():
print("VOICES: Checking CSV files for newline at the end of file ...")
missing_newline = False
for filename in os.listdir(csv_directory):
f = os.path.join(csv_directory, filename)
if os.path.isfile(f) and filename.endswith(".csv"):
with open(f, "r") as file:
lines = file.readlines()
if lines and not lines[-1].endswith("\n"):
print(f"{filename}: Missing newline at end of file")
missing_newline = True
if missing_newline:
return 1
else:
return 0
if __name__ == "__main__":
error_count = 0
error_count += checkCSVcolumnCount()
error_count += checkFilenameLengthsInCSV()
error_count += checkFilenameLengths()
error_count += checkNoZeroByteFiles()
error_count += validateSoundsJson()
error_count += checkForDuplicateStringID()
error_count += checkCSVNewline()
if error_count > 0:
sys.exit(os.EX_DATAERR)
else:
sys.exit(os.EX_OK)