-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsync.py
More file actions
executable file
·103 lines (82 loc) · 3.39 KB
/
Copy pathsync.py
File metadata and controls
executable file
·103 lines (82 loc) · 3.39 KB
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
#!/usr/bin/env python
#-*- coding: utf-8 -*-
"""
This script sync commits from tensorpack to dataflow.
Dependencies:
gitpython
"""
import os
import sys
import shutil
from datetime import datetime
import git
import argparse
from dataflow.utils import logger
DF_ROOT = os.path.dirname(__file__)
UTILS_TO_SYNC = [
'argtools', 'concurrency', 'compatible_serialize', 'develop',
'fs', '__init__', 'loadcaffe', 'logger', 'serialize', 'stats',
'timer', 'utils']
def match_commit(tp_commit, df_commit):
df_commit_message = df_commit.message.strip().strip('"').strip()
tp_commit_message = tp_commit.message.strip()
if (tp_commit_message == df_commit_message) and \
(tp_commit.authored_date == df_commit.authored_date):
return True
return False
def show_commit(commit):
return commit.repo.git.show('-s', commit.hexsha, '--color=always')
def show_date(timestamp):
return datetime.fromtimestamp(timestamp).strftime("%Y/%M/%d-%H:%m:%S")
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('tensorpack')
args = parser.parse_args()
tp_root = args.tensorpack
tp_repo = git.Repo(tp_root)
assert tp_repo.active_branch.name == 'master'
if tp_repo.is_dirty():
print("Warning: tensorpack repo is not clean!")
df_repo = git.Repo(DF_ROOT)
assert not df_repo.is_dirty()
df_commits = df_repo.iter_commits(paths='dataflow')
df_latest_commit = next(df_commits)
logger.info("DataFlow commit to match: \n" + show_commit(df_latest_commit))
unsynced_commits = []
paths_to_sync = ['tensorpack/dataflow'] + ['tensorpack/utils/{}.py'.format(u) for u in UTILS_TO_SYNC]
for cmt in tp_repo.iter_commits(paths=paths_to_sync):
if match_commit(cmt, df_latest_commit):
logger.info("Matched tensorpack commit: \n" + show_commit(cmt))
break
unsynced_commits.append(cmt)
else:
logger.error("Cannot find tensorpack commit that matches the above commit.")
sys.exit(1)
logger.info("{} more commits to sync".format(len(unsynced_commits)))
unsynced_commits = unsynced_commits[::-1]
try:
for commit_to_sync in unsynced_commits:
tp_repo.git.checkout(commit_to_sync.hexsha)
logger.info("-" * 60)
logger.info("Syncing commit '{}' at {}".format(
commit_to_sync.message.strip(), show_date(commit_to_sync.authored_date)))
# sync files
dst = os.path.join(DF_ROOT, 'dataflow', 'dataflow')
logger.info("Syncing {} ...".format(dst))
shutil.rmtree(dst)
shutil.copytree(os.path.join(tp_root, 'tensorpack', 'dataflow'), dst)
logger.info("Syncing utils ...")
for util in UTILS_TO_SYNC:
dst = os.path.join(DF_ROOT, 'dataflow', 'utils', util + '.py')
src = os.path.join(tp_root, 'tensorpack', 'utils', util + '.py')
os.unlink(dst)
shutil.copy2(src, dst)
author = "\"{} <{}>\"".format(commit_to_sync.author.name, commit_to_sync.author.email)
log = df_repo.git.commit(
'--all',
message='{}'.format(commit_to_sync.message.strip()),
date=commit_to_sync.authored_date,
author=author)
logger.info("Successfully sync commit:\n" + log)
finally:
tp_repo.git.checkout('master')