-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpretty-breaking-changes-markdown.py
executable file
·291 lines (201 loc) · 9.75 KB
/
pretty-breaking-changes-markdown.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
#! /usr/bin/python3
import sys
import git
import mistune
import os
breaking_change_report_keyword = "# breaking"
markdown = mistune.create_markdown(renderer='ast')
def get_end_of_block_using_pattern(lines, start_index, end_pattern):
if start_index >= len(lines):
return start_index
end_pattern_lowercase = end_pattern.lower()
end_of_block_index = start_index
while end_of_block_index < len(lines):
if not lines[end_of_block_index].lower().startswith(end_pattern_lowercase):
end_of_block_index += 1
else:
break
return end_of_block_index
def get_end_of_block(lines, start_index):
next_line_index = get_end_of_block_using_pattern(lines, start_index, '----')
if next_line_index == len(lines):
next_line_index = get_end_of_block_using_pattern(lines, start_index, breaking_change_report_keyword)
return next_line_index
def is_empty_block(lines):
result = True
for line in lines:
if line.strip():
return False
return result
def dissect_commit_message(raw_commit_message):
breaking_changes_info = []
lines = raw_commit_message.split('\n')
raw_jira_info_block_line_index = get_end_of_block_using_pattern(lines, 1, breaking_change_report_keyword)
i = 0
while i < raw_jira_info_block_line_index:
if lines[i] != "":
jira_ticket, _, jira_ticket_title = lines[i].partition(' ')
break
i += 1
block_start_line_index = raw_jira_info_block_line_index
while block_start_line_index < len(lines):
# print(str(block_start_line_index) + " " + str(len(lines)))
next_line_index = get_end_of_block(lines, block_start_line_index)
# print(next_line_index)
if next_line_index - block_start_line_index > 1 and not is_empty_block(
lines[block_start_line_index:next_line_index]):
info = None
if lines[next_line_index - 1] == '----':
block_end_line_index = next_line_index - 1
else:
block_end_line_index = next_line_index
try:
info = extract_breaking_change_info(lines[block_start_line_index:block_end_line_index])
except Exception as e:
print("unprocessable")
print(e)
print(lines)
print("Range considered: " + str(block_start_line_index) + ":" + str(block_end_line_index))
print()
if info:
breaking_changes_info.append(info)
breaking_changes_info[-1]['jira_ticket'] = jira_ticket
breaking_changes_info[-1]['jira_ticket_title'] = jira_ticket_title.rstrip('\r\n')
block_start_line_index = next_line_index + 1
return breaking_changes_info
def extract_breaking_change_info(lines):
# print(lines)
breaking_change_info = {}
what_line_index = get_end_of_block_using_pattern(lines, 0, "## What")
if what_line_index >= len(lines):
raise LookupError('"## What" not found')
breaking_change_info['affected_file_path'] = get_affected_file_path(lines[what_line_index])
why_line_index = get_end_of_block_using_pattern(lines, what_line_index + 1, "## Why")
if why_line_index >= len(lines):
raise LookupError('"## Why" not found')
breaking_change_info['what_info'] = "\n".join(lines[what_line_index + 1:why_line_index]).rstrip('\r\n')
alternatives_line_index = get_end_of_block_using_pattern(lines, why_line_index + 1, "## Alternatives")
breaking_change_info['why_info'] = "\n".join(lines[why_line_index + 1: alternatives_line_index]).rstrip('\r\n')
if len(lines) > alternatives_line_index:
breaking_change_info['alternatives'] = "\n".join(lines[alternatives_line_index + 1: len(lines)]).rstrip('\r\n')
return breaking_change_info
def decorate_breaking_change_info(breaking_change_info, decoration):
return [item | decoration for item in breaking_change_info]
def get_affected_file_path(raw_what_header):
_, _, affected_file_path = raw_what_header.partition('## What ')
if affected_file_path == "":
_, _, affected_file_path = raw_what_header.partition('## what ')
return affected_file_path
def get_first_level_path(file_path):
first_level_path, _, remaining = file_path.partition('/')
if len(first_level_path) == 0:
first_level_path, _, remaining = remaining.partition('/')
if len(remaining) == 0:
first_level_path = 'other'
return first_level_path
def main(repo_path, repo_branch, start_hash, end_hash):
amendments_file_path = repo_path + "/readme/BREAKING_CHANGES_AMENDMENTS.markdown"
liferay_portal_ee_repo = git.Repo(repo_path)
print("Checkout " + repo_branch + " and pull ...")
liferay_portal_ee_repo.git.checkout(repo_branch)
liferay_portal_ee_repo.git.fetch('--all')
liferay_portal_ee_repo.git.reset('--hard', 'origin/' + repo_branch)
print("Retrieving git info ...")
of_interest = liferay_portal_ee_repo.git.log(start_hash + ".." + end_hash, "--grep", "# breaking",
"--pretty=format:%H")
# of_interest = liferay_portal_ee_repo.git.log("--grep", "breaking_change_report", "--pretty=format:%H")
print("Processing git info ...")
individual_commit_hashes = of_interest.split('\n')
breaking_changes_info = {
h: decorate_breaking_change_info(result, {'committed_date': liferay_portal_ee_repo.commit(h).committed_date})
for h
in individual_commit_hashes if (result := dissect_commit_message(liferay_portal_ee_repo.commit(h).message))}
with open(amendments_file_path) as f:
amendments = f.read()
parsed = markdown.parse(amendments)
interesting_indexes = [(i, type_of) for i in range(len(parsed)) if
(type_of := parsed[0][i]['type']) == 'heading' or type_of == 'block_code']
i = 0
while i <= len(interesting_indexes) - 2:
if interesting_indexes[i][1] == 'heading' and interesting_indexes[i + 1][1] == 'block_code':
git_hash = parsed[interesting_indexes[i][0]]['children'][0]['text']
if git_hash in breaking_changes_info or (
liferay_portal_ee_repo.is_ancestor(start_hash, git_hash) and not liferay_portal_ee_repo.is_ancestor(
end_hash, git_hash)):
amended_message = parsed[interesting_indexes[i + 1][0]]['text']
breaking_changes_info[git_hash] = decorate_breaking_change_info(dissect_commit_message(amended_message),
{
'committed_date':
liferay_portal_ee_repo.commit(
git_hash).committed_date})
if len(breaking_changes_info[git_hash]) > 0:
print("Amending: " + str(breaking_changes_info[git_hash][0]['jira_ticket']))
else:
print("Error processing amendment message " + git_hash)
print(amended_message)
print()
i += 2
else:
i += 1
affected_file_paths_and_hashes = {}
for git_hash in breaking_changes_info:
# print(hash)
# print(breaking_changes_info[hash]['affected_file_path'])
for change in breaking_changes_info[git_hash]:
affected_file_path = change['affected_file_path']
# print(affected_file_path)
first_level_path = get_first_level_path(affected_file_path)
if first_level_path not in affected_file_paths_and_hashes:
affected_file_paths_and_hashes[first_level_path] = {}
if affected_file_path in affected_file_paths_and_hashes[first_level_path]:
affected_file_paths_and_hashes[first_level_path][affected_file_path].append(change)
else:
affected_file_paths_and_hashes[first_level_path][affected_file_path] = [change]
print("Generating output ...")
entire_output = ""
for first_level_path in affected_file_paths_and_hashes:
for affected_file_path in affected_file_paths_and_hashes[first_level_path]:
file_name = os.path.basename(affected_file_path)
this_block = f'''
# {affected_file_path}
{file_name} `{affected_file_path}`
'''
for change in affected_file_paths_and_hashes[first_level_path][affected_file_path]:
this_block += '''
* __Date:__ {committed_date}
* __Ticket:__ [{jira_ticket}](https://liferay.atlassian.net/browse/{jira_ticket})
* __What changed:__ {what_info}
* __Reason:__ {why_info}
'''.format(**change)
if 'alternatives' in change:
this_block += '''
* __Alternatives:__ {alternatives}
'''.format(**change)
this_block += '''
'''
entire_output += this_block
entire_output_fh = open('report.md', 'w')
entire_output_fh.write(entire_output)
entire_output_fh.close()
if __name__ == '__main__':
try:
path = sys.argv[1]
except IndexError:
print("Please provide a local path to the report")
exit()
try:
branch = sys.argv[2]
except IndexError:
print("Please provide a branch name")
exit()
try:
first_hash = sys.argv[3]
except IndexError:
print("Please provide a hash to start")
exit()
try:
final_hash = sys.argv[4]
except IndexError:
final_hash = "HEAD"
main(path, branch, first_hash, final_hash)