The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2008 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 | |
| 16 | from command import PagedCommand |
| 17 | |
Terence Haddock | 4655e81 | 2011-03-31 12:33:34 +0200 | [diff] [blame] | 18 | try: |
| 19 | import threading as _threading |
| 20 | except ImportError: |
| 21 | import dummy_threading as _threading |
| 22 | |
Will Richey | 63d356f | 2012-06-21 09:49:59 -0400 | [diff] [blame] | 23 | import glob |
David Pursehouse | 59bbb58 | 2013-05-17 10:49:33 +0900 | [diff] [blame] | 24 | |
Terence Haddock | 4655e81 | 2011-03-31 12:33:34 +0200 | [diff] [blame] | 25 | import itertools |
Will Richey | 63d356f | 2012-06-21 09:49:59 -0400 | [diff] [blame] | 26 | import os |
Terence Haddock | 4655e81 | 2011-03-31 12:33:34 +0200 | [diff] [blame] | 27 | |
Will Richey | 63d356f | 2012-06-21 09:49:59 -0400 | [diff] [blame] | 28 | from color import Coloring |
| 29 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 30 | class Status(PagedCommand): |
| 31 | common = True |
| 32 | helpSummary = "Show the working tree status" |
| 33 | helpUsage = """ |
| 34 | %prog [<project>...] |
| 35 | """ |
Shawn O. Pearce | 4c5c7aa | 2009-04-13 14:06:10 -0700 | [diff] [blame] | 36 | helpDescription = """ |
| 37 | '%prog' compares the working tree to the staging area (aka index), |
| 38 | and the most recent commit on this branch (HEAD), in each project |
| 39 | specified. A summary is displayed, one line per file where there |
| 40 | is a difference between these three states. |
| 41 | |
Terence Haddock | 4655e81 | 2011-03-31 12:33:34 +0200 | [diff] [blame] | 42 | The -j/--jobs option can be used to run multiple status queries |
| 43 | in parallel. |
| 44 | |
Will Richey | 63d356f | 2012-06-21 09:49:59 -0400 | [diff] [blame] | 45 | The -o/--orphans option can be used to show objects that are in |
| 46 | the working directory, but not associated with a repo project. |
| 47 | This includes unmanaged top-level files and directories, but also |
| 48 | includes deeper items. For example, if dir/subdir/proj1 and |
| 49 | dir/subdir/proj2 are repo projects, dir/subdir/proj3 will be shown |
| 50 | if it is not known to repo. |
| 51 | |
Shawn O. Pearce | 4c5c7aa | 2009-04-13 14:06:10 -0700 | [diff] [blame] | 52 | Status Display |
| 53 | -------------- |
| 54 | |
| 55 | The status display is organized into three columns of information, |
| 56 | for example if the file 'subcmds/status.py' is modified in the |
| 57 | project 'repo' on branch 'devwork': |
| 58 | |
| 59 | project repo/ branch devwork |
| 60 | -m subcmds/status.py |
| 61 | |
| 62 | The first column explains how the staging area (index) differs from |
| 63 | the last commit (HEAD). Its values are always displayed in upper |
| 64 | case and have the following meanings: |
| 65 | |
| 66 | -: no difference |
| 67 | A: added (not in HEAD, in index ) |
| 68 | M: modified ( in HEAD, in index, different content ) |
| 69 | D: deleted ( in HEAD, not in index ) |
| 70 | R: renamed (not in HEAD, in index, path changed ) |
| 71 | C: copied (not in HEAD, in index, copied from another) |
| 72 | T: mode changed ( in HEAD, in index, same content ) |
| 73 | U: unmerged; conflict resolution required |
| 74 | |
| 75 | The second column explains how the working directory differs from |
| 76 | the index. Its values are always displayed in lower case and have |
| 77 | the following meanings: |
| 78 | |
| 79 | -: new / unknown (not in index, in work tree ) |
| 80 | m: modified ( in index, in work tree, modified ) |
| 81 | d: deleted ( in index, not in work tree ) |
| 82 | |
| 83 | """ |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 84 | |
Terence Haddock | 4655e81 | 2011-03-31 12:33:34 +0200 | [diff] [blame] | 85 | def _Options(self, p): |
| 86 | p.add_option('-j', '--jobs', |
| 87 | dest='jobs', action='store', type='int', default=2, |
| 88 | help="number of projects to check simultaneously") |
Will Richey | 63d356f | 2012-06-21 09:49:59 -0400 | [diff] [blame] | 89 | p.add_option('-o', '--orphans', |
| 90 | dest='orphans', action='store_true', |
| 91 | help="include objects in working directory outside of repo projects") |
Terence Haddock | 4655e81 | 2011-03-31 12:33:34 +0200 | [diff] [blame] | 92 | |
Anthony King | b51f07c | 2015-04-04 21:18:59 +0100 | [diff] [blame] | 93 | def _StatusHelper(self, project, clean_counter, sem): |
Terence Haddock | 4655e81 | 2011-03-31 12:33:34 +0200 | [diff] [blame] | 94 | """Obtains the status for a specific project. |
| 95 | |
| 96 | Obtains the status for a project, redirecting the output to |
| 97 | the specified object. It will release the semaphore |
| 98 | when done. |
| 99 | |
| 100 | Args: |
| 101 | project: Project to get status of. |
| 102 | clean_counter: Counter for clean projects. |
| 103 | sem: Semaphore, will call release() when complete. |
| 104 | output: Where to output the status. |
| 105 | """ |
| 106 | try: |
Anthony King | b51f07c | 2015-04-04 21:18:59 +0100 | [diff] [blame] | 107 | state = project.PrintWorkTreeStatus() |
Terence Haddock | 4655e81 | 2011-03-31 12:33:34 +0200 | [diff] [blame] | 108 | if state == 'CLEAN': |
Anthony King | 2cd1f04 | 2014-05-05 21:24:05 +0100 | [diff] [blame] | 109 | next(clean_counter) |
Terence Haddock | 4655e81 | 2011-03-31 12:33:34 +0200 | [diff] [blame] | 110 | finally: |
| 111 | sem.release() |
| 112 | |
Will Richey | 63d356f | 2012-06-21 09:49:59 -0400 | [diff] [blame] | 113 | def _FindOrphans(self, dirs, proj_dirs, proj_dirs_parents, outstring): |
| 114 | """find 'dirs' that are present in 'proj_dirs_parents' but not in 'proj_dirs'""" |
| 115 | status_header = ' --\t' |
| 116 | for item in dirs: |
| 117 | if not os.path.isdir(item): |
Anthony King | b51f07c | 2015-04-04 21:18:59 +0100 | [diff] [blame] | 118 | outstring.append(''.join([status_header, item])) |
Will Richey | 63d356f | 2012-06-21 09:49:59 -0400 | [diff] [blame] | 119 | continue |
| 120 | if item in proj_dirs: |
| 121 | continue |
| 122 | if item in proj_dirs_parents: |
Anthony King | b51f07c | 2015-04-04 21:18:59 +0100 | [diff] [blame] | 123 | self._FindOrphans(glob.glob('%s/.*' % item) + |
| 124 | glob.glob('%s/*' % item), |
Will Richey | 63d356f | 2012-06-21 09:49:59 -0400 | [diff] [blame] | 125 | proj_dirs, proj_dirs_parents, outstring) |
| 126 | continue |
Anthony King | b51f07c | 2015-04-04 21:18:59 +0100 | [diff] [blame] | 127 | outstring.append(''.join([status_header, item, '/'])) |
Will Richey | 63d356f | 2012-06-21 09:49:59 -0400 | [diff] [blame] | 128 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 129 | def Execute(self, opt, args): |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 130 | all_projects = self.GetProjects(args) |
Terence Haddock | 4655e81 | 2011-03-31 12:33:34 +0200 | [diff] [blame] | 131 | counter = itertools.count() |
Shawn O. Pearce | 161f445 | 2009-04-10 17:41:44 -0700 | [diff] [blame] | 132 | |
Terence Haddock | 4655e81 | 2011-03-31 12:33:34 +0200 | [diff] [blame] | 133 | if opt.jobs == 1: |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 134 | for project in all_projects: |
Terence Haddock | 4655e81 | 2011-03-31 12:33:34 +0200 | [diff] [blame] | 135 | state = project.PrintWorkTreeStatus() |
| 136 | if state == 'CLEAN': |
Anthony King | 2cd1f04 | 2014-05-05 21:24:05 +0100 | [diff] [blame] | 137 | next(counter) |
Terence Haddock | 4655e81 | 2011-03-31 12:33:34 +0200 | [diff] [blame] | 138 | else: |
| 139 | sem = _threading.Semaphore(opt.jobs) |
Anthony King | b51f07c | 2015-04-04 21:18:59 +0100 | [diff] [blame] | 140 | threads = [] |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 141 | for project in all_projects: |
Terence Haddock | 4655e81 | 2011-03-31 12:33:34 +0200 | [diff] [blame] | 142 | sem.acquire() |
Cezary Baginski | ccf8643 | 2012-04-23 23:55:35 +0200 | [diff] [blame] | 143 | |
Terence Haddock | 4655e81 | 2011-03-31 12:33:34 +0200 | [diff] [blame] | 144 | t = _threading.Thread(target=self._StatusHelper, |
Anthony King | b51f07c | 2015-04-04 21:18:59 +0100 | [diff] [blame] | 145 | args=(project, counter, sem)) |
| 146 | threads.append(t) |
David 'Digit' Turner | e212665 | 2012-09-05 10:35:06 +0200 | [diff] [blame] | 147 | t.daemon = True |
Terence Haddock | 4655e81 | 2011-03-31 12:33:34 +0200 | [diff] [blame] | 148 | t.start() |
Anthony King | b51f07c | 2015-04-04 21:18:59 +0100 | [diff] [blame] | 149 | for t in threads: |
Terence Haddock | 4655e81 | 2011-03-31 12:33:34 +0200 | [diff] [blame] | 150 | t.join() |
Anthony King | 2cd1f04 | 2014-05-05 21:24:05 +0100 | [diff] [blame] | 151 | if len(all_projects) == next(counter): |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 152 | print('nothing to commit (working directory clean)') |
Will Richey | 63d356f | 2012-06-21 09:49:59 -0400 | [diff] [blame] | 153 | |
| 154 | if opt.orphans: |
| 155 | proj_dirs = set() |
| 156 | proj_dirs_parents = set() |
| 157 | for project in self.GetProjects(None, missing_ok=True): |
| 158 | proj_dirs.add(project.relpath) |
| 159 | (head, _tail) = os.path.split(project.relpath) |
| 160 | while head != "": |
| 161 | proj_dirs_parents.add(head) |
| 162 | (head, _tail) = os.path.split(head) |
| 163 | proj_dirs.add('.repo') |
| 164 | |
| 165 | class StatusColoring(Coloring): |
| 166 | def __init__(self, config): |
| 167 | Coloring.__init__(self, config, 'status') |
| 168 | self.project = self.printer('header', attr = 'bold') |
| 169 | self.untracked = self.printer('untracked', fg = 'red') |
| 170 | |
| 171 | orig_path = os.getcwd() |
| 172 | try: |
| 173 | os.chdir(self.manifest.topdir) |
| 174 | |
Anthony King | b51f07c | 2015-04-04 21:18:59 +0100 | [diff] [blame] | 175 | outstring = [] |
| 176 | self._FindOrphans(glob.glob('.*') + |
| 177 | glob.glob('*'), |
Will Richey | 63d356f | 2012-06-21 09:49:59 -0400 | [diff] [blame] | 178 | proj_dirs, proj_dirs_parents, outstring) |
| 179 | |
Anthony King | b51f07c | 2015-04-04 21:18:59 +0100 | [diff] [blame] | 180 | if outstring: |
Will Richey | 63d356f | 2012-06-21 09:49:59 -0400 | [diff] [blame] | 181 | output = StatusColoring(self.manifest.globalConfig) |
| 182 | output.project('Objects not within a project (orphans)') |
| 183 | output.nl() |
Anthony King | b51f07c | 2015-04-04 21:18:59 +0100 | [diff] [blame] | 184 | for entry in outstring: |
Will Richey | 63d356f | 2012-06-21 09:49:59 -0400 | [diff] [blame] | 185 | output.untracked(entry) |
| 186 | output.nl() |
| 187 | else: |
| 188 | print('No orphan files or directories') |
| 189 | |
Will Richey | 63d356f | 2012-06-21 09:49:59 -0400 | [diff] [blame] | 190 | finally: |
| 191 | # Restore CWD. |
| 192 | os.chdir(orig_path) |