def _print_row(self, row): for line in xrange(row.lines): console(self.border_vertical) for cell, width in zip(row, self._widths): console(colored(u' ' * self.left_padding + cell.pad(cell.line(line), width) + u' ' * self.right_padding, cell.color, cell.background, attrs=cell.attrs)) console(self.border_vertical) console(u'\n')
def _print_row(self, row): for line in xrange(row.lines): console(self.border_vertical) for cell, width in zip(row, self._widths): console( colored(u' ' * self.left_padding + cell.pad(cell.line(line), width) + u' ' * self.right_padding, cell.color, cell.background, attrs=cell.attrs)) console(self.border_vertical) console(u'\n')
def _print_row(self, row): bits = [] console(u"|") for column, cell, width in zip(self.headers, row, self._widths): console( colored( u" " * self.left_padding + cell.value.ljust(width) + u" " * self.right_padding, cell.color, cell.background, attrs=cell.attrs, ) ) console(u"|") console(u"\n")
def get_status(): repo = Repository() console(colored('# Working Tree: ', 'magenta')) console(colored(repo.branch(), 'cyan')) console(u'\n') uncommitted, changed, untracked, stashed = repo.status() if uncommitted or changed or untracked or stashed: table = AsciiTable(['', ''], 2, 0, False, border_characters=[u'', u'', u'']) if uncommitted: table.add_row([ AsciiCell('Uncommitted', 'green'), AsciiCell(str(len(uncommitted)), align='right'), ]) if changed: table.add_row([ AsciiCell('Changed', 'red'), AsciiCell(str(len(changed)), align='right'), ]) if untracked: table.add_row([ AsciiCell('Untracked', 'yellow'), AsciiCell(str(len(untracked)), align='right'), ]) if stashed: table.add_row([ AsciiCell('Stashed', 'cyan'), AsciiCell(str(len(stashed)), align='right'), ]) table.render() console('\n') handler.uncapture_stdout() handler.capture_stdout() if repo.configs.get('gitgoggles.fetch', 'true') != 'false': repo.fetch() refs = repo.branches(LocalBranch, TrackingBranch, PublishedBranch) tags = repo.tags() BRANCH_WIDTH = repo.configs.get('gitgoggles.table.branch-width') LEFT_PADDING = repo.configs.get('gitgoggles.table.left-padding', 0) RIGHT_PADDING = repo.configs.get('gitgoggles.table.right-padding', 0) HORIZONTAL_RULE = repo.configs.get('gitgoggles.table.horizontal-rule', 'false') != 'false' TERMINAL_ROWS, TERMINAL_COLUMNS = terminal_dimensions() table = AsciiTable([ AsciiCell('Status'), AsciiCell('Branch', width=BRANCH_WIDTH, resizable=True), AsciiCell('Review', align='right'), AsciiCell('Ahead', align='right'), AsciiCell('Behind', align='right'), AsciiCell('Pull'), AsciiCell('Push'), AsciiCell('Mod', align='right'), ], LEFT_PADDING, RIGHT_PADDING, HORIZONTAL_RULE, TERMINAL_COLUMNS) if repo.configs.get('gitgoggles.colors', 'true') == 'false': colored.disabled = True icons = { 'unknown': repo.configs.get('gitgoggles.icons.unknown', u'\u203D'), 'success': repo.configs.get('gitgoggles.icons.success', u'\u2714'), 'failure': repo.configs.get('gitgoggles.icons.failure', u'\u2718'), } colors = { 'local': repo.configs.get('gitgoggles.colors.local', 'cyan'), 'new': repo.configs.get('gitgoggles.colors.new', 'red'), 'review': repo.configs.get('gitgoggles.colors.review', 'red'), 'merge': repo.configs.get('gitgoggles.colors.merge', 'yellow'), 'done': repo.configs.get('gitgoggles.colors.done', 'green'), } for ref in refs: if repo.configs.get('gitgoggles.ignore.%s' % ref.shortname, 'false') == 'true': continue codereview_tag = "%s%s" % (TAG_PREFIX, ref.shortname) color = 'red' status = u'?' review_commits = 0 ahead_commits = ref.ahead behind_commits = ref.behind pull = ref.pull push = ref.push if ref.__class__ in (TrackingBranch, LocalBranch, TrackedBranch): if codereview_tag not in [ x.name for x in tags ]: review_commits = len(repo.shell('git', 'log', '--no-merges', '--pretty=format:%H', '%s..%s' % (ref.merge_refspec or '', ref.refspec)).split) else: review_commits = len(repo.shell('git', 'log', '--no-merges', '--pretty=format:%H', '%s..%s' % (codereview_tag, ref.refspec)).split) else: review_commits = None if ref.__class__ == LocalBranch: color, status = colors['local'], u'local' elif codereview_tag not in [ x.name for x in tags ]: color, status = colors['new'], u'new' else: if review_commits: color, status = colors['review'], u'review' else: if ahead_commits: color, status = colors['merge'], u'merge' else: color, status = colors['done'], u'done' review = bool(review_commits) or None ahead = bool(ahead_commits) or None behind = bool(behind_commits) or None tracked = ref.__class__ in (TrackingBranch, LocalBranch, TrackedBranch) review_text, review_color = review_commits is not None and (u'%s ahead' % review_commits, review and color) or (icons['unknown'], 'yellow',) ahead_text, ahead_color = ahead_commits is not None and (u'%s ahead' % ahead_commits, ahead and color) or (icons['unknown'], 'yellow',) behind_text, behind_color = behind_commits is not None and (u'%s behind' % behind_commits, behind and color) or (icons['unknown'], 'yellow',) pull_text, pull_color = not tracked and (icons['unknown'], 'yellow',) or (pull and (icons['failure'], 'red',) or (icons['success'], 'green',)) push_text, push_color = not tracked and (icons['unknown'], 'yellow',) or (push and (icons['failure'], 'red',) or (icons['success'], 'green',)) delta = datetime.date.today() - ref.modified.date() if delta <= datetime.timedelta(days=1): modified_color = 'cyan' elif delta <= datetime.timedelta(days=7): modified_color = 'green' elif delta < datetime.timedelta(days=31): modified_color = 'yellow' else: modified_color = 'red' table.add_row([ AsciiCell(status.upper(), color), AsciiCell(ref.name, width=BRANCH_WIDTH, resizable=True), AsciiCell(review_text, review_color, reverse=review, align='right'), AsciiCell(ahead_text, ahead_color, reverse=ahead, align='right'), AsciiCell(behind_text, behind_color, reverse=behind, align='right'), AsciiCell(pull_text, pull_color, align='center'), AsciiCell(push_text, push_color, align='center'), AsciiCell(ref.timedelta, modified_color, align='right'), ]) table.render()
def get_status(): repo = Repository() console(colored('# Working Tree: ', 'magenta')) console(colored(repo.branch(), 'cyan')) console(u'\n') uncommitted, changed, untracked, stashed = repo.status() if uncommitted or changed or untracked or stashed: table = AsciiTable(['', ''], 2, 0, False, border_characters=[u'', u'', u'']) if uncommitted: table.add_row([ AsciiCell('Uncommitted', 'green'), AsciiCell(str(len(uncommitted)), align='right'), ]) if changed: table.add_row([ AsciiCell('Changed', 'red'), AsciiCell(str(len(changed)), align='right'), ]) if untracked: table.add_row([ AsciiCell('Untracked', 'yellow'), AsciiCell(str(len(untracked)), align='right'), ]) if stashed: table.add_row([ AsciiCell('Stashed', 'cyan'), AsciiCell(str(len(stashed)), align='right'), ]) table.render() console('\n') handler.uncapture_stdout() handler.capture_stdout() if repo.configs.get('gitgoggles.fetch', 'true') != 'false': repo.fetch() git_refs = repo.branches(LocalBranch, TrackedBranch, TrackingBranch, PublishedBranch) tags = repo.tags() BRANCH_WIDTH = repo.configs.get('gitgoggles.table.branch-width') LEFT_PADDING = repo.configs.get('gitgoggles.table.left-padding', 0) RIGHT_PADDING = repo.configs.get('gitgoggles.table.right-padding', 0) HORIZONTAL_RULE = repo.configs.get('gitgoggles.table.horizontal-rule', 'false') != 'false' TERMINAL_ROWS, TERMINAL_COLUMNS = terminal_dimensions() table = AsciiTable([ AsciiCell('Branch', width=BRANCH_WIDTH, resizable=True), AsciiCell('Ahead', align='right'), AsciiCell('Behind', align='right'), AsciiCell('Pull'), AsciiCell('Push'), AsciiCell('Mod', align='right'), ], LEFT_PADDING, RIGHT_PADDING, HORIZONTAL_RULE, TERMINAL_COLUMNS) if repo.configs.get('gitgoggles.colors', 'true') == 'false': colored.disabled = True icons = { 'unknown': repo.configs.get('gitgoggles.icons.unknown', u'\u203D'), 'success': repo.configs.get('gitgoggles.icons.success', u'\u2714'), 'failure': repo.configs.get('gitgoggles.icons.failure', u'\u2718'), } colors = { 'local': repo.configs.get('gitgoggles.colors.local', 'cyan'), 'new': repo.configs.get('gitgoggles.colors.new', 'red'), 'review': repo.configs.get('gitgoggles.colors.review', 'red'), 'merge': repo.configs.get('gitgoggles.colors.merge', 'yellow'), 'done': repo.configs.get('gitgoggles.colors.done', 'green'), } key_func = lambda x: x.shortname git_refs = sorted(git_refs, key=key_func) groups = [[x, list(y)] for x, y in itertools.groupby(git_refs, key_func)] if repo.configs.get('gitgoggles.sorted', 'age') == 'age': groups = reversed( sorted(groups, key=lambda refs: min([x.modified.date() for x in refs[1]]))) else: groups = sorted(groups, key=lambda refs: refs[0]) for name, git_refs in groups: for ref in git_refs: if repo.configs.get('gitgoggles.ignore.%s' % ref.shortname, 'false') == 'true': continue color = 'red' ahead_commits = ref.ahead behind_commits = ref.behind pull = ref.pull push = ref.push if ref.__class__ == LocalBranch: color = colors['local'] else: if ahead_commits: color = colors['merge'] else: color = colors['done'] ahead = bool(ahead_commits) or None behind = bool(behind_commits) or None tracked = ref.__class__ in (TrackingBranch, LocalBranch, TrackedBranch) ahead_text, ahead_color = ahead_commits is not None and ( u'%s ahead' % ahead_commits, ahead and color) or ( icons['unknown'], 'yellow', ) behind_text, behind_color = behind_commits is not None and ( u'%s behind' % behind_commits, behind and color) or ( icons['unknown'], 'yellow', ) pull_text, pull_color = not tracked and ( icons['unknown'], 'yellow', ) or (pull and ( icons['failure'], 'red', ) or ( icons['success'], 'green', )) push_text, push_color = not tracked and ( icons['unknown'], 'yellow', ) or (push and ( icons['failure'], 'red', ) or ( icons['success'], 'green', )) delta = datetime.date.today() - ref.modified.date() if delta <= datetime.timedelta(days=1): modified_color = 'cyan' elif delta <= datetime.timedelta(days=7): modified_color = 'green' elif delta < datetime.timedelta(days=31): modified_color = 'yellow' else: modified_color = 'red' ahead_color = behind_color = modified_color table.add_row([ AsciiCell(ref.name, width=BRANCH_WIDTH, resizable=True), AsciiCell(ahead_text, ahead_color, reverse=ahead, align='right'), AsciiCell(behind_text, behind_color, reverse=behind, align='right'), AsciiCell(pull_text, pull_color, align='center'), AsciiCell(push_text, push_color, align='center'), AsciiCell(ref.timedelta, modified_color, align='right'), ]) table.render()
def get_status(): repo = Repository() console(colored('# Working Tree: ', 'magenta')) console(colored(repo.branch(), 'cyan')) console(u'\n') uncommitted, changed, untracked, stashed = repo.status() if uncommitted or changed or untracked or stashed: table = AsciiTable(['', ''], 2, 0, False, border_characters=[u'', u'', u'']) if uncommitted: table.add_row([ AsciiCell('Uncommitted', 'green'), AsciiCell(str(len(uncommitted)), align='right'), ]) if changed: table.add_row([ AsciiCell('Changed', 'red'), AsciiCell(str(len(changed)), align='right'), ]) if untracked: table.add_row([ AsciiCell('Untracked', 'yellow'), AsciiCell(str(len(untracked)), align='right'), ]) if stashed: table.add_row([ AsciiCell('Stashed', 'cyan'), AsciiCell(str(len(stashed)), align='right'), ]) table.render() console('\n') handler.uncapture_stdout() handler.capture_stdout() if repo.configs.get('gitgoggles.fetch', 'true') != 'false': repo.fetch() refs = repo.branches(LocalBranch, TrackingBranch, PublishedBranch) tags = repo.tags() BRANCH_WIDTH = repo.configs.get('gitgoggles.table.branch-width') LEFT_PADDING = repo.configs.get('gitgoggles.table.left-padding', 0) RIGHT_PADDING = repo.configs.get('gitgoggles.table.right-padding', 0) HORIZONTAL_RULE = repo.configs.get('gitgoggles.table.horizontal-rule', 'false') != 'false' TERMINAL_ROWS, TERMINAL_COLUMNS = terminal_dimensions() table = AsciiTable([ AsciiCell('Status'), AsciiCell('Branch', width=BRANCH_WIDTH, resizable=True), AsciiCell('Review', align='right'), AsciiCell('Ahead', align='right'), AsciiCell('Behind', align='right'), AsciiCell('Pull'), AsciiCell('Push'), AsciiCell('Mod', align='right'), ], LEFT_PADDING, RIGHT_PADDING, HORIZONTAL_RULE, TERMINAL_COLUMNS) if repo.configs.get('gitgoggles.colors', 'true') == 'false': colored.disabled = True icons = { 'unknown': repo.configs.get('gitgoggles.icons.unknown', u'\u203D'), 'success': repo.configs.get('gitgoggles.icons.success', u'\u2714'), 'failure': repo.configs.get('gitgoggles.icons.failure', u'\u2718'), } colors = { 'local': repo.configs.get('gitgoggles.colors.local', 'cyan'), 'new': repo.configs.get('gitgoggles.colors.new', 'red'), 'review': repo.configs.get('gitgoggles.colors.review', 'red'), 'merge': repo.configs.get('gitgoggles.colors.merge', 'yellow'), 'done': repo.configs.get('gitgoggles.colors.done', 'green'), } for ref in refs: if repo.configs.get('gitgoggles.ignore.%s' % ref.shortname, 'false') == 'true': continue codereview_tag = "%s%s" % (TAG_PREFIX, ref.shortname) color = 'red' status = u'?' review_commits = 0 ahead_commits = ref.ahead behind_commits = ref.behind pull = ref.pull push = ref.push if ref.__class__ in (TrackingBranch, LocalBranch, TrackedBranch): if codereview_tag not in [x.name for x in tags]: review_commits = len( repo.shell( 'git', 'log', '--no-merges', '--pretty=format:%H', '%s..%s' % (ref.merge_refspec or '', ref.refspec)).split) else: review_commits = len( repo.shell('git', 'log', '--no-merges', '--pretty=format:%H', '%s..%s' % (codereview_tag, ref.refspec)).split) else: review_commits = None if ref.__class__ == LocalBranch: color, status = colors['local'], u'local' elif codereview_tag not in [x.name for x in tags]: color, status = colors['new'], u'new' else: if review_commits: color, status = colors['review'], u'review' else: if ahead_commits: color, status = colors['merge'], u'merge' else: color, status = colors['done'], u'done' review = bool(review_commits) or None ahead = bool(ahead_commits) or None behind = bool(behind_commits) or None tracked = ref.__class__ in (TrackingBranch, LocalBranch, TrackedBranch) review_text, review_color = review_commits is not None and ( u'%s ahead' % review_commits, review and color) or ( icons['unknown'], 'yellow', ) ahead_text, ahead_color = ahead_commits is not None and ( u'%s ahead' % ahead_commits, ahead and color) or ( icons['unknown'], 'yellow', ) behind_text, behind_color = behind_commits is not None and ( u'%s behind' % behind_commits, behind and color) or ( icons['unknown'], 'yellow', ) pull_text, pull_color = not tracked and ( icons['unknown'], 'yellow', ) or (pull and ( icons['failure'], 'red', ) or ( icons['success'], 'green', )) push_text, push_color = not tracked and ( icons['unknown'], 'yellow', ) or (push and ( icons['failure'], 'red', ) or ( icons['success'], 'green', )) delta = datetime.date.today() - ref.modified.date() if delta <= datetime.timedelta(days=1): modified_color = 'cyan' elif delta <= datetime.timedelta(days=7): modified_color = 'green' elif delta < datetime.timedelta(days=31): modified_color = 'yellow' else: modified_color = 'red' table.add_row([ AsciiCell(status.upper(), color), AsciiCell(ref.name, width=BRANCH_WIDTH, resizable=True), AsciiCell(review_text, review_color, reverse=review, align='right'), AsciiCell(ahead_text, ahead_color, reverse=ahead, align='right'), AsciiCell(behind_text, behind_color, reverse=behind, align='right'), AsciiCell(pull_text, pull_color, align='center'), AsciiCell(push_text, push_color, align='center'), AsciiCell(ref.timedelta, modified_color, align='right'), ]) table.render()
def get_status(): repo = Repository() console(colored('# Working Tree: ', 'magenta')) console(colored(repo.branch(), 'cyan')) console(u'\n') uncommitted, changed, untracked, stashed = repo.status() if uncommitted or changed or untracked or stashed: table = AsciiTable(['', ''], 2, 0, False, border_characters=[u'', u'', u'']) if uncommitted: table.add_row([ AsciiCell('Uncommitted', 'green'), AsciiCell(str(len(uncommitted)), align='right'), ]) if changed: table.add_row([ AsciiCell('Changed', 'red'), AsciiCell(str(len(changed)), align='right'), ]) if untracked: table.add_row([ AsciiCell('Untracked', 'yellow'), AsciiCell(str(len(untracked)), align='right'), ]) if stashed: table.add_row([ AsciiCell('Stashed', 'cyan'), AsciiCell(str(len(stashed)), align='right'), ]) table.render() console('\n') handler.uncapture_stdout() handler.capture_stdout() if repo.configs.get('gitgoggles.fetch', 'true') != 'false': repo.fetch() git_refs = repo.branches(LocalBranch, TrackedBranch, TrackingBranch, PublishedBranch) tags = repo.tags() BRANCH_WIDTH = repo.configs.get('gitgoggles.table.branch-width') LEFT_PADDING = repo.configs.get('gitgoggles.table.left-padding', 0) RIGHT_PADDING = repo.configs.get('gitgoggles.table.right-padding', 0) HORIZONTAL_RULE = repo.configs.get('gitgoggles.table.horizontal-rule', 'false') != 'false' TERMINAL_ROWS, TERMINAL_COLUMNS = terminal_dimensions() table = AsciiTable([ AsciiCell('Branch', width=BRANCH_WIDTH, resizable=True), AsciiCell('Ahead', align='right'), AsciiCell('Behind', align='right'), AsciiCell('Pull'), AsciiCell('Push'), AsciiCell('Mod', align='right'), ], LEFT_PADDING, RIGHT_PADDING, HORIZONTAL_RULE, TERMINAL_COLUMNS) if repo.configs.get('gitgoggles.colors', 'true') == 'false': colored.disabled = True icons = { 'unknown': repo.configs.get('gitgoggles.icons.unknown', u'\u203D'), 'success': repo.configs.get('gitgoggles.icons.success', u'\u2714'), 'failure': repo.configs.get('gitgoggles.icons.failure', u'\u2718'), } colors = { 'local': repo.configs.get('gitgoggles.colors.local', 'cyan'), 'new': repo.configs.get('gitgoggles.colors.new', 'red'), 'review': repo.configs.get('gitgoggles.colors.review', 'red'), 'merge': repo.configs.get('gitgoggles.colors.merge', 'yellow'), 'done': repo.configs.get('gitgoggles.colors.done', 'green'), } key_func = lambda x: x.shortname git_refs = sorted(git_refs, key=key_func) groups = [ [x, list(y)] for x, y in itertools.groupby(git_refs, key_func) ] if repo.configs.get('gitgoggles.sorted', 'age') == 'age': groups = reversed(sorted(groups, key=lambda refs: min([ x.modified.date() for x in refs[1] ]))) else: groups = sorted(groups, key=lambda refs: refs[0]) for name, git_refs in groups: for ref in git_refs: if repo.configs.get('gitgoggles.ignore.%s' % ref.shortname, 'false') == 'true': continue color = 'red' ahead_commits = ref.ahead behind_commits = ref.behind pull = ref.pull push = ref.push if ref.__class__ == LocalBranch: color = colors['local'] else: if ahead_commits: color = colors['merge'] else: color = colors['done'] ahead = bool(ahead_commits) or None behind = bool(behind_commits) or None tracked = ref.__class__ in (TrackingBranch, LocalBranch, TrackedBranch) ahead_text, ahead_color = ahead_commits is not None and (u'%s ahead' % ahead_commits, ahead and color) or (icons['unknown'], 'yellow',) behind_text, behind_color = behind_commits is not None and (u'%s behind' % behind_commits, behind and color) or (icons['unknown'], 'yellow',) pull_text, pull_color = not tracked and (icons['unknown'], 'yellow',) or (pull and (icons['failure'], 'red',) or (icons['success'], 'green',)) push_text, push_color = not tracked and (icons['unknown'], 'yellow',) or (push and (icons['failure'], 'red',) or (icons['success'], 'green',)) delta = datetime.date.today() - ref.modified.date() if delta <= datetime.timedelta(days=1): modified_color = 'cyan' elif delta <= datetime.timedelta(days=7): modified_color = 'green' elif delta < datetime.timedelta(days=31): modified_color = 'yellow' else: modified_color = 'red' ahead_color = behind_color = modified_color table.add_row([ AsciiCell(ref.name, width=BRANCH_WIDTH, resizable=True), AsciiCell(ahead_text, ahead_color, reverse=ahead, align='right'), AsciiCell(behind_text, behind_color, reverse=behind, align='right'), AsciiCell(pull_text, pull_color, align='center'), AsciiCell(push_text, push_color, align='center'), AsciiCell(ref.timedelta, modified_color, align='right'), ]) table.render()