-
Notifications
You must be signed in to change notification settings - Fork 0
/
unsquash.py
918 lines (828 loc) · 38.2 KB
/
unsquash.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
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
from __future__ import annotations
import argparse
from base64 import b64decode
from collections import defaultdict
from datetime import datetime, timedelta, timezone
from getpass import getpass
from itertools import chain, count
import json
import re
import sqlite3
import sys
import time
from typing import Callable, Generator, Iterable, Optional
from urllib.parse import urlparse
from dulwich.client import (DEFAULT_GIT_CREDENTIALS_PATHS,
get_credentials_from_store, get_transport_and_path,
GitClient, Urllib3HttpGitClient)
from dulwich.objects import Blob, Commit, Tree
from dulwich.repo import Repo
from github import Github, PullRequest, RateLimitExceededException
from tqdm import tqdm
__doc__ = """
-- GitHub Unsquasher --
This tool rewrites git history for github-hosted repositories, rewriting the
history as if your pull request squash commits were all merges instead and
pulling in all the commits of those pull requests into this new branch.
Typically this functions by fetching the refs for the commits that were squashed
instead of merged via git. Github saves these under "refs/pull/1234/head"; if
they are not available this way, the data for those commits will be fetched from
the github JSON REST API instead. When fetched via JSON this way, some details
of the commits themselves cannot be exactly reproduced, but those commits were
going to be rewritten anyway. The content of the repository is precisely the
same. Every commit, even if its branch was long deleted or never present in your
copy of the repo, has its files and trees exactly reproduced after a successful
run.
This tool can be rerun repeatedly, maintaining an unsquashed branch by updating
only new commits from the repository! This gives a complete accounting of what
actually happened, complete with a more comprehensive 'git blame' output for
all your files. Not only that, but checking out the unsquashed branch is almost
instant, since when it is up to date it refers to the exact same tree as the
squashed branch it was created from.
"""
INFINITE_PAST = datetime.min.replace(tzinfo=timezone.utc)
def string_to_datetime(s: str) -> datetime:
return datetime_as_utc(datetime.strptime(s, "%Y-%m-%dT%H:%M:%SZ"))
def number_to_datetime(n: float | int) -> datetime:
return datetime_as_utc(datetime.fromtimestamp(n, timezone.utc))
def datetime_to_float(d: datetime) -> float:
assert d.tzinfo is timezone.utc
return d.timestamp()
def datetime_to_int(d: datetime) -> int:
assert d.tzinfo is timezone.utc
return int(d.timestamp())
def datetime_as_utc(d: datetime) -> datetime:
return d.replace(tzinfo=timezone.utc)
def main():
parser = argparse.ArgumentParser(
description="Unsquash squashed pull requests from a github-based repo.")
parser.add_argument("--repo", required=True,
help="The file path to the local git repo.")
parser.add_argument("--github_repo", required=True,
help="The repo/name of the project on github.")
parser.add_argument("--token_file", default=None,
help="The file to read the github token from. If this "
"is not given, you will be asked to enter/paste "
"the token like a password when the tool runs.")
parser.add_argument("--no_github", action='store_true', default=False,
help="Disable usage of the API, relying only on the "
"cache. The script will crash if any data needs "
"to be fetched from the API.")
parser.add_argument("--pr_db", default="pull_requests.db",
help="The file path to the pull requests cache.")
group = parser.add_mutually_exclusive_group()
group.add_argument("--squashed_branch", default=None,
help="The name of the branch to be unsquashed.")
group.add_argument("--squashed_ref", default=None,
help="The name of the ref to be unsquashed. Like "
"--squashed_branch, but specifies long-form refs "
"like 'refs/heads/master' instead of 'master'.")
group = parser.add_mutually_exclusive_group()
group.add_argument("--unsquashed_branch", default=None,
help="The name of the unsquashed branch to build or "
"maintain. Defaults to 'unsquash-' + the name of "
"the squashed branch.")
group.add_argument("--unsquashed_ref", default=None,
help="The name of the unsquashed ref to build or "
"maintain. Like --unsquashed_branch, but "
"specifies long-form refs, like "
"'refs/heads/unsquash-master' instead of "
"'unsquash-master'.")
parser.add_argument("--git_remote_url", type=str,
help="The git remote URL that all git fetching will be "
"done from.")
parser.add_argument("--squashed_remote", type=str,
help="The name of the remote in the repository to "
"fetch git data from. Defaults to the upstream "
"branch of the unsquashed branch, if any.")
parser.add_argument("--git_credentials_file", type=str,
help="Path to the stored git credentials file for http")
parser.add_argument("--also_map_branch", action='append', default=[],
help="Additional branches to map before beginning the "
"unsquash process. All mapped commits will be "
"kept as-is, and also stand in for the commits "
"referred to by the 'unsquashbot_original_commit' "
"trailer value in the commit message. Helpful "
"when one branch is already unsquashed and you "
"want its commits to be reused for a second, "
"related branch; simply unsquash into the new "
"branch and list any already-unsquashed branches "
"you want to include as an --also_map_branch "
"argument.")
parser.add_argument("--also_map_ref", action='append', default=[],
help="Like --also_map_branch, but specifies long-form "
"refs, like 'refs/heads/master' instead of "
"'master'.")
parser.add_argument("--bot_email",
default="unsquashbot@example.com",
help="The email address in the bot's committer line.")
args = parser.parse_args()
unsquashed_committer = f"UnsquashBot <{args.bot_email}>".encode()
repo = Repo(args.repo)
repo_config = repo.get_config()
if args.squashed_branch is None and args.squashed_ref is None:
args.squashed_branch = "master" # default to master branch
if args.git_remote_url is None:
if args.squashed_remote is None:
try:
args.squashed_remote = repo_config.get(
('branch', args.squashed_branch), 'remote')
except KeyError:
print("Squashed branch has no configured remote")
sys.exit(1)
try:
args.git_remote_url = repo_config.get(
('remote', args.squashed_remote),
'url').decode()
except KeyError:
print(f"Repo has no remote {args.squashed_remote:r}")
sys.exit(1)
parsed_url = urlparse(args.git_remote_url)
if parsed_url.scheme in ("http", "https"):
creds = get_credentials_from_store(
parsed_url.scheme.encode(),
parsed_url.hostname.encode(),
fnames=(
[args.git_credentials_file]
if args.git_credentials_file is not None else
DEFAULT_GIT_CREDENTIALS_PATHS
),
)
username, password = creds or (None, None)
if isinstance(username, bytes):
username = username.decode()
if isinstance(password, bytes):
password = password.decode()
remote_git_client = Urllib3HttpGitClient(
args.git_remote_url,
username=username,
password=password,
)
path = parsed_url.path
else:
remote_git_client, path = get_transport_and_path(args.git_remote_url)
# TODO(widders): fetch the branch if args.fetch_squashed_branch
if args.squashed_branch is not None:
squashed_ref = f"refs/heads/{args.squashed_branch}".encode()
else:
squashed_ref = args.squashed_ref.encode()
if args.unsquashed_branch is None and args.unsquashed_ref is None:
# unsquashed ref defaults to a rename of the squashed branch
if args.squashed_branch is None:
print("When no --squashed_branch is given, one of "
"--unsquashed_branch and --unsquashed_ref must be given.")
sys.exit(1)
unsquashed_ref = f"refs/heads/unsquash-{args.squashed_branch}".encode()
elif args.unsquashed_branch is not None:
unsquashed_ref = f"refs/heads/{args.unsquashed_branch}".encode()
else:
unsquashed_ref = args.unsquashed_ref.encode()
also_map_refs = [*(f"refs/heads/{also}".encode()
for also in args.also_map_branch),
*(also.encode() for also in args.also_map_ref)]
try:
squashed_head = repo.refs[squashed_ref]
except KeyError:
# we need the squashed ref, otherwise there's nothing to recreate
print(f"Squashed ref {squashed_ref} not found!")
sys.exit(1)
if args.no_github:
token = None
else:
if args.token_file is None:
token = getpass(prompt="github token: ")
else:
with open(args.token_file, 'r') as f:
token = f.read().strip()
with GithubCache(db_path=args.pr_db,
github_repo_name=args.github_repo,
github_token=token) as gh_db:
rebuild_history(repo=repo, gh_db=gh_db,
remote=remote_git_client,
remote_path=path,
unsquashed_committer=unsquashed_committer,
squashed_head=squashed_head,
unsquashed_ref=unsquashed_ref,
also_map_refs=also_map_refs)
class GithubCache:
def __init__(self, db_path: str, github_repo_name: str,
github_token: str | None):
"""
Connect a cache to sqlite at db_path and connect to the github API.
If token is None, the API will not be available.
"""
if github_token is not None:
self.github = Github(github_token)
self.github_repo_name = github_repo_name
while True:
try:
self.github_repo = self.github.get_repo(github_repo_name)
break
except RateLimitExceededException:
self._wait_for_rate_limit()
self.db_path = db_path
self.db = None
def __enter__(self):
self.db = sqlite3.connect(self.db_path)
self.db.execute("""PRAGMA journal_mode = WAL;""")
with self.db as cursor:
cursor.executescript("""
CREATE TABLE IF NOT EXISTS pull_requests(
project TEXT NOT NULL,
id INTEGER NOT NULL,
pr_json TEXT NOT NULL,
commits_json TEXT NOT NULL,
PRIMARY KEY (project, id)
);
CREATE UNIQUE INDEX IF NOT EXISTS pull_request_tips
ON pull_requests(
project,
json_extract(pr_json, '$.merge_commit_sha')
);
CREATE TABLE IF NOT EXISTS objects(
id TEXT PRIMARY KEY,
json TEXT NOT NULL
) WITHOUT ROWID;
CREATE TABLE IF NOT EXISTS updates(
project TEXT NOT NULL,
update_timestamp REAL NOT NULL
);
CREATE INDEX IF NOT EXISTS updates_timestamps
ON updates(project, update_timestamp);
""")
return self
def __exit__(self, exc_type, exc_val, exc_tb):
self.db.close()
self.db = None
def update_pull_requests(self, update_progress: tqdm):
"""
Update the database of merged pull requests to current.
"""
with self.db as cursor:
[[last_updated]] = cursor.execute("""
SELECT max(update_timestamp) FROM updates WHERE project = ?;
""", (self.github_repo_name,))
if last_updated is None:
target_timestamp = INFINITE_PAST
else:
target_timestamp = number_to_datetime(last_updated)
# new last-updated timestamp
new_updated: datetime = INFINITE_PAST
def all_pulls() -> Generator[PullRequest]:
nonlocal fetched_multiple_pages
pulls = self.github_repo.get_pulls(
state='closed', sort='updated', direction='desc')
for page_num in count():
if page_num > 0:
fetched_multiple_pages = True
while True:
try:
page = pulls.get_page(page_num)
break
except RateLimitExceededException:
self._wait_for_rate_limit()
if not page:
return # end of history
yield from page
while True:
# scroll through pull requests from most to least recently updated
# until we see one at least as stale as our last update timestamp.
done = False
fetched_multiple_pages = False
for pull in all_pulls():
update_progress.update(1)
while True:
try:
with self.db as cursor:
pull_updated_at = datetime_as_utc(pull.updated_at)
if pull_updated_at < target_timestamp:
done = True
break
new_updated = max(new_updated, pull_updated_at)
[[already_have]] = cursor.execute("""
SELECT COUNT(*) > 0
FROM pull_requests
WHERE project = ? AND id = ?;
""", (self.github_repo_name, pull.number))
if (
already_have or
pull.state != 'closed' or
pull.merged_at is None
):
break # only store new, merged PRs
raw_data: dict = pull.raw_data
commits: list[str] = [
c.sha for c in pull.get_commits()
]
cursor.execute("""
INSERT INTO pull_requests(
project,
id,
pr_json,
commits_json
)
VALUES (?, ?, ?, ?);
""", (
self.github_repo_name,
pull.number,
json.dumps(raw_data),
json.dumps(commits)
))
except RateLimitExceededException:
self._wait_for_rate_limit()
continue
break
if done:
break
# Because we are paginating backwards in time while recently updated
# pull requests get pushed up to the first page, we might actually
# miss some that get updated while we are fetching if we fetched
# more than one page. Therefore we should repeat this process until
# we see a non-new pull request on the first page of results.
if fetched_multiple_pages:
target_timestamp = new_updated
continue
else:
break
with self.db as cursor:
cursor.execute("""
INSERT INTO updates(project, update_timestamp) VALUES (?, ?);
""", (self.github_repo_name, datetime_to_float(new_updated),))
def pull_request(self, pull_request_commit: bytes) -> Optional[
(dict, list[bytes])]:
"""
Returns (pull request json, list of commit ids).
"""
with self.db as cursor:
try:
[[pr_json, commits_json]] = cursor.execute("""
SELECT pr_json, commits_json
FROM pull_requests
WHERE
project = ? AND
json_extract(pr_json, '$.merge_commit_sha') = ?;
""", (self.github_repo_name, pull_request_commit.decode()))
return (json.loads(pr_json),
[c_id.encode() for c_id in json.loads(commits_json)])
except ValueError:
pass
def commit(self, commit_id: bytes) -> (dict, bool):
"""
Returns (commit json, bool of whether this object was cached).
"""
return self._object(commit_id, self._fetch_commit)
def tree(self, tree_id: bytes) -> (dict, bool):
"""
Returns (tree json, bool of whether this object was cached).
"""
return self._object(tree_id, self._fetch_tree)
def blob(self, blob_id: bytes) -> (dict, bool):
"""
Returns (blob json, bool of whether this object was cached).
"""
return self._object(blob_id, self._fetch_blob)
def _object(self, object_id: bytes,
fallback: Callable[[bytes], (str, dict)]) -> (dict, bool):
"""
Returns (object json, bool of whether this object was cached)
"""
try:
[[json_data]] = self.db.execute("""
SELECT json FROM objects WHERE id = ?;
""", (object_id.decode(),))
return json.loads(json_data), True
except ValueError:
pass # object not present in db, fetch it from the fallback instead
sha, result = fallback(object_id)
assert sha == object_id.decode(), (
f"bad data from github for object {object_id}")
with self.db as cursor:
cursor.execute("""
INSERT INTO objects(id, json) VALUES (?, ?);
""", (sha, json.dumps(result)))
return result, False
def _fetch_commit(self, commit_id: bytes) -> (str, dict):
"""
Fetches a commit from the API and returns it.
"""
while True:
try:
github_commit = self.github_repo.get_git_commit(
commit_id.decode())
raw_data: dict = github_commit.raw_data
break
except RateLimitExceededException:
self._wait_for_rate_limit()
return github_commit.sha, raw_data
def _fetch_tree(self, tree_id: bytes) -> (str, dict):
"""
Fetches a tree from the API and returns it.
"""
while True:
try:
github_tree = self.github_repo.get_git_tree(tree_id.decode())
raw_data: dict = github_tree.raw_data
break
except RateLimitExceededException:
self._wait_for_rate_limit()
return github_tree.sha, raw_data
def _fetch_blob(self, blob_id: bytes) -> (str, dict):
"""
Fetches a blob from the API and returns it.
"""
while True:
try:
github_blob = self.github_repo.get_git_blob(blob_id.decode())
raw_data: dict = github_blob.raw_data
break
except RateLimitExceededException:
self._wait_for_rate_limit()
return github_blob.sha, raw_data
def _wait_for_rate_limit(self) -> None:
rate_limit = self.github.get_rate_limit()
wait_start = datetime.now(timezone.utc)
time_to_wait = (rate_limit.core.reset - wait_start
+ timedelta(seconds=10))
with tqdm(desc="waiting for github API rate limit",
total=time_to_wait.total_seconds(), unit="s") as progress:
while True:
time.sleep(1)
now = datetime.now(timezone.utc)
waited = now - wait_start
progress.n = min(waited.total_seconds(),
time_to_wait.total_seconds())
progress.refresh()
if waited > time_to_wait:
break
print()
print()
print()
def detect_original_commit(commit: Commit) -> bytes | None:
"""
Returns the commit id of the original commit if this is an unsquashed
commit, otherwise returns None.
"""
match = re.search(rb"\nunsquashbot_original_commit=([0-9a-f]+)\n$",
commit.message, re.MULTILINE)
return match and match.group(1)
def map_unsquashed(repo: Repo, heads: list[bytes]) -> dict[bytes, bytes]:
# mapping from original commit id to unsquashed branch commit id
unsquashed_mapping = {}
if not heads:
return unsquashed_mapping
for walk in tqdm(repo.get_walker(include=heads),
desc="mapping unsquashed commits", unit="commit"):
original_commit_id = detect_original_commit(walk.commit)
if original_commit_id:
unsquashed_mapping[original_commit_id] = walk.commit.id
# if a commit is not rewritten in unsquashed history, or if an
# already-unsquashed commit is referenced, it should not be changed.
unsquashed_mapping[walk.commit.id] = walk.commit.id
return unsquashed_mapping
def recreate_commit(commit_json: dict) -> Commit:
"""
Recreate a commit object approximately from github api json.
"""
commit = Commit()
commit.parents = [p['sha'].encode() for p in commit_json['parents']]
# leftover hack: adapt in case this is a "pull request commit" json object
# instead of a "git commit" json object. they're equally good but the pull
# request ones have a bunch of extra data in them
if 'commit' in commit_json:
commit_json = commit_json['commit']
commit.message = commit_json['message'].encode()
commit.author = (f"{commit_json['author']['name']} "
f"<{commit_json['author']['email']}>".encode())
author_time = string_to_datetime(commit_json['author']['date'])
commit.author_time = datetime_to_int(author_time)
commit.author_timezone = 0
commit.committer = (f"{commit_json['committer']['name']} "
f"<{commit_json['committer']['email']}"
f">".encode())
commit_time = string_to_datetime(commit_json['committer']['date'])
commit.commit_time = datetime_to_int(commit_time)
commit.commit_timezone = 0
commit.tree = commit_json['tree']['sha'].encode()
return commit
def recreate_tree(tree_json: dict) -> Tree:
"""
Recreate a tree object exactly from github api json.
"""
assert not tree_json['truncated'], (f"Tree {tree_json['sha']} from github "
f"was truncated!")
tree = Tree()
for tree_entry in tree_json['tree']:
tree.add(name=tree_entry['path'].encode(),
mode=int(tree_entry['mode'], 8),
hexsha=tree_entry['sha'].encode())
assert tree.id == tree_json['sha'].encode()
return tree
def recreate_blob(blob_json: dict) -> Blob:
"""
Recreate a blob object exactly from github api json.
"""
blob = Blob()
blob.data = b64decode(blob_json['content']) # it's always base64 encoded
assert blob.id == blob_json['sha'].encode()
return blob
def download_tree(repo: Repo, gh_db: GithubCache, tree_id: bytes,
fetch_progress: tqdm) -> None:
"""
Downlaod the tree and all its reachable objects into the repo from the
Github JSON api.
"""
gh_tree, was_cached = gh_db.tree(tree_id)
if not was_cached:
fetch_progress.update(1)
fetch_progress.refresh()
for entry in gh_tree['tree']:
if entry['sha'].encode() in repo:
continue
if entry['type'] == 'blob':
gh_blob, was_cached = gh_db.blob(entry['sha'].encode())
if not was_cached:
fetch_progress.update(1)
fetch_progress.refresh()
repo.object_store.add_object(recreate_blob(gh_blob))
elif entry['type'] == 'tree':
download_tree(repo, gh_db, entry['sha'].encode(), fetch_progress)
elif entry['type'] == 'commit' and entry['mode'] == '160000':
pass # submodule, no action required
else:
assert False, (f"Unknown, absurd tree entry object type "
f"{entry['type']} with mode {entry['mode']} "
f"in tree {tree_id}")
repo.object_store.add_object(recreate_tree(gh_tree))
def rebuild_history(repo: Repo, remote: GitClient, remote_path: str,
gh_db: GithubCache, unsquashed_committer: bytes,
squashed_head: bytes, unsquashed_ref: bytes,
also_map_refs: list[bytes]) -> None:
map_heads = []
for ref in [unsquashed_ref, *also_map_refs]:
try:
head = repo.refs[ref]
map_heads.append(head)
if squashed_head == (detect_original_commit(repo[head]) or head):
print(f"Already up to date in {ref.decode()}")
if ref != unsquashed_ref:
print("Updating unsquashed ref")
repo[unsquashed_ref] = head
return
except KeyError:
print(f"Ref {ref.decode()} not found in the repo")
with tqdm(desc="fetching PRs", unit="pr") as fetch_pr_progress:
gh_db.update_pull_requests(fetch_pr_progress)
# mapping of {squashed commit id: unsquashed commit id}
unsquashed_mapping = map_unsquashed(repo=repo, heads=map_heads)
# map from squashed commit to merge tip
certain_pr_merges: dict[bytes, bytes] = {}
# pending_commits will hold all the commits to be unsquashed.
pending_commits = set()
# already_processed_tips holds the set of squashed commits we neither need
# to fetch nor process again, as they are already unsquashed or queued up.
already_processed_tips = []
for commit_id in map_heads:
already_processed_tips.append(commit_id)
commit = repo[commit_id]
original_commit_id = detect_original_commit(commit)
if original_commit_id is not None:
already_processed_tips.append(original_commit_id)
# tips that are being processed this iteration
new_tips = [squashed_head]
while True:
# the set of commit ids we plan to fetch from the remote
new_squash_commits = set()
tips_to_fetch = set()
for walk in tqdm(repo.get_walker(new_tips,
exclude=already_processed_tips),
desc="crawling new commits", unit="commit"):
if (
walk.commit.id in pending_commits or
walk.commit.id in unsquashed_mapping
):
continue # TODO(widders): this shouldn't happen i think?
pending_commits.add(walk.commit.id)
# Check if this commit is a squashed pull request
if len(walk.commit.parents) >= 2:
continue # it's a merge commit
pull_request = gh_db.pull_request(walk.commit.id)
if pull_request is None:
continue # not the merge commit of a known pull request
(pr_json, pr_commits) = pull_request
merge_tip = pr_json['head']['sha'].encode()
if (
# this pull request isn't a simple fast-forward
merge_tip != walk.commit.id and
# this isn't already a commit we have queued up
merge_tip not in pending_commits and
# this isn't a commit that was previously unsquashed
merge_tip not in unsquashed_mapping
):
certain_pr_merges[walk.commit.id] = merge_tip
# we will try to fetch the pr's contents from the remote
if merge_tip not in new_squash_commits:
new_squash_commits.add(merge_tip)
if merge_tip not in repo:
tips_to_fetch.add(merge_tip)
# we've now combed over these commits for squashed merge commits
already_processed_tips.extend(new_tips)
if tips_to_fetch:
print(f"attempting to fetch {len(tips_to_fetch)} out of "
f"{len(new_squash_commits)} missing squashed refs")
def determine_wants(sha_dict: dict[bytes, bytes],
_depth: Optional[int] = None) -> list[bytes]:
return [
commit
for _ref, commit in sha_dict.items()
if commit in tips_to_fetch
]
# if we are on a tty, clean and reset erase the line each time.
# dulwich emits "\r" at the end of most lines which is enough to
# reset the cursor to the start but not enough to clean up any extra
# characters if the progress line gets shorter.
progress_end = "\x1b[1K\r" if sys.stdout.isatty() else "\n"
def progress(msg: bytes):
print(msg.decode().strip(), end=progress_end)
# fetch as many of those tips as possible from the repo
fetch_result = remote.fetch(remote_path, repo,
determine_wants=determine_wants,
progress=progress)
if sys.stdout.isatty(): print()
# save the refs we wanted to keep
failed_to_fetch = 0
not_stomped = 0
with tqdm(desc="saving fetched refs", unit="ref",
total=len(tips_to_fetch)) as save_ref_bar:
for ref, commit in fetch_result.refs.items():
if commit not in tips_to_fetch:
continue
save_ref_bar.update(1)
if commit not in repo:
failed_to_fetch += 1
elif ref in repo.refs:
not_stomped += 1
else:
repo.refs[ref] = commit
print(f"{failed_to_fetch} refs failed to fetch")
if not_stomped:
print(f"{not_stomped} refs not saved to avoid stomping "
f"existing refs")
new_tips = [
commit
for commit in new_squash_commits
if commit in repo
]
print(f"got {len(new_tips)} new refs")
if not new_tips:
break # nothing more to do
def unsquashed_parents_of_commit(commit_id: bytes) -> Iterable[bytes]:
merge_tip = certain_pr_merges.get(commit_id)
try:
commit = repo[commit_id]
except KeyError:
return ()
return chain(commit.parents, (merge_tip,) if merge_tip else ())
# Start performing a topological sort of all the new squashed commits we
# currently have in the repo (so, excluding the ones we failed to fetch;
# those will be fetched via the REST api later, during unsquashing)
unsquashed_commits = set(unsquashed_mapping.values())
# mapping of {commit id: number of child commits not yet in the repo}
dependent = defaultdict(int)
for commit_id in tqdm(pending_commits, desc="preprocessing commit graph",
unit="commit"):
for parent_id in unsquashed_parents_of_commit(commit_id):
if (
parent_id in unsquashed_mapping or
parent_id in unsquashed_commits
):
continue
dependent[parent_id] += 1
# list of pending commits whose parents are all in the repo or already in
# the commit stack
ready = [
commit_id for commit_id in pending_commits
if commit_id not in dependent
]
commit_stack = []
with tqdm(desc="building commit queue", unit="commit",
total=len(pending_commits)) as build_bar:
while ready:
commit_id = ready.pop()
commit_stack.append(commit_id)
for parent_id in unsquashed_parents_of_commit(commit_id):
if parent_id not in dependent:
continue
current_children = dependent[parent_id]
if current_children == 1:
del dependent[parent_id]
ready.append(parent_id)
else:
dependent[parent_id] = current_children - 1
build_bar.update(1)
assert len(dependent) == 0, "DAG violation: topological sort failed"
head_commit_id = None
rewrite_progress = tqdm(total=len(commit_stack),
desc="unsquashing ", unit="commit")
fetch_obj_progress = tqdm(desc="fetching missing objects", unit="obj")
def close_progress_bars():
rewrite_progress.close()
fetch_obj_progress.close()
try:
while commit_stack:
current_commit_id = commit_stack.pop()
must_rewrite = False
try:
current_commit = repo[current_commit_id]
reconstructed = False
except KeyError:
# commit is not in the repo
must_rewrite = True
gh_json, was_cached = gh_db.commit(current_commit_id)
if not was_cached:
fetch_obj_progress.update(1)
fetch_obj_progress.refresh()
current_commit = recreate_commit(gh_json)
reconstructed = True
# parents of this commit need to be processed first
parents_to_enqueue = [
parent_id for parent_id in current_commit.parents
if parent_id not in unsquashed_mapping
]
if parents_to_enqueue:
commit_stack.append(current_commit_id)
commit_stack.extend(parents_to_enqueue)
# regress N commits
rewrite_progress.total += len(parents_to_enqueue)
continue
pull_request = None
if len(current_commit.parents) < 2:
try:
pull_request = gh_db.pull_request(current_commit_id)
except KeyError:
pass
if pull_request is not None:
must_rewrite = True
(pr_json, pr_commits) = pull_request
# ensure that all the PR's commits exist beforehand
merge_tip = pr_json['head']['sha'].encode()
# it's possible for a (bugged?) github PR to have zero commits.
if pr_commits:
assert merge_tip == pr_commits[-1]
if merge_tip == current_commit_id:
# this was a fast-forward merge, not a squash commit.
pass # there is nothing for us to do.
else:
if merge_tip not in unsquashed_mapping:
# these commits must be rewritten before we can write
# the unsquashed merge PR. we push the PR commit back on
# the stack and will revisit it again when its attendant
# commits are all in.
commit_stack.append(current_commit_id)
commit_stack.append(merge_tip)
rewrite_progress.total += 1 # regress 1 commit
continue
assert all(pr_c in unsquashed_mapping
for pr_c in pr_commits)
# convert this PR into a merge commit
current_commit.parents.append(merge_tip)
current_commit.committer = unsquashed_committer
# remap parent commits
rewritten_parents = [
unsquashed_mapping[p]
for p in current_commit.parents
]
if (
not must_rewrite
and current_commit.parents == rewritten_parents
):
# this commit is exactly the same in unsquashed history
unsquashed_mapping[current_commit_id] = current_commit_id
head_commit_id = current_commit_id
rewrite_progress.update(1)
continue
# this commit has changed, rewrite it!
current_commit.parents = rewritten_parents
if current_commit.tree not in repo:
download_tree(repo, gh_db, current_commit.tree,
fetch_obj_progress)
current_commit.message = b''.join([
current_commit.message.rstrip(),
b"\n\n",
b"unsquashbot_reconstructed\n" * reconstructed,
b"unsquashbot_original_commit=",
current_commit_id,
b"\n",
])
# insert into the mapping with the commit's new id
head_commit_id = current_commit.id
unsquashed_mapping[current_commit_id] = head_commit_id
# write the altered commit into the repo
repo.object_store.add_object(current_commit)
rewrite_progress.update(1)
finally:
close_progress_bars()
if head_commit_id is not None:
print("Updating unsquashed ref")
repo.refs[unsquashed_ref] = head_commit_id
if __name__ == '__main__':
main()