-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathqpc_hash.py
495 lines (380 loc) · 18.9 KB
/
qpc_hash.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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
import hashlib
import qpc_reader
from qpc_args import args
from qpc_base import posix_path, QPC_DIR, QPC_GENERATOR_DIR
from qpc_reader import QPCBlockRoot, QPCBlock
from qpc_generator_handler import GENERATOR_PATHS, GENERATOR_LIST
from qpc_logging import verbose
import qpc_parser
import qpc_project
import glob
import os
QPC_HASH_DIR = QPC_DIR + "hashes/"
# Source: https://bitbucket.org/prologic/tools/src/tip/md5sum
def make_hash(filename: str) -> str:
md5 = hashlib.md5()
if os.path.isfile(filename):
with open(filename, "rb") as f:
for chunk in iter(lambda: f.read(128 * md5.block_size), b""):
md5.update(chunk)
return md5.hexdigest()
else:
return ""
def hash_from_string(string: str):
return hashlib.md5(string.encode()).hexdigest()
BASE_QPC_HASH_LIST = (
"qpc.py",
"qpc_base.py",
"qpc_c_parser.py",
"qpc_hash.py",
"qpc_parser.py",
"qpc_project.py",
"qpc_reader.py",
# "qpc_vpc_converter.py",
"qpc_generator_handler.py",
)
QPC_BASE_HASHES = {}
QPC_GENERATOR_HASHES = {}
for file in BASE_QPC_HASH_LIST:
QPC_BASE_HASHES[QPC_DIR + file] = make_hash(QPC_DIR + file)
for file in GENERATOR_LIST:
_generator = f"{QPC_GENERATOR_DIR}/{file}/{file}.py"
QPC_GENERATOR_HASHES[_generator] = make_hash(_generator)
QPC_HASHES = {**QPC_BASE_HASHES, **QPC_GENERATOR_HASHES}
CHECKED_HASHES = {}
GENERATOR_FILE_NAMES = []
ARCH_NAMES = []
def post_args_init():
GENERATOR_FILE_NAMES.extend([os.path.splitext(os.path.basename(__generator))[0] for __generator in args.generators])
ARCH_NAMES.extend([arch.name.casefold() for arch in args.archs])
# to be called after check_hash is called, so we know what we need to rebuild exactly
def get_rebuild_info(project_path: str, rebuild_generators: list) -> dict:
if project_path not in CHECKED_HASHES:
check_hash(project_path, False)
if rebuild_generators:
for gen in rebuild_generators:
if gen.filename not in CHECKED_HASHES[project_path]["generators"]:
CHECKED_HASHES[project_path]["generators"].append(gen.filename)
elif not CHECKED_HASHES[project_path]["generators"]:
CHECKED_HASHES[project_path]["generators"] = GENERATOR_FILE_NAMES
return CHECKED_HASHES[project_path]
def check_hash(project_path: str, print_allowed: bool = True) -> bool:
if project_path in CHECKED_HASHES:
return CHECKED_HASHES[project_path]["result"]
project_hash_file_path = get_hash_file_path(project_path)
project_dir = os.path.split(project_path)[0]
total_blocks = sorted(("commands", "glob_files", "hashes"))
blocks_found = []
CHECKED_HASHES[project_path] = {"result": True, "generators": [], "rebuild_all": False}
result = True
if os.path.isfile(project_hash_file_path):
hash_file = qpc_reader.read_file(project_hash_file_path)
if not hash_file:
CHECKED_HASHES[project_path]["result"] = False
CHECKED_HASHES[project_path]["rebuild_all"] = True
return False
for block in hash_file:
if not result:
CHECKED_HASHES[project_path]["result"] = False
return False
if block.key == "commands":
blocks_found.append(block.key)
result = _check_commands(project_dir, block.items, 4)
CHECKED_HASHES[project_path]["rebuild_all"] = not result
elif block.key == "hashes":
blocks_found.append(block.key)
result = _project_check_file_hash(project_dir, block.items, project_path)
elif block.key == "dependencies":
pass
elif block.key == "glob_files":
blocks_found.append(block.key)
result = _check_glob_files(project_dir, block.items)
CHECKED_HASHES[project_path]["rebuild_all"] = not result
elif print_allowed:
# how would this happen
block.warning("Unknown Key in Hash: ")
if total_blocks == sorted(blocks_found):
if print_allowed:
print("Valid: " + project_path + get_hash_file_ext(project_path))
CHECKED_HASHES[project_path]["result"] = True
return True
CHECKED_HASHES[project_path]["result"] = False
return False
else:
if print_allowed:
verbose("Hash File does not exist")
CHECKED_HASHES[project_path]["result"] = False
CHECKED_HASHES[project_path]["rebuild_all"] = True
return False
def _project_check_file_hash(project_dir: str, hash_list: list, project_path: str) -> bool:
result = True
for hash_block in hash_list:
if os.path.isabs(hash_block.values[0]) or not project_dir:
project_file_path = posix_path(os.path.normpath(hash_block.values[0]))
else:
project_file_path = posix_path(os.path.normpath(project_dir + "/" + hash_block.values[0]))
if hash_block.key != make_hash(project_file_path):
if not CHECKED_HASHES[project_path]["rebuild_all"] and hash_block.values[0] in QPC_GENERATOR_HASHES:
generator_name = os.path.splitext(os.path.basename(hash_block.values[0]))[0]
if generator_name in args.generators:
CHECKED_HASHES[project_path]["generators"].append(generator_name)
else:
CHECKED_HASHES[project_path]["rebuild_all"] = True
verbose("File Modified: " + hash_block.values[0])
result = False
return result
def check_master_file_hash(project_path: str, base_info, generator, hash_list: dict) -> bool:
project_hash_file_path = get_hash_file_path(project_path)
project_dir = os.path.split(project_path)[0]
total_blocks = sorted(("commands", "hashes", "files"))
blocks_found = []
if os.path.isfile(project_hash_file_path):
hash_file = qpc_reader.read_file(project_hash_file_path)
if not hash_file:
return False
for block in hash_file:
if block.key == "commands":
blocks_found.append(block.key)
if not _check_commands(project_dir, block.items, 5):
return False
elif block.key == "hashes":
blocks_found.append(block.key)
if not _check_file_hash(project_dir, block.items):
return False
elif block.key == "files":
blocks_found.append(block.key)
if not base_info.project_hashes:
continue
if generator.uses_folders():
if not _check_files(project_dir, block.items, hash_list, base_info.projects):
return False
else:
if not _check_files(project_dir, block.items, hash_list):
return False
else:
# how would this happen
block.warning("Unknown Key in Hash: ")
if total_blocks == sorted(blocks_found):
print("Valid: " + project_path + get_hash_file_ext(project_path))
return True
return False
else:
verbose("Hash File does not exist")
return False
def get_out_dir(project_hash_file_path):
if os.path.isfile(project_hash_file_path):
hash_file = qpc_reader.read_file(project_hash_file_path)
if not hash_file:
return ""
commands_block = hash_file.get_item("commands")
if commands_block is None:
print("hold up")
return ""
return posix_path(os.path.normpath(commands_block.get_item_values("working_dir")[0]))
# working_dir = commands_block.get_item_values("working_dir")[0]
# out_dir = commands_block.get_item_values("out_dir")[0]
# return posix_path(os.path.normpath(working_dir + "/" + out_dir))
def _check_commands(project_dir: str, command_list: list, total_commands: int) -> bool:
commands_found = 0
for command_block in command_list:
if command_block.key == "working_dir":
commands_found += 1
directory = args.root_dir
if project_dir:
directory += "/" + project_dir
# something just breaks here i use PosixPath in the if statement
directory = posix_path(directory)
hash_directory = posix_path(command_block.values[0])
if hash_directory.endswith("/"):
hash_directory = hash_directory[:-1]
if directory != hash_directory:
return False
elif command_block.key == "out_dir":
pass
elif command_block.key == "add":
commands_found += 1
if sorted(args.add) != sorted(command_block.values):
return False
elif command_block.key == "remove":
commands_found += 1
if sorted(args.remove) != sorted(command_block.values):
return False
elif command_block.key == "architectures":
commands_found += 1
if sorted(ARCH_NAMES) != sorted(command_block.values):
return False
elif command_block.key == "macros":
commands_found += 1
if sorted(args.macros) != sorted(command_block.values):
return False
elif command_block.key == "qpc_py_count":
commands_found += 1
if len(QPC_BASE_HASHES) != int(command_block.values[0]):
return False
else:
command_block.warning("Unknown Key in Hash: ")
return commands_found == total_commands
def _check_file_hash(project_dir: str, hash_list: list) -> bool:
for hash_block in hash_list:
if os.path.isabs(hash_block.values[0]) or not project_dir:
project_file_path = posix_path(os.path.normpath(hash_block.values[0]))
else:
project_file_path = posix_path(os.path.normpath(project_dir + "/" + hash_block.values[0]))
if hash_block.key != make_hash(project_file_path):
verbose("File Modified: " + hash_block.values[0])
return False
return True
def _check_files(project_dir, hash_file_list, file_list, project_def_list: dict = None) -> bool:
if len(hash_file_list) != len(file_list):
return False
for file_block in hash_file_list:
hash_path = file_block.get_item_values("hash_path")[0]
hash_folder = file_block.get_item_values("folder")
hash_folder = hash_folder[0] if hash_folder else ""
dependency_hash = file_block.get_item_values("dependency_hash")
dependency_hash = dependency_hash[0] if dependency_hash else ""
if os.path.isabs(hash_path) or not project_dir:
hash_path = posix_path(os.path.normpath(hash_path))
else:
hash_path = posix_path(os.path.normpath(project_dir + "/" + hash_path))
if hash_path not in file_list.values():
verbose("New project added: " + file_block.key)
return False
elif hash_folder and project_def_list:
for project_def in project_def_list:
if file_block.key == project_def.path:
folder = "/".join(project_def_list[project_def])
if hash_folder != folder:
# uh, what if this generator doesn't use folders
verbose(f"Project Folder Path Changed on \"{file_block.key}\":\n"
f"\"{hash_folder}\" -> \"{folder}\"")
return False
break
# Now check dependencies
project_dep_list = get_project_dependencies(file_block.key)
if not project_dep_list:
if dependency_hash: # and not script_path.values[0] == "":
# all dependencies were removed from it, and we think it has some still, rebuild
verbose("Outdated dependency list: " + file_block.key)
return False
continue
elif not dependency_hash and project_dep_list:
# project has dependencies now, and we think it doesn't, rebuild
return False
project_dep_list.sort()
if dependency_hash != hash_from_string(' '.join(project_dep_list)):
verbose(f"Dependencies Changed: \"{file_block.key}\"")
return False
return True
def _check_glob_files(project_dir: str, file_list: list) -> bool:
for file_block in file_list:
file_hash = file_block.key
file_glob = file_block.values[0]
glob_list = glob.glob(project_dir + "/" + file_glob)
for index, path in enumerate(glob_list):
glob_list[index] = posix_path(path)
glob_list.sort()
if file_hash != hash_from_string(' '.join(glob_list)):
verbose("Files found are different: " + file_glob)
return False
return True
def get_hash_file_path(project_path) -> str:
return posix_path(os.path.normpath(QPC_HASH_DIR + get_hash_file_name(project_path)))
def get_hash_file_name(project_path) -> str:
hash_name = project_path.replace("\\", ".").replace("/", ".")
return hash_name + get_hash_file_ext(hash_name)
def get_hash_file_ext(project_path) -> str:
if os.path.splitext(project_path)[1] == ".qpc":
return "_hash"
return ".qpc_hash"
def get_project_dependencies(project_path: str, recurse: bool = False) -> list:
project_hash_file_path = get_hash_file_path(project_path)
dep_list = set()
if os.path.isfile(project_hash_file_path):
hash_file = qpc_reader.read_file(project_hash_file_path)
if not hash_file:
return list(dep_list)
for block in hash_file:
if block.key == "dependencies":
for dep_block in block.items:
# maybe get dependencies of that file as well? recursion?
dep_list.add(dep_block.key)
if recurse:
dep_list.update(get_project_dependencies(dep_block.key))
if dep_block.values and dep_block.values[0] != "":
for path in dep_block.values:
if path:
dep_list.add(path)
if recurse:
dep_list.update(get_project_dependencies(dep_block.key))
break
return list(dep_list)
def write_project_hash(project_path: str, project: qpc_project.ProjectContainer, generators: list) -> None:
base_block = QPCBlockRoot(project_path)
_write_hash_commands(base_block, project.out_dir)
hashes = base_block.add_item("hashes", [])
[hashes.add_item(hash_value, script_path) for script_path, hash_value in QPC_BASE_HASHES.items()]
for generator in generators:
if generator.path in QPC_GENERATOR_HASHES:
hashes.add_item(QPC_GENERATOR_HASHES[generator.path], generator.path)
hash_list = project.get_hashes()
if hash_list:
[hashes.add_item(hash_value, script_path) for script_path, hash_value in hash_list.items()]
glob_files_block = base_block.add_item("glob_files", [])
for path in project.get_glob_files():
found_files = glob.glob(os.path.split(project_path)[0] + "/" + path)
for index, _path in enumerate(found_files):
found_files[index] = posix_path(_path)
found_files.sort()
glob_files_block.add_item(hash_from_string(' '.join(found_files)), path)
if project.dependencies:
dependencies_block = base_block.add_item("dependencies", [])
[dependencies_block.add_item(script_path, None) for script_path in project.dependencies]
with open(get_hash_file_path(project_path), mode="w", encoding="utf-8") as hash_file:
# hash_file.write(base_block.to_string(0, True, True))
hash_file.write(base_block.to_string(True, True))
def write_master_file_hash(project_path: str, base_info, platforms: list, generator_path: str, out_dir: str = ""):
base_block = QPCBlockRoot(project_path)
_write_hash_commands(base_block, out_dir, True)
hashes = base_block.add_item("hashes", [])
[hashes.add_item(hash_value, script_path) for script_path, hash_value in QPC_BASE_HASHES.items()]
if generator_path in QPC_GENERATOR_HASHES:
hashes.add_item(QPC_GENERATOR_HASHES[generator_path], generator_path)
info_list = set()
[info_list.add(base_info.get_base_info(platform)) for platform in platforms]
if None in info_list:
info_list.remove(None)
files = base_block.add_item("files", [])
for info_platform in info_list:
for project_def in info_platform.projects:
if project_def.path not in base_info.project_hashes:
continue
folder = "/".join(info_platform.project_folders[project_def.name])
script = files.add_item(project_def.path, [])
if project_def.path in base_info.project_hashes:
hash_path = base_info.project_hashes[project_def.path]
script.add_item("hash_path", hash_path)
# if project_def.folder_list:
script.add_item("folder", folder)
if project_def.path in base_info.project_dependencies:
dependency_list = list(base_info.project_dependencies[project_def.path])
dependency_list.sort()
value = hash_from_string(" ".join(dependency_list)) if dependency_list else ""
script.add_item("dependency_hash", value)
with open(get_hash_file_path(project_path), mode="w", encoding="utf-8") as hash_file:
hash_file.write(base_block.to_string(True, True))
def _write_hash_commands(base_block: QPCBlockRoot, out_dir: str = "", master_file: bool = False) -> None:
commands = base_block.add_item("commands", [])
commands.add_item("working_dir", os.getcwd().replace('\\', '/') + "/" + os.path.split(base_block.file_path)[0])
commands.add_item("out_dir", out_dir.replace('\\', '/'))
commands.add_item("macros", args.macros)
commands.add_item("architectures", ARCH_NAMES)
if master_file:
commands.add_item("add", args.add)
commands.add_item("remove", args.remove)
else:
commands.add_item("qpc_py_count", str(len(QPC_BASE_HASHES)))
def _write_hash_paths(base_block: QPCBlockRoot, hash_file_paths: dict):
if hash_file_paths:
files = base_block.add_item("files", [])
[files.add_item(hash_path, script_path) for script_path, hash_path in hash_file_paths.items()]