OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 """SCM-specific utility classes.""" | 5 """SCM-specific utility classes.""" |
6 | 6 |
7 import cStringIO | 7 import cStringIO |
8 import glob | 8 import glob |
9 import logging | 9 import logging |
10 import os | 10 import os |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 | 115 |
116 @staticmethod | 116 @staticmethod |
117 def Capture(args, cwd, strip_out=True, **kwargs): | 117 def Capture(args, cwd, strip_out=True, **kwargs): |
118 env = GIT.ApplyEnvVars(kwargs) | 118 env = GIT.ApplyEnvVars(kwargs) |
119 output = subprocess2.check_output( | 119 output = subprocess2.check_output( |
120 ['git'] + args, | 120 ['git'] + args, |
121 cwd=cwd, stderr=subprocess2.PIPE, env=env, **kwargs) | 121 cwd=cwd, stderr=subprocess2.PIPE, env=env, **kwargs) |
122 return output.strip() if strip_out else output | 122 return output.strip() if strip_out else output |
123 | 123 |
124 @staticmethod | 124 @staticmethod |
125 def CaptureStatus(files, cwd, upstream_branch): | 125 def CaptureStatus(files, cwd, upstream_branch, local_branch='HEAD'): |
126 """Returns git status. | 126 """Returns git status. |
127 | 127 |
128 @files can be a string (one file) or a list of files. | 128 @files can be a string (one file) or a list of files. |
129 | 129 |
130 Returns an array of (status, file) tuples.""" | 130 Returns an array of (status, file) tuples.""" |
131 if upstream_branch is None: | 131 if upstream_branch is None: |
132 upstream_branch = GIT.GetUpstreamBranch(cwd) | 132 upstream_branch = GIT.GetUpstreamBranch(cwd) |
133 if upstream_branch is None: | 133 if upstream_branch is None: |
134 raise gclient_utils.Error('Cannot determine upstream branch') | 134 raise gclient_utils.Error('Cannot determine upstream branch') |
135 command = ['diff', '--name-status', '--no-renames', | 135 command = ['diff', '--name-status', '--no-renames', |
136 '-r', '%s...' % upstream_branch] | 136 '-r', '%s...%s' % (upstream_branch, local_branch)] |
137 if not files: | 137 if not files: |
138 pass | 138 pass |
139 elif isinstance(files, basestring): | 139 elif isinstance(files, basestring): |
140 command.append(files) | 140 command.append(files) |
141 else: | 141 else: |
142 command.extend(files) | 142 command.extend(files) |
143 status = GIT.Capture(command, cwd) | 143 status = GIT.Capture(command, cwd) |
144 results = [] | 144 results = [] |
145 if status: | 145 if status: |
146 for statusline in status.splitlines(): | 146 for statusline in status.splitlines(): |
(...skipping 1023 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1170 # revert, like for properties. | 1170 # revert, like for properties. |
1171 if not os.path.isdir(cwd): | 1171 if not os.path.isdir(cwd): |
1172 # '.' was deleted. It's not worth continuing. | 1172 # '.' was deleted. It's not worth continuing. |
1173 return | 1173 return |
1174 try: | 1174 try: |
1175 SVN.Capture(['revert', file_status[1]], cwd=cwd) | 1175 SVN.Capture(['revert', file_status[1]], cwd=cwd) |
1176 except subprocess2.CalledProcessError: | 1176 except subprocess2.CalledProcessError: |
1177 if not os.path.exists(file_path): | 1177 if not os.path.exists(file_path): |
1178 continue | 1178 continue |
1179 raise | 1179 raise |
OLD | NEW |