-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepos.py
303 lines (241 loc) · 9.21 KB
/
repos.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
import argparse
import os
import shlex
import shutil
import subprocess
import sys
import xml.etree.ElementTree as etree
class SourceControl:
def __init__(self, name, path, update=None, clean=None, gc=None, url=None, status=None, available=None):
self.name = name
self.path = path
self.update = update
self.clean = clean
self.gc = gc
self.url = url
self.status = status
self.available = available if available is not None else bool(shutil.which(name))
class Project:
def __init__(self, path, scm):
self.path = path
self.scm = scm
def del_prefix(s, prefix):
if s.startswith(prefix):
return s[len(prefix):]
return s
def run(path, cmd, stdout, oneline=False):
if isinstance(cmd, list):
args = cmd
cmd = " ".join([shlex.quote(s) for s in cmd])
else:
args = shlex.split(cmd)
try:
ret = subprocess.run(args, cwd=path, stdout=stdout, universal_newlines=True)
if ret.returncode != 0 or stdout != subprocess.PIPE or ret.stdout is None:
return None
return ret.stdout.split('\n', 1)[0] if oneline else ret.stdout
except Exception as e:
print(f"error running command: {cmd}\n\t{e}", file=sys.stderr)
return None
def cmd_run(path, cmd):
return run(path, cmd, None)
def cmd_get(path, cmd, oneline=False):
return run(path, cmd, subprocess.PIPE, oneline)
def git_update(path):
branch = cmd_get(path, "git symbolic-ref -q HEAD", True)
if not branch:
return
branch = del_prefix(branch, "refs/heads/")
cmd_run(path, f"git fetch --all --prune")
cmd_run(path, f"git merge --ff-only 'origin/{branch}'")
if os.path.exists(os.path.join(path, ".gitmodules")):
cmd_run(path, "git submodule update --recursive")
def svn_clean(path):
# http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/schema/status.rnc?view=markup
svn = cmd_get(path, "svn status --depth empty --xml")
if svn:
try:
root = etree.fromstring(svn)
if root.tag == "status":
if root.findall("./target/entry/wc-status/[@wc-locked='true']"):
cmd_run(path, "svn cleanup --include-externals")
except:
pass
cmd_run(path, "svn cleanup --include-externals --remove-unversioned --remove-ignored")
def svn_url(path):
# http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/schema/info.rnc?view=markup
svn = cmd_get(path, "svn info --xml")
if not svn:
return None
try:
root = etree.fromstring(svn)
if root.tag != "info":
return None
info = root.findall("./entry/url")
return info[0].text if info else None
except:
return None
def cvs_url(path):
try:
with open(os.path.join(path, "CVS/Root")) as f:
return f.readline().split('\n', 1)[0]
except:
return None
def get_scm_commands():
return {
"git" : SourceControl(
"git", ".git",
update=git_update,
clean="git clean -xfd",
gc="git gc",
url="git config remote.origin.url",
status="git status"
),
"svn" : SourceControl(
"svn", ".svn",
update="svn update",
clean=svn_clean,
gc="svn cleanup --include-externals --vacuum-pristines",
url=svn_url,
status="svn status -q"
),
"bzr" : SourceControl(
"bzr", ".bzr",
update="bzr update",
url="bzr config bound_location"
),
"hg" : SourceControl(
"hg", ".hg",
update="hg pull -u",
clean="hg purge --all --config extensions.purge=",
url="hg showconfig paths.default",
status="hg status"
),
"cvs" : SourceControl(
"cvs", "CVS/Root",
update="cvs update",
url=cvs_url
),
}
def get_proj_scm(path, scms):
for scm in scms.values():
if os.path.exists(os.path.join(path, scm.path)):
return scm
return None
def get_dirs(path, scms):
repos = []
projs = []
for e in os.scandir(path):
if e.is_dir():
fullpath = os.path.join(path, e.name)
scm = get_proj_scm(fullpath, scms)
if scm:
projs.append(Project(fullpath, scm))
else:
repos.append(fullpath)
return repos, projs
def apply_cmd(path, scm, cmd, show_proj):
if not scm.available:
return
if callable(cmd):
show_proj(path, scm)
cmd(scm, path)
else:
method = getattr(scm, cmd)
if method:
show_proj(path, scm)
if callable(method):
method(path)
else:
cmd_run(path, method)
def show_proj_default(path, scm):
print(f"{scm.name:<3} {os.path.relpath(path)} ...", flush=True)
def apply(path, scms, cmd, root=True, show_proj=show_proj_default):
if root:
scm = get_proj_scm(path, scms)
if scm:
apply_cmd(path, scm, cmd, show_proj)
return
repos, projs = get_dirs(path, scms)
for proj in projs:
apply_cmd(proj.path, proj.scm, cmd, show_proj)
for repo in repos:
apply(repo, scms, cmd, False, show_proj)
def apply_url(scm, path):
if not scm.url:
return
url = scm.url(path) if callable(scm.url) else cmd_get(path, scm.url, True)
if url:
print(f"{scm.name:<3} {os.path.relpath(path)} {url}", flush=True)
def update(args, scms):
apply(os.getcwd(), scms, "update")
def status(args, scms):
apply(os.getcwd(), scms, "status")
def clean(args, scms):
apply(os.getcwd(), scms, "clean")
def gc(args, scms):
apply(os.getcwd(), scms, "gc")
def urls(args, scms):
apply(os.getcwd(), scms, apply_url, show_proj=lambda *args: None)
def types(args, scms):
for scm in scms.values():
if args.all or scm.available:
print(scm.name)
def get_action(argv):
parser = argparse.ArgumentParser(prog="repos", add_help=True, allow_abbrev=False)
subparser = parser.add_subparsers(title="available commands", dest="command", metavar="command")
desc = "update repositories"
parser_update = subparser.add_parser("update", help=desc, description=desc)
parser_update.set_defaults(call=update)
parser_update.add_argument("-t", "--type", dest="types", action="append", metavar="type", help="repository type")
desc = "retrieve status of each repository"
parser_status = subparser.add_parser("status", help=desc, description=desc)
parser_status.set_defaults(call=status)
parser_status.add_argument("-t", "--type", dest="types", action="append", metavar="type", help="repository type")
desc = "clean repositories"
parser_clean = subparser.add_parser("clean", help=desc, description=desc)
parser_clean.set_defaults(call=clean)
parser_clean.add_argument("-t", "--type", dest="types", action="append", metavar="type", help="repository type")
desc = "garbage collect repositories"
parser_gc = subparser.add_parser("gc", help=desc, description=desc)
parser_gc.set_defaults(call=gc)
parser_gc.add_argument("-t", "--type", dest="types", action="append", metavar="type", help="repository type")
desc = "show URLs for each repository"
parser_urls = subparser.add_parser("urls", help=desc, description=desc)
parser_urls.set_defaults(call=urls)
parser_urls.add_argument("-t", "--type", dest="types", action="append", metavar="type", help="repository type")
desc = "show available source controls"
parser_types = subparser.add_parser("types", help=desc, description=desc)
parser_types.add_argument("-a", "--all", action='store_true', help="show all supported source controls")
parser_types.set_defaults(call=types)
desc = "show this help message and exit"
parser_help = subparser.add_parser("help", help=desc, description=desc)
parser_help.add_argument("topic", nargs='?')
args = parser.parse_args(argv)
if args.command and args.command != "help":
return args
parsers = {
"update" : parser_update,
"status" : parser_status,
"clean" : parser_clean,
"gc" : parser_gc,
"urls" : parser_urls,
"types" : parser_types,
}
if hasattr(args, "topic") and args.topic and args.topic in parsers:
parsers[args.topic].print_help()
else:
parser.print_help()
return None
if __name__ == "__main__":
action = get_action(sys.argv[1:])
if action:
scms = get_scm_commands()
if hasattr(action, "types") and action.types:
for name in action.types:
if name not in scms.keys():
sys.exit(f"unknown type: {name}")
for scm in scms.values():
if scm.name not in action.types:
scm.available = False
action.call(action, scms)