blob: b47c87366603d629b11c2dcf8a1a5aac42dac0c9 [file] [log] [blame]
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001#
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
16from command import PagedCommand
17
Terence Haddock4655e812011-03-31 12:33:34 +020018try:
19 import threading as _threading
20except ImportError:
21 import dummy_threading as _threading
22
Will Richey63d356f2012-06-21 09:49:59 -040023import glob
David Pursehouse59bbb582013-05-17 10:49:33 +090024
Terence Haddock4655e812011-03-31 12:33:34 +020025import itertools
Will Richey63d356f2012-06-21 09:49:59 -040026import os
Terence Haddock4655e812011-03-31 12:33:34 +020027
Will Richey63d356f2012-06-21 09:49:59 -040028from color import Coloring
29
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070030class Status(PagedCommand):
31 common = True
32 helpSummary = "Show the working tree status"
33 helpUsage = """
34%prog [<project>...]
35"""
Shawn O. Pearce4c5c7aa2009-04-13 14:06:10 -070036 helpDescription = """
37'%prog' compares the working tree to the staging area (aka index),
38and the most recent commit on this branch (HEAD), in each project
39specified. A summary is displayed, one line per file where there
40is a difference between these three states.
41
Terence Haddock4655e812011-03-31 12:33:34 +020042The -j/--jobs option can be used to run multiple status queries
43in parallel.
44
Will Richey63d356f2012-06-21 09:49:59 -040045The -o/--orphans option can be used to show objects that are in
46the working directory, but not associated with a repo project.
47This includes unmanaged top-level files and directories, but also
48includes deeper items. For example, if dir/subdir/proj1 and
49dir/subdir/proj2 are repo projects, dir/subdir/proj3 will be shown
50if it is not known to repo.
51
Mike Frysingerb8f7bb02018-10-10 01:05:11 -040052# Status Display
Shawn O. Pearce4c5c7aa2009-04-13 14:06:10 -070053
54The status display is organized into three columns of information,
55for example if the file 'subcmds/status.py' is modified in the
56project 'repo' on branch 'devwork':
57
58 project repo/ branch devwork
59 -m subcmds/status.py
60
61The first column explains how the staging area (index) differs from
62the last commit (HEAD). Its values are always displayed in upper
63case and have the following meanings:
64
65 -: no difference
66 A: added (not in HEAD, in index )
67 M: modified ( in HEAD, in index, different content )
68 D: deleted ( in HEAD, not in index )
69 R: renamed (not in HEAD, in index, path changed )
70 C: copied (not in HEAD, in index, copied from another)
71 T: mode changed ( in HEAD, in index, same content )
72 U: unmerged; conflict resolution required
73
74The second column explains how the working directory differs from
75the index. Its values are always displayed in lower case and have
76the following meanings:
77
78 -: new / unknown (not in index, in work tree )
79 m: modified ( in index, in work tree, modified )
80 d: deleted ( in index, not in work tree )
81
82"""
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070083
Terence Haddock4655e812011-03-31 12:33:34 +020084 def _Options(self, p):
85 p.add_option('-j', '--jobs',
86 dest='jobs', action='store', type='int', default=2,
87 help="number of projects to check simultaneously")
Will Richey63d356f2012-06-21 09:49:59 -040088 p.add_option('-o', '--orphans',
89 dest='orphans', action='store_true',
90 help="include objects in working directory outside of repo projects")
Andrew Wheeler4d5bb682012-02-27 13:52:22 -060091 p.add_option('-q', '--quiet', action='store_true',
92 help="only print the name of modified projects")
Terence Haddock4655e812011-03-31 12:33:34 +020093
Andrew Wheeler4d5bb682012-02-27 13:52:22 -060094 def _StatusHelper(self, project, clean_counter, sem, quiet):
Terence Haddock4655e812011-03-31 12:33:34 +020095 """Obtains the status for a specific project.
96
97 Obtains the status for a project, redirecting the output to
98 the specified object. It will release the semaphore
99 when done.
100
101 Args:
102 project: Project to get status of.
103 clean_counter: Counter for clean projects.
104 sem: Semaphore, will call release() when complete.
105 output: Where to output the status.
106 """
107 try:
Andrew Wheeler4d5bb682012-02-27 13:52:22 -0600108 state = project.PrintWorkTreeStatus(quiet=quiet)
Terence Haddock4655e812011-03-31 12:33:34 +0200109 if state == 'CLEAN':
Anthony King2cd1f042014-05-05 21:24:05 +0100110 next(clean_counter)
Terence Haddock4655e812011-03-31 12:33:34 +0200111 finally:
112 sem.release()
113
Will Richey63d356f2012-06-21 09:49:59 -0400114 def _FindOrphans(self, dirs, proj_dirs, proj_dirs_parents, outstring):
115 """find 'dirs' that are present in 'proj_dirs_parents' but not in 'proj_dirs'"""
116 status_header = ' --\t'
117 for item in dirs:
118 if not os.path.isdir(item):
Anthony Kingb51f07c2015-04-04 21:18:59 +0100119 outstring.append(''.join([status_header, item]))
Will Richey63d356f2012-06-21 09:49:59 -0400120 continue
121 if item in proj_dirs:
122 continue
123 if item in proj_dirs_parents:
Anthony Kingb51f07c2015-04-04 21:18:59 +0100124 self._FindOrphans(glob.glob('%s/.*' % item) +
125 glob.glob('%s/*' % item),
Will Richey63d356f2012-06-21 09:49:59 -0400126 proj_dirs, proj_dirs_parents, outstring)
127 continue
Anthony Kingb51f07c2015-04-04 21:18:59 +0100128 outstring.append(''.join([status_header, item, '/']))
Will Richey63d356f2012-06-21 09:49:59 -0400129
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700130 def Execute(self, opt, args):
David Pursehouse8a68ff92012-09-24 12:15:13 +0900131 all_projects = self.GetProjects(args)
Terence Haddock4655e812011-03-31 12:33:34 +0200132 counter = itertools.count()
Shawn O. Pearce161f4452009-04-10 17:41:44 -0700133
Terence Haddock4655e812011-03-31 12:33:34 +0200134 if opt.jobs == 1:
David Pursehouse8a68ff92012-09-24 12:15:13 +0900135 for project in all_projects:
Andrew Wheeler4d5bb682012-02-27 13:52:22 -0600136 state = project.PrintWorkTreeStatus(quiet=opt.quiet)
Terence Haddock4655e812011-03-31 12:33:34 +0200137 if state == 'CLEAN':
Anthony King2cd1f042014-05-05 21:24:05 +0100138 next(counter)
Terence Haddock4655e812011-03-31 12:33:34 +0200139 else:
140 sem = _threading.Semaphore(opt.jobs)
Anthony Kingb51f07c2015-04-04 21:18:59 +0100141 threads = []
David Pursehouse8a68ff92012-09-24 12:15:13 +0900142 for project in all_projects:
Terence Haddock4655e812011-03-31 12:33:34 +0200143 sem.acquire()
Cezary Baginskiccf86432012-04-23 23:55:35 +0200144
Terence Haddock4655e812011-03-31 12:33:34 +0200145 t = _threading.Thread(target=self._StatusHelper,
Andrew Wheeler4d5bb682012-02-27 13:52:22 -0600146 args=(project, counter, sem, opt.quiet))
Anthony Kingb51f07c2015-04-04 21:18:59 +0100147 threads.append(t)
David 'Digit' Turnere2126652012-09-05 10:35:06 +0200148 t.daemon = True
Terence Haddock4655e812011-03-31 12:33:34 +0200149 t.start()
Anthony Kingb51f07c2015-04-04 21:18:59 +0100150 for t in threads:
Terence Haddock4655e812011-03-31 12:33:34 +0200151 t.join()
Andrew Wheeler4d5bb682012-02-27 13:52:22 -0600152 if not opt.quiet and len(all_projects) == next(counter):
Sarah Owenscecd1d82012-11-01 22:59:27 -0700153 print('nothing to commit (working directory clean)')
Will Richey63d356f2012-06-21 09:49:59 -0400154
155 if opt.orphans:
156 proj_dirs = set()
157 proj_dirs_parents = set()
158 for project in self.GetProjects(None, missing_ok=True):
159 proj_dirs.add(project.relpath)
160 (head, _tail) = os.path.split(project.relpath)
161 while head != "":
162 proj_dirs_parents.add(head)
163 (head, _tail) = os.path.split(head)
164 proj_dirs.add('.repo')
165
166 class StatusColoring(Coloring):
167 def __init__(self, config):
168 Coloring.__init__(self, config, 'status')
169 self.project = self.printer('header', attr = 'bold')
170 self.untracked = self.printer('untracked', fg = 'red')
171
172 orig_path = os.getcwd()
173 try:
174 os.chdir(self.manifest.topdir)
175
Anthony Kingb51f07c2015-04-04 21:18:59 +0100176 outstring = []
177 self._FindOrphans(glob.glob('.*') +
178 glob.glob('*'),
Will Richey63d356f2012-06-21 09:49:59 -0400179 proj_dirs, proj_dirs_parents, outstring)
180
Anthony Kingb51f07c2015-04-04 21:18:59 +0100181 if outstring:
Will Richey63d356f2012-06-21 09:49:59 -0400182 output = StatusColoring(self.manifest.globalConfig)
183 output.project('Objects not within a project (orphans)')
184 output.nl()
Anthony Kingb51f07c2015-04-04 21:18:59 +0100185 for entry in outstring:
Will Richey63d356f2012-06-21 09:49:59 -0400186 output.untracked(entry)
187 output.nl()
188 else:
189 print('No orphan files or directories')
190
Will Richey63d356f2012-06-21 09:49:59 -0400191 finally:
192 # Restore CWD.
193 os.chdir(orig_path)