Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2009 The Android Open Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 16 | from __future__ import print_function |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 17 | import sys |
| 18 | from color import Coloring |
| 19 | from command import Command |
| 20 | |
| 21 | class BranchColoring(Coloring): |
| 22 | def __init__(self, config): |
| 23 | Coloring.__init__(self, config, 'branch') |
| 24 | self.current = self.printer('current', fg='green') |
| 25 | self.local = self.printer('local') |
| 26 | self.notinproject = self.printer('notinproject', fg='red') |
| 27 | |
| 28 | class BranchInfo(object): |
| 29 | def __init__(self, name): |
| 30 | self.name = name |
| 31 | self.current = 0 |
| 32 | self.published = 0 |
| 33 | self.published_equal = 0 |
| 34 | self.projects = [] |
| 35 | |
| 36 | def add(self, b): |
| 37 | if b.current: |
| 38 | self.current += 1 |
| 39 | if b.published: |
| 40 | self.published += 1 |
| 41 | if b.revision == b.published: |
| 42 | self.published_equal += 1 |
| 43 | self.projects.append(b) |
| 44 | |
| 45 | @property |
| 46 | def IsCurrent(self): |
| 47 | return self.current > 0 |
| 48 | |
| 49 | @property |
| 50 | def IsPublished(self): |
| 51 | return self.published > 0 |
| 52 | |
| 53 | @property |
| 54 | def IsPublishedEqual(self): |
| 55 | return self.published_equal == len(self.projects) |
| 56 | |
| 57 | |
| 58 | class Branches(Command): |
| 59 | common = True |
| 60 | helpSummary = "View current topic branches" |
| 61 | helpUsage = """ |
| 62 | %prog [<project>...] |
| 63 | |
| 64 | Summarizes the currently available topic branches. |
Shawn O. Pearce | 7da73d6 | 2009-06-12 17:35:43 -0700 | [diff] [blame] | 65 | |
| 66 | Branch Display |
| 67 | -------------- |
| 68 | |
| 69 | The branch display output by this command is organized into four |
| 70 | columns of information; for example: |
| 71 | |
| 72 | *P nocolor | in repo |
| 73 | repo2 | |
| 74 | |
| 75 | The first column contains a * if the branch is the currently |
| 76 | checked out branch in any of the specified projects, or a blank |
| 77 | if no project has the branch checked out. |
| 78 | |
| 79 | The second column contains either blank, p or P, depending upon |
| 80 | the upload status of the branch. |
| 81 | |
| 82 | (blank): branch not yet published by repo upload |
| 83 | P: all commits were published by repo upload |
| 84 | p: only some commits were published by repo upload |
| 85 | |
| 86 | The third column contains the branch name. |
| 87 | |
| 88 | The fourth column (after the | separator) lists the projects that |
| 89 | the branch appears in, or does not appear in. If no project list |
| 90 | is shown, then the branch appears in all projects. |
| 91 | |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 92 | """ |
| 93 | |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 94 | def Execute(self, opt, args): |
| 95 | projects = self.GetProjects(args) |
| 96 | out = BranchColoring(self.manifest.manifestProject.config) |
David Pursehouse | 5c6eeac | 2012-10-11 16:44:48 +0900 | [diff] [blame] | 97 | all_branches = {} |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 98 | project_cnt = len(projects) |
| 99 | |
| 100 | for project in projects: |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 101 | for name, b in project.GetBranches().items(): |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 102 | b.project = project |
David Pursehouse | 5c6eeac | 2012-10-11 16:44:48 +0900 | [diff] [blame] | 103 | if name not in all_branches: |
| 104 | all_branches[name] = BranchInfo(name) |
| 105 | all_branches[name].add(b) |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 106 | |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 107 | names = list(sorted(all_branches)) |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 108 | |
Shawn O. Pearce | 4e3d673 | 2009-04-18 15:18:35 -0700 | [diff] [blame] | 109 | if not names: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 110 | print(' (no branches)', file=sys.stderr) |
Shawn O. Pearce | 4e3d673 | 2009-04-18 15:18:35 -0700 | [diff] [blame] | 111 | return |
| 112 | |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 113 | width = 25 |
| 114 | for name in names: |
| 115 | if width < len(name): |
| 116 | width = len(name) |
| 117 | |
| 118 | for name in names: |
David Pursehouse | 5c6eeac | 2012-10-11 16:44:48 +0900 | [diff] [blame] | 119 | i = all_branches[name] |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 120 | in_cnt = len(i.projects) |
| 121 | |
| 122 | if i.IsCurrent: |
| 123 | current = '*' |
| 124 | hdr = out.current |
| 125 | else: |
| 126 | current = ' ' |
| 127 | hdr = out.local |
| 128 | |
| 129 | if i.IsPublishedEqual: |
| 130 | published = 'P' |
| 131 | elif i.IsPublished: |
| 132 | published = 'p' |
| 133 | else: |
| 134 | published = ' ' |
| 135 | |
| 136 | hdr('%c%c %-*s' % (current, published, width, name)) |
| 137 | out.write(' |') |
| 138 | |
Pär Åsfält | ff6929d | 2009-09-05 23:10:56 +0200 | [diff] [blame] | 139 | if in_cnt < project_cnt: |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 140 | fmt = out.write |
| 141 | paths = [] |
| 142 | if in_cnt < project_cnt - in_cnt: |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 143 | in_type = 'in' |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 144 | for b in i.projects: |
| 145 | paths.append(b.project.relpath) |
| 146 | else: |
| 147 | fmt = out.notinproject |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 148 | in_type = 'not in' |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 149 | have = set() |
| 150 | for b in i.projects: |
| 151 | have.add(b.project) |
| 152 | for p in projects: |
Pär Åsfält | ff6929d | 2009-09-05 23:10:56 +0200 | [diff] [blame] | 153 | if not p in have: |
| 154 | paths.append(p.relpath) |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 155 | |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 156 | s = ' %s %s' % (in_type, ', '.join(paths)) |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 157 | if width + 7 + len(s) < 80: |
| 158 | fmt(s) |
| 159 | else: |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 160 | fmt(' %s:' % in_type) |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 161 | for p in paths: |
| 162 | out.nl() |
Pär Åsfält | ff6929d | 2009-09-05 23:10:56 +0200 | [diff] [blame] | 163 | fmt(width*' ' + ' %s' % p) |
| 164 | else: |
| 165 | out.write(' in all projects') |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 166 | out.nl() |