-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson_struct.py
executable file
·71 lines (61 loc) · 2.56 KB
/
json_struct.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
#!/usr/bin/env python
# TODO: make struct with counts of each line's use in the JSON
# TODO: make struct with list of all it's values types
# TODO: print possible values ??? - only for basic types, limit string lengths
# TODO: list of non dictionaries
import json, sys
with open(sys.argv[1]) as f:
data = json.load(f)
def pprint(key, data, level):
# print("debug: key", key, json.dumps(data, indent=2))
typ = type(data[key]).__name__
print('\t'*level + key + ': ' + typ)
return typ
def match_and_merge(original_struct, new_struct):
for key in new_struct:
# print("debug: ori_str", original_struct, ", new_str", new_struct, ", key", key)
if key in original_struct:
# if original_struct[key][0] != new_struct[key][0]:
# print('Error', '; Key:', key, '; new_struct:', new_struct[key], '; original_struct:', original_struct[key])
# exit(1)
if original_struct[key][0] in ['dict', 'list']:
original_struct[key][1] = match_and_merge(original_struct[key][1], new_struct[key][1])
else:
original_struct[key] = new_struct[key]
return original_struct
def gettypes(data, level):
structure = {}
for key in data:
substruct = None
typ = pprint(key, data, level)
if typ == 'dict':
substruct = gettypes(data[key], level + 1)
elif typ == 'list':
prestruct = {}
for i in data[key]:
print('\t'*level + '-')
if isinstance(i, dict):
substruct = gettypes(i, level + 1)
else:
substruct = {'0': [type(i).__name__, None]}
prestruct = match_and_merge(prestruct, substruct)
substruct = prestruct
if key in structure:
if structure[key][0] != typ:
print('Error', '; Key:', key, '; Type:', typ, '; Existing key type:', structure[key])
exit(1)
if substruct:
substruct = match_and_merge(structure[key][1], substruct)
structure[key] = [typ, substruct]
# print("debug: return structure", structure)
return structure
structure = gettypes(data, 0)
print('--------\n')
rstctl = '\u001b[0m'
def pprint_struct(structure, level):
for key in structure:
ctl = rstctl if level%7 == 0 else '\u001b[3' + str(level%7) + 'm'
print(ctl + '\t'*level + key + ': ' + structure[key][0] + rstctl)
if structure[key][1] is not None:
pprint_struct(structure[key][1], level + 1)
pprint_struct(structure, 0)