blob: 6112c404f4fd94a9498ccba66da76bba76a85c03 [file] [log] [blame]
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001# Copyright (C) 2008 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Sarah Owenscecd1d82012-11-01 22:59:27 -070015from __future__ import print_function
Dave Borowitz137d0132015-01-02 11:12:54 -080016import contextlib
Shawn O. Pearce438ee1c2008-11-03 09:59:36 -080017import errno
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070018import filecmp
19import os
Shawn O. Pearcec325dc32011-10-03 08:30:24 -070020import random
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070021import re
22import shutil
23import stat
Shawn O. Pearce5e7127d2012-08-02 14:57:37 -070024import subprocess
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070025import sys
Julien Campergue335f5ef2013-10-16 11:02:35 +020026import tarfile
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +080027import tempfile
Shawn O. Pearcec325dc32011-10-03 08:30:24 -070028import time
Dave Borowitz137d0132015-01-02 11:12:54 -080029import traceback
Shawn O. Pearcedf5ee522011-10-11 14:05:21 -070030
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070031from color import Coloring
Dave Borowitzb42b4742012-10-31 12:27:27 -070032from git_command import GitCommand, git_require
Anatol Pomazau53d6f4d2011-08-25 17:21:47 -070033from git_config import GitConfig, IsId, GetSchemeFromUrl, ID_RE
David Pursehousee15c65a2012-08-22 10:46:11 +090034from error import GitError, HookError, UploadError
Shawn O. Pearce559b8462009-03-02 12:56:08 -080035from error import ManifestInvalidRevisionError
Conley Owens75ee0572012-11-15 17:33:11 -080036from error import NoManifestException
Shawn O. Pearce5e7127d2012-08-02 14:57:37 -070037from trace import IsTrace, Trace
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070038
Shawn O. Pearced237b692009-04-17 18:49:50 -070039from git_refs import GitRefs, HEAD, R_HEADS, R_TAGS, R_PUB, R_M
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070040
David Pursehouse59bbb582013-05-17 10:49:33 +090041from pyversion import is_python3
42if not is_python3():
43 # pylint:disable=W0622
Chirayu Desai217ea7d2013-03-01 19:14:38 +053044 input = raw_input
David Pursehouse59bbb582013-05-17 10:49:33 +090045 # pylint:enable=W0622
Chirayu Desai217ea7d2013-03-01 19:14:38 +053046
Shawn O. Pearceaccc56d2009-04-18 14:45:51 -070047def _lwrite(path, content):
48 lock = '%s.lock' % path
49
Chirayu Desai303a82f2014-08-19 22:57:17 +053050 fd = open(lock, 'w')
Shawn O. Pearceaccc56d2009-04-18 14:45:51 -070051 try:
52 fd.write(content)
53 finally:
54 fd.close()
55
56 try:
57 os.rename(lock, path)
58 except OSError:
59 os.remove(lock)
60 raise
61
Shawn O. Pearce48244782009-04-16 08:25:57 -070062def _error(fmt, *args):
63 msg = fmt % args
Sarah Owenscecd1d82012-11-01 22:59:27 -070064 print('error: %s' % msg, file=sys.stderr)
Shawn O. Pearce48244782009-04-16 08:25:57 -070065
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070066def not_rev(r):
67 return '^' + r
68
Shawn O. Pearceb54a3922009-01-05 16:18:58 -080069def sq(r):
70 return "'" + r.replace("'", "'\''") + "'"
Shawn O. Pearcec9ef7442008-11-03 10:32:09 -080071
Jonathan Nieder93719792015-03-17 11:29:58 -070072_project_hook_list = None
73def _ProjectHooks():
74 """List the hooks present in the 'hooks' directory.
75
76 These hooks are project hooks and are copied to the '.git/hooks' directory
77 of all subprojects.
78
79 This function caches the list of hooks (based on the contents of the
80 'repo/hooks' directory) on the first call.
81
82 Returns:
83 A list of absolute paths to all of the files in the hooks directory.
84 """
85 global _project_hook_list
86 if _project_hook_list is None:
87 d = os.path.realpath(os.path.abspath(os.path.dirname(__file__)))
88 d = os.path.join(d, 'hooks')
89 _project_hook_list = [os.path.join(d, x) for x in os.listdir(d)]
90 return _project_hook_list
91
92
Shawn O. Pearce632768b2008-10-23 11:58:52 -070093class DownloadedChange(object):
94 _commit_cache = None
95
96 def __init__(self, project, base, change_id, ps_id, commit):
97 self.project = project
98 self.base = base
99 self.change_id = change_id
100 self.ps_id = ps_id
101 self.commit = commit
102
103 @property
104 def commits(self):
105 if self._commit_cache is None:
106 self._commit_cache = self.project.bare_git.rev_list(
107 '--abbrev=8',
108 '--abbrev-commit',
109 '--pretty=oneline',
110 '--reverse',
111 '--date-order',
112 not_rev(self.base),
113 self.commit,
114 '--')
115 return self._commit_cache
116
117
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700118class ReviewableBranch(object):
119 _commit_cache = None
120
121 def __init__(self, project, branch, base):
122 self.project = project
123 self.branch = branch
124 self.base = base
125
126 @property
127 def name(self):
128 return self.branch.name
129
130 @property
131 def commits(self):
132 if self._commit_cache is None:
133 self._commit_cache = self.project.bare_git.rev_list(
134 '--abbrev=8',
135 '--abbrev-commit',
136 '--pretty=oneline',
137 '--reverse',
138 '--date-order',
139 not_rev(self.base),
140 R_HEADS + self.name,
141 '--')
142 return self._commit_cache
143
144 @property
Shawn O. Pearcec99883f2008-11-11 17:12:43 -0800145 def unabbrev_commits(self):
146 r = dict()
147 for commit in self.project.bare_git.rev_list(
148 not_rev(self.base),
149 R_HEADS + self.name,
150 '--'):
151 r[commit[0:8]] = commit
152 return r
153
154 @property
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700155 def date(self):
156 return self.project.bare_git.log(
157 '--pretty=format:%cd',
158 '-n', '1',
159 R_HEADS + self.name,
160 '--')
161
Bryan Jacobsf609f912013-05-06 13:36:24 -0400162 def UploadForReview(self, people, auto_topic=False, draft=False, dest_branch=None):
Shawn O. Pearcec99883f2008-11-11 17:12:43 -0800163 self.project.UploadForReview(self.name,
Shawn O. Pearcea5ece0e2010-07-15 16:52:42 -0700164 people,
Brian Harring435370c2012-07-28 15:37:04 -0700165 auto_topic=auto_topic,
Bryan Jacobsf609f912013-05-06 13:36:24 -0400166 draft=draft,
167 dest_branch=dest_branch)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700168
Ficus Kirkpatrickbc7ef672009-05-04 12:45:11 -0700169 def GetPublishedRefs(self):
170 refs = {}
171 output = self.project.bare_git.ls_remote(
172 self.branch.remote.SshReviewUrl(self.project.UserEmail),
173 'refs/changes/*')
174 for line in output.split('\n'):
175 try:
176 (sha, ref) = line.split()
177 refs[sha] = ref
178 except ValueError:
179 pass
180
181 return refs
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700182
183class StatusColoring(Coloring):
184 def __init__(self, config):
185 Coloring.__init__(self, config, 'status')
Anthony King7bdac712014-07-16 12:56:40 +0100186 self.project = self.printer('header', attr='bold')
187 self.branch = self.printer('header', attr='bold')
188 self.nobranch = self.printer('nobranch', fg='red')
189 self.important = self.printer('important', fg='red')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700190
Anthony King7bdac712014-07-16 12:56:40 +0100191 self.added = self.printer('added', fg='green')
192 self.changed = self.printer('changed', fg='red')
193 self.untracked = self.printer('untracked', fg='red')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700194
195
196class DiffColoring(Coloring):
197 def __init__(self, config):
198 Coloring.__init__(self, config, 'diff')
Anthony King7bdac712014-07-16 12:56:40 +0100199 self.project = self.printer('header', attr='bold')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700200
Anthony King7bdac712014-07-16 12:56:40 +0100201class _Annotation(object):
James W. Mills24c13082012-04-12 15:04:13 -0500202 def __init__(self, name, value, keep):
203 self.name = name
204 self.value = value
205 self.keep = keep
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700206
Anthony King7bdac712014-07-16 12:56:40 +0100207class _CopyFile(object):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800208 def __init__(self, src, dest, abssrc, absdest):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700209 self.src = src
210 self.dest = dest
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800211 self.abs_src = abssrc
212 self.abs_dest = absdest
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700213
214 def _Copy(self):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800215 src = self.abs_src
216 dest = self.abs_dest
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700217 # copy file if it does not exist or is out of date
218 if not os.path.exists(dest) or not filecmp.cmp(src, dest):
219 try:
220 # remove existing file first, since it might be read-only
221 if os.path.exists(dest):
222 os.remove(dest)
Matthew Buckett2daf6672009-07-11 09:43:47 -0400223 else:
Mickaël Salaün2f6ab7f2012-09-30 00:37:55 +0200224 dest_dir = os.path.dirname(dest)
225 if not os.path.isdir(dest_dir):
226 os.makedirs(dest_dir)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700227 shutil.copy(src, dest)
228 # make the file read-only
229 mode = os.stat(dest)[stat.ST_MODE]
230 mode = mode & ~(stat.S_IWUSR | stat.S_IWGRP | stat.S_IWOTH)
231 os.chmod(dest, mode)
232 except IOError:
Shawn O. Pearce48244782009-04-16 08:25:57 -0700233 _error('Cannot copy file %s to %s', src, dest)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700234
Anthony King7bdac712014-07-16 12:56:40 +0100235class _LinkFile(object):
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500236 def __init__(self, src, dest, abssrc, absdest):
237 self.src = src
238 self.dest = dest
239 self.abs_src = abssrc
240 self.abs_dest = absdest
241
242 def _Link(self):
243 src = self.abs_src
244 dest = self.abs_dest
245 # link file if it does not exist or is out of date
246 if not os.path.islink(dest) or os.readlink(dest) != src:
247 try:
248 # remove existing file first, since it might be read-only
249 if os.path.exists(dest):
250 os.remove(dest)
251 else:
252 dest_dir = os.path.dirname(dest)
253 if not os.path.isdir(dest_dir):
254 os.makedirs(dest_dir)
255 os.symlink(src, dest)
256 except IOError:
257 _error('Cannot link file %s to %s', src, dest)
258
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700259class RemoteSpec(object):
260 def __init__(self,
261 name,
Anthony King7bdac712014-07-16 12:56:40 +0100262 url=None,
263 review=None,
264 revision=None):
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700265 self.name = name
266 self.url = url
267 self.review = review
Anthony King36ea2fb2014-05-06 11:54:01 +0100268 self.revision = revision
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700269
Doug Anderson37282b42011-03-04 11:54:18 -0800270class RepoHook(object):
271 """A RepoHook contains information about a script to run as a hook.
272
273 Hooks are used to run a python script before running an upload (for instance,
274 to run presubmit checks). Eventually, we may have hooks for other actions.
275
276 This shouldn't be confused with files in the 'repo/hooks' directory. Those
277 files are copied into each '.git/hooks' folder for each project. Repo-level
278 hooks are associated instead with repo actions.
279
280 Hooks are always python. When a hook is run, we will load the hook into the
281 interpreter and execute its main() function.
282 """
283 def __init__(self,
284 hook_type,
285 hooks_project,
286 topdir,
287 abort_if_user_denies=False):
288 """RepoHook constructor.
289
290 Params:
291 hook_type: A string representing the type of hook. This is also used
292 to figure out the name of the file containing the hook. For
293 example: 'pre-upload'.
294 hooks_project: The project containing the repo hooks. If you have a
295 manifest, this is manifest.repo_hooks_project. OK if this is None,
296 which will make the hook a no-op.
297 topdir: Repo's top directory (the one containing the .repo directory).
298 Scripts will run with CWD as this directory. If you have a manifest,
299 this is manifest.topdir
300 abort_if_user_denies: If True, we'll throw a HookError() if the user
301 doesn't allow us to run the hook.
302 """
303 self._hook_type = hook_type
304 self._hooks_project = hooks_project
305 self._topdir = topdir
306 self._abort_if_user_denies = abort_if_user_denies
307
308 # Store the full path to the script for convenience.
309 if self._hooks_project:
310 self._script_fullpath = os.path.join(self._hooks_project.worktree,
311 self._hook_type + '.py')
312 else:
313 self._script_fullpath = None
314
315 def _GetHash(self):
316 """Return a hash of the contents of the hooks directory.
317
318 We'll just use git to do this. This hash has the property that if anything
319 changes in the directory we will return a different has.
320
321 SECURITY CONSIDERATION:
322 This hash only represents the contents of files in the hook directory, not
323 any other files imported or called by hooks. Changes to imported files
324 can change the script behavior without affecting the hash.
325
326 Returns:
327 A string representing the hash. This will always be ASCII so that it can
328 be printed to the user easily.
329 """
330 assert self._hooks_project, "Must have hooks to calculate their hash."
331
332 # We will use the work_git object rather than just calling GetRevisionId().
333 # That gives us a hash of the latest checked in version of the files that
334 # the user will actually be executing. Specifically, GetRevisionId()
335 # doesn't appear to change even if a user checks out a different version
336 # of the hooks repo (via git checkout) nor if a user commits their own revs.
337 #
338 # NOTE: Local (non-committed) changes will not be factored into this hash.
339 # I think this is OK, since we're really only worried about warning the user
340 # about upstream changes.
341 return self._hooks_project.work_git.rev_parse('HEAD')
342
343 def _GetMustVerb(self):
344 """Return 'must' if the hook is required; 'should' if not."""
345 if self._abort_if_user_denies:
346 return 'must'
347 else:
348 return 'should'
349
350 def _CheckForHookApproval(self):
351 """Check to see whether this hook has been approved.
352
353 We'll look at the hash of all of the hooks. If this matches the hash that
354 the user last approved, we're done. If it doesn't, we'll ask the user
355 about approval.
356
357 Note that we ask permission for each individual hook even though we use
358 the hash of all hooks when detecting changes. We'd like the user to be
359 able to approve / deny each hook individually. We only use the hash of all
360 hooks because there is no other easy way to detect changes to local imports.
361
362 Returns:
363 True if this hook is approved to run; False otherwise.
364
365 Raises:
366 HookError: Raised if the user doesn't approve and abort_if_user_denies
367 was passed to the consturctor.
368 """
Doug Anderson37282b42011-03-04 11:54:18 -0800369 hooks_config = self._hooks_project.config
370 git_approval_key = 'repo.hooks.%s.approvedhash' % self._hook_type
371
372 # Get the last hash that the user approved for this hook; may be None.
373 old_hash = hooks_config.GetString(git_approval_key)
374
375 # Get the current hash so we can tell if scripts changed since approval.
376 new_hash = self._GetHash()
377
378 if old_hash is not None:
379 # User previously approved hook and asked not to be prompted again.
380 if new_hash == old_hash:
381 # Approval matched. We're done.
382 return True
383 else:
384 # Give the user a reason why we're prompting, since they last told
385 # us to "never ask again".
386 prompt = 'WARNING: Scripts have changed since %s was allowed.\n\n' % (
387 self._hook_type)
388 else:
389 prompt = ''
390
391 # Prompt the user if we're not on a tty; on a tty we'll assume "no".
392 if sys.stdout.isatty():
393 prompt += ('Repo %s run the script:\n'
394 ' %s\n'
395 '\n'
396 'Do you want to allow this script to run '
397 '(yes/yes-never-ask-again/NO)? ') % (
398 self._GetMustVerb(), self._script_fullpath)
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530399 response = input(prompt).lower()
David Pursehouse98ffba12012-11-14 11:18:00 +0900400 print()
Doug Anderson37282b42011-03-04 11:54:18 -0800401
402 # User is doing a one-time approval.
403 if response in ('y', 'yes'):
404 return True
405 elif response == 'yes-never-ask-again':
406 hooks_config.SetString(git_approval_key, new_hash)
407 return True
408
409 # For anything else, we'll assume no approval.
410 if self._abort_if_user_denies:
411 raise HookError('You must allow the %s hook or use --no-verify.' %
412 self._hook_type)
413
414 return False
415
416 def _ExecuteHook(self, **kwargs):
417 """Actually execute the given hook.
418
419 This will run the hook's 'main' function in our python interpreter.
420
421 Args:
422 kwargs: Keyword arguments to pass to the hook. These are often specific
423 to the hook type. For instance, pre-upload hooks will contain
424 a project_list.
425 """
426 # Keep sys.path and CWD stashed away so that we can always restore them
427 # upon function exit.
428 orig_path = os.getcwd()
429 orig_syspath = sys.path
430
431 try:
432 # Always run hooks with CWD as topdir.
433 os.chdir(self._topdir)
434
435 # Put the hook dir as the first item of sys.path so hooks can do
436 # relative imports. We want to replace the repo dir as [0] so
437 # hooks can't import repo files.
438 sys.path = [os.path.dirname(self._script_fullpath)] + sys.path[1:]
439
440 # Exec, storing global context in the context dict. We catch exceptions
441 # and convert to a HookError w/ just the failing traceback.
442 context = {}
443 try:
Anthony King70f68902014-05-05 21:15:34 +0100444 exec(compile(open(self._script_fullpath).read(),
445 self._script_fullpath, 'exec'), context)
Doug Anderson37282b42011-03-04 11:54:18 -0800446 except Exception:
447 raise HookError('%s\nFailed to import %s hook; see traceback above.' % (
448 traceback.format_exc(), self._hook_type))
449
450 # Running the script should have defined a main() function.
451 if 'main' not in context:
452 raise HookError('Missing main() in: "%s"' % self._script_fullpath)
453
454
455 # Add 'hook_should_take_kwargs' to the arguments to be passed to main.
456 # We don't actually want hooks to define their main with this argument--
457 # it's there to remind them that their hook should always take **kwargs.
458 # For instance, a pre-upload hook should be defined like:
459 # def main(project_list, **kwargs):
460 #
461 # This allows us to later expand the API without breaking old hooks.
462 kwargs = kwargs.copy()
463 kwargs['hook_should_take_kwargs'] = True
464
465 # Call the main function in the hook. If the hook should cause the
466 # build to fail, it will raise an Exception. We'll catch that convert
467 # to a HookError w/ just the failing traceback.
468 try:
469 context['main'](**kwargs)
470 except Exception:
471 raise HookError('%s\nFailed to run main() for %s hook; see traceback '
472 'above.' % (
473 traceback.format_exc(), self._hook_type))
474 finally:
475 # Restore sys.path and CWD.
476 sys.path = orig_syspath
477 os.chdir(orig_path)
478
479 def Run(self, user_allows_all_hooks, **kwargs):
480 """Run the hook.
481
482 If the hook doesn't exist (because there is no hooks project or because
483 this particular hook is not enabled), this is a no-op.
484
485 Args:
486 user_allows_all_hooks: If True, we will never prompt about running the
487 hook--we'll just assume it's OK to run it.
488 kwargs: Keyword arguments to pass to the hook. These are often specific
489 to the hook type. For instance, pre-upload hooks will contain
490 a project_list.
491
492 Raises:
493 HookError: If there was a problem finding the hook or the user declined
494 to run a required hook (from _CheckForHookApproval).
495 """
496 # No-op if there is no hooks project or if hook is disabled.
497 if ((not self._hooks_project) or
498 (self._hook_type not in self._hooks_project.enabled_repo_hooks)):
499 return
500
501 # Bail with a nice error if we can't find the hook.
502 if not os.path.isfile(self._script_fullpath):
503 raise HookError('Couldn\'t find repo hook: "%s"' % self._script_fullpath)
504
505 # Make sure the user is OK with running the hook.
506 if (not user_allows_all_hooks) and (not self._CheckForHookApproval()):
507 return
508
509 # Run the hook with the same version of python we're using.
510 self._ExecuteHook(**kwargs)
511
512
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700513class Project(object):
514 def __init__(self,
515 manifest,
516 name,
517 remote,
518 gitdir,
David James8d201162013-10-11 17:03:19 -0700519 objdir,
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700520 worktree,
521 relpath,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700522 revisionExpr,
Mike Pontillod3153822012-02-28 11:53:24 -0800523 revisionId,
Anthony King7bdac712014-07-16 12:56:40 +0100524 rebase=True,
525 groups=None,
526 sync_c=False,
527 sync_s=False,
528 clone_depth=None,
529 upstream=None,
530 parent=None,
531 is_derived=False,
David Pursehouseb1553542014-09-04 21:28:09 +0900532 dest_branch=None,
533 optimized_fetch=False):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800534 """Init a Project object.
535
536 Args:
537 manifest: The XmlManifest object.
538 name: The `name` attribute of manifest.xml's project element.
539 remote: RemoteSpec object specifying its remote's properties.
540 gitdir: Absolute path of git directory.
David James8d201162013-10-11 17:03:19 -0700541 objdir: Absolute path of directory to store git objects.
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800542 worktree: Absolute path of git working tree.
543 relpath: Relative path of git working tree to repo's top directory.
544 revisionExpr: The `revision` attribute of manifest.xml's project element.
545 revisionId: git commit id for checking out.
546 rebase: The `rebase` attribute of manifest.xml's project element.
547 groups: The `groups` attribute of manifest.xml's project element.
548 sync_c: The `sync-c` attribute of manifest.xml's project element.
549 sync_s: The `sync-s` attribute of manifest.xml's project element.
550 upstream: The `upstream` attribute of manifest.xml's project element.
551 parent: The parent Project object.
552 is_derived: False if the project was explicitly defined in the manifest;
553 True if the project is a discovered submodule.
Bryan Jacobsf609f912013-05-06 13:36:24 -0400554 dest_branch: The branch to which to push changes for review by default.
David Pursehouseb1553542014-09-04 21:28:09 +0900555 optimized_fetch: If True, when a project is set to a sha1 revision, only
556 fetch from the remote if the sha1 is not present locally.
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800557 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700558 self.manifest = manifest
559 self.name = name
560 self.remote = remote
Anthony Newnamdf14a702011-01-09 17:31:57 -0800561 self.gitdir = gitdir.replace('\\', '/')
David James8d201162013-10-11 17:03:19 -0700562 self.objdir = objdir.replace('\\', '/')
Shawn O. Pearce0ce6ca92011-01-10 13:26:01 -0800563 if worktree:
564 self.worktree = worktree.replace('\\', '/')
565 else:
566 self.worktree = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700567 self.relpath = relpath
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700568 self.revisionExpr = revisionExpr
569
570 if revisionId is None \
571 and revisionExpr \
572 and IsId(revisionExpr):
573 self.revisionId = revisionExpr
574 else:
575 self.revisionId = revisionId
576
Mike Pontillod3153822012-02-28 11:53:24 -0800577 self.rebase = rebase
Colin Cross5acde752012-03-28 20:15:45 -0700578 self.groups = groups
Anatol Pomazau79770d22012-04-20 14:41:59 -0700579 self.sync_c = sync_c
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800580 self.sync_s = sync_s
David Pursehouseede7f122012-11-27 22:25:30 +0900581 self.clone_depth = clone_depth
Brian Harring14a66742012-09-28 20:21:57 -0700582 self.upstream = upstream
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800583 self.parent = parent
584 self.is_derived = is_derived
David Pursehouseb1553542014-09-04 21:28:09 +0900585 self.optimized_fetch = optimized_fetch
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800586 self.subprojects = []
Mike Pontillod3153822012-02-28 11:53:24 -0800587
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700588 self.snapshots = {}
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700589 self.copyfiles = []
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500590 self.linkfiles = []
James W. Mills24c13082012-04-12 15:04:13 -0500591 self.annotations = []
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700592 self.config = GitConfig.ForRepository(
Anthony King7bdac712014-07-16 12:56:40 +0100593 gitdir=self.gitdir,
594 defaults=self.manifest.globalConfig)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700595
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800596 if self.worktree:
David James8d201162013-10-11 17:03:19 -0700597 self.work_git = self._GitGetByExec(self, bare=False, gitdir=gitdir)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800598 else:
599 self.work_git = None
David James8d201162013-10-11 17:03:19 -0700600 self.bare_git = self._GitGetByExec(self, bare=True, gitdir=gitdir)
Shawn O. Pearced237b692009-04-17 18:49:50 -0700601 self.bare_ref = GitRefs(gitdir)
David James8d201162013-10-11 17:03:19 -0700602 self.bare_objdir = self._GitGetByExec(self, bare=True, gitdir=objdir)
Bryan Jacobsf609f912013-05-06 13:36:24 -0400603 self.dest_branch = dest_branch
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700604
Doug Anderson37282b42011-03-04 11:54:18 -0800605 # This will be filled in if a project is later identified to be the
606 # project containing repo hooks.
607 self.enabled_repo_hooks = []
608
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700609 @property
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800610 def Derived(self):
611 return self.is_derived
612
613 @property
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700614 def Exists(self):
615 return os.path.isdir(self.gitdir)
616
617 @property
618 def CurrentBranch(self):
619 """Obtain the name of the currently checked out branch.
620 The branch name omits the 'refs/heads/' prefix.
621 None is returned if the project is on a detached HEAD.
622 """
Shawn O. Pearce5b23f242009-04-17 18:43:33 -0700623 b = self.work_git.GetHead()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700624 if b.startswith(R_HEADS):
625 return b[len(R_HEADS):]
626 return None
627
Shawn O. Pearce3d2cdd02009-04-18 15:26:10 -0700628 def IsRebaseInProgress(self):
629 w = self.worktree
630 g = os.path.join(w, '.git')
631 return os.path.exists(os.path.join(g, 'rebase-apply')) \
632 or os.path.exists(os.path.join(g, 'rebase-merge')) \
633 or os.path.exists(os.path.join(w, '.dotest'))
Julius Gustavsson0cb1b3f2010-06-17 17:55:02 +0200634
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700635 def IsDirty(self, consider_untracked=True):
636 """Is the working directory modified in some way?
637 """
638 self.work_git.update_index('-q',
639 '--unmerged',
640 '--ignore-missing',
641 '--refresh')
David Pursehouse8f62fb72012-11-14 12:09:38 +0900642 if self.work_git.DiffZ('diff-index', '-M', '--cached', HEAD):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700643 return True
644 if self.work_git.DiffZ('diff-files'):
645 return True
646 if consider_untracked and self.work_git.LsOthers():
647 return True
648 return False
649
650 _userident_name = None
651 _userident_email = None
652
653 @property
654 def UserName(self):
655 """Obtain the user's personal name.
656 """
657 if self._userident_name is None:
658 self._LoadUserIdentity()
659 return self._userident_name
660
661 @property
662 def UserEmail(self):
663 """Obtain the user's email address. This is very likely
664 to be their Gerrit login.
665 """
666 if self._userident_email is None:
667 self._LoadUserIdentity()
668 return self._userident_email
669
670 def _LoadUserIdentity(self):
David Pursehousec1b86a22012-11-14 11:36:51 +0900671 u = self.bare_git.var('GIT_COMMITTER_IDENT')
672 m = re.compile("^(.*) <([^>]*)> ").match(u)
673 if m:
674 self._userident_name = m.group(1)
675 self._userident_email = m.group(2)
676 else:
677 self._userident_name = ''
678 self._userident_email = ''
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700679
680 def GetRemote(self, name):
681 """Get the configuration for a single remote.
682 """
683 return self.config.GetRemote(name)
684
685 def GetBranch(self, name):
686 """Get the configuration for a single branch.
687 """
688 return self.config.GetBranch(name)
689
Shawn O. Pearce27b07322009-04-10 16:02:48 -0700690 def GetBranches(self):
691 """Get all existing local branches.
692 """
693 current = self.CurrentBranch
David Pursehouse8a68ff92012-09-24 12:15:13 +0900694 all_refs = self._allrefs
Shawn O. Pearce27b07322009-04-10 16:02:48 -0700695 heads = {}
Shawn O. Pearce27b07322009-04-10 16:02:48 -0700696
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530697 for name, ref_id in all_refs.items():
Shawn O. Pearce27b07322009-04-10 16:02:48 -0700698 if name.startswith(R_HEADS):
699 name = name[len(R_HEADS):]
700 b = self.GetBranch(name)
701 b.current = name == current
702 b.published = None
David Pursehouse8a68ff92012-09-24 12:15:13 +0900703 b.revision = ref_id
Shawn O. Pearce27b07322009-04-10 16:02:48 -0700704 heads[name] = b
705
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530706 for name, ref_id in all_refs.items():
Shawn O. Pearce27b07322009-04-10 16:02:48 -0700707 if name.startswith(R_PUB):
708 name = name[len(R_PUB):]
709 b = heads.get(name)
710 if b:
David Pursehouse8a68ff92012-09-24 12:15:13 +0900711 b.published = ref_id
Shawn O. Pearce27b07322009-04-10 16:02:48 -0700712
713 return heads
714
Colin Cross5acde752012-03-28 20:15:45 -0700715 def MatchesGroups(self, manifest_groups):
716 """Returns true if the manifest groups specified at init should cause
717 this project to be synced.
718 Prefixing a manifest group with "-" inverts the meaning of a group.
Conley Owensbb1b5f52012-08-13 13:11:18 -0700719 All projects are implicitly labelled with "all".
Conley Owens971de8e2012-04-16 10:36:08 -0700720
721 labels are resolved in order. In the example case of
Conley Owensbb1b5f52012-08-13 13:11:18 -0700722 project_groups: "all,group1,group2"
Conley Owens971de8e2012-04-16 10:36:08 -0700723 manifest_groups: "-group1,group2"
724 the project will be matched.
David Holmer0a1c6a12012-11-14 19:19:00 -0500725
726 The special manifest group "default" will match any project that
727 does not have the special project group "notdefault"
Colin Cross5acde752012-03-28 20:15:45 -0700728 """
David Holmer0a1c6a12012-11-14 19:19:00 -0500729 expanded_manifest_groups = manifest_groups or ['default']
Conley Owensbb1b5f52012-08-13 13:11:18 -0700730 expanded_project_groups = ['all'] + (self.groups or [])
David Holmer0a1c6a12012-11-14 19:19:00 -0500731 if not 'notdefault' in expanded_project_groups:
732 expanded_project_groups += ['default']
Conley Owensbb1b5f52012-08-13 13:11:18 -0700733
Conley Owens971de8e2012-04-16 10:36:08 -0700734 matched = False
Conley Owensbb1b5f52012-08-13 13:11:18 -0700735 for group in expanded_manifest_groups:
736 if group.startswith('-') and group[1:] in expanded_project_groups:
Conley Owens971de8e2012-04-16 10:36:08 -0700737 matched = False
Conley Owensbb1b5f52012-08-13 13:11:18 -0700738 elif group in expanded_project_groups:
Conley Owens971de8e2012-04-16 10:36:08 -0700739 matched = True
Colin Cross5acde752012-03-28 20:15:45 -0700740
Conley Owens971de8e2012-04-16 10:36:08 -0700741 return matched
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700742
743## Status Display ##
Vadim Bendebury14e134d2014-10-05 15:40:30 -0700744 def UncommitedFiles(self, get_all=True):
745 """Returns a list of strings, uncommitted files in the git tree.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700746
Vadim Bendebury14e134d2014-10-05 15:40:30 -0700747 Args:
748 get_all: a boolean, if True - get information about all different
749 uncommitted files. If False - return as soon as any kind of
750 uncommitted files is detected.
Anthony Newnamcc50bac2010-04-08 10:28:59 -0500751 """
Vadim Bendebury14e134d2014-10-05 15:40:30 -0700752 details = []
Anthony Newnamcc50bac2010-04-08 10:28:59 -0500753 self.work_git.update_index('-q',
754 '--unmerged',
755 '--ignore-missing',
756 '--refresh')
757 if self.IsRebaseInProgress():
Vadim Bendebury14e134d2014-10-05 15:40:30 -0700758 details.append("rebase in progress")
759 if not get_all:
760 return details
Anthony Newnamcc50bac2010-04-08 10:28:59 -0500761
Vadim Bendebury14e134d2014-10-05 15:40:30 -0700762 changes = self.work_git.DiffZ('diff-index', '--cached', HEAD).keys()
763 if changes:
764 details.extend(changes)
765 if not get_all:
766 return details
Anthony Newnamcc50bac2010-04-08 10:28:59 -0500767
Vadim Bendebury14e134d2014-10-05 15:40:30 -0700768 changes = self.work_git.DiffZ('diff-files').keys()
769 if changes:
770 details.extend(changes)
771 if not get_all:
772 return details
Anthony Newnamcc50bac2010-04-08 10:28:59 -0500773
Vadim Bendebury14e134d2014-10-05 15:40:30 -0700774 changes = self.work_git.LsOthers()
775 if changes:
776 details.extend(changes)
Anthony Newnamcc50bac2010-04-08 10:28:59 -0500777
Vadim Bendebury14e134d2014-10-05 15:40:30 -0700778 return details
779
780 def HasChanges(self):
781 """Returns true if there are uncommitted changes.
782 """
783 if self.UncommitedFiles(get_all=False):
784 return True
785 else:
786 return False
Anthony Newnamcc50bac2010-04-08 10:28:59 -0500787
Terence Haddock4655e812011-03-31 12:33:34 +0200788 def PrintWorkTreeStatus(self, output_redir=None):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700789 """Prints the status of the repository to stdout.
Terence Haddock4655e812011-03-31 12:33:34 +0200790
791 Args:
792 output: If specified, redirect the output to this object.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700793 """
794 if not os.path.isdir(self.worktree):
Terence Haddock4655e812011-03-31 12:33:34 +0200795 if output_redir == None:
796 output_redir = sys.stdout
Sarah Owenscecd1d82012-11-01 22:59:27 -0700797 print(file=output_redir)
798 print('project %s/' % self.relpath, file=output_redir)
799 print(' missing (run "repo sync")', file=output_redir)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700800 return
801
802 self.work_git.update_index('-q',
803 '--unmerged',
804 '--ignore-missing',
805 '--refresh')
Shawn O. Pearce3d2cdd02009-04-18 15:26:10 -0700806 rb = self.IsRebaseInProgress()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700807 di = self.work_git.DiffZ('diff-index', '-M', '--cached', HEAD)
808 df = self.work_git.DiffZ('diff-files')
809 do = self.work_git.LsOthers()
Ali Utku Selen76abcc12012-01-25 10:51:12 +0100810 if not rb and not di and not df and not do and not self.CurrentBranch:
Shawn O. Pearce161f4452009-04-10 17:41:44 -0700811 return 'CLEAN'
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700812
813 out = StatusColoring(self.config)
Terence Haddock4655e812011-03-31 12:33:34 +0200814 if not output_redir == None:
815 out.redirect(output_redir)
Jakub Vrana0402cd82014-09-09 15:39:15 -0700816 out.project('project %-40s', self.relpath + '/ ')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700817
818 branch = self.CurrentBranch
819 if branch is None:
820 out.nobranch('(*** NO BRANCH ***)')
821 else:
822 out.branch('branch %s', branch)
823 out.nl()
824
Shawn O. Pearce3d2cdd02009-04-18 15:26:10 -0700825 if rb:
826 out.important('prior sync failed; rebase still in progress')
827 out.nl()
828
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700829 paths = list()
830 paths.extend(di.keys())
831 paths.extend(df.keys())
832 paths.extend(do)
833
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530834 for p in sorted(set(paths)):
David Pursehouse5c6eeac2012-10-11 16:44:48 +0900835 try:
836 i = di[p]
837 except KeyError:
838 i = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700839
David Pursehouse5c6eeac2012-10-11 16:44:48 +0900840 try:
841 f = df[p]
842 except KeyError:
843 f = None
Julius Gustavsson0cb1b3f2010-06-17 17:55:02 +0200844
David Pursehouse5c6eeac2012-10-11 16:44:48 +0900845 if i:
846 i_status = i.status.upper()
847 else:
848 i_status = '-'
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700849
David Pursehouse5c6eeac2012-10-11 16:44:48 +0900850 if f:
851 f_status = f.status.lower()
852 else:
853 f_status = '-'
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700854
855 if i and i.src_path:
Shawn O. Pearcefe086752009-03-03 13:49:48 -0800856 line = ' %s%s\t%s => %s (%s%%)' % (i_status, f_status,
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700857 i.src_path, p, i.level)
858 else:
859 line = ' %s%s\t%s' % (i_status, f_status, p)
860
861 if i and not f:
862 out.added('%s', line)
863 elif (i and f) or (not i and f):
864 out.changed('%s', line)
865 elif not i and not f:
866 out.untracked('%s', line)
867 else:
868 out.write('%s', line)
869 out.nl()
Terence Haddock4655e812011-03-31 12:33:34 +0200870
Shawn O. Pearce161f4452009-04-10 17:41:44 -0700871 return 'DIRTY'
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700872
pelyad67872d2012-03-28 14:49:58 +0300873 def PrintWorkTreeDiff(self, absolute_paths=False):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700874 """Prints the status of the repository to stdout.
875 """
876 out = DiffColoring(self.config)
877 cmd = ['diff']
878 if out.is_on:
879 cmd.append('--color')
880 cmd.append(HEAD)
pelyad67872d2012-03-28 14:49:58 +0300881 if absolute_paths:
882 cmd.append('--src-prefix=a/%s/' % self.relpath)
883 cmd.append('--dst-prefix=b/%s/' % self.relpath)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700884 cmd.append('--')
885 p = GitCommand(self,
886 cmd,
Anthony King7bdac712014-07-16 12:56:40 +0100887 capture_stdout=True,
888 capture_stderr=True)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700889 has_diff = False
890 for line in p.process.stdout:
891 if not has_diff:
892 out.nl()
893 out.project('project %s/' % self.relpath)
894 out.nl()
895 has_diff = True
Sarah Owenscecd1d82012-11-01 22:59:27 -0700896 print(line[:-1])
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700897 p.Wait()
898
899
900## Publish / Upload ##
901
David Pursehouse8a68ff92012-09-24 12:15:13 +0900902 def WasPublished(self, branch, all_refs=None):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700903 """Was the branch published (uploaded) for code review?
904 If so, returns the SHA-1 hash of the last published
905 state for the branch.
906 """
Shawn O. Pearcefbcde472009-04-17 20:58:02 -0700907 key = R_PUB + branch
David Pursehouse8a68ff92012-09-24 12:15:13 +0900908 if all_refs is None:
Shawn O. Pearcefbcde472009-04-17 20:58:02 -0700909 try:
910 return self.bare_git.rev_parse(key)
911 except GitError:
912 return None
913 else:
914 try:
David Pursehouse8a68ff92012-09-24 12:15:13 +0900915 return all_refs[key]
Shawn O. Pearcefbcde472009-04-17 20:58:02 -0700916 except KeyError:
917 return None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700918
David Pursehouse8a68ff92012-09-24 12:15:13 +0900919 def CleanPublishedCache(self, all_refs=None):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700920 """Prunes any stale published refs.
921 """
David Pursehouse8a68ff92012-09-24 12:15:13 +0900922 if all_refs is None:
923 all_refs = self._allrefs
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700924 heads = set()
925 canrm = {}
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530926 for name, ref_id in all_refs.items():
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700927 if name.startswith(R_HEADS):
928 heads.add(name)
929 elif name.startswith(R_PUB):
David Pursehouse8a68ff92012-09-24 12:15:13 +0900930 canrm[name] = ref_id
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700931
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530932 for name, ref_id in canrm.items():
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700933 n = name[len(R_PUB):]
934 if R_HEADS + n not in heads:
David Pursehouse8a68ff92012-09-24 12:15:13 +0900935 self.bare_git.DeleteRef(name, ref_id)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700936
Mandeep Singh Bainesd6c93a22011-05-26 10:34:11 -0700937 def GetUploadableBranches(self, selected_branch=None):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700938 """List any branches which can be uploaded for review.
939 """
940 heads = {}
941 pubed = {}
942
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530943 for name, ref_id in self._allrefs.items():
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700944 if name.startswith(R_HEADS):
David Pursehouse8a68ff92012-09-24 12:15:13 +0900945 heads[name[len(R_HEADS):]] = ref_id
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700946 elif name.startswith(R_PUB):
David Pursehouse8a68ff92012-09-24 12:15:13 +0900947 pubed[name[len(R_PUB):]] = ref_id
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700948
949 ready = []
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530950 for branch, ref_id in heads.items():
David Pursehouse8a68ff92012-09-24 12:15:13 +0900951 if branch in pubed and pubed[branch] == ref_id:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700952 continue
Mandeep Singh Bainesd6c93a22011-05-26 10:34:11 -0700953 if selected_branch and branch != selected_branch:
954 continue
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700955
Shawn O. Pearce35f25962008-11-11 17:03:13 -0800956 rb = self.GetUploadableBranch(branch)
957 if rb:
958 ready.append(rb)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700959 return ready
960
Shawn O. Pearce35f25962008-11-11 17:03:13 -0800961 def GetUploadableBranch(self, branch_name):
962 """Get a single uploadable branch, or None.
963 """
964 branch = self.GetBranch(branch_name)
965 base = branch.LocalMerge
966 if branch.LocalMerge:
967 rb = ReviewableBranch(self, branch, base)
968 if rb.commits:
969 return rb
970 return None
971
Shawn O. Pearcea5ece0e2010-07-15 16:52:42 -0700972 def UploadForReview(self, branch=None,
Anthony King7bdac712014-07-16 12:56:40 +0100973 people=([], []),
Brian Harring435370c2012-07-28 15:37:04 -0700974 auto_topic=False,
Bryan Jacobsf609f912013-05-06 13:36:24 -0400975 draft=False,
976 dest_branch=None):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700977 """Uploads the named branch for code review.
978 """
979 if branch is None:
980 branch = self.CurrentBranch
981 if branch is None:
982 raise GitError('not currently on a branch')
983
984 branch = self.GetBranch(branch)
985 if not branch.LocalMerge:
986 raise GitError('branch %s does not track a remote' % branch.name)
987 if not branch.remote.review:
988 raise GitError('remote %s has no review url' % branch.remote.name)
989
Bryan Jacobsf609f912013-05-06 13:36:24 -0400990 if dest_branch is None:
991 dest_branch = self.dest_branch
992 if dest_branch is None:
993 dest_branch = branch.merge
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700994 if not dest_branch.startswith(R_HEADS):
995 dest_branch = R_HEADS + dest_branch
996
Shawn O. Pearce339ba9f2008-11-06 09:52:51 -0800997 if not branch.remote.projectname:
998 branch.remote.projectname = self.name
999 branch.remote.Save()
1000
Shawn O. Pearcec9571422012-01-11 14:58:54 -08001001 url = branch.remote.ReviewUrl(self.UserEmail)
1002 if url is None:
1003 raise UploadError('review not configured')
1004 cmd = ['push']
Shawn O. Pearceb54a3922009-01-05 16:18:58 -08001005
Shawn O. Pearcec9571422012-01-11 14:58:54 -08001006 if url.startswith('ssh://'):
Shawn O. Pearceb54a3922009-01-05 16:18:58 -08001007 rp = ['gerrit receive-pack']
1008 for e in people[0]:
1009 rp.append('--reviewer=%s' % sq(e))
1010 for e in people[1]:
1011 rp.append('--cc=%s' % sq(e))
Shawn O. Pearceb54a3922009-01-05 16:18:58 -08001012 cmd.append('--receive-pack=%s' % " ".join(rp))
Shawn O. Pearcea5ece0e2010-07-15 16:52:42 -07001013
Shawn O. Pearcec9571422012-01-11 14:58:54 -08001014 cmd.append(url)
Shawn O. Pearceb54a3922009-01-05 16:18:58 -08001015
Shawn O. Pearcec9571422012-01-11 14:58:54 -08001016 if dest_branch.startswith(R_HEADS):
1017 dest_branch = dest_branch[len(R_HEADS):]
Brian Harring435370c2012-07-28 15:37:04 -07001018
1019 upload_type = 'for'
1020 if draft:
1021 upload_type = 'drafts'
1022
1023 ref_spec = '%s:refs/%s/%s' % (R_HEADS + branch.name, upload_type,
1024 dest_branch)
Shawn O. Pearcec9571422012-01-11 14:58:54 -08001025 if auto_topic:
1026 ref_spec = ref_spec + '/' + branch.name
Shawn Pearce45d21682013-02-28 00:35:51 -08001027 if not url.startswith('ssh://'):
1028 rp = ['r=%s' % p for p in people[0]] + \
1029 ['cc=%s' % p for p in people[1]]
1030 if rp:
1031 ref_spec = ref_spec + '%' + ','.join(rp)
Shawn O. Pearcec9571422012-01-11 14:58:54 -08001032 cmd.append(ref_spec)
1033
Anthony King7bdac712014-07-16 12:56:40 +01001034 if GitCommand(self, cmd, bare=True).Wait() != 0:
Shawn O. Pearcec9571422012-01-11 14:58:54 -08001035 raise UploadError('Upload failed')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001036
1037 msg = "posted to %s for %s" % (branch.remote.review, dest_branch)
1038 self.bare_git.UpdateRef(R_PUB + branch.name,
1039 R_HEADS + branch.name,
Anthony King7bdac712014-07-16 12:56:40 +01001040 message=msg)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001041
1042
1043## Sync ##
1044
Julien Campergue335f5ef2013-10-16 11:02:35 +02001045 def _ExtractArchive(self, tarpath, path=None):
1046 """Extract the given tar on its current location
1047
1048 Args:
1049 - tarpath: The path to the actual tar file
1050
1051 """
1052 try:
1053 with tarfile.open(tarpath, 'r') as tar:
1054 tar.extractall(path=path)
1055 return True
1056 except (IOError, tarfile.TarError) as e:
1057 print("error: Cannot extract archive %s: "
1058 "%s" % (tarpath, str(e)), file=sys.stderr)
1059 return False
1060
Shawn O. Pearcee02ac0a2012-03-14 15:36:59 -07001061 def Sync_NetworkHalf(self,
1062 quiet=False,
1063 is_new=None,
1064 current_branch_only=False,
Mitchel Humpherys597868b2012-10-29 10:18:34 -07001065 clone_bundle=True,
Julien Campergue335f5ef2013-10-16 11:02:35 +02001066 no_tags=False,
David Pursehouseb1553542014-09-04 21:28:09 +09001067 archive=False,
1068 optimized_fetch=False):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001069 """Perform only the network IO portion of the sync process.
1070 Local working directory/branch state is not affected.
1071 """
Julien Campergue335f5ef2013-10-16 11:02:35 +02001072 if archive and not isinstance(self, MetaProject):
1073 if self.remote.url.startswith(('http://', 'https://')):
1074 print("error: %s: Cannot fetch archives from http/https "
1075 "remotes." % self.name, file=sys.stderr)
1076 return False
1077
1078 name = self.relpath.replace('\\', '/')
1079 name = name.replace('/', '_')
1080 tarpath = '%s.tar' % name
1081 topdir = self.manifest.topdir
1082
1083 try:
1084 self._FetchArchive(tarpath, cwd=topdir)
1085 except GitError as e:
1086 print('error: %s' % str(e), file=sys.stderr)
1087 return False
1088
1089 # From now on, we only need absolute tarpath
1090 tarpath = os.path.join(topdir, tarpath)
1091
1092 if not self._ExtractArchive(tarpath, path=topdir):
1093 return False
1094 try:
1095 os.remove(tarpath)
1096 except OSError as e:
1097 print("warn: Cannot remove archive %s: "
1098 "%s" % (tarpath, str(e)), file=sys.stderr)
Jeff Hamiltone0df2322014-04-21 17:10:59 -05001099 self._CopyAndLinkFiles()
Julien Campergue335f5ef2013-10-16 11:02:35 +02001100 return True
1101
Shawn O. Pearcef322b9a2011-09-19 14:50:58 -07001102 if is_new is None:
1103 is_new = not self.Exists
Shawn O. Pearce88443382010-10-08 10:02:09 +02001104 if is_new:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001105 self._InitGitDir()
Jimmie Westera0444582012-10-24 13:44:42 +02001106 else:
1107 self._UpdateHooks()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001108 self._InitRemote()
Shawn O. Pearcec325dc32011-10-03 08:30:24 -07001109
1110 if is_new:
1111 alt = os.path.join(self.gitdir, 'objects/info/alternates')
1112 try:
1113 fd = open(alt, 'rb')
1114 try:
1115 alt_dir = fd.readline().rstrip()
1116 finally:
1117 fd.close()
1118 except IOError:
1119 alt_dir = None
1120 else:
1121 alt_dir = None
1122
Shawn O. Pearcee02ac0a2012-03-14 15:36:59 -07001123 if clone_bundle \
1124 and alt_dir is None \
1125 and self._ApplyCloneBundle(initial=is_new, quiet=quiet):
Shawn O. Pearcec325dc32011-10-03 08:30:24 -07001126 is_new = False
1127
Shawn O. Pearce6ba6ba02012-05-24 09:46:50 -07001128 if not current_branch_only:
1129 if self.sync_c:
1130 current_branch_only = True
1131 elif not self.manifest._loaded:
1132 # Manifest cannot check defaults until it syncs.
1133 current_branch_only = False
1134 elif self.manifest.default.sync_c:
1135 current_branch_only = True
1136
David Pursehouseb1553542014-09-04 21:28:09 +09001137 need_to_fetch = not (optimized_fetch and \
1138 (ID_RE.match(self.revisionExpr) and self._CheckForSha1()))
1139 if (need_to_fetch
Conley Owens666d5342014-05-01 13:09:57 -07001140 and not self._RemoteFetch(initial=is_new, quiet=quiet, alt_dir=alt_dir,
1141 current_branch_only=current_branch_only,
1142 no_tags=no_tags)):
Anthony King7bdac712014-07-16 12:56:40 +01001143 return False
Shawn O. Pearcee284ad12008-11-04 07:37:10 -08001144
1145 if self.worktree:
Shawn O. Pearcee284ad12008-11-04 07:37:10 -08001146 self._InitMRef()
1147 else:
1148 self._InitMirrorHead()
1149 try:
1150 os.remove(os.path.join(self.gitdir, 'FETCH_HEAD'))
1151 except OSError:
1152 pass
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001153 return True
Shawn O. Pearcec9ef7442008-11-03 10:32:09 -08001154
1155 def PostRepoUpgrade(self):
1156 self._InitHooks()
1157
Jeff Hamiltone0df2322014-04-21 17:10:59 -05001158 def _CopyAndLinkFiles(self):
David Pursehouse8a68ff92012-09-24 12:15:13 +09001159 for copyfile in self.copyfiles:
1160 copyfile._Copy()
Jeff Hamiltone0df2322014-04-21 17:10:59 -05001161 for linkfile in self.linkfiles:
1162 linkfile._Link()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001163
Julien Camperguedd654222014-01-09 16:21:37 +01001164 def GetCommitRevisionId(self):
1165 """Get revisionId of a commit.
1166
1167 Use this method instead of GetRevisionId to get the id of the commit rather
1168 than the id of the current git object (for example, a tag)
1169
1170 """
1171 if not self.revisionExpr.startswith(R_TAGS):
1172 return self.GetRevisionId(self._allrefs)
1173
1174 try:
1175 return self.bare_git.rev_list(self.revisionExpr, '-1')[0]
1176 except GitError:
1177 raise ManifestInvalidRevisionError(
1178 'revision %s in %s not found' % (self.revisionExpr,
1179 self.name))
1180
David Pursehouse8a68ff92012-09-24 12:15:13 +09001181 def GetRevisionId(self, all_refs=None):
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07001182 if self.revisionId:
1183 return self.revisionId
1184
1185 rem = self.GetRemote(self.remote.name)
1186 rev = rem.ToLocal(self.revisionExpr)
1187
David Pursehouse8a68ff92012-09-24 12:15:13 +09001188 if all_refs is not None and rev in all_refs:
1189 return all_refs[rev]
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07001190
1191 try:
1192 return self.bare_git.rev_parse('--verify', '%s^0' % rev)
1193 except GitError:
1194 raise ManifestInvalidRevisionError(
1195 'revision %s in %s not found' % (self.revisionExpr,
1196 self.name))
1197
Shawn O. Pearce350cde42009-04-16 11:21:18 -07001198 def Sync_LocalHalf(self, syncbuf):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001199 """Perform only the local IO portion of the sync process.
1200 Network access is not required.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001201 """
David James8d201162013-10-11 17:03:19 -07001202 self._InitWorkTree()
David Pursehouse8a68ff92012-09-24 12:15:13 +09001203 all_refs = self.bare_ref.all
1204 self.CleanPublishedCache(all_refs)
1205 revid = self.GetRevisionId(all_refs)
Skyler Kaufman835cd682011-03-08 12:14:41 -08001206
David Pursehouse1d947b32012-10-25 12:23:11 +09001207 def _doff():
1208 self._FastForward(revid)
Jeff Hamiltone0df2322014-04-21 17:10:59 -05001209 self._CopyAndLinkFiles()
David Pursehouse1d947b32012-10-25 12:23:11 +09001210
Shawn O. Pearcefbcde472009-04-17 20:58:02 -07001211 head = self.work_git.GetHead()
1212 if head.startswith(R_HEADS):
1213 branch = head[len(R_HEADS):]
1214 try:
David Pursehouse8a68ff92012-09-24 12:15:13 +09001215 head = all_refs[head]
Shawn O. Pearcefbcde472009-04-17 20:58:02 -07001216 except KeyError:
1217 head = None
1218 else:
1219 branch = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001220
Shawn O. Pearce350cde42009-04-16 11:21:18 -07001221 if branch is None or syncbuf.detach_head:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001222 # Currently on a detached HEAD. The user is assumed to
1223 # not have any local modifications worth worrying about.
1224 #
Shawn O. Pearce3d2cdd02009-04-18 15:26:10 -07001225 if self.IsRebaseInProgress():
Shawn O. Pearce350cde42009-04-16 11:21:18 -07001226 syncbuf.fail(self, _PriorSyncFailedError())
1227 return
1228
Shawn O. Pearcefbcde472009-04-17 20:58:02 -07001229 if head == revid:
1230 # No changes; don't do anything further.
Florian Vallee7cf1b362012-06-07 17:11:42 +02001231 # Except if the head needs to be detached
Shawn O. Pearcefbcde472009-04-17 20:58:02 -07001232 #
Florian Vallee7cf1b362012-06-07 17:11:42 +02001233 if not syncbuf.detach_head:
1234 return
1235 else:
1236 lost = self._revlist(not_rev(revid), HEAD)
1237 if lost:
1238 syncbuf.info(self, "discarding %d commits", len(lost))
Shawn O. Pearcefbcde472009-04-17 20:58:02 -07001239
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001240 try:
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07001241 self._Checkout(revid, quiet=True)
Sarah Owensa5be53f2012-09-09 15:37:57 -07001242 except GitError as e:
Shawn O. Pearce350cde42009-04-16 11:21:18 -07001243 syncbuf.fail(self, e)
1244 return
Jeff Hamiltone0df2322014-04-21 17:10:59 -05001245 self._CopyAndLinkFiles()
Shawn O. Pearce350cde42009-04-16 11:21:18 -07001246 return
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001247
Shawn O. Pearcefbcde472009-04-17 20:58:02 -07001248 if head == revid:
1249 # No changes; don't do anything further.
1250 #
1251 return
1252
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001253 branch = self.GetBranch(branch)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001254
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07001255 if not branch.LocalMerge:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001256 # The current branch has no tracking configuration.
Anatol Pomazau2a32f6a2011-08-30 10:52:33 -07001257 # Jump off it to a detached HEAD.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001258 #
Shawn O. Pearce350cde42009-04-16 11:21:18 -07001259 syncbuf.info(self,
1260 "leaving %s; does not track upstream",
1261 branch.name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001262 try:
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07001263 self._Checkout(revid, quiet=True)
Sarah Owensa5be53f2012-09-09 15:37:57 -07001264 except GitError as e:
Shawn O. Pearce350cde42009-04-16 11:21:18 -07001265 syncbuf.fail(self, e)
1266 return
Jeff Hamiltone0df2322014-04-21 17:10:59 -05001267 self._CopyAndLinkFiles()
Shawn O. Pearce350cde42009-04-16 11:21:18 -07001268 return
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001269
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07001270 upstream_gain = self._revlist(not_rev(HEAD), revid)
David Pursehouse8a68ff92012-09-24 12:15:13 +09001271 pub = self.WasPublished(branch.name, all_refs)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001272 if pub:
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07001273 not_merged = self._revlist(not_rev(revid), pub)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001274 if not_merged:
1275 if upstream_gain:
1276 # The user has published this branch and some of those
1277 # commits are not yet merged upstream. We do not want
1278 # to rewrite the published commits so we punt.
1279 #
Daniel Sandler4c50dee2010-03-02 15:38:03 -05001280 syncbuf.fail(self,
1281 "branch %s is published (but not merged) and is now %d commits behind"
1282 % (branch.name, len(upstream_gain)))
Shawn O. Pearce350cde42009-04-16 11:21:18 -07001283 return
Shawn O. Pearce05f66b62009-04-21 08:26:32 -07001284 elif pub == head:
1285 # All published commits are merged, and thus we are a
1286 # strict subset. We can fast-forward safely.
Shawn O. Pearcea54c5272008-10-30 11:03:00 -07001287 #
Shawn O. Pearce350cde42009-04-16 11:21:18 -07001288 syncbuf.later1(self, _doff)
1289 return
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001290
Shawn O. Pearce8ad8a0e2009-05-29 18:28:25 -07001291 # Examine the local commits not in the remote. Find the
1292 # last one attributed to this user, if any.
1293 #
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07001294 local_changes = self._revlist(not_rev(revid), HEAD, format='%H %ce')
Shawn O. Pearce8ad8a0e2009-05-29 18:28:25 -07001295 last_mine = None
1296 cnt_mine = 0
1297 for commit in local_changes:
Chirayu Desai0eb35cb2013-11-19 18:46:29 +05301298 commit_id, committer_email = commit.decode('utf-8').split(' ', 1)
Shawn O. Pearce8ad8a0e2009-05-29 18:28:25 -07001299 if committer_email == self.UserEmail:
1300 last_mine = commit_id
1301 cnt_mine += 1
1302
Shawn O. Pearceda88ff42009-06-03 11:09:12 -07001303 if not upstream_gain and cnt_mine == len(local_changes):
Shawn O. Pearce350cde42009-04-16 11:21:18 -07001304 return
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001305
1306 if self.IsDirty(consider_untracked=False):
Shawn O. Pearce350cde42009-04-16 11:21:18 -07001307 syncbuf.fail(self, _DirtyError())
1308 return
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001309
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07001310 # If the upstream switched on us, warn the user.
1311 #
1312 if branch.merge != self.revisionExpr:
1313 if branch.merge and self.revisionExpr:
1314 syncbuf.info(self,
1315 'manifest switched %s...%s',
1316 branch.merge,
1317 self.revisionExpr)
1318 elif branch.merge:
1319 syncbuf.info(self,
1320 'manifest no longer tracks %s',
1321 branch.merge)
1322
Shawn O. Pearce8ad8a0e2009-05-29 18:28:25 -07001323 if cnt_mine < len(local_changes):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001324 # Upstream rebased. Not everything in HEAD
Shawn O. Pearce8ad8a0e2009-05-29 18:28:25 -07001325 # was created by this user.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001326 #
Shawn O. Pearce350cde42009-04-16 11:21:18 -07001327 syncbuf.info(self,
1328 "discarding %d commits removed from upstream",
Shawn O. Pearce8ad8a0e2009-05-29 18:28:25 -07001329 len(local_changes) - cnt_mine)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001330
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07001331 branch.remote = self.GetRemote(self.remote.name)
Anatol Pomazaucd7c5de2012-03-20 13:45:00 -07001332 if not ID_RE.match(self.revisionExpr):
1333 # in case of manifest sync the revisionExpr might be a SHA1
1334 branch.merge = self.revisionExpr
Conley Owens04f2f0e2014-10-01 17:22:46 -07001335 if not branch.merge.startswith('refs/'):
1336 branch.merge = R_HEADS + branch.merge
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001337 branch.Save()
1338
Mike Pontillod3153822012-02-28 11:53:24 -08001339 if cnt_mine > 0 and self.rebase:
Shawn O. Pearce350cde42009-04-16 11:21:18 -07001340 def _dorebase():
Anthony King7bdac712014-07-16 12:56:40 +01001341 self._Rebase(upstream='%s^1' % last_mine, onto=revid)
Jeff Hamiltone0df2322014-04-21 17:10:59 -05001342 self._CopyAndLinkFiles()
Shawn O. Pearce350cde42009-04-16 11:21:18 -07001343 syncbuf.later2(self, _dorebase)
Shawn O. Pearce8ad8a0e2009-05-29 18:28:25 -07001344 elif local_changes:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001345 try:
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07001346 self._ResetHard(revid)
Jeff Hamiltone0df2322014-04-21 17:10:59 -05001347 self._CopyAndLinkFiles()
Sarah Owensa5be53f2012-09-09 15:37:57 -07001348 except GitError as e:
Shawn O. Pearce350cde42009-04-16 11:21:18 -07001349 syncbuf.fail(self, e)
1350 return
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001351 else:
Shawn O. Pearce350cde42009-04-16 11:21:18 -07001352 syncbuf.later1(self, _doff)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001353
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -08001354 def AddCopyFile(self, src, dest, absdest):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001355 # dest should already be an absolute path, but src is project relative
1356 # make src an absolute path
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -08001357 abssrc = os.path.join(self.worktree, src)
1358 self.copyfiles.append(_CopyFile(src, dest, abssrc, absdest))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001359
Jeff Hamiltone0df2322014-04-21 17:10:59 -05001360 def AddLinkFile(self, src, dest, absdest):
1361 # dest should already be an absolute path, but src is project relative
1362 # make src an absolute path
1363 abssrc = os.path.join(self.worktree, src)
1364 self.linkfiles.append(_LinkFile(src, dest, abssrc, absdest))
1365
James W. Mills24c13082012-04-12 15:04:13 -05001366 def AddAnnotation(self, name, value, keep):
1367 self.annotations.append(_Annotation(name, value, keep))
1368
Shawn O. Pearce632768b2008-10-23 11:58:52 -07001369 def DownloadPatchSet(self, change_id, patch_id):
1370 """Download a single patch set of a single change to FETCH_HEAD.
1371 """
1372 remote = self.GetRemote(self.remote.name)
1373
1374 cmd = ['fetch', remote.name]
1375 cmd.append('refs/changes/%2.2d/%d/%d' \
1376 % (change_id % 100, change_id, patch_id))
Shawn O. Pearce632768b2008-10-23 11:58:52 -07001377 if GitCommand(self, cmd, bare=True).Wait() != 0:
1378 return None
1379 return DownloadedChange(self,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07001380 self.GetRevisionId(),
Shawn O. Pearce632768b2008-10-23 11:58:52 -07001381 change_id,
1382 patch_id,
1383 self.bare_git.rev_parse('FETCH_HEAD'))
1384
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001385
1386## Branch Management ##
1387
1388 def StartBranch(self, name):
1389 """Create a new branch off the manifest's revision.
1390 """
Shawn O. Pearceaccc56d2009-04-18 14:45:51 -07001391 head = self.work_git.GetHead()
1392 if head == (R_HEADS + name):
1393 return True
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001394
David Pursehouse8a68ff92012-09-24 12:15:13 +09001395 all_refs = self.bare_ref.all
Anthony King7bdac712014-07-16 12:56:40 +01001396 if R_HEADS + name in all_refs:
Shawn O. Pearceaccc56d2009-04-18 14:45:51 -07001397 return GitCommand(self,
Shawn O. Pearce89e717d2009-04-18 15:04:41 -07001398 ['checkout', name, '--'],
Anthony King7bdac712014-07-16 12:56:40 +01001399 capture_stdout=True,
1400 capture_stderr=True).Wait() == 0
Shawn O. Pearce0a389e92009-04-10 16:21:18 -07001401
Shawn O. Pearceaccc56d2009-04-18 14:45:51 -07001402 branch = self.GetBranch(name)
1403 branch.remote = self.GetRemote(self.remote.name)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07001404 branch.merge = self.revisionExpr
Conley Owens04f2f0e2014-10-01 17:22:46 -07001405 if not branch.merge.startswith('refs/'):
1406 branch.merge = R_HEADS + self.revisionExpr
David Pursehouse8a68ff92012-09-24 12:15:13 +09001407 revid = self.GetRevisionId(all_refs)
Shawn O. Pearce0a389e92009-04-10 16:21:18 -07001408
Shawn O. Pearceaccc56d2009-04-18 14:45:51 -07001409 if head.startswith(R_HEADS):
1410 try:
David Pursehouse8a68ff92012-09-24 12:15:13 +09001411 head = all_refs[head]
Shawn O. Pearceaccc56d2009-04-18 14:45:51 -07001412 except KeyError:
1413 head = None
1414
1415 if revid and head and revid == head:
1416 ref = os.path.join(self.gitdir, R_HEADS + name)
1417 try:
1418 os.makedirs(os.path.dirname(ref))
1419 except OSError:
1420 pass
1421 _lwrite(ref, '%s\n' % revid)
1422 _lwrite(os.path.join(self.worktree, '.git', HEAD),
1423 'ref: %s%s\n' % (R_HEADS, name))
1424 branch.Save()
1425 return True
1426
Shawn O. Pearceaccc56d2009-04-18 14:45:51 -07001427 if GitCommand(self,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07001428 ['checkout', '-b', branch.name, revid],
Anthony King7bdac712014-07-16 12:56:40 +01001429 capture_stdout=True,
1430 capture_stderr=True).Wait() == 0:
Shawn O. Pearceaccc56d2009-04-18 14:45:51 -07001431 branch.Save()
1432 return True
1433 return False
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001434
Wink Saville02d79452009-04-10 13:01:24 -07001435 def CheckoutBranch(self, name):
1436 """Checkout a local topic branch.
Doug Anderson3ba5f952011-04-07 12:51:04 -07001437
1438 Args:
1439 name: The name of the branch to checkout.
1440
1441 Returns:
1442 True if the checkout succeeded; False if it didn't; None if the branch
1443 didn't exist.
Wink Saville02d79452009-04-10 13:01:24 -07001444 """
Shawn O. Pearce89e717d2009-04-18 15:04:41 -07001445 rev = R_HEADS + name
1446 head = self.work_git.GetHead()
1447 if head == rev:
1448 # Already on the branch
1449 #
1450 return True
Wink Saville02d79452009-04-10 13:01:24 -07001451
David Pursehouse8a68ff92012-09-24 12:15:13 +09001452 all_refs = self.bare_ref.all
Wink Saville02d79452009-04-10 13:01:24 -07001453 try:
David Pursehouse8a68ff92012-09-24 12:15:13 +09001454 revid = all_refs[rev]
Shawn O. Pearce89e717d2009-04-18 15:04:41 -07001455 except KeyError:
1456 # Branch does not exist in this project
1457 #
Doug Anderson3ba5f952011-04-07 12:51:04 -07001458 return None
Wink Saville02d79452009-04-10 13:01:24 -07001459
Shawn O. Pearce89e717d2009-04-18 15:04:41 -07001460 if head.startswith(R_HEADS):
1461 try:
David Pursehouse8a68ff92012-09-24 12:15:13 +09001462 head = all_refs[head]
Shawn O. Pearce89e717d2009-04-18 15:04:41 -07001463 except KeyError:
1464 head = None
1465
1466 if head == revid:
1467 # Same revision; just update HEAD to point to the new
1468 # target branch, but otherwise take no other action.
1469 #
1470 _lwrite(os.path.join(self.worktree, '.git', HEAD),
1471 'ref: %s%s\n' % (R_HEADS, name))
1472 return True
1473
1474 return GitCommand(self,
1475 ['checkout', name, '--'],
Anthony King7bdac712014-07-16 12:56:40 +01001476 capture_stdout=True,
1477 capture_stderr=True).Wait() == 0
Wink Saville02d79452009-04-10 13:01:24 -07001478
Shawn O. Pearce9fa44db2008-11-03 11:24:59 -08001479 def AbandonBranch(self, name):
1480 """Destroy a local topic branch.
Doug Andersondafb1d62011-04-07 11:46:59 -07001481
1482 Args:
1483 name: The name of the branch to abandon.
1484
1485 Returns:
1486 True if the abandon succeeded; False if it didn't; None if the branch
1487 didn't exist.
Shawn O. Pearce9fa44db2008-11-03 11:24:59 -08001488 """
Shawn O. Pearce552ac892009-04-18 15:15:24 -07001489 rev = R_HEADS + name
David Pursehouse8a68ff92012-09-24 12:15:13 +09001490 all_refs = self.bare_ref.all
1491 if rev not in all_refs:
Doug Andersondafb1d62011-04-07 11:46:59 -07001492 # Doesn't exist
1493 return None
Shawn O. Pearce9fa44db2008-11-03 11:24:59 -08001494
Shawn O. Pearce552ac892009-04-18 15:15:24 -07001495 head = self.work_git.GetHead()
1496 if head == rev:
1497 # We can't destroy the branch while we are sitting
1498 # on it. Switch to a detached HEAD.
1499 #
David Pursehouse8a68ff92012-09-24 12:15:13 +09001500 head = all_refs[head]
Shawn O. Pearce9fa44db2008-11-03 11:24:59 -08001501
David Pursehouse8a68ff92012-09-24 12:15:13 +09001502 revid = self.GetRevisionId(all_refs)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07001503 if head == revid:
Shawn O. Pearce552ac892009-04-18 15:15:24 -07001504 _lwrite(os.path.join(self.worktree, '.git', HEAD),
1505 '%s\n' % revid)
1506 else:
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07001507 self._Checkout(revid, quiet=True)
Shawn O. Pearce552ac892009-04-18 15:15:24 -07001508
1509 return GitCommand(self,
1510 ['branch', '-D', name],
Anthony King7bdac712014-07-16 12:56:40 +01001511 capture_stdout=True,
1512 capture_stderr=True).Wait() == 0
Shawn O. Pearce9fa44db2008-11-03 11:24:59 -08001513
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001514 def PruneHeads(self):
1515 """Prune any topic branches already merged into upstream.
1516 """
1517 cb = self.CurrentBranch
1518 kill = []
Shawn O. Pearce3778f9d2009-03-02 12:30:50 -08001519 left = self._allrefs
1520 for name in left.keys():
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001521 if name.startswith(R_HEADS):
1522 name = name[len(R_HEADS):]
1523 if cb is None or name != cb:
1524 kill.append(name)
1525
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07001526 rev = self.GetRevisionId(left)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001527 if cb is not None \
1528 and not self._revlist(HEAD + '...' + rev) \
Anthony King7bdac712014-07-16 12:56:40 +01001529 and not self.IsDirty(consider_untracked=False):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001530 self.work_git.DetachHead(HEAD)
1531 kill.append(cb)
1532
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001533 if kill:
Shawn O. Pearce5b23f242009-04-17 18:43:33 -07001534 old = self.bare_git.GetHead()
1535 if old is None:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001536 old = 'refs/heads/please_never_use_this_as_a_branch_name'
1537
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001538 try:
1539 self.bare_git.DetachHead(rev)
1540
1541 b = ['branch', '-d']
1542 b.extend(kill)
1543 b = GitCommand(self, b, bare=True,
1544 capture_stdout=True,
1545 capture_stderr=True)
1546 b.Wait()
1547 finally:
1548 self.bare_git.SetHead(old)
Shawn O. Pearce3778f9d2009-03-02 12:30:50 -08001549 left = self._allrefs
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001550
Shawn O. Pearce3778f9d2009-03-02 12:30:50 -08001551 for branch in kill:
1552 if (R_HEADS + branch) not in left:
1553 self.CleanPublishedCache()
1554 break
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001555
1556 if cb and cb not in kill:
1557 kill.append(cb)
Shawn O. Pearce7c6c64d2009-03-02 12:38:13 -08001558 kill.sort()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001559
1560 kept = []
1561 for branch in kill:
Anthony King7bdac712014-07-16 12:56:40 +01001562 if R_HEADS + branch in left:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001563 branch = self.GetBranch(branch)
1564 base = branch.LocalMerge
1565 if not base:
1566 base = rev
1567 kept.append(ReviewableBranch(self, branch, base))
1568 return kept
1569
1570
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +08001571## Submodule Management ##
1572
1573 def GetRegisteredSubprojects(self):
1574 result = []
1575 def rec(subprojects):
1576 if not subprojects:
1577 return
1578 result.extend(subprojects)
1579 for p in subprojects:
1580 rec(p.subprojects)
1581 rec(self.subprojects)
1582 return result
1583
1584 def _GetSubmodules(self):
1585 # Unfortunately we cannot call `git submodule status --recursive` here
1586 # because the working tree might not exist yet, and it cannot be used
1587 # without a working tree in its current implementation.
1588
1589 def get_submodules(gitdir, rev):
1590 # Parse .gitmodules for submodule sub_paths and sub_urls
1591 sub_paths, sub_urls = parse_gitmodules(gitdir, rev)
1592 if not sub_paths:
1593 return []
1594 # Run `git ls-tree` to read SHAs of submodule object, which happen to be
1595 # revision of submodule repository
1596 sub_revs = git_ls_tree(gitdir, rev, sub_paths)
1597 submodules = []
1598 for sub_path, sub_url in zip(sub_paths, sub_urls):
1599 try:
1600 sub_rev = sub_revs[sub_path]
1601 except KeyError:
1602 # Ignore non-exist submodules
1603 continue
1604 submodules.append((sub_rev, sub_path, sub_url))
1605 return submodules
1606
1607 re_path = re.compile(r'^submodule\.([^.]+)\.path=(.*)$')
1608 re_url = re.compile(r'^submodule\.([^.]+)\.url=(.*)$')
1609 def parse_gitmodules(gitdir, rev):
1610 cmd = ['cat-file', 'blob', '%s:.gitmodules' % rev]
1611 try:
Anthony King7bdac712014-07-16 12:56:40 +01001612 p = GitCommand(None, cmd, capture_stdout=True, capture_stderr=True,
1613 bare=True, gitdir=gitdir)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +08001614 except GitError:
1615 return [], []
1616 if p.Wait() != 0:
1617 return [], []
1618
1619 gitmodules_lines = []
1620 fd, temp_gitmodules_path = tempfile.mkstemp()
1621 try:
1622 os.write(fd, p.stdout)
1623 os.close(fd)
1624 cmd = ['config', '--file', temp_gitmodules_path, '--list']
Anthony King7bdac712014-07-16 12:56:40 +01001625 p = GitCommand(None, cmd, capture_stdout=True, capture_stderr=True,
1626 bare=True, gitdir=gitdir)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +08001627 if p.Wait() != 0:
1628 return [], []
1629 gitmodules_lines = p.stdout.split('\n')
1630 except GitError:
1631 return [], []
1632 finally:
1633 os.remove(temp_gitmodules_path)
1634
1635 names = set()
1636 paths = {}
1637 urls = {}
1638 for line in gitmodules_lines:
1639 if not line:
1640 continue
1641 m = re_path.match(line)
1642 if m:
1643 names.add(m.group(1))
1644 paths[m.group(1)] = m.group(2)
1645 continue
1646 m = re_url.match(line)
1647 if m:
1648 names.add(m.group(1))
1649 urls[m.group(1)] = m.group(2)
1650 continue
1651 names = sorted(names)
1652 return ([paths.get(name, '') for name in names],
1653 [urls.get(name, '') for name in names])
1654
1655 def git_ls_tree(gitdir, rev, paths):
1656 cmd = ['ls-tree', rev, '--']
1657 cmd.extend(paths)
1658 try:
Anthony King7bdac712014-07-16 12:56:40 +01001659 p = GitCommand(None, cmd, capture_stdout=True, capture_stderr=True,
1660 bare=True, gitdir=gitdir)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +08001661 except GitError:
1662 return []
1663 if p.Wait() != 0:
1664 return []
1665 objects = {}
1666 for line in p.stdout.split('\n'):
1667 if not line.strip():
1668 continue
1669 object_rev, object_path = line.split()[2:4]
1670 objects[object_path] = object_rev
1671 return objects
1672
1673 try:
1674 rev = self.GetRevisionId()
1675 except GitError:
1676 return []
1677 return get_submodules(self.gitdir, rev)
1678
1679 def GetDerivedSubprojects(self):
1680 result = []
1681 if not self.Exists:
1682 # If git repo does not exist yet, querying its submodules will
1683 # mess up its states; so return here.
1684 return result
1685 for rev, path, url in self._GetSubmodules():
1686 name = self.manifest.GetSubprojectName(self, path)
David James8d201162013-10-11 17:03:19 -07001687 relpath, worktree, gitdir, objdir = \
1688 self.manifest.GetSubprojectPaths(self, name, path)
1689 project = self.manifest.paths.get(relpath)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +08001690 if project:
1691 result.extend(project.GetDerivedSubprojects())
1692 continue
David James8d201162013-10-11 17:03:19 -07001693
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +08001694 remote = RemoteSpec(self.remote.name,
Anthony King7bdac712014-07-16 12:56:40 +01001695 url=url,
1696 review=self.remote.review,
1697 revision=self.remote.revision)
1698 subproject = Project(manifest=self.manifest,
1699 name=name,
1700 remote=remote,
1701 gitdir=gitdir,
1702 objdir=objdir,
1703 worktree=worktree,
1704 relpath=relpath,
1705 revisionExpr=self.revisionExpr,
1706 revisionId=rev,
1707 rebase=self.rebase,
1708 groups=self.groups,
1709 sync_c=self.sync_c,
1710 sync_s=self.sync_s,
1711 parent=self,
1712 is_derived=True)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +08001713 result.append(subproject)
1714 result.extend(subproject.GetDerivedSubprojects())
1715 return result
1716
1717
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001718## Direct Git Commands ##
Chris AtLee2fb64662014-01-16 21:32:33 -05001719 def _CheckForSha1(self):
1720 try:
1721 # if revision (sha or tag) is not present then following function
1722 # throws an error.
1723 self.bare_git.rev_parse('--verify', '%s^0' % self.revisionExpr)
1724 return True
1725 except GitError:
1726 # There is no such persistent revision. We have to fetch it.
1727 return False
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001728
Julien Campergue335f5ef2013-10-16 11:02:35 +02001729 def _FetchArchive(self, tarpath, cwd=None):
1730 cmd = ['archive', '-v', '-o', tarpath]
1731 cmd.append('--remote=%s' % self.remote.url)
1732 cmd.append('--prefix=%s/' % self.relpath)
1733 cmd.append(self.revisionExpr)
1734
1735 command = GitCommand(self, cmd, cwd=cwd,
1736 capture_stdout=True,
1737 capture_stderr=True)
1738
1739 if command.Wait() != 0:
1740 raise GitError('git archive %s: %s' % (self.name, command.stderr))
1741
Conley Owens80b87fe2014-05-09 17:13:44 -07001742
Anatol Pomazau53d6f4d2011-08-25 17:21:47 -07001743 def _RemoteFetch(self, name=None,
1744 current_branch_only=False,
Shawn O. Pearce16614f82010-10-29 12:05:43 -07001745 initial=False,
Shawn O. Pearcec325dc32011-10-03 08:30:24 -07001746 quiet=False,
Mitchel Humpherys597868b2012-10-29 10:18:34 -07001747 alt_dir=None,
1748 no_tags=False):
Anatol Pomazau53d6f4d2011-08-25 17:21:47 -07001749
1750 is_sha1 = False
1751 tag_name = None
David Pursehouse9bc422f2014-04-15 10:28:56 +09001752 depth = None
Anatol Pomazau53d6f4d2011-08-25 17:21:47 -07001753
David Pursehouse9bc422f2014-04-15 10:28:56 +09001754 # The depth should not be used when fetching to a mirror because
1755 # it will result in a shallow repository that cannot be cloned or
1756 # fetched from.
1757 if not self.manifest.IsMirror:
1758 if self.clone_depth:
1759 depth = self.clone_depth
1760 else:
1761 depth = self.manifest.manifestProject.config.GetString('repo.depth')
Conley Owense4978cf2015-02-03 18:06:16 -08001762 # The repo project should never be synced with partial depth
1763 if self.relpath == '.repo/repo':
1764 depth = None
David Pursehouse9bc422f2014-04-15 10:28:56 +09001765
Shawn Pearce69e04d82014-01-29 12:48:54 -08001766 if depth:
1767 current_branch_only = True
1768
Nasser Grainawi909d58b2014-09-19 12:13:04 -06001769 if ID_RE.match(self.revisionExpr) is not None:
1770 is_sha1 = True
1771
Anatol Pomazau53d6f4d2011-08-25 17:21:47 -07001772 if current_branch_only:
Nasser Grainawi909d58b2014-09-19 12:13:04 -06001773 if self.revisionExpr.startswith(R_TAGS):
Anatol Pomazau53d6f4d2011-08-25 17:21:47 -07001774 # this is a tag and its sha1 value should never change
1775 tag_name = self.revisionExpr[len(R_TAGS):]
1776
1777 if is_sha1 or tag_name is not None:
Chris AtLee2fb64662014-01-16 21:32:33 -05001778 if self._CheckForSha1():
Anatol Pomazau53d6f4d2011-08-25 17:21:47 -07001779 return True
Bertrand SIMONNET3000cda2014-11-25 16:19:29 -08001780 if is_sha1 and not depth:
1781 # When syncing a specific commit and --depth is not set:
1782 # * if upstream is explicitly specified and is not a sha1, fetch only
1783 # upstream as users expect only upstream to be fetch.
1784 # Note: The commit might not be in upstream in which case the sync
1785 # will fail.
1786 # * otherwise, fetch all branches to make sure we end up with the
1787 # specific commit.
1788 current_branch_only = self.upstream and not ID_RE.match(self.upstream)
Anatol Pomazau53d6f4d2011-08-25 17:21:47 -07001789
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001790 if not name:
1791 name = self.remote.name
Shawn O. Pearcefb231612009-04-10 18:53:46 -07001792
1793 ssh_proxy = False
Shawn O. Pearcef322b9a2011-09-19 14:50:58 -07001794 remote = self.GetRemote(name)
1795 if remote.PreConnectFetch():
Shawn O. Pearcefb231612009-04-10 18:53:46 -07001796 ssh_proxy = True
1797
Shawn O. Pearce88443382010-10-08 10:02:09 +02001798 if initial:
Shawn O. Pearcec325dc32011-10-03 08:30:24 -07001799 if alt_dir and 'objects' == os.path.basename(alt_dir):
1800 ref_dir = os.path.dirname(alt_dir)
Shawn O. Pearce88443382010-10-08 10:02:09 +02001801 packed_refs = os.path.join(self.gitdir, 'packed-refs')
1802 remote = self.GetRemote(name)
1803
David Pursehouse8a68ff92012-09-24 12:15:13 +09001804 all_refs = self.bare_ref.all
1805 ids = set(all_refs.values())
Shawn O. Pearce88443382010-10-08 10:02:09 +02001806 tmp = set()
1807
Chirayu Desai217ea7d2013-03-01 19:14:38 +05301808 for r, ref_id in GitRefs(ref_dir).all.items():
David Pursehouse8a68ff92012-09-24 12:15:13 +09001809 if r not in all_refs:
Shawn O. Pearce88443382010-10-08 10:02:09 +02001810 if r.startswith(R_TAGS) or remote.WritesTo(r):
David Pursehouse8a68ff92012-09-24 12:15:13 +09001811 all_refs[r] = ref_id
1812 ids.add(ref_id)
Shawn O. Pearce88443382010-10-08 10:02:09 +02001813 continue
1814
David Pursehouse8a68ff92012-09-24 12:15:13 +09001815 if ref_id in ids:
Shawn O. Pearce88443382010-10-08 10:02:09 +02001816 continue
1817
David Pursehouse8a68ff92012-09-24 12:15:13 +09001818 r = 'refs/_alt/%s' % ref_id
1819 all_refs[r] = ref_id
1820 ids.add(ref_id)
Shawn O. Pearce88443382010-10-08 10:02:09 +02001821 tmp.add(r)
1822
Shawn O. Pearce88443382010-10-08 10:02:09 +02001823 tmp_packed = ''
1824 old_packed = ''
1825
Chirayu Desai217ea7d2013-03-01 19:14:38 +05301826 for r in sorted(all_refs):
David Pursehouse8a68ff92012-09-24 12:15:13 +09001827 line = '%s %s\n' % (all_refs[r], r)
Shawn O. Pearce88443382010-10-08 10:02:09 +02001828 tmp_packed += line
1829 if r not in tmp:
1830 old_packed += line
1831
1832 _lwrite(packed_refs, tmp_packed)
Shawn O. Pearce88443382010-10-08 10:02:09 +02001833 else:
Shawn O. Pearcec325dc32011-10-03 08:30:24 -07001834 alt_dir = None
Shawn O. Pearce88443382010-10-08 10:02:09 +02001835
Shawn O. Pearcee284ad12008-11-04 07:37:10 -08001836 cmd = ['fetch']
Doug Anderson30d45292011-05-04 15:01:04 -07001837
Conley Owensf97e8382015-01-21 11:12:46 -08001838 if depth:
Doug Anderson30d45292011-05-04 15:01:04 -07001839 cmd.append('--depth=%s' % depth)
1840
Shawn O. Pearce16614f82010-10-29 12:05:43 -07001841 if quiet:
1842 cmd.append('--quiet')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -08001843 if not self.worktree:
1844 cmd.append('--update-head-ok')
Shawn O. Pearcec325dc32011-10-03 08:30:24 -07001845 cmd.append(name)
Anatol Pomazau53d6f4d2011-08-25 17:21:47 -07001846
Mitchel Humpherys26c45a72014-03-10 14:21:59 -07001847 # If using depth then we should not get all the tags since they may
1848 # be outside of the depth.
1849 if no_tags or depth:
1850 cmd.append('--no-tags')
1851 else:
1852 cmd.append('--tags')
1853
Conley Owens80b87fe2014-05-09 17:13:44 -07001854 spec = []
Brian Harring14a66742012-09-28 20:21:57 -07001855 if not current_branch_only:
Anatol Pomazau53d6f4d2011-08-25 17:21:47 -07001856 # Fetch whole repo
Conley Owens80b87fe2014-05-09 17:13:44 -07001857 spec.append(str((u'+refs/heads/*:') + remote.ToLocal('refs/heads/*')))
Anatol Pomazau53d6f4d2011-08-25 17:21:47 -07001858 elif tag_name is not None:
Conley Owens80b87fe2014-05-09 17:13:44 -07001859 spec.append('tag')
1860 spec.append(tag_name)
Nasser Grainawi04e52d62014-09-30 13:34:52 -06001861
David Pursehouse403b64e2015-04-27 10:41:33 +09001862 if not self.manifest.IsMirror:
1863 branch = self.revisionExpr
1864 if is_sha1 and depth:
1865 # Shallow checkout of a specific commit, fetch from that commit and not
1866 # the heads only as the commit might be deeper in the history.
1867 spec.append(branch)
1868 else:
1869 if is_sha1:
1870 branch = self.upstream
1871 if branch is not None and branch.strip():
1872 if not branch.startswith('refs/'):
1873 branch = R_HEADS + branch
1874 spec.append(str((u'+%s:' % branch) + remote.ToLocal(branch)))
Conley Owens80b87fe2014-05-09 17:13:44 -07001875 cmd.extend(spec)
1876
1877 shallowfetch = self.config.GetString('repo.shallowfetch')
1878 if shallowfetch and shallowfetch != ' '.join(spec):
Anthony King23ff7df2015-03-28 19:42:39 +00001879 GitCommand(self, ['fetch', '--depth=2147483647', name]
1880 + shallowfetch.split(),
Conley Owens80b87fe2014-05-09 17:13:44 -07001881 bare=True, ssh_proxy=ssh_proxy).Wait()
1882 if depth:
Anthony King7bdac712014-07-16 12:56:40 +01001883 self.config.SetString('repo.shallowfetch', ' '.join(spec))
Conley Owens80b87fe2014-05-09 17:13:44 -07001884 else:
Anthony King7bdac712014-07-16 12:56:40 +01001885 self.config.SetString('repo.shallowfetch', None)
Shawn O. Pearcef322b9a2011-09-19 14:50:58 -07001886
Shawn O. Pearcec325dc32011-10-03 08:30:24 -07001887 ok = False
David Pursehouse8a68ff92012-09-24 12:15:13 +09001888 for _i in range(2):
John L. Villalovos9c76f672015-03-16 20:49:10 -07001889 gitcmd = GitCommand(self, cmd, bare=True, ssh_proxy=ssh_proxy)
John L. Villalovos126e2982015-01-29 21:58:12 -08001890 ret = gitcmd.Wait()
Brian Harring14a66742012-09-28 20:21:57 -07001891 if ret == 0:
Shawn O. Pearcec325dc32011-10-03 08:30:24 -07001892 ok = True
1893 break
John L. Villalovos126e2982015-01-29 21:58:12 -08001894 # If needed, run the 'git remote prune' the first time through the loop
1895 elif (not _i and
1896 "error:" in gitcmd.stderr and
1897 "git remote prune" in gitcmd.stderr):
1898 prunecmd = GitCommand(self, ['remote', 'prune', name], bare=True,
John L. Villalovos9c76f672015-03-16 20:49:10 -07001899 ssh_proxy=ssh_proxy)
John L. Villalovose30f46b2015-02-25 14:27:02 -08001900 ret = prunecmd.Wait()
John L. Villalovose30f46b2015-02-25 14:27:02 -08001901 if ret:
John L. Villalovos126e2982015-01-29 21:58:12 -08001902 break
1903 continue
Brian Harring14a66742012-09-28 20:21:57 -07001904 elif current_branch_only and is_sha1 and ret == 128:
1905 # Exit code 128 means "couldn't find the ref you asked for"; if we're in sha1
1906 # mode, we just tried sync'ing from the upstream field; it doesn't exist, thus
1907 # abort the optimization attempt and do a full sync.
1908 break
Shawn O. Pearcec325dc32011-10-03 08:30:24 -07001909 time.sleep(random.randint(30, 45))
Shawn O. Pearce88443382010-10-08 10:02:09 +02001910
1911 if initial:
Shawn O. Pearcec325dc32011-10-03 08:30:24 -07001912 if alt_dir:
Shawn O. Pearce88443382010-10-08 10:02:09 +02001913 if old_packed != '':
1914 _lwrite(packed_refs, old_packed)
1915 else:
1916 os.remove(packed_refs)
1917 self.bare_git.pack_refs('--all', '--prune')
Brian Harring14a66742012-09-28 20:21:57 -07001918
1919 if is_sha1 and current_branch_only and self.upstream:
1920 # We just synced the upstream given branch; verify we
1921 # got what we wanted, else trigger a second run of all
1922 # refs.
Chris AtLee2fb64662014-01-16 21:32:33 -05001923 if not self._CheckForSha1():
Brian Harring14a66742012-09-28 20:21:57 -07001924 return self._RemoteFetch(name=name, current_branch_only=False,
1925 initial=False, quiet=quiet, alt_dir=alt_dir)
1926
Shawn O. Pearcec325dc32011-10-03 08:30:24 -07001927 return ok
Shawn O. Pearce88443382010-10-08 10:02:09 +02001928
Shawn O. Pearcec325dc32011-10-03 08:30:24 -07001929 def _ApplyCloneBundle(self, initial=False, quiet=False):
David Pursehouseede7f122012-11-27 22:25:30 +09001930 if initial and (self.manifest.manifestProject.config.GetString('repo.depth') or self.clone_depth):
Shawn O. Pearcec325dc32011-10-03 08:30:24 -07001931 return False
1932
1933 remote = self.GetRemote(self.remote.name)
1934 bundle_url = remote.url + '/clone.bundle'
1935 bundle_url = GitConfig.ForUser().UrlInsteadOf(bundle_url)
Dave Borowitz74c1f3d2013-06-03 15:05:07 -07001936 if GetSchemeFromUrl(bundle_url) not in (
1937 'http', 'https', 'persistent-http', 'persistent-https'):
Shawn O. Pearcec325dc32011-10-03 08:30:24 -07001938 return False
1939
1940 bundle_dst = os.path.join(self.gitdir, 'clone.bundle')
1941 bundle_tmp = os.path.join(self.gitdir, 'clone.bundle.tmp')
1942
1943 exist_dst = os.path.exists(bundle_dst)
1944 exist_tmp = os.path.exists(bundle_tmp)
1945
1946 if not initial and not exist_dst and not exist_tmp:
1947 return False
1948
1949 if not exist_dst:
1950 exist_dst = self._FetchBundle(bundle_url, bundle_tmp, bundle_dst, quiet)
1951 if not exist_dst:
1952 return False
1953
1954 cmd = ['fetch']
1955 if quiet:
1956 cmd.append('--quiet')
1957 if not self.worktree:
1958 cmd.append('--update-head-ok')
1959 cmd.append(bundle_dst)
1960 for f in remote.fetch:
1961 cmd.append(str(f))
1962 cmd.append('refs/tags/*:refs/tags/*')
1963
1964 ok = GitCommand(self, cmd, bare=True).Wait() == 0
Shawn O. Pearcef322b9a2011-09-19 14:50:58 -07001965 if os.path.exists(bundle_dst):
1966 os.remove(bundle_dst)
1967 if os.path.exists(bundle_tmp):
1968 os.remove(bundle_tmp)
Shawn O. Pearce88443382010-10-08 10:02:09 +02001969 return ok
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001970
Shawn O. Pearcec325dc32011-10-03 08:30:24 -07001971 def _FetchBundle(self, srcUrl, tmpPath, dstPath, quiet):
Shawn O. Pearce5e7127d2012-08-02 14:57:37 -07001972 if os.path.exists(dstPath):
1973 os.remove(dstPath)
Shawn O. Pearcef322b9a2011-09-19 14:50:58 -07001974
Matt Gumbel2dc810c2012-08-30 09:39:36 -07001975 cmd = ['curl', '--fail', '--output', tmpPath, '--netrc', '--location']
Shawn O. Pearce5e7127d2012-08-02 14:57:37 -07001976 if quiet:
1977 cmd += ['--silent']
1978 if os.path.exists(tmpPath):
1979 size = os.stat(tmpPath).st_size
1980 if size >= 1024:
1981 cmd += ['--continue-at', '%d' % (size,)]
1982 else:
Shawn O. Pearcef322b9a2011-09-19 14:50:58 -07001983 os.remove(tmpPath)
Shawn O. Pearce5e7127d2012-08-02 14:57:37 -07001984 if 'http_proxy' in os.environ and 'darwin' == sys.platform:
1985 cmd += ['--proxy', os.environ['http_proxy']]
Dave Borowitz497bde42015-01-02 13:58:05 -08001986 with self._GetBundleCookieFile(srcUrl, quiet) as cookiefile:
Dave Borowitz137d0132015-01-02 11:12:54 -08001987 if cookiefile:
Dave Borowitz4abf8e62015-01-02 11:39:04 -08001988 cmd += ['--cookie', cookiefile, '--cookie-jar', cookiefile]
Dave Borowitz137d0132015-01-02 11:12:54 -08001989 if srcUrl.startswith('persistent-'):
1990 srcUrl = srcUrl[len('persistent-'):]
1991 cmd += [srcUrl]
Shawn O. Pearce5e7127d2012-08-02 14:57:37 -07001992
Dave Borowitz137d0132015-01-02 11:12:54 -08001993 if IsTrace():
1994 Trace('%s', ' '.join(cmd))
1995 try:
1996 proc = subprocess.Popen(cmd)
1997 except OSError:
1998 return False
Shawn O. Pearce5e7127d2012-08-02 14:57:37 -07001999
Dave Borowitz137d0132015-01-02 11:12:54 -08002000 curlret = proc.wait()
Matt Gumbel2dc810c2012-08-30 09:39:36 -07002001
Dave Borowitz137d0132015-01-02 11:12:54 -08002002 if curlret == 22:
2003 # From curl man page:
2004 # 22: HTTP page not retrieved. The requested url was not found or
2005 # returned another error with the HTTP error code being 400 or above.
2006 # This return code only appears if -f, --fail is used.
2007 if not quiet:
2008 print("Server does not provide clone.bundle; ignoring.",
2009 file=sys.stderr)
2010 return False
Matt Gumbel2dc810c2012-08-30 09:39:36 -07002011
Shawn O. Pearce5e7127d2012-08-02 14:57:37 -07002012 if os.path.exists(tmpPath):
Kris Giesingc8d882a2014-12-23 13:02:32 -08002013 if curlret == 0 and self._IsValidBundle(tmpPath, quiet):
Shawn O. Pearce5e7127d2012-08-02 14:57:37 -07002014 os.rename(tmpPath, dstPath)
2015 return True
2016 else:
2017 os.remove(tmpPath)
2018 return False
2019 else:
2020 return False
Shawn O. Pearcef322b9a2011-09-19 14:50:58 -07002021
Kris Giesingc8d882a2014-12-23 13:02:32 -08002022 def _IsValidBundle(self, path, quiet):
Dave Borowitz91f3ba52013-06-03 12:15:23 -07002023 try:
2024 with open(path) as f:
2025 if f.read(16) == '# v2 git bundle\n':
2026 return True
2027 else:
Kris Giesingc8d882a2014-12-23 13:02:32 -08002028 if not quiet:
2029 print("Invalid clone.bundle file; ignoring.", file=sys.stderr)
Dave Borowitz91f3ba52013-06-03 12:15:23 -07002030 return False
2031 except OSError:
2032 return False
2033
Dave Borowitz137d0132015-01-02 11:12:54 -08002034 @contextlib.contextmanager
Dave Borowitz497bde42015-01-02 13:58:05 -08002035 def _GetBundleCookieFile(self, url, quiet):
Dave Borowitz74c1f3d2013-06-03 15:05:07 -07002036 if url.startswith('persistent-'):
2037 try:
2038 p = subprocess.Popen(
2039 ['git-remote-persistent-https', '-print_config', url],
2040 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
2041 stderr=subprocess.PIPE)
Dave Borowitz137d0132015-01-02 11:12:54 -08002042 try:
2043 prefix = 'http.cookiefile='
2044 cookiefile = None
2045 for line in p.stdout:
2046 line = line.strip()
2047 if line.startswith(prefix):
2048 cookiefile = line[len(prefix):]
2049 break
2050 # Leave subprocess open, as cookie file may be transient.
2051 if cookiefile:
2052 yield cookiefile
2053 return
2054 finally:
2055 p.stdin.close()
2056 if p.wait():
2057 err_msg = p.stderr.read()
2058 if ' -print_config' in err_msg:
2059 pass # Persistent proxy doesn't support -print_config.
Dave Borowitz497bde42015-01-02 13:58:05 -08002060 elif not quiet:
Dave Borowitz137d0132015-01-02 11:12:54 -08002061 print(err_msg, file=sys.stderr)
Dave Borowitz74c1f3d2013-06-03 15:05:07 -07002062 except OSError as e:
2063 if e.errno == errno.ENOENT:
2064 pass # No persistent proxy.
2065 raise
Dave Borowitz137d0132015-01-02 11:12:54 -08002066 yield GitConfig.ForUser().GetString('http.cookiefile')
Dave Borowitz74c1f3d2013-06-03 15:05:07 -07002067
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002068 def _Checkout(self, rev, quiet=False):
2069 cmd = ['checkout']
2070 if quiet:
2071 cmd.append('-q')
2072 cmd.append(rev)
2073 cmd.append('--')
2074 if GitCommand(self, cmd).Wait() != 0:
2075 if self._allrefs:
2076 raise GitError('%s checkout %s ' % (self.name, rev))
2077
Anthony King7bdac712014-07-16 12:56:40 +01002078 def _CherryPick(self, rev):
Pierre Tardye5a21222011-03-24 16:28:18 +01002079 cmd = ['cherry-pick']
2080 cmd.append(rev)
2081 cmd.append('--')
2082 if GitCommand(self, cmd).Wait() != 0:
2083 if self._allrefs:
2084 raise GitError('%s cherry-pick %s ' % (self.name, rev))
2085
Anthony King7bdac712014-07-16 12:56:40 +01002086 def _Revert(self, rev):
Erwan Mahea94f1622011-08-19 13:56:09 +02002087 cmd = ['revert']
2088 cmd.append('--no-edit')
2089 cmd.append(rev)
2090 cmd.append('--')
2091 if GitCommand(self, cmd).Wait() != 0:
2092 if self._allrefs:
2093 raise GitError('%s revert %s ' % (self.name, rev))
2094
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002095 def _ResetHard(self, rev, quiet=True):
2096 cmd = ['reset', '--hard']
2097 if quiet:
2098 cmd.append('-q')
2099 cmd.append(rev)
2100 if GitCommand(self, cmd).Wait() != 0:
2101 raise GitError('%s reset --hard %s ' % (self.name, rev))
2102
Anthony King7bdac712014-07-16 12:56:40 +01002103 def _Rebase(self, upstream, onto=None):
Shawn O. Pearce19a83d82009-04-16 08:14:26 -07002104 cmd = ['rebase']
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002105 if onto is not None:
2106 cmd.extend(['--onto', onto])
2107 cmd.append(upstream)
Shawn O. Pearce19a83d82009-04-16 08:14:26 -07002108 if GitCommand(self, cmd).Wait() != 0:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002109 raise GitError('%s rebase %s ' % (self.name, upstream))
2110
Pierre Tardy3d125942012-05-04 12:18:12 +02002111 def _FastForward(self, head, ffonly=False):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002112 cmd = ['merge', head]
Pierre Tardy3d125942012-05-04 12:18:12 +02002113 if ffonly:
2114 cmd.append("--ff-only")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002115 if GitCommand(self, cmd).Wait() != 0:
2116 raise GitError('%s merge %s ' % (self.name, head))
2117
Jonathan Nieder93719792015-03-17 11:29:58 -07002118 def _InitGitDir(self, mirror_git=None):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002119 if not os.path.exists(self.gitdir):
David James8d201162013-10-11 17:03:19 -07002120
2121 # Initialize the bare repository, which contains all of the objects.
2122 if not os.path.exists(self.objdir):
2123 os.makedirs(self.objdir)
2124 self.bare_objdir.init()
2125
2126 # If we have a separate directory to hold refs, initialize it as well.
2127 if self.objdir != self.gitdir:
2128 os.makedirs(self.gitdir)
2129 self._ReferenceGitDir(self.objdir, self.gitdir, share_refs=False,
2130 copy_all=True)
Shawn O. Pearce2816d4f2009-03-03 17:53:18 -08002131
Shawn O. Pearce88443382010-10-08 10:02:09 +02002132 mp = self.manifest.manifestProject
Victor Boivie2b30e3a2012-10-05 12:37:58 +02002133 ref_dir = mp.config.GetString('repo.reference') or ''
Shawn O. Pearce88443382010-10-08 10:02:09 +02002134
Victor Boivie2b30e3a2012-10-05 12:37:58 +02002135 if ref_dir or mirror_git:
2136 if not mirror_git:
2137 mirror_git = os.path.join(ref_dir, self.name + '.git')
Shawn O. Pearce88443382010-10-08 10:02:09 +02002138 repo_git = os.path.join(ref_dir, '.repo', 'projects',
2139 self.relpath + '.git')
2140
2141 if os.path.exists(mirror_git):
2142 ref_dir = mirror_git
2143
2144 elif os.path.exists(repo_git):
2145 ref_dir = repo_git
2146
2147 else:
2148 ref_dir = None
2149
2150 if ref_dir:
2151 _lwrite(os.path.join(self.gitdir, 'objects/info/alternates'),
2152 os.path.join(ref_dir, 'objects') + '\n')
2153
Jimmie Westera0444582012-10-24 13:44:42 +02002154 self._UpdateHooks()
2155
2156 m = self.manifest.manifestProject.config
2157 for key in ['user.name', 'user.email']:
Anthony King7bdac712014-07-16 12:56:40 +01002158 if m.Has(key, include_defaults=False):
Jimmie Westera0444582012-10-24 13:44:42 +02002159 self.config.SetString(key, m.GetString(key))
Jonathan Nieder93719792015-03-17 11:29:58 -07002160 if self.manifest.IsMirror:
Shawn O. Pearce2816d4f2009-03-03 17:53:18 -08002161 self.config.SetString('core.bare', 'true')
2162 else:
2163 self.config.SetString('core.bare', None)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002164
Jimmie Westera0444582012-10-24 13:44:42 +02002165 def _UpdateHooks(self):
2166 if os.path.exists(self.gitdir):
Shawn O. Pearcec9ef7442008-11-03 10:32:09 -08002167 self._InitHooks()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002168
Shawn O. Pearcec9ef7442008-11-03 10:32:09 -08002169 def _InitHooks(self):
Jesse Hall672cc492013-11-27 11:17:13 -08002170 hooks = os.path.realpath(self._gitdir_path('hooks'))
Shawn O. Pearcec9ef7442008-11-03 10:32:09 -08002171 if not os.path.exists(hooks):
2172 os.makedirs(hooks)
Jonathan Nieder93719792015-03-17 11:29:58 -07002173 for stock_hook in _ProjectHooks():
Shawn O. Pearce9452e4e2009-08-22 18:17:46 -07002174 name = os.path.basename(stock_hook)
2175
Victor Boivie65e0f352011-04-18 11:23:29 +02002176 if name in ('commit-msg',) and not self.remote.review \
2177 and not self is self.manifest.manifestProject:
Shawn O. Pearce9452e4e2009-08-22 18:17:46 -07002178 # Don't install a Gerrit Code Review hook if this
2179 # project does not appear to use it for reviews.
2180 #
Victor Boivie65e0f352011-04-18 11:23:29 +02002181 # Since the manifest project is one of those, but also
2182 # managed through gerrit, it's excluded
Shawn O. Pearce9452e4e2009-08-22 18:17:46 -07002183 continue
2184
2185 dst = os.path.join(hooks, name)
2186 if os.path.islink(dst):
2187 continue
2188 if os.path.exists(dst):
2189 if filecmp.cmp(stock_hook, dst, shallow=False):
2190 os.remove(dst)
2191 else:
2192 _error("%s: Not replacing %s hook", self.relpath, name)
2193 continue
Shawn O. Pearcec9ef7442008-11-03 10:32:09 -08002194 try:
Mickaël Salaünb9477bc2012-08-05 13:39:26 +02002195 os.symlink(os.path.relpath(stock_hook, os.path.dirname(dst)), dst)
Sarah Owensa5be53f2012-09-09 15:37:57 -07002196 except OSError as e:
Shawn O. Pearce9452e4e2009-08-22 18:17:46 -07002197 if e.errno == errno.EPERM:
Shawn O. Pearcec9ef7442008-11-03 10:32:09 -08002198 raise GitError('filesystem must support symlinks')
2199 else:
2200 raise
2201
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002202 def _InitRemote(self):
Shawn O. Pearced1f70d92009-05-19 14:58:02 -07002203 if self.remote.url:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002204 remote = self.GetRemote(self.remote.name)
Shawn O. Pearced1f70d92009-05-19 14:58:02 -07002205 remote.url = self.remote.url
2206 remote.review = self.remote.review
2207 remote.projectname = self.name
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002208
Shawn O. Pearcee284ad12008-11-04 07:37:10 -08002209 if self.worktree:
2210 remote.ResetFetch(mirror=False)
2211 else:
2212 remote.ResetFetch(mirror=True)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002213 remote.Save()
2214
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002215 def _InitMRef(self):
2216 if self.manifest.branch:
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07002217 self._InitAnyMRef(R_M + self.manifest.branch)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002218
Shawn O. Pearcee284ad12008-11-04 07:37:10 -08002219 def _InitMirrorHead(self):
Shawn O. Pearcefe200ee2009-06-01 15:28:21 -07002220 self._InitAnyMRef(HEAD)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07002221
2222 def _InitAnyMRef(self, ref):
2223 cur = self.bare_ref.symref(ref)
2224
2225 if self.revisionId:
2226 if cur != '' or self.bare_ref.get(ref) != self.revisionId:
2227 msg = 'manifest set to %s' % self.revisionId
2228 dst = self.revisionId + '^0'
Anthony King7bdac712014-07-16 12:56:40 +01002229 self.bare_git.UpdateRef(ref, dst, message=msg, detach=True)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07002230 else:
2231 remote = self.GetRemote(self.remote.name)
2232 dst = remote.ToLocal(self.revisionExpr)
2233 if cur != dst:
2234 msg = 'manifest set to %s' % self.revisionExpr
2235 self.bare_git.symbolic_ref('-m', msg, ref, dst)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -08002236
David James8d201162013-10-11 17:03:19 -07002237 def _ReferenceGitDir(self, gitdir, dotgit, share_refs, copy_all):
2238 """Update |dotgit| to reference |gitdir|, using symlinks where possible.
2239
2240 Args:
2241 gitdir: The bare git repository. Must already be initialized.
2242 dotgit: The repository you would like to initialize.
2243 share_refs: If true, |dotgit| will store its refs under |gitdir|.
2244 Only one work tree can store refs under a given |gitdir|.
2245 copy_all: If true, copy all remaining files from |gitdir| -> |dotgit|.
2246 This saves you the effort of initializing |dotgit| yourself.
2247 """
2248 # These objects can be shared between several working trees.
2249 symlink_files = ['description', 'info']
2250 symlink_dirs = ['hooks', 'objects', 'rr-cache', 'svn']
2251 if share_refs:
2252 # These objects can only be used by a single working tree.
Conley Owensf2af7562014-04-30 11:31:01 -07002253 symlink_files += ['config', 'packed-refs', 'shallow']
David James8d201162013-10-11 17:03:19 -07002254 symlink_dirs += ['logs', 'refs']
2255 to_symlink = symlink_files + symlink_dirs
2256
2257 to_copy = []
2258 if copy_all:
2259 to_copy = os.listdir(gitdir)
2260
2261 for name in set(to_copy).union(to_symlink):
2262 try:
2263 src = os.path.realpath(os.path.join(gitdir, name))
2264 dst = os.path.realpath(os.path.join(dotgit, name))
2265
2266 if os.path.lexists(dst) and not os.path.islink(dst):
2267 raise GitError('cannot overwrite a local work tree')
2268
2269 # If the source dir doesn't exist, create an empty dir.
2270 if name in symlink_dirs and not os.path.lexists(src):
2271 os.makedirs(src)
2272
Conley Owens80b87fe2014-05-09 17:13:44 -07002273 # If the source file doesn't exist, ensure the destination
2274 # file doesn't either.
2275 if name in symlink_files and not os.path.lexists(src):
2276 try:
2277 os.remove(dst)
2278 except OSError:
2279 pass
2280
David James8d201162013-10-11 17:03:19 -07002281 if name in to_symlink:
2282 os.symlink(os.path.relpath(src, os.path.dirname(dst)), dst)
2283 elif copy_all and not os.path.islink(dst):
2284 if os.path.isdir(src):
2285 shutil.copytree(src, dst)
2286 elif os.path.isfile(src):
2287 shutil.copy(src, dst)
2288 except OSError as e:
2289 if e.errno == errno.EPERM:
2290 raise GitError('filesystem must support symlinks')
2291 else:
2292 raise
2293
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002294 def _InitWorkTree(self):
2295 dotgit = os.path.join(self.worktree, '.git')
2296 if not os.path.exists(dotgit):
2297 os.makedirs(dotgit)
David James8d201162013-10-11 17:03:19 -07002298 self._ReferenceGitDir(self.gitdir, dotgit, share_refs=True,
2299 copy_all=False)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002300
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07002301 _lwrite(os.path.join(dotgit, HEAD), '%s\n' % self.GetRevisionId())
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002302
2303 cmd = ['read-tree', '--reset', '-u']
2304 cmd.append('-v')
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07002305 cmd.append(HEAD)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002306 if GitCommand(self, cmd).Wait() != 0:
2307 raise GitError("cannot initialize work tree")
Victor Boivie0960b5b2010-11-26 13:42:13 +01002308
Jeff Hamiltone0df2322014-04-21 17:10:59 -05002309 self._CopyAndLinkFiles()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002310
2311 def _gitdir_path(self, path):
David James8d201162013-10-11 17:03:19 -07002312 return os.path.realpath(os.path.join(self.gitdir, path))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002313
Shawn O. Pearce8ad8a0e2009-05-29 18:28:25 -07002314 def _revlist(self, *args, **kw):
2315 a = []
2316 a.extend(args)
2317 a.append('--')
2318 return self.work_git.rev_list(*a, **kw)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002319
2320 @property
2321 def _allrefs(self):
Shawn O. Pearced237b692009-04-17 18:49:50 -07002322 return self.bare_ref.all
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002323
Julien Camperguedd654222014-01-09 16:21:37 +01002324 def _getLogs(self, rev1, rev2, oneline=False, color=True):
2325 """Get logs between two revisions of this project."""
2326 comp = '..'
2327 if rev1:
2328 revs = [rev1]
2329 if rev2:
2330 revs.extend([comp, rev2])
2331 cmd = ['log', ''.join(revs)]
2332 out = DiffColoring(self.config)
2333 if out.is_on and color:
2334 cmd.append('--color')
2335 if oneline:
2336 cmd.append('--oneline')
2337
2338 try:
2339 log = GitCommand(self, cmd, capture_stdout=True, capture_stderr=True)
2340 if log.Wait() == 0:
2341 return log.stdout
2342 except GitError:
2343 # worktree may not exist if groups changed for example. In that case,
2344 # try in gitdir instead.
2345 if not os.path.exists(self.worktree):
2346 return self.bare_git.log(*cmd[1:])
2347 else:
2348 raise
2349 return None
2350
2351 def getAddedAndRemovedLogs(self, toProject, oneline=False, color=True):
2352 """Get the list of logs from this revision to given revisionId"""
2353 logs = {}
2354 selfId = self.GetRevisionId(self._allrefs)
2355 toId = toProject.GetRevisionId(toProject._allrefs)
2356
2357 logs['added'] = self._getLogs(selfId, toId, oneline=oneline, color=color)
2358 logs['removed'] = self._getLogs(toId, selfId, oneline=oneline, color=color)
2359 return logs
2360
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002361 class _GitGetByExec(object):
David James8d201162013-10-11 17:03:19 -07002362 def __init__(self, project, bare, gitdir):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002363 self._project = project
2364 self._bare = bare
David James8d201162013-10-11 17:03:19 -07002365 self._gitdir = gitdir
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002366
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002367 def LsOthers(self):
2368 p = GitCommand(self._project,
2369 ['ls-files',
2370 '-z',
2371 '--others',
2372 '--exclude-standard'],
Anthony King7bdac712014-07-16 12:56:40 +01002373 bare=False,
David James8d201162013-10-11 17:03:19 -07002374 gitdir=self._gitdir,
Anthony King7bdac712014-07-16 12:56:40 +01002375 capture_stdout=True,
2376 capture_stderr=True)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002377 if p.Wait() == 0:
2378 out = p.stdout
2379 if out:
David Pursehouse1d947b32012-10-25 12:23:11 +09002380 return out[:-1].split('\0') # pylint: disable=W1401
2381 # Backslash is not anomalous
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002382 return []
2383
2384 def DiffZ(self, name, *args):
2385 cmd = [name]
2386 cmd.append('-z')
2387 cmd.extend(args)
2388 p = GitCommand(self._project,
2389 cmd,
David James8d201162013-10-11 17:03:19 -07002390 gitdir=self._gitdir,
Anthony King7bdac712014-07-16 12:56:40 +01002391 bare=False,
2392 capture_stdout=True,
2393 capture_stderr=True)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002394 try:
2395 out = p.process.stdout.read()
2396 r = {}
2397 if out:
David Pursehouse1d947b32012-10-25 12:23:11 +09002398 out = iter(out[:-1].split('\0')) # pylint: disable=W1401
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002399 while out:
Shawn O. Pearce02dbb6d2008-10-21 13:59:08 -07002400 try:
Anthony King2cd1f042014-05-05 21:24:05 +01002401 info = next(out)
2402 path = next(out)
Shawn O. Pearce02dbb6d2008-10-21 13:59:08 -07002403 except StopIteration:
2404 break
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002405
2406 class _Info(object):
2407 def __init__(self, path, omode, nmode, oid, nid, state):
2408 self.path = path
2409 self.src_path = None
2410 self.old_mode = omode
2411 self.new_mode = nmode
2412 self.old_id = oid
2413 self.new_id = nid
2414
2415 if len(state) == 1:
2416 self.status = state
2417 self.level = None
2418 else:
2419 self.status = state[:1]
2420 self.level = state[1:]
2421 while self.level.startswith('0'):
2422 self.level = self.level[1:]
2423
2424 info = info[1:].split(' ')
David Pursehouse8f62fb72012-11-14 12:09:38 +09002425 info = _Info(path, *info)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002426 if info.status in ('R', 'C'):
2427 info.src_path = info.path
Anthony King2cd1f042014-05-05 21:24:05 +01002428 info.path = next(out)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002429 r[info.path] = info
2430 return r
2431 finally:
2432 p.Wait()
2433
2434 def GetHead(self):
Shawn O. Pearce5b23f242009-04-17 18:43:33 -07002435 if self._bare:
2436 path = os.path.join(self._project.gitdir, HEAD)
2437 else:
2438 path = os.path.join(self._project.worktree, '.git', HEAD)
Conley Owens75ee0572012-11-15 17:33:11 -08002439 try:
2440 fd = open(path, 'rb')
Dan Sandler53e902a2014-03-09 13:20:02 -04002441 except IOError as e:
2442 raise NoManifestException(path, str(e))
Shawn O. Pearce76ca9f82009-04-18 14:48:03 -07002443 try:
2444 line = fd.read()
2445 finally:
2446 fd.close()
Chirayu Desai217ea7d2013-03-01 19:14:38 +05302447 try:
2448 line = line.decode()
2449 except AttributeError:
2450 pass
Shawn O. Pearce5b23f242009-04-17 18:43:33 -07002451 if line.startswith('ref: '):
2452 return line[5:-1]
2453 return line[:-1]
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002454
2455 def SetHead(self, ref, message=None):
2456 cmdv = []
2457 if message is not None:
2458 cmdv.extend(['-m', message])
2459 cmdv.append(HEAD)
2460 cmdv.append(ref)
2461 self.symbolic_ref(*cmdv)
2462
2463 def DetachHead(self, new, message=None):
2464 cmdv = ['--no-deref']
2465 if message is not None:
2466 cmdv.extend(['-m', message])
2467 cmdv.append(HEAD)
2468 cmdv.append(new)
2469 self.update_ref(*cmdv)
2470
2471 def UpdateRef(self, name, new, old=None,
2472 message=None,
2473 detach=False):
2474 cmdv = []
2475 if message is not None:
2476 cmdv.extend(['-m', message])
2477 if detach:
2478 cmdv.append('--no-deref')
2479 cmdv.append(name)
2480 cmdv.append(new)
2481 if old is not None:
2482 cmdv.append(old)
2483 self.update_ref(*cmdv)
2484
2485 def DeleteRef(self, name, old=None):
2486 if not old:
2487 old = self.rev_parse(name)
2488 self.update_ref('-d', name, old)
Shawn O. Pearcefbcde472009-04-17 20:58:02 -07002489 self._project.bare_ref.deleted(name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002490
Shawn O. Pearce8ad8a0e2009-05-29 18:28:25 -07002491 def rev_list(self, *args, **kw):
2492 if 'format' in kw:
2493 cmdv = ['log', '--pretty=format:%s' % kw['format']]
2494 else:
2495 cmdv = ['rev-list']
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002496 cmdv.extend(args)
2497 p = GitCommand(self._project,
2498 cmdv,
Anthony King7bdac712014-07-16 12:56:40 +01002499 bare=self._bare,
David James8d201162013-10-11 17:03:19 -07002500 gitdir=self._gitdir,
Anthony King7bdac712014-07-16 12:56:40 +01002501 capture_stdout=True,
2502 capture_stderr=True)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002503 r = []
2504 for line in p.process.stdout:
Shawn O. Pearce8ad8a0e2009-05-29 18:28:25 -07002505 if line[-1] == '\n':
2506 line = line[:-1]
2507 r.append(line)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002508 if p.Wait() != 0:
2509 raise GitError('%s rev-list %s: %s' % (
2510 self._project.name,
2511 str(args),
2512 p.stderr))
2513 return r
2514
2515 def __getattr__(self, name):
Doug Anderson37282b42011-03-04 11:54:18 -08002516 """Allow arbitrary git commands using pythonic syntax.
2517
2518 This allows you to do things like:
2519 git_obj.rev_parse('HEAD')
2520
2521 Since we don't have a 'rev_parse' method defined, the __getattr__ will
2522 run. We'll replace the '_' with a '-' and try to run a git command.
Dave Borowitz091f8932012-10-23 17:01:04 -07002523 Any other positional arguments will be passed to the git command, and the
2524 following keyword arguments are supported:
2525 config: An optional dict of git config options to be passed with '-c'.
Doug Anderson37282b42011-03-04 11:54:18 -08002526
2527 Args:
2528 name: The name of the git command to call. Any '_' characters will
2529 be replaced with '-'.
2530
2531 Returns:
2532 A callable object that will try to call git with the named command.
2533 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002534 name = name.replace('_', '-')
Dave Borowitz091f8932012-10-23 17:01:04 -07002535 def runner(*args, **kwargs):
2536 cmdv = []
2537 config = kwargs.pop('config', None)
2538 for k in kwargs:
2539 raise TypeError('%s() got an unexpected keyword argument %r'
2540 % (name, k))
2541 if config is not None:
Dave Borowitzb42b4742012-10-31 12:27:27 -07002542 if not git_require((1, 7, 2)):
2543 raise ValueError('cannot set config on command line for %s()'
2544 % name)
Chirayu Desai217ea7d2013-03-01 19:14:38 +05302545 for k, v in config.items():
Dave Borowitz091f8932012-10-23 17:01:04 -07002546 cmdv.append('-c')
2547 cmdv.append('%s=%s' % (k, v))
2548 cmdv.append(name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002549 cmdv.extend(args)
2550 p = GitCommand(self._project,
2551 cmdv,
Anthony King7bdac712014-07-16 12:56:40 +01002552 bare=self._bare,
David James8d201162013-10-11 17:03:19 -07002553 gitdir=self._gitdir,
Anthony King7bdac712014-07-16 12:56:40 +01002554 capture_stdout=True,
2555 capture_stderr=True)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002556 if p.Wait() != 0:
2557 raise GitError('%s %s: %s' % (
2558 self._project.name,
2559 name,
2560 p.stderr))
2561 r = p.stdout
Chirayu Desai217ea7d2013-03-01 19:14:38 +05302562 try:
Conley Owensedd01512013-09-26 12:59:58 -07002563 r = r.decode('utf-8')
Chirayu Desai217ea7d2013-03-01 19:14:38 +05302564 except AttributeError:
2565 pass
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002566 if r.endswith('\n') and r.index('\n') == len(r) - 1:
2567 return r[:-1]
2568 return r
2569 return runner
2570
2571
Shawn O. Pearce350cde42009-04-16 11:21:18 -07002572class _PriorSyncFailedError(Exception):
2573 def __str__(self):
2574 return 'prior sync failed; rebase still in progress'
2575
2576class _DirtyError(Exception):
2577 def __str__(self):
2578 return 'contains uncommitted changes'
2579
2580class _InfoMessage(object):
2581 def __init__(self, project, text):
2582 self.project = project
2583 self.text = text
2584
2585 def Print(self, syncbuf):
2586 syncbuf.out.info('%s/: %s', self.project.relpath, self.text)
2587 syncbuf.out.nl()
2588
2589class _Failure(object):
2590 def __init__(self, project, why):
2591 self.project = project
2592 self.why = why
2593
2594 def Print(self, syncbuf):
2595 syncbuf.out.fail('error: %s/: %s',
2596 self.project.relpath,
2597 str(self.why))
2598 syncbuf.out.nl()
2599
2600class _Later(object):
2601 def __init__(self, project, action):
2602 self.project = project
2603 self.action = action
2604
2605 def Run(self, syncbuf):
2606 out = syncbuf.out
2607 out.project('project %s/', self.project.relpath)
2608 out.nl()
2609 try:
2610 self.action()
2611 out.nl()
2612 return True
David Pursehouse8a68ff92012-09-24 12:15:13 +09002613 except GitError:
Shawn O. Pearce350cde42009-04-16 11:21:18 -07002614 out.nl()
2615 return False
2616
2617class _SyncColoring(Coloring):
2618 def __init__(self, config):
2619 Coloring.__init__(self, config, 'reposync')
Anthony King7bdac712014-07-16 12:56:40 +01002620 self.project = self.printer('header', attr='bold')
2621 self.info = self.printer('info')
2622 self.fail = self.printer('fail', fg='red')
Shawn O. Pearce350cde42009-04-16 11:21:18 -07002623
2624class SyncBuffer(object):
2625 def __init__(self, config, detach_head=False):
2626 self._messages = []
2627 self._failures = []
2628 self._later_queue1 = []
2629 self._later_queue2 = []
2630
2631 self.out = _SyncColoring(config)
2632 self.out.redirect(sys.stderr)
2633
2634 self.detach_head = detach_head
2635 self.clean = True
2636
2637 def info(self, project, fmt, *args):
2638 self._messages.append(_InfoMessage(project, fmt % args))
2639
2640 def fail(self, project, err=None):
2641 self._failures.append(_Failure(project, err))
2642 self.clean = False
2643
2644 def later1(self, project, what):
2645 self._later_queue1.append(_Later(project, what))
2646
2647 def later2(self, project, what):
2648 self._later_queue2.append(_Later(project, what))
2649
2650 def Finish(self):
2651 self._PrintMessages()
2652 self._RunLater()
2653 self._PrintMessages()
2654 return self.clean
2655
2656 def _RunLater(self):
2657 for q in ['_later_queue1', '_later_queue2']:
2658 if not self._RunQueue(q):
2659 return
2660
2661 def _RunQueue(self, queue):
2662 for m in getattr(self, queue):
2663 if not m.Run(self):
2664 self.clean = False
2665 return False
2666 setattr(self, queue, [])
2667 return True
2668
2669 def _PrintMessages(self):
2670 for m in self._messages:
2671 m.Print(self)
2672 for m in self._failures:
2673 m.Print(self)
2674
2675 self._messages = []
2676 self._failures = []
2677
2678
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002679class MetaProject(Project):
2680 """A special project housed under .repo.
2681 """
2682 def __init__(self, manifest, name, gitdir, worktree):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002683 Project.__init__(self,
Anthony King7bdac712014-07-16 12:56:40 +01002684 manifest=manifest,
2685 name=name,
2686 gitdir=gitdir,
2687 objdir=gitdir,
2688 worktree=worktree,
2689 remote=RemoteSpec('origin'),
2690 relpath='.repo/%s' % name,
2691 revisionExpr='refs/heads/master',
2692 revisionId=None,
2693 groups=None)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002694
2695 def PreSync(self):
2696 if self.Exists:
2697 cb = self.CurrentBranch
2698 if cb:
2699 base = self.GetBranch(cb).merge
2700 if base:
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07002701 self.revisionExpr = base
2702 self.revisionId = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002703
Anthony King7bdac712014-07-16 12:56:40 +01002704 def MetaBranchSwitch(self):
Florian Vallee5d016502012-06-07 17:19:26 +02002705 """ Prepare MetaProject for manifest branch switch
2706 """
2707
2708 # detach and delete manifest branch, allowing a new
2709 # branch to take over
Anthony King7bdac712014-07-16 12:56:40 +01002710 syncbuf = SyncBuffer(self.config, detach_head=True)
Florian Vallee5d016502012-06-07 17:19:26 +02002711 self.Sync_LocalHalf(syncbuf)
2712 syncbuf.Finish()
2713
2714 return GitCommand(self,
Torne (Richard Coles)e8f75fa2012-07-20 15:32:19 +01002715 ['update-ref', '-d', 'refs/heads/default'],
Anthony King7bdac712014-07-16 12:56:40 +01002716 capture_stdout=True,
2717 capture_stderr=True).Wait() == 0
Florian Vallee5d016502012-06-07 17:19:26 +02002718
2719
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002720 @property
Shawn O. Pearcef6906872009-04-18 10:49:00 -07002721 def LastFetch(self):
2722 try:
2723 fh = os.path.join(self.gitdir, 'FETCH_HEAD')
2724 return os.path.getmtime(fh)
2725 except OSError:
2726 return 0
2727
2728 @property
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002729 def HasChanges(self):
2730 """Has the remote received new commits not yet checked out?
2731 """
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07002732 if not self.remote or not self.revisionExpr:
Shawn O. Pearce336f7bd2009-04-18 10:39:28 -07002733 return False
2734
David Pursehouse8a68ff92012-09-24 12:15:13 +09002735 all_refs = self.bare_ref.all
2736 revid = self.GetRevisionId(all_refs)
Shawn O. Pearce336f7bd2009-04-18 10:39:28 -07002737 head = self.work_git.GetHead()
2738 if head.startswith(R_HEADS):
2739 try:
David Pursehouse8a68ff92012-09-24 12:15:13 +09002740 head = all_refs[head]
Shawn O. Pearce336f7bd2009-04-18 10:39:28 -07002741 except KeyError:
2742 head = None
2743
2744 if revid == head:
2745 return False
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -07002746 elif self._revlist(not_rev(HEAD), revid):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002747 return True
2748 return False