-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrgit.py
executable file
·597 lines (488 loc) · 19.6 KB
/
rgit.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
#!/usr/bin/env python
# @desc Recursive git. This is simple python script
# to execute git pull/push and fetch recursively
# on multiple repositories
#
# @author Dariusz Ostolski
import sys
import os
import logging
import argparse
import shlex
import subprocess
parser = argparse.ArgumentParser(description="rgit execute git commands recursively")
parser.add_argument('-v', '--verbose', action="store_true", default=False)
parser.add_argument("-d", "--dir",
dest="dirname",
action="store",
help="The directory to scan sub dirs from. The default is current working directory",
default=".")
parser.add_argument("-r", "--remote",
action="store",
dest="remote",
default="",
help="Set the remote name (remotename:branchname)")
subparsers = parser.add_subparsers(title='Action', dest='action',
description='git action to execute: pull, push, fetch, status',
help='git action to execute recursively')
pull_parser = subparsers.add_parser('pull', description='Fetch from and integrate with another repository or a local branch')
pull_parser.add_argument("--all", dest='all', action='store_true', default=False
, help='Fetch all remotes.')
pull_parser.add_argument('-r', '--rebase', dest='rebase', choices=['false', 'true', 'preserve']
, help="""When true, rebase the current branch on top of the upstream branch after fetching.
If there is a remote-tracking branch corresponding to the upstream branch and the upstream branch was rebased since last
fetched, the rebase uses that information to avoid rebasing non-local changes.\n\n
When preserve, also rebase the current branch on top of the upstream branch, but pass --preserve-merges along to git
rebase so that locally created merge commits will not be flattened.\n\n
When false, merge the current branch into the upstream branch.\n\n
See pull.rebase, branch.<name>.rebase and branch.autosetuprebase in git-config(1) if you want to make git pull always
use --rebase instead of merging.\n\n
\tNote
\tThis is a potentially dangerous mode of operation. It rewrites history, which does not bode well when you published that history
\talready. Do not use this option unless you have read git-rebase(1) carefully.""")
subparsers.add_parser('push', description='Update remote refs along with associated objects')
subparsers.add_parser('fetch', description='Download objects and refs from another repository')
status_parser = subparsers.add_parser('status', description='Show the working tree status')
status_parser.add_argument('-s', '--summary', dest='summary', action="store_true"
, default=False
, help='Display summary for each subdirectory')
parser.add_argument("--dry-run",
action="store_true",
dest="dry",
default=False,
help="Don't execute anything actually. Just display executed commands")
"""
http://stackoverflow.com/questions/287871/print-in-terminal-with-colors-using-python
"""
HEADER = '-- Starting rgit...'
class ColorFormatter(object):
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
def __init__(self):
pass
def normal(self, str):
return str
def header(self, str):
return self._format_impl(self.HEADER, str)
def info(self, str):
return self._format_impl(self.OKGREEN, str)
def info_darker(self, str):
return self._format_impl(self.OKBLUE, str)
def warning(self, str):
return self._format_impl(self.WARNING, str)
def fail(self, str):
return self._format_impl(self.FAIL, str)
def _format_impl(self, color, str):
return '{0}{1}{2}'.format(color, str, self.ENDC)
def println(self, str):
sys.stdout.write("{0}\n".format(str))
return self
def print_out(self, str):
sys.stdout.write("{0}".format(str))
return self
def print_header(self, header):
self.println(self.header(header))
return self
class StatusResult(object):
DELETED = 0
DELETED_WORK_TREE = DELETED + 1
UNTRACKED = DELETED_WORK_TREE + 1
RENAMED = UNTRACKED + 1
ADDED = RENAMED + 1
MODIFIED = ADDED + 1
MODIFIED_WORK_TREE = MODIFIED + 1
UNMERGED = MODIFIED_WORK_TREE + 1
def __init__(self):
self._unmerged = []
self._modified = []
self._modified_work_tree = []
self._added = []
self._renamed = []
self._untracked = []
self._deleted = []
self._deleted_work_tree = []
self._branch = None
self._branch_remote = None
self._ahead = 0
self._behind = 0
@property
def unmerged(self):
return self._unmerged
@property
def staged(self):
return len(self._modified) > 0 or len(self._added) > 0 or len(self._renamed) > 0 \
or len(self._deleted) > 0
@property
def not_staged(self):
return len(self._modified_work_tree) > 0 or len(self._deleted_work_tree) > 0
@property
def changes(self):
return self.staged or self.not_staged or len(self._untracked) > 0 or len(self.unmerged) > 0
@property
def modified(self):
return self._modified
@property
def modified_work_tree(self):
return self._modified_work_tree
@property
def renamed(self):
return self._renamed
@property
def new_files(self):
return self._added
@property
def untracked(self):
return self._untracked
@property
def deleted(self):
return self._deleted
@property
def deleted_work_tree(self):
return self._deleted_work_tree
@property
def branch(self):
return self._branch
@branch.setter
def branch(self, branch):
self._branch = branch
@property
def branch_remote(self):
return self._branch_remote
@branch_remote.setter
def branch_remote(self, remote):
self._branch_remote = remote
@property
def ahead(self):
return self._ahead
@ahead.setter
def ahead(self, ahead):
self._ahead = ahead
@property
def behind(self):
return self._behind
@behind.setter
def behind(self, behind):
self._behind = behind
def add(self, kind, value):
if kind == StatusResult.DELETED:
self._deleted.append(value)
elif kind == StatusResult.DELETED_WORK_TREE:
self._deleted_work_tree.append(value)
elif kind == StatusResult.UNTRACKED:
self._untracked.append(value)
elif kind == StatusResult.RENAMED:
self._renamed.append(value)
elif kind == StatusResult.ADDED:
self._added.append(value)
elif kind == StatusResult.MODIFIED:
self._modified.append(value)
elif kind == StatusResult.MODIFIED_WORK_TREE:
self._modified_work_tree.append(value)
elif kind == StatusResult.UNMERGED:
self._unmerged.append(value)
else:
raise RuntimeError('Unkown kind')
class StatusParser(object):
def __init__(self):
pass
def parse(self, output):
result = StatusResult()
lines = output.splitlines()
if lines[0].startswith('##'):
result.branch, result.branch_remote, result.ahead, result.behind = self._parse_branch(lines[0])
lines = lines[1:]
for line in lines:
self._parse_line(line, result)
return result
def _parse_line(self, line, result):
class Unmerged(object):
def __init__(self, name, description):
self.name = name
self.description = description
type = line[:2]
value = line[2:].strip()
if type[0] == 'U' and type[1] == 'U':
result.add(StatusResult.UNMERGED, Unmerged(value, 'both modified'))
elif type[0] == 'A' and type[1] == 'U':
result.add(StatusResult.UNMERGED, Unmerged(value, 'added by us'))
elif type[0] == 'U' and type[1] == 'D':
result.add(StatusResult.UNMERGED, Unmerged(value, 'deleted by them'))
elif type[0] == 'U' and type[1] == 'A':
result.add(StatusResult.UNMERGED, Unmerged(value, 'added by them'))
elif type[0] == 'D' and type[1] == 'U':
result.add(StatusResult.UNMERGED, Unmerged(value, 'deleted by us'))
elif type[0] == 'A' and type[1] == 'A':
result.add(StatusResult.UNMERGED, Unmerged(value, 'both added'))
elif type[0] == 'D' and type[1] == 'D':
result.add(StatusResult.UNMERGED, Unmerged(value, 'both deleted'))
else:
if type[0] == 'D':
result.add(StatusResult.DELETED, value)
if type[1] == 'D':
result.add(StatusResult.DELETED_WORK_TREE, value)
if type == '??':
result.add(StatusResult.UNTRACKED, value)
if type[0] == 'R':
result.add(StatusResult.RENAMED, self._parse_renamed(value))
if type[0] == 'A':
result.add(StatusResult.ADDED, value)
if type[0] == 'M':
result.add(StatusResult.MODIFIED, value)
if type[1] == 'M':
result.add(StatusResult.MODIFIED_WORK_TREE, value)
def _parse_renamed(self, value):
class Path(object):
def __init__(self, from_path, to_path):
self.from_path = from_path
self.to_path = to_path
from_path, to_path = value.split('->')
result = Path(from_path.strip(), to_path.strip())
return result
def _parse_branch(self, line):
branch = None
branch_remote = None
ahead = 0
behind = 0
if line is None or not line.startswith('##'):
return branch, branch_remote, ahead, behind
# skip '## '
line = line.strip()
line = line[2:]
tokens = line.split('[')
branch_str = tokens[0]
if len(tokens) == 2:
ahead, behind = self._parse_ahead_behind(tokens[1])
branch, branch_remote = self._parse_branch_str(branch_str)
return branch, branch_remote, ahead, behind
def _parse_ahead_behind(self, line):
line = line.strip('[]')
lines = line.split(',')
ahead = 0
behind = 0
for line in lines:
line = line.strip()
if line.startswith('ahead'):
ahead = int(line.split()[1])
if line.startswith('behind'):
behind = int(line.split()[1])
return ahead, behind
def _parse_branch_str(self, branch_str):
branch_str = branch_str.strip()
branch = None
remote = None
if branch_str == 'HEAD (no branch)':
branch = 'detached'
else:
branches = branch_str.split('...')
branch = branches[0]
if len(branches) == 2:
remote = branches[1]
return branch, remote
class Action(object):
def __init__(self, action, remote, executor):
self._remote = remote
self._action = action
self._executor = executor
def execute(self, directory, status=None):
return self._executor.get_output(directory, self.get_command())
def get(self):
return "({0})".format(self._action)
def safe(self):
return self._action == 'fetch'
def get_command(self):
return "git {0} {1}".format(self._action, self.get_options()) + ' '.join(self._remote.split(":"))
def get_options(self):
return ''
class PullAction(Action):
def __init__(self, remote, executor, options):
Action.__init__(self, 'pull', remote, executor)
self._options = options
def get_options(self):
options = ''
if self._options.all:
options = '--all '
if self._options.rebase:
options += '--rebase={0} '.format(self._options.rebase)
return options
class StatusAction(Action):
INDENT = ' '
def __init__(self, remote, executor, formatter, summary=False):
"""
:param remote:
:param executor:
:param summary:
"""
Action.__init__(self, 'status', remote, executor)
self._summary = summary
self._parser = StatusParser()
self._formatter = formatter
def execute(self, directory, status=None):
status = self.get_status(directory)
if self._summary:
return ''
return self._format(status, directory)
def _format(self, status, directory):
result = ''
if status.staged:
result += self._format_staged(status, directory)
if status.unmerged:
result += self._format_unmerged(status, directory)
if status.not_staged:
result += self._format_unstaged(status, directory)
if len(status.untracked) > 0:
result += self._format_untracked(status, directory)
return result
def _format_staged(self, status, directory):
result = '{0}Changes to be committed:\n'.format(StatusAction.INDENT)
for modified in status.modified:
result += self._formatter.info(
'{0}modified: {1}\n'.format(StatusAction.INDENT * 2, self.get_path(directory, modified)))
for deleted in status.deleted:
result += self._formatter.info(
'{0}deleted: {1}\n'.format(StatusAction.INDENT * 2, self.get_path(directory, deleted)))
for added in status.new_files:
result += self._formatter.info(
'{0}new file: {1}\n'.format(StatusAction.INDENT * 2, self.get_path(directory, added)))
for renamed in status.renamed:
result += self._formatter.info(
'{0}renamed: {1} -> {2}\n'.format(StatusAction.INDENT * 2, self.get_path(directory, renamed.from_path),
self.get_path(directory, renamed.to_path)))
return result
def _format_unmerged(self, status, directory):
result = '{0}Unmerged paths:\n'.format(StatusAction.INDENT)
for unmerged in status.unmerged:
result += self._formatter.fail(
'{0}{2}: {1}\n'.format(StatusAction.INDENT * 2, self.get_path(directory, unmerged.name),
unmerged.description))
return result
def _format_unstaged(self, status, directory):
result = '{0}Changes not staged for commit:\n'.format(StatusAction.INDENT)
for modified in status.modified_work_tree:
result += self._formatter.fail(
'{0}modified: {1}\n'.format(StatusAction.INDENT * 2, self.get_path(directory, modified)))
for deleted in status.deleted_work_tree:
result += self._formatter.fail(
'{0}deleted: {1}\n'.format(StatusAction.INDENT * 2, self.get_path(directory, deleted)))
return result
def _format_untracked(self, status, directory):
result = '{0}Untracked files:\n'.format(StatusAction.INDENT)
for untracked in status.untracked:
result += self._formatter.fail(
'{0}{1}\n'.format(StatusAction.INDENT * 2, self.get_path(directory, untracked)))
return result
def get_path(self, directory, path):
return os.path.join(directory, path)
def get_status(self, directory):
out = Action.execute(self, directory)
return self._parser.parse(out)
def get_options(self):
return '-sb --porcelain'
def safe(self):
return True
class DryRunExecutor:
def __init__(self):
pass
def get_output(self, directory, command):
logging.warning("Executing: %s in %s", command, directory)
if command.find('git status') != -1:
return """## master...origin/master [ahead 1, behind 2]
D COPYING.llvm
D COPYING.unrar
R COPYING.unrar -> COPYING.unra
?? COPYING.unra
A blabla.file
AM blabla1.file
M COPYING
M COPYING.lzma"""
return ""
class SubprocessExecutor:
def __init__(self):
pass
def get_output(self, directory, command):
logging.debug("Executing: %s in %s", command, directory)
args = shlex.split(command)
git_process = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=directory)
stdout, stderr = git_process.communicate()
return stdout
def get_dir_status(dirname, executor):
return StatusAction('', executor, None).get_status(dirname)
def get_work_tree(status):
work_tree_state = None
if status.ahead > 0 or status.behind > 0:
work_tree_state = ' ['
if status.ahead:
work_tree_state += 'ahead ' + str(status.ahead)
if len(work_tree_state) != 2 and status.behind > 0:
work_tree_state += ', '
if status.behind:
work_tree_state += 'behind ' + str(status.behind)
work_tree_state += ']'
return work_tree_state
def execute(dirname, action, executor, formatter):
status = get_dir_status(dirname, executor)
logging.debug(status)
branch = status.branch
no_changes = (not status.changes)
safe_to_execute_action = (action is not None and (action.safe() or no_changes))
if no_changes:
result = formatter.info("No Changes")
else:
result = formatter.fail("Changes")
work_tree_state = get_work_tree(status)
if work_tree_state is not None:
result += formatter.fail(work_tree_state)
# Execute requested action
if safe_to_execute_action:
command_result = action.execute(dirname, status=status)
result = result + " {0} \n".format(action.get()) + command_result
formatter.print_out("-- " + formatter.info_darker(dirname.ljust(55)) + branch + " : " + result)
def scan(dirname, action, executor, formatter):
full_path = os.path.join(dirname, '.git')
if os.path.exists(full_path) and os.path.isdir(full_path):
logging.info("Found git directory in: %s", dirname)
execute(dirname, action, executor, formatter)
else:
for f in os.listdir(dirname):
full_path = os.path.join(dirname, f)
if os.path.isdir(full_path):
logging.debug("Entering directory: %s", full_path)
scan(full_path, action, executor, formatter)
def main_impl(argv):
options = parser.parse_args(argv)
os.environ['LANGUAGE'] = 'en_US:en'
os.environ['LANG'] = 'en_US.UTF-8'
formatter = ColorFormatter()
verbosity = logging.WARNING
if options.verbose:
verbosity = logging.DEBUG
executor = SubprocessExecutor()
if options.dry:
executor = DryRunExecutor()
action = None
if options.action == 'pull':
action = PullAction(options.remote, executor, options)
if options.action == 'push':
action = Action("push", options.remote, executor)
if options.action == 'fetch':
action = Action("fetch", options.remote, executor)
if options.action == 'status':
action = StatusAction(options.remote, executor, formatter, options.summary)
dirname = options.dirname
logging.basicConfig(format='[%(levelname)s]: %(message)s', level=verbosity)
logging.debug("Options %s", options)
formatter.print_header(HEADER)
formatter.println("Scanning sub directories of {0}".format(dirname))
scan(dirname, action, executor, formatter)
return 0
def main(argv=None):
try:
return main_impl(argv)
except (KeyboardInterrupt, SystemExit):
sys.stdout.write("\n")
return 0
if __name__ == "__main__":
sys.exit(main(sys.argv[1:]))