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 |
Etan Cohen | 588142d | 2014-07-09 21:33:31 -0700 | [diff] [blame] | 50 | def IsSplitCurrent(self): |
| 51 | return self.current != 0 and self.current != len(self.projects) |
| 52 | |
| 53 | @property |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 54 | def IsPublished(self): |
| 55 | return self.published > 0 |
| 56 | |
| 57 | @property |
| 58 | def IsPublishedEqual(self): |
| 59 | return self.published_equal == len(self.projects) |
| 60 | |
| 61 | |
| 62 | class Branches(Command): |
| 63 | common = True |
| 64 | helpSummary = "View current topic branches" |
| 65 | helpUsage = """ |
| 66 | %prog [<project>...] |
| 67 | |
| 68 | Summarizes the currently available topic branches. |
Shawn O. Pearce | 7da73d6 | 2009-06-12 17:35:43 -0700 | [diff] [blame] | 69 | |
| 70 | Branch Display |
| 71 | -------------- |
| 72 | |
| 73 | The branch display output by this command is organized into four |
| 74 | columns of information; for example: |
| 75 | |
| 76 | *P nocolor | in repo |
| 77 | repo2 | |
| 78 | |
| 79 | The first column contains a * if the branch is the currently |
| 80 | checked out branch in any of the specified projects, or a blank |
| 81 | if no project has the branch checked out. |
| 82 | |
| 83 | The second column contains either blank, p or P, depending upon |
| 84 | the upload status of the branch. |
| 85 | |
| 86 | (blank): branch not yet published by repo upload |
| 87 | P: all commits were published by repo upload |
| 88 | p: only some commits were published by repo upload |
| 89 | |
| 90 | The third column contains the branch name. |
| 91 | |
| 92 | The fourth column (after the | separator) lists the projects that |
| 93 | the branch appears in, or does not appear in. If no project list |
| 94 | is shown, then the branch appears in all projects. |
| 95 | |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 96 | """ |
| 97 | |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 98 | def Execute(self, opt, args): |
| 99 | projects = self.GetProjects(args) |
| 100 | out = BranchColoring(self.manifest.manifestProject.config) |
David Pursehouse | 5c6eeac | 2012-10-11 16:44:48 +0900 | [diff] [blame] | 101 | all_branches = {} |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 102 | project_cnt = len(projects) |
| 103 | |
| 104 | for project in projects: |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 105 | for name, b in project.GetBranches().items(): |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 106 | b.project = project |
David Pursehouse | 5c6eeac | 2012-10-11 16:44:48 +0900 | [diff] [blame] | 107 | if name not in all_branches: |
| 108 | all_branches[name] = BranchInfo(name) |
| 109 | all_branches[name].add(b) |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 110 | |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 111 | names = list(sorted(all_branches)) |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 112 | |
Shawn O. Pearce | 4e3d673 | 2009-04-18 15:18:35 -0700 | [diff] [blame] | 113 | if not names: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 114 | print(' (no branches)', file=sys.stderr) |
Shawn O. Pearce | 4e3d673 | 2009-04-18 15:18:35 -0700 | [diff] [blame] | 115 | return |
| 116 | |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 117 | width = 25 |
| 118 | for name in names: |
| 119 | if width < len(name): |
| 120 | width = len(name) |
| 121 | |
| 122 | for name in names: |
David Pursehouse | 5c6eeac | 2012-10-11 16:44:48 +0900 | [diff] [blame] | 123 | i = all_branches[name] |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 124 | in_cnt = len(i.projects) |
| 125 | |
| 126 | if i.IsCurrent: |
| 127 | current = '*' |
| 128 | hdr = out.current |
| 129 | else: |
| 130 | current = ' ' |
| 131 | hdr = out.local |
| 132 | |
| 133 | if i.IsPublishedEqual: |
| 134 | published = 'P' |
| 135 | elif i.IsPublished: |
| 136 | published = 'p' |
| 137 | else: |
| 138 | published = ' ' |
| 139 | |
| 140 | hdr('%c%c %-*s' % (current, published, width, name)) |
| 141 | out.write(' |') |
| 142 | |
Pär Åsfält | ff6929d | 2009-09-05 23:10:56 +0200 | [diff] [blame] | 143 | if in_cnt < project_cnt: |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 144 | fmt = out.write |
| 145 | paths = [] |
Etan Cohen | 588142d | 2014-07-09 21:33:31 -0700 | [diff] [blame] | 146 | non_cur_paths = [] |
| 147 | if i.IsSplitCurrent or (in_cnt < project_cnt - in_cnt): |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 148 | in_type = 'in' |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 149 | for b in i.projects: |
Etan Cohen | 588142d | 2014-07-09 21:33:31 -0700 | [diff] [blame] | 150 | if not i.IsSplitCurrent or b.current: |
| 151 | paths.append(b.project.relpath) |
| 152 | else: |
| 153 | non_cur_paths.append(b.project.relpath) |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 154 | else: |
| 155 | fmt = out.notinproject |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 156 | in_type = 'not in' |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 157 | have = set() |
| 158 | for b in i.projects: |
| 159 | have.add(b.project) |
| 160 | for p in projects: |
Pär Åsfält | ff6929d | 2009-09-05 23:10:56 +0200 | [diff] [blame] | 161 | if not p in have: |
| 162 | paths.append(p.relpath) |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 163 | |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 164 | s = ' %s %s' % (in_type, ', '.join(paths)) |
Etan Cohen | 588142d | 2014-07-09 21:33:31 -0700 | [diff] [blame] | 165 | if not i.IsSplitCurrent and (width + 7 + len(s) < 80): |
| 166 | fmt = out.current if i.IsCurrent else fmt |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 167 | fmt(s) |
| 168 | else: |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 169 | fmt(' %s:' % in_type) |
Etan Cohen | 588142d | 2014-07-09 21:33:31 -0700 | [diff] [blame] | 170 | fmt = out.current if i.IsCurrent else out.write |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 171 | for p in paths: |
| 172 | out.nl() |
Pär Åsfält | ff6929d | 2009-09-05 23:10:56 +0200 | [diff] [blame] | 173 | fmt(width*' ' + ' %s' % p) |
Etan Cohen | 588142d | 2014-07-09 21:33:31 -0700 | [diff] [blame] | 174 | fmt = out.write |
| 175 | for p in non_cur_paths: |
| 176 | out.nl() |
| 177 | fmt(width*' ' + ' %s' % p) |
Pär Åsfält | ff6929d | 2009-09-05 23:10:56 +0200 | [diff] [blame] | 178 | else: |
| 179 | out.write(' in all projects') |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 180 | out.nl() |