-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdiff_utils.py
887 lines (741 loc) · 33.4 KB
/
diff_utils.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
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
import difflib
REPLACE = '<REPLACE>'
REPLACE_OLD = '<REPLACE_OLD>'
REPLACE_NEW = '<REPLACE_NEW>'
REPLACE_END = '<REPLACE_END>'
REPLACE_OLD_KEEP_BEFORE = '<REPLACE_OLD_KEEP_BEFORE>'
REPLACE_NEW_KEEP_BEFORE = '<REPLACE_NEW_KEEP_BEFORE>'
REPLACE_OLD_KEEP_AFTER = '<REPLACE_OLD_KEEP_AFTER>'
REPLACE_NEW_KEEP_AFTER = '<REPLACE_NEW_KEEP_AFTER>'
REPLACE_OLD_DELETE_KEEP_BEFORE = '<REPLACE_OLD_DELETE_KEEP_BEFORE>'
REPLACE_NEW_DELETE_KEEP_BEFORE = '<REPLACE_NEW_DELETE_KEEP_BEFORE>'
REPLACE_OLD_DELETE_KEEP_AFTER = '<REPLACE_OLD_DELETE_KEEP_AFTER>'
REPLACE_NEW_DELETE_KEEP_AFTER = '<REPLACE_NEW_DELETE_KEEP_AFTER>'
INSERT = '<INSERT>'
INSERT_OLD = '<INSERT_OLD>'
INSERT_NEW = '<INSERT_NEW>'
INSERT_END = '<INSERT_END>'
INSERT_OLD_KEEP_BEFORE = '<INSERT_OLD_KEEP_BEFORE>'
INSERT_NEW_KEEP_BEFORE = '<INSERT_NEW_KEEP_BEFORE>'
INSERT_OLD_KEEP_AFTER = '<INSERT_OLD_KEEP_AFTER>'
INSERT_NEW_KEEP_AFTER = '<INSERT_NEW_KEEP_AFTER>'
DELETE = '<DELETE>'
DELETE_END = '<DELETE_END>'
KEEP = '<KEEP>'
KEEP_END = '<KEEP_END>'
COPY_SEQUENCE = '<COPY_SEQUENCE>'
REPLACE_KEYWORDS = [
REPLACE,
REPLACE_OLD,
REPLACE_NEW,
REPLACE_END,
REPLACE_OLD_KEEP_BEFORE,
REPLACE_NEW_KEEP_BEFORE,
REPLACE_OLD_KEEP_AFTER,
REPLACE_NEW_KEEP_AFTER,
REPLACE_OLD_DELETE_KEEP_BEFORE,
REPLACE_NEW_DELETE_KEEP_BEFORE,
REPLACE_OLD_DELETE_KEEP_AFTER,
REPLACE_NEW_DELETE_KEEP_AFTER
]
INSERT_KEYWORDS = [
INSERT,
INSERT_OLD,
INSERT_NEW,
INSERT_END,
INSERT_OLD_KEEP_BEFORE,
INSERT_NEW_KEEP_BEFORE,
INSERT_OLD_KEEP_AFTER,
INSERT_NEW_KEEP_AFTER
]
DELETE_KEYWORDS = [DELETE, DELETE_END]
KEEP_KEYWORDS = [KEEP, KEEP_END]
class EditNode:
def __init__(self, edit_type, children, prev, next):
self.edit_type = edit_type
self.children = children
self.prev = prev
self.next = next
def get_edit_keywords():
return [REPLACE, REPLACE_OLD, REPLACE_NEW, REPLACE_END, REPLACE_OLD_KEEP_BEFORE, REPLACE_NEW_KEEP_BEFORE, REPLACE_OLD_KEEP_AFTER,
REPLACE_NEW_KEEP_AFTER, REPLACE_OLD_DELETE_KEEP_BEFORE, REPLACE_NEW_DELETE_KEEP_BEFORE, REPLACE_OLD_DELETE_KEEP_AFTER,
REPLACE_NEW_DELETE_KEEP_AFTER, INSERT, INSERT_OLD, INSERT_NEW, INSERT_END, INSERT_OLD_KEEP_BEFORE, INSERT_NEW_KEEP_BEFORE,
INSERT_OLD_KEEP_AFTER, INSERT_NEW_KEEP_AFTER, DELETE, DELETE_END, KEEP, KEEP_END, COPY_SEQUENCE]
def get_index(search_tokens, full_tokens):
if len(search_tokens) == 0:
return 0
possible_positions = [k for k in range(len(full_tokens)) if full_tokens[k] == search_tokens[0]]
if len(possible_positions) == 0:
return -1
if len(possible_positions) == 1:
return possible_positions[0]
for p in possible_positions:
s_pos = 1
f_pos = p + 1
invalid = False
while s_pos < len(search_tokens) and f_pos < len(full_tokens):
if search_tokens[s_pos] != full_tokens[f_pos]:
invalid = True
break
s_pos += 1
f_pos += 1
if not invalid:
return p
return -1
def get_valid_positions(search_str, full_str):
search_sequence = search_str.split()
full_sequence = full_str.split()
if len(search_sequence) == 0:
return 0
possible_positions = [p for p in range(len(full_sequence)) if full_sequence[p] == search_sequence[0]]
valid_positions = []
for p in possible_positions:
valid = True
for i in range(len(search_sequence)):
if p+i >= len(full_sequence) or full_sequence[p+i] != search_sequence[i]:
valid = False
break
if valid:
valid_positions.append(p)
return valid_positions
def get_frequency(search_str, full_str):
return len(get_valid_positions(search_str, full_str))
def get_coarse_diff_structure(old_tokens, new_tokens):
nodes = []
last_node = None
for edit_type, o_start, o_end, n_start, n_end in difflib.SequenceMatcher(None, old_tokens, new_tokens).get_opcodes():
if edit_type == 'equal':
edit_node = EditNode(KEEP, old_tokens[o_start:o_end], last_node, None)
elif edit_type == 'replace':
edit_node = EditNode(REPLACE, old_tokens[o_start:o_end] + [REPLACE_NEW] + new_tokens[n_start:n_end], last_node, None)
elif edit_type == 'insert':
edit_node = EditNode(INSERT, new_tokens[n_start:n_end], last_node, None)
else:
edit_node = EditNode(DELETE, old_tokens[o_start:o_end], last_node, None)
if last_node:
last_node.next = edit_node
last_node = edit_node
nodes.append(edit_node)
return nodes
def merge_diff_actions(diff_structure):
mega_nodes = []
curr_mega_node = []
for node in diff_structure:
if len(node.children) == 1:
curr_mega_node.append(node)
else:
if len(curr_mega_node) == 1:
curr_mega_node.append(node)
mega_nodes.append(curr_mega_node)
curr_mega_node = []
else:
if len(curr_mega_node) > 0:
mega_nodes.append(curr_mega_node)
curr_mega_node = []
mega_nodes.append([node])
if len(curr_mega_node) == 1:
mega_nodes[-1].extend(curr_mega_node)
elif len(curr_mega_node) > 0:
mega_nodes.append(curr_mega_node)
new_nodes = []
for m_node in mega_nodes:
if len(m_node) == 1:
new_nodes.append(m_node[0])
continue
old_tokens = []
new_tokens = []
for sub in m_node:
if sub.edit_type == KEEP:
old_tokens.extend(sub.children)
new_tokens.extend(sub.children)
elif sub.edit_type == INSERT:
new_tokens.extend(sub.children)
elif sub.edit_type == DELETE:
old_tokens.extend(sub.children)
else:
rep_idx = sub.children.index(REPLACE_NEW)
old_tokens.extend(sub.children[:rep_idx])
new_tokens.extend(sub.children[rep_idx+1:])
replace_node = EditNode(REPLACE, old_tokens + [REPLACE_NEW] + new_tokens, None, None)
new_nodes.append(replace_node)
n = 0
final_new_nodes = []
while n < len(new_nodes):
while n < len(new_nodes) and new_nodes[n].edit_type not in [INSERT, REPLACE, DELETE]:
final_new_nodes.append(new_nodes[n])
n += 1
to_merge = []
while n < len(new_nodes) and new_nodes[n].edit_type in [INSERT, REPLACE, DELETE]:
to_merge.append(new_nodes[n])
n += 1
if len(to_merge) > 0:
old_tokens = []
new_tokens = []
for node in to_merge:
if node.edit_type == INSERT:
new_tokens.extend(node.children)
elif node.edit_type == DELETE:
old_tokens.extend(node.children)
elif node.edit_type == REPLACE:
rep_idx = node.children.index(REPLACE_NEW)
old_tokens.extend(node.children[:rep_idx])
new_tokens.extend(node.children[rep_idx+1:])
replace_node = EditNode(REPLACE, old_tokens + [REPLACE_NEW] + new_tokens, None, None)
final_new_nodes.append(replace_node)
if n < len(new_nodes):
final_new_nodes.append(new_nodes[n])
n += 1
new_nodes = final_new_nodes
for n, node in enumerate(new_nodes):
if n > 0:
new_nodes[n].next = node
node.prev = new_nodes[n]
if n+1 < len(new_nodes):
new_nodes[n+1].prev = node
node.next = new_nodes[n+1]
return new_nodes
def compute_span_diff_positions(old_tokens, new_tokens):
spans = []
diff_to_old_ids = []
old_to_diff_ids = []
diff_to_new_ids = []
new_to_diff_ids = []
for edit_type, o_start, o_end, n_start, n_end in difflib.SequenceMatcher(None, old_tokens, new_tokens).get_opcodes():
if edit_type == 'equal':
spans.append(KEEP)
for i in range(o_start, o_end):
diff_to_old_ids.append(len(spans))
old_to_diff_ids.append(i)
spans.append(old_tokens[i])
spans.append(KEEP_END)
elif edit_type == 'replace':
spans.append(REPLACE_OLD)
for i in range(o_start, o_end):
diff_to_old_ids.append(len(spans))
old_to_diff_ids.append(i)
spans.append(old_tokens[i])
spans.append(REPLACE_NEW)
for j in range(n_start, n_end):
diff_to_new_ids.append(len(spans))
new_to_diff_ids.append(j)
spans.append(new_tokens[j])
spans.append(REPLACE_END)
elif edit_type == 'insert':
spans.append(INSERT)
for j in range(n_start, n_end):
diff_to_new_ids.append(len(spans))
new_to_diff_ids.append(j)
spans.append(new_tokens[j])
spans.append(INSERT_END)
else:
spans.append(DELETE)
for i in range(o_start, o_end):
diff_to_old_ids.append(len(spans))
old_to_diff_ids.append(i)
spans.append(old_tokens[i])
spans.append(DELETE_END)
return spans, diff_to_old_ids, old_to_diff_ids, diff_to_new_ids, new_to_diff_ids
def compute_code_diffs(old_tokens, new_tokens):
spans = []
tokens = []
commands = []
for edit_type, o_start, o_end, n_start, n_end in difflib.SequenceMatcher(None, old_tokens, new_tokens).get_opcodes():
if edit_type == 'equal':
spans.extend([KEEP] + old_tokens[o_start:o_end] + [KEEP_END])
for i in range(o_start, o_end):
tokens.extend([KEEP, old_tokens[i]])
commands.append(KEEP)
elif edit_type == 'replace':
spans.extend([REPLACE_OLD] + old_tokens[o_start:o_end] + [REPLACE_NEW] + new_tokens[n_start:n_end] + [REPLACE_END])
for i in range(o_start, o_end):
tokens.extend([REPLACE_OLD, old_tokens[i]])
commands.append(REPLACE_OLD)
for j in range(n_start, n_end):
tokens.extend([REPLACE_NEW, new_tokens[j]])
commands.extend([REPLACE_NEW, new_tokens[j]])
elif edit_type == 'insert':
spans.extend([INSERT] + new_tokens[n_start:n_end] + [INSERT_END])
for j in range(n_start, n_end):
tokens.extend([INSERT, new_tokens[j]])
commands.extend([INSERT, new_tokens[j]])
else:
spans.extend([DELETE] + old_tokens[o_start:o_end] + [DELETE_END])
for i in range(o_start, o_end):
tokens.extend([DELETE, old_tokens[i]])
commands.append(DELETE)
return spans, tokens, commands
def compute_minimal_code_diffs(old_tokens, new_tokens):
spans = []
tokens = []
commands = []
for edit_type, o_start, o_end, n_start, n_end in difflib.SequenceMatcher(None, old_tokens, new_tokens).get_opcodes():
if edit_type == 'equal':
continue
elif edit_type == 'replace':
spans.extend([REPLACE_OLD] + old_tokens[o_start:o_end] + [REPLACE_NEW] + new_tokens[n_start:n_end] + [REPLACE_END])
for i in range(o_start, o_end):
tokens.extend([REPLACE_OLD, old_tokens[i]])
commands.append(REPLACE_OLD)
for j in range(n_start, n_end):
tokens.extend([REPLACE_NEW, new_tokens[j]])
commands.extend([REPLACE_NEW, new_tokens[j]])
elif edit_type == 'insert':
spans.extend([INSERT] + new_tokens[n_start:n_end] + [INSERT_END])
for j in range(n_start, n_end):
tokens.extend([INSERT, new_tokens[j]])
commands.extend([INSERT, new_tokens[j]])
else:
spans.extend([DELETE] + old_tokens[o_start:o_end] + [DELETE_END])
for i in range(o_start, o_end):
tokens.extend([DELETE, old_tokens[i]])
commands.append(DELETE)
return spans, tokens, commands
def compute_comment_diffs(old_tokens, new_tokens):
spans = []
tokens = []
commands = []
diff_nodes = get_coarse_diff_structure(old_tokens, new_tokens)
diff_nodes = merge_diff_actions(diff_nodes)
for node in diff_nodes:
if node.edit_type == KEEP:
spans.extend([KEEP] + node.children + [KEEP_END])
for i in range(len(node.children)):
tokens.extend([KEEP, node.children[i]])
commands.append(KEEP)
elif node.edit_type == REPLACE:
o_end = node.children.index(REPLACE_NEW)
n_start = o_end + 1
n_end = len(node.children)
spans.extend([REPLACE_OLD] + node.children + [REPLACE_END])
for i in range(o_end):
tokens.extend([REPLACE_OLD, node.children[i]])
commands.append(REPLACE_OLD)
for j in range(n_start, n_end):
tokens.extend([REPLACE_NEW, node.children[j]])
commands.extend([REPLACE_NEW, node.children[j]])
elif node.edit_type == INSERT:
spans.extend([INSERT] + node.children + [INSERT_END])
for j in range(len(node.children)):
tokens.extend([INSERT, node.children[j]])
commands.extend([INSERT, node.children[j]])
else:
spans.extend([DELETE] + node.children + [DELETE_END])
for i in range(len(node.children)):
tokens.extend([DELETE, node.children[i]])
commands.append(DELETE)
return spans, tokens, commands
def compute_minimal_comment_diffs(old_tokens, new_tokens):
spans = []
tokens = []
commands = []
old_str = ' '.join(old_tokens)
diff_nodes = get_coarse_diff_structure(old_tokens, new_tokens)
new_nodes = []
for n, node in enumerate(diff_nodes):
if node.edit_type == KEEP:
new_nodes.append(node)
elif node.edit_type == DELETE:
search_str = ' '.join(node.children)
if get_frequency(search_str, old_str) == 1:
node.children.insert(0, DELETE)
new_nodes.append(node)
continue
if node.prev and node.prev.edit_type == KEEP:
adopted_children = []
found_substring = False
while not found_substring and len(node.prev.children) > 0:
adopted_children.insert(0, node.prev.children.pop())
search_str = ' '.join(adopted_children + node.children)
found_substring = get_frequency(search_str, old_str) == 1
if found_substring:
new_children = [REPLACE_OLD_DELETE_KEEP_BEFORE] + adopted_children + node.children + [REPLACE_NEW_DELETE_KEEP_BEFORE] + adopted_children
new_node = EditNode(REPLACE, new_children, node.prev, node.next)
node.prev.next = new_node
if node.next:
node.next.prev = new_node
new_nodes.append(new_node)
continue
else:
node.prev.children.extend(adopted_children)
if node.next and node.next.edit_type == KEEP:
adopted_children = []
found_substring = False
while not found_substring and len(node.next.children) > 0:
adopted_children.append(node.next.children.pop(0))
search_str = ' '.join(node.children + adopted_children)
found_substring = get_frequency(search_str, old_str) == 1
if found_substring:
new_children = [REPLACE_OLD_DELETE_KEEP_AFTER] + node.children + adopted_children + [REPLACE_NEW_DELETE_KEEP_AFTER] + adopted_children
new_node = EditNode(REPLACE, new_children, node.prev, node.next)
if node.prev:
node.prev.next = new_node
node.next.prev = new_node
new_nodes.append(new_node)
continue
else:
node.next.children = adopted_children + node.next.children
return get_full_replace_span(old_tokens, new_tokens), tokens, commands
elif node.edit_type == REPLACE:
rep_idx = node.children.index(REPLACE_NEW)
rep_old_children = node.children[:rep_idx]
rep_new_children = node.children[rep_idx+1:]
search_str = ' '.join(rep_old_children)
if get_frequency(search_str, old_str) == 1:
node.children.insert(0, REPLACE_OLD)
new_nodes.append(node)
continue
if node.prev and node.prev.edit_type == KEEP:
adopted_children = []
found_substring = False
while not found_substring and len(node.prev.children) > 0:
adopted_children.insert(0, node.prev.children.pop())
search_str = ' '.join(adopted_children + rep_old_children)
found_substring = get_frequency(search_str, old_str) == 1
if found_substring:
new_children = [REPLACE_OLD_KEEP_BEFORE] + adopted_children + rep_old_children + [REPLACE_NEW_KEEP_BEFORE] + adopted_children + rep_new_children
new_node = EditNode(REPLACE, new_children, node.prev, node.next)
node.prev.next = new_node
if node.next:
node.next.prev = new_node
new_nodes.append(new_node)
continue
else:
node.prev.children.extend(adopted_children)
if node.next and node.next.edit_type == KEEP:
adopted_children = []
found_substring = False
while not found_substring and len(node.next.children) > 0:
adopted_children.append(node.next.children.pop(0))
search_str = ' '.join(rep_old_children + adopted_children)
found_substring = get_frequency(search_str, old_str) == 1
if found_substring:
new_children = [REPLACE_OLD_KEEP_AFTER] + rep_old_children + adopted_children + [REPLACE_NEW_KEEP_AFTER] + rep_new_children + adopted_children
new_node = EditNode(REPLACE, new_children, node.prev, node.next)
if node.prev:
node.prev.next = new_node
node.next.prev = new_node
new_nodes.append(new_node)
continue
else:
node.next.children = adopted_children + node.next.children
return get_full_replace_span(old_tokens, new_tokens), tokens, commands
elif node.edit_type == INSERT:
if node.prev and node.prev.edit_type == KEEP:
adopted_children = []
found_substring = False
while not found_substring and len(node.prev.children) > 0:
adopted_children.insert(0, node.prev.children.pop())
search_str = ' '.join(adopted_children)
found_substring = get_frequency(search_str, old_str) == 1
if found_substring:
new_children = [INSERT_OLD_KEEP_BEFORE] + adopted_children + [INSERT_NEW_KEEP_BEFORE] + adopted_children + node.children
new_node = EditNode(INSERT, new_children, node.prev, node.next)
node.prev.next = new_node
if node.next:
node.next.prev = new_node
new_nodes.append(new_node)
continue
else:
node.prev.children.extend(adopted_children)
if node.next and node.next.edit_type == KEEP:
adopted_children = []
found_substring = False
while not found_substring and len(node.next.children) > 0:
adopted_children.append(node.next.children.pop(0))
search_str = ' '.join(adopted_children)
found_substring = get_frequency(search_str, old_str) == 1
if found_substring:
new_children = [INSERT_OLD_KEEP_AFTER] + adopted_children + [INSERT_NEW_KEEP_AFTER] + node.children + adopted_children
new_node = EditNode(INSERT, new_children, node.prev, node.next)
if node.prev:
node.prev.next = new_node
node.next.prev = new_node
new_nodes.append(new_node)
continue
else:
node.next.children = adopted_children + node.next.children
return get_full_replace_span(old_tokens, new_tokens), tokens, commands
for node in new_nodes:
if 'INSERT' in node.edit_type:
spans.extend(node.children + [INSERT_END])
elif 'REPLACE' in node.edit_type:
spans.extend(node.children + [REPLACE_END])
elif 'DELETE' in node.edit_type:
spans.extend(node.children + [DELETE_END])
return spans, tokens, commands
def get_full_replace_span(old_tokens, new_tokens):
return [REPLACE_OLD] + old_tokens + [REPLACE_NEW] + new_tokens + [REPLACE_END]
def is_insert(token):
return token in INSERT_KEYWORDS
def is_keep(token):
return token in KEEP_KEYWORDS
def is_replace(token):
return token in REPLACE_KEYWORDS
def is_delete(token):
return token in DELETE_KEYWORDS
def is_insert_end(token):
return is_insert(token) and is_end(token)
def is_insert_old(token):
return is_insert(token) and 'OLD' in token
def is_insert_new(token):
return is_insert(token) and 'NEW' in token
def is_keep_end(token):
return is_keep(token) and is_end(token)
def is_replace_end(token):
return is_replace(token) and is_end(token)
def is_replace_old(token):
return is_replace(token) and 'OLD' in token
def is_replace_new(token):
return is_replace(token) and 'NEW' in token
def is_delete_end(token):
return is_delete(token) and is_end(token)
def is_edit_keyword(token):
return is_insert(token) or is_keep(token) or is_replace(token) or is_delete(token) or token == COPY_SEQUENCE
def is_start(token):
return is_edit_keyword(token) and 'NEW' not in token and not is_end(token)
def is_end(token):
return is_edit_keyword(token) and 'END' in token
def is_new(token):
return is_edit_keyword(token) and 'NEW' in token
def get_location(search_tokens, reference_tokens):
ref_str = ' '.join(reference_tokens)
for i in range(len(search_tokens)):
for j in range(len(search_tokens), i, -1):
search_str = ' '.join(search_tokens[i:j])
valid_positions = get_valid_positions(search_str, ref_str)
if len(valid_positions) > 0:
return valid_positions[0], i, len(valid_positions) > 1
return -1, -1, False
def format_minimal_diff_spans(reference_tokens, diff_span_tokens):
if COPY_SEQUENCE in diff_span_tokens:
return ' '.join(reference_tokens)
ptr = 0
new_comment_tokens = []
post_delete = []
post_replace = []
i = 0
while i < len(diff_span_tokens):
token = diff_span_tokens[i]
if not is_start(token):
i += 1
continue
if is_delete(token):
j = i + 1
delete_tokens = []
multiple_delete = False
while j < len(diff_span_tokens) and not is_delete_end(diff_span_tokens[j]):
delete_tokens.append(diff_span_tokens[j])
j += 1
idx, d_start, multiple_delete = get_location(delete_tokens, reference_tokens[ptr:])
if multiple_delete:
post_delete.append(delete_tokens)
if idx >= 0:
before_match = delete_tokens[:d_start]
for r in range(ptr, ptr+idx):
if reference_tokens[r] in before_match:
before_match.pop(before_match.index(reference_tokens[r]))
else:
new_comment_tokens.append(reference_tokens[r])
ptr += idx
remaining_delete_tokens = delete_tokens[d_start:]
for d in remaining_delete_tokens:
if ptr < len(reference_tokens) and d in reference_tokens[ptr:]:
idx = reference_tokens[ptr:].index(d)
new_comment_tokens.extend(reference_tokens[ptr:ptr+idx])
ptr += idx + 1
elif is_insert_old(token):
j = i + 1
delete_tokens = []
insert_tokens = []
multiple_insert = False
while j < len(diff_span_tokens) and not is_insert_new(diff_span_tokens[j]):
delete_tokens.append(diff_span_tokens[j])
j += 1
can_add = False
idx, d_start, multiple_insert = get_location(delete_tokens, reference_tokens[ptr:])
if idx >= 0:
can_add = True
before_match = delete_tokens[:d_start]
for r in range(ptr, ptr+idx):
if reference_tokens[r] in before_match:
before_match.pop(before_match.index(reference_tokens[r]))
else:
new_comment_tokens.append(reference_tokens[r])
ptr += idx
remaining_delete_tokens = delete_tokens[d_start:]
for d in remaining_delete_tokens:
if ptr < len(reference_tokens) and d in reference_tokens[ptr:]:
idx = reference_tokens[ptr:].index(d)
new_comment_tokens.extend(reference_tokens[ptr:ptr+idx])
ptr += idx + 1
j += 1
while j < len(diff_span_tokens) and not is_insert_end(diff_span_tokens[j]):
insert_tokens.append(diff_span_tokens[j])
if can_add:
new_comment_tokens.append(diff_span_tokens[j])
j += 1
if multiple_insert:
post_replace.append((delete_tokens, insert_tokens))
elif is_replace_old(token):
j = i + 1
delete_tokens = []
insert_tokens = []
multiple_replace = False
while j < len(diff_span_tokens) and not is_replace_new(diff_span_tokens[j]):
delete_tokens.append(diff_span_tokens[j])
j += 1
can_add = False
idx, d_start, multiple_replace = get_location(delete_tokens, reference_tokens[ptr:])
if idx >= 0:
can_add = True
before_match = delete_tokens[:d_start]
for r in range(ptr, ptr+idx):
if reference_tokens[r] in before_match:
before_match.pop(before_match.index(reference_tokens[r]))
else:
new_comment_tokens.append(reference_tokens[r])
ptr += idx
remaining_delete_tokens = delete_tokens[d_start:]
for d in remaining_delete_tokens:
if ptr < len(reference_tokens) and d in reference_tokens[ptr:]:
idx = reference_tokens[ptr:].index(d)
new_comment_tokens.extend(reference_tokens[ptr:ptr+idx])
ptr += idx + 1
j += 1
while j < len(diff_span_tokens) and not is_replace_end(diff_span_tokens[j]):
insert_tokens.append(diff_span_tokens[j])
if can_add:
new_comment_tokens.append(diff_span_tokens[j])
j += 1
if multiple_replace:
post_replace.append((delete_tokens, insert_tokens))
else:
raise ValueError('Invalid: {}'.format(token))
i = j+1
if ptr < len(reference_tokens):
new_comment_tokens.extend(reference_tokens[ptr:])
if len(post_delete) > 0:
delete_positions = []
for d in post_delete:
start_positions = get_valid_positions(' '.join(d), ' '.join(new_comment_tokens))
for s in start_positions:
delete_positions.extend(range(s, s+len(d)))
cleaned_new_comment_tokens = []
for i, tok in enumerate(new_comment_tokens):
if i not in delete_positions:
cleaned_new_comment_tokens.append(tok)
new_comment_tokens = cleaned_new_comment_tokens
for d, i in post_replace:
valid_positions = get_valid_positions(' '.join(d), ' '.join(new_comment_tokens))
for v in valid_positions:
if v + len(i) >= len(new_comment_tokens) or new_comment_tokens[v:v+len(i)] != i:
new_comment_tokens[v:v+len(d)] = i
return ' '.join(new_comment_tokens)
def format_diff_commands(reference_tokens, commands):
i = 0
ref_ptr = 0
output = []
while i < len(commands):
command = commands[i]
if command in [DELETE, REPLACE_OLD]:
ref_ptr += 1
elif command == KEEP:
if ref_ptr < len(reference_tokens):
output.append(reference_tokens[ref_ptr])
ref_ptr += 1
elif command not in [INSERT, REPLACE_NEW]:
output.append(command)
i += 1
return ' '.join(output)
def format_diff_tokens(diff_tokens):
i = 0
output = []
last_command = KEEP
while i < len(diff_tokens):
token = diff_tokens[i]
if token in [INSERT, DELETE, REPLACE_OLD, REPLACE_NEW, KEEP]:
last_command = token
elif last_command in [INSERT, REPLACE_NEW, KEEP]:
output.append(token)
i += 1
return ' '.join(output)
def format_diff_spans(reference_tokens, diff_span_tokens):
def get_next_keep_token(start_idx, sequence):
while start_idx < len(sequence) and sequence[start_idx] != KEEP:
start_idx += 1
start_idx += 1
if start_idx < len(sequence):
return sequence[start_idx]
return None
ptr = 0
output = reference_tokens.copy()
i = 0
while i < len(diff_span_tokens):
token = diff_span_tokens[i]
i += 1
if token not in [INSERT, DELETE, REPLACE_OLD, KEEP]:
continue
if token == INSERT:
j = i
next_keep_token = get_next_keep_token(j, diff_span_tokens)
if next_keep_token:
copy_ptr = ptr
while copy_ptr < len(output) and output[copy_ptr] != next_keep_token:
copy_ptr += 1
if copy_ptr < len(output):
ptr = copy_ptr
elif ptr < len(output):
ptr = len(output)
while j < len(diff_span_tokens) and diff_span_tokens[j] != INSERT_END:
output.insert(ptr, diff_span_tokens[j])
ptr += 1
j += 1
i = j+1
elif token == DELETE:
j = i
while j < len(diff_span_tokens) and diff_span_tokens[j] != DELETE_END:
copy_ptr = max(0, ptr-1)
while copy_ptr < len(output) and diff_span_tokens[j] != output[copy_ptr]:
copy_ptr += 1
if copy_ptr < len(output):
output.pop(copy_ptr)
ptr = copy_ptr
else:
ptr += 1
j += 1
i = j+1
elif token == KEEP:
j = i
while j < len(diff_span_tokens) and diff_span_tokens[j] != KEEP_END:
if ptr < len(output) and diff_span_tokens[j] == output[ptr]:
ptr += 1
j += 1
i = j+1
else:
j = i
while j < len(diff_span_tokens) and diff_span_tokens[j] != REPLACE_NEW:
copy_ptr = max(0, ptr-1)
while copy_ptr < len(output) and diff_span_tokens[j] != output[copy_ptr]:
copy_ptr += 1
if copy_ptr < len(output):
output.pop(copy_ptr)
ptr = copy_ptr
else:
ptr += 1
j += 1
j += 1
next_keep_token = get_next_keep_token(j, diff_span_tokens)
if next_keep_token:
copy_ptr = ptr
while copy_ptr < len(output) and output[copy_ptr] != next_keep_token:
copy_ptr += 1
if copy_ptr < len(output):
ptr = copy_ptr
elif ptr < len(output):
ptr = len(output)
while j < len(diff_span_tokens) and diff_span_tokens[j] != REPLACE_END:
output.insert(ptr, diff_span_tokens[j])
ptr += 1
j += 1
i = j+1
return ' '.join(output)