blob: 38c229b14caa4754937ba337c167733c6ccf398a [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
Shawn O. Pearce4c5c7aa2009-04-13 14:06:10 -070052Status Display
53--------------
54
55The status display is organized into three columns of information,
56for example if the file 'subcmds/status.py' is modified in the
57project 'repo' on branch 'devwork':
58
59 project repo/ branch devwork
60 -m subcmds/status.py
61
62The first column explains how the staging area (index) differs from
63the last commit (HEAD). Its values are always displayed in upper
64case 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
75The second column explains how the working directory differs from
76the index. Its values are always displayed in lower case and have
77the 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 Projectcf31fe92008-10-21 07:00:00 -070084
Terence Haddock4655e812011-03-31 12:33:34 +020085 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 Richey63d356f2012-06-21 09:49:59 -040089 p.add_option('-o', '--orphans',
90 dest='orphans', action='store_true',
91 help="include objects in working directory outside of repo projects")
Terence Haddock4655e812011-03-31 12:33:34 +020092
Anthony Kingb51f07c2015-04-04 21:18:59 +010093 def _StatusHelper(self, project, clean_counter, sem):
Terence Haddock4655e812011-03-31 12:33:34 +020094 """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 Kingb51f07c2015-04-04 21:18:59 +0100107 state = project.PrintWorkTreeStatus()
Terence Haddock4655e812011-03-31 12:33:34 +0200108 if state == 'CLEAN':
Anthony King2cd1f042014-05-05 21:24:05 +0100109 next(clean_counter)
Terence Haddock4655e812011-03-31 12:33:34 +0200110 finally:
111 sem.release()
112
Will Richey63d356f2012-06-21 09:49:59 -0400113 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 Kingb51f07c2015-04-04 21:18:59 +0100118 outstring.append(''.join([status_header, item]))
Will Richey63d356f2012-06-21 09:49:59 -0400119 continue
120 if item in proj_dirs:
121 continue
122 if item in proj_dirs_parents:
Anthony Kingb51f07c2015-04-04 21:18:59 +0100123 self._FindOrphans(glob.glob('%s/.*' % item) +
124 glob.glob('%s/*' % item),
Will Richey63d356f2012-06-21 09:49:59 -0400125 proj_dirs, proj_dirs_parents, outstring)
126 continue
Anthony Kingb51f07c2015-04-04 21:18:59 +0100127 outstring.append(''.join([status_header, item, '/']))
Will Richey63d356f2012-06-21 09:49:59 -0400128
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700129 def Execute(self, opt, args):
David Pursehouse8a68ff92012-09-24 12:15:13 +0900130 all_projects = self.GetProjects(args)
Terence Haddock4655e812011-03-31 12:33:34 +0200131 counter = itertools.count()
Shawn O. Pearce161f4452009-04-10 17:41:44 -0700132
Terence Haddock4655e812011-03-31 12:33:34 +0200133 if opt.jobs == 1:
David Pursehouse8a68ff92012-09-24 12:15:13 +0900134 for project in all_projects:
Terence Haddock4655e812011-03-31 12:33:34 +0200135 state = project.PrintWorkTreeStatus()
136 if state == 'CLEAN':
Anthony King2cd1f042014-05-05 21:24:05 +0100137 next(counter)
Terence Haddock4655e812011-03-31 12:33:34 +0200138 else:
139 sem = _threading.Semaphore(opt.jobs)
Anthony Kingb51f07c2015-04-04 21:18:59 +0100140 threads = []
David Pursehouse8a68ff92012-09-24 12:15:13 +0900141 for project in all_projects:
Terence Haddock4655e812011-03-31 12:33:34 +0200142 sem.acquire()
Cezary Baginskiccf86432012-04-23 23:55:35 +0200143
Terence Haddock4655e812011-03-31 12:33:34 +0200144 t = _threading.Thread(target=self._StatusHelper,
Anthony Kingb51f07c2015-04-04 21:18:59 +0100145 args=(project, counter, sem))
146 threads.append(t)
David 'Digit' Turnere2126652012-09-05 10:35:06 +0200147 t.daemon = True
Terence Haddock4655e812011-03-31 12:33:34 +0200148 t.start()
Anthony Kingb51f07c2015-04-04 21:18:59 +0100149 for t in threads:
Terence Haddock4655e812011-03-31 12:33:34 +0200150 t.join()
Anthony King2cd1f042014-05-05 21:24:05 +0100151 if len(all_projects) == next(counter):
Sarah Owenscecd1d82012-11-01 22:59:27 -0700152 print('nothing to commit (working directory clean)')
Will Richey63d356f2012-06-21 09:49:59 -0400153
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 Kingb51f07c2015-04-04 21:18:59 +0100175 outstring = []
176 self._FindOrphans(glob.glob('.*') +
177 glob.glob('*'),
Will Richey63d356f2012-06-21 09:49:59 -0400178 proj_dirs, proj_dirs_parents, outstring)
179
Anthony Kingb51f07c2015-04-04 21:18:59 +0100180 if outstring:
Will Richey63d356f2012-06-21 09:49:59 -0400181 output = StatusColoring(self.manifest.globalConfig)
182 output.project('Objects not within a project (orphans)')
183 output.nl()
Anthony Kingb51f07c2015-04-04 21:18:59 +0100184 for entry in outstring:
Will Richey63d356f2012-06-21 09:49:59 -0400185 output.untracked(entry)
186 output.nl()
187 else:
188 print('No orphan files or directories')
189
Will Richey63d356f2012-06-21 09:49:59 -0400190 finally:
191 # Restore CWD.
192 os.chdir(orig_path)