forked from anapgh/pycefr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
getjson.py
144 lines (120 loc) · 4.32 KB
/
getjson.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
#-- PROGRAM TO OBTAIN SUMMARIES FROM JSON
import json
import os
import re
#-- Dictionary of all repositories and files
dict_total = {}
#-- Dictionary of all repositories
dict_summary = {}
#-- Dictionary of all files
dict_repo = {}
def extract_Levels(data):
""" Extract repository levels. """
#-- Take out the repositories
for repo in data.keys():
dict_total[repo] = {}
dict_repo[repo] = {}
for file in data[repo]:
dict_total[repo][file] = {}
for i in data[repo][file]:
level = i['Level']
if not 'Levels' in dict_summary:
dict_summary['Levels'] = {}
ini_total('Levels', level)
if not 'Levels' in dict_repo[repo]:
dict_repo[repo]['Levels'] = {}
ini_repo(repo,'Levels', level)
if not 'Levels' in dict_total[repo][file]:
#-- Initialize the dictionary values to 0
#-- Create the 'Levels' key
dict_total[repo][file]['Levels'] = {}
ini_values(repo, file, 'Levels', level)
clase = i['Class']
#-- Remove numbers
clase = re.sub("\s?\d", "", clase)
if not 'Class' in dict_summary:
dict_summary['Class'] = {}
ini_total('Class', clase)
if not 'Class' in dict_repo[repo]:
dict_repo[repo]['Class'] = {}
ini_repo(repo,'Class', clase)
if not 'Class' in dict_total[repo][file]:
#-- Initialize the dictionary values to 0
#-- Create the 'Class' key
dict_total[repo][file]['Class'] = {}
ini_values(repo, file, 'Class', clase)
write_Results(repo)
def ini_total(type, key):
""" Initialize or increment values. """
if not key in dict_summary[type]:
if key != "":
dict_summary[type][key] = 1
else:
dict_summary[type][key] += 1
def ini_repo(repo, type, key):
""" Initialize or increment values. """
if not key in dict_repo[repo][type]:
if key != "":
dict_repo[repo][type][key] = 1
else:
dict_repo[repo][type][key] += 1
def ini_values(repo, file, type, key):
""" Initialize or increment values. """
if not key in dict_total[repo][file][type]:
if key != "":
dict_total[repo][file][type][key] = 1
else:
dict_total[repo][file][type][key] += 1
def write_Results(repo):
""" Create a .txt file with a summary of results. """
#-- get current path
wd = os.getcwd()
#-- create new folder
try:
os.mkdir(wd + "/DATA_JSON")
except FileExistsError:
pass
#-- Create a file for each repository
name_file = wd + "/DATA_JSON/"+ repo + '.json'
repository = dict()
repository[repo] = dict_total[repo]
with open(name_file, 'w') as file:
json.dump(repository, file, indent=4)
#-- Create a total file
name_file = wd + "/DATA_JSON/total_data.json"
with open(name_file, 'w') as file:
json.dump(dict_total, file, indent=4)
#-- Create a summary data
name_file = wd + "/DATA_JSON/summary_data.json"
with open(name_file, 'w') as file:
json.dump(dict_summary, file, indent=4)
#-- Create a repo data
name_file = wd + "/DATA_JSON/repo_data.json"
with open(name_file, 'w') as file:
json.dump(dict_repo, file, indent=4)
def show_Results():
""" Returns the result of the analysis. """
repos = dict_total.keys()
num_files = 0
result = '====================================='
result += '\nRESULT OF THE ANALYSIS:'
for keys in repos:
files = dict_total[keys]
for key, value in files.items():
num_files += 1
result += ('\nAnalyzed .py files: ' + str(num_files))
levels = dict_summary['Levels']
for key, value in levels.items():
result += ('\nElements of level ' + key + ': ' + str(value))
result += '\n====================================='
return result
def read_Json():
""" Read json file. """
#result = ''
with open('data.json') as file:
data = json.load(file)
extract_Levels(data)
result = show_Results()
return result
if __name__ == "__main__":
read_Json()