https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: ee7a1f9604f4d84b0d8038b4b9412575a5da98c3 authored by Lars Bilke on 01 April 2021, 10:56:29 UTC
Merge branch 'single-poetry-add' into 'master'
Tip revision: ee7a1f9
cppcheck_gen_hashes.py
# Inserts hashes of description + file path as GitLab code quality fingerprint
import hashlib
import json
import sys

data = None
with open(sys.argv[1]) as json_file:
    data = json.load(json_file)

for entry in data:
    desc = entry["description"]
    path = entry["location"]["path"]
    hash = hashlib.sha256((desc + path).encode("utf-8")).hexdigest()
    entry["fingerprint"] = hash

with open(sys.argv[1], "w") as outfile:
    json.dump(data, outfile)

print("Added cppcheck fingerprints to {}.".format(sys.argv[1]))
back to top