OLD | NEW |
---|---|
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 """Gclient-specific SCM-specific operations.""" | 5 """Gclient-specific SCM-specific operations.""" |
6 | 6 |
7 import logging | 7 import logging |
8 import os | 8 import os |
9 import posixpath | 9 import posixpath |
10 import re | 10 import re |
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
469 """Display status information.""" | 469 """Display status information.""" |
470 if not os.path.isdir(self.checkout_path): | 470 if not os.path.isdir(self.checkout_path): |
471 print(('\n________ couldn\'t run status in %s:\n' | 471 print(('\n________ couldn\'t run status in %s:\n' |
472 'The directory does not exist.') % self.checkout_path) | 472 'The directory does not exist.') % self.checkout_path) |
473 else: | 473 else: |
474 merge_base = self._Capture(['merge-base', 'HEAD', 'origin']) | 474 merge_base = self._Capture(['merge-base', 'HEAD', 'origin']) |
475 self._Run(['diff', '--name-status', merge_base], options) | 475 self._Run(['diff', '--name-status', merge_base], options) |
476 files = self._Capture(['diff', '--name-only', merge_base]).split() | 476 files = self._Capture(['diff', '--name-only', merge_base]).split() |
477 file_list.extend([os.path.join(self.checkout_path, f) for f in files]) | 477 file_list.extend([os.path.join(self.checkout_path, f) for f in files]) |
478 | 478 |
479 @staticmethod | |
480 def GetUsableRev(cwd, url, rev, options): | |
481 """Finds a useful revision for this repository. | |
482 | |
483 If SCM is git-svn and the head revision is less than |rev|, git svn fetch | |
484 will be called on the source.""" | |
485 sha1 = None | |
486 # As an optimization, only verify an SVN revision as [0-9]{1,6} for now to | |
487 # avoid making a network request. | |
488 if (scm.GIT.IsGitSvn(cwd=cwd) and | |
489 rev.isdigit() and len(rev) < 7): | |
490 local_head = scm.GIT.GetGitSvnHeadRev(cwd=cwd) | |
491 if not local_head or local_head < int(rev): | |
492 if options.verbose: | |
493 print('Running git svn fetch. This might take a while.\n') | |
494 scm.GIT.Capture(['svn', 'fetch'], cwd=cwd) | |
495 sha1 = scm.GIT.GetSha1ForSvnRev(cwd=cwd, rev=rev) | |
496 else: | |
497 sha1 = scm.GIT.IsValidRevision(cwd=cwd, url=url, rev=rev) | |
498 if sha1: | |
499 return sha1 | |
500 else: | |
501 help_url = ''.join(['http://code.google.com/p/chromium/wiki/UsingNewGit', | |
M-A Ruel
2011/11/09 14:16:08
Replace lines 498-506 with:
if not sha1:
Dan Beam
2011/11/10 10:29:15
Done.
| |
502 '#Initial_checkout']) | |
503 raise gclient_utils.Error( | |
504 'Safesync URLs with a git checkout currently require a git-svn ' | |
505 'remote or a safesync_url that provides git sha1s. Please add a ' | |
506 'git-svn remote or change your safesync_url. %s' % help_url) | |
507 | |
479 def FullUrlForRelativeUrl(self, url): | 508 def FullUrlForRelativeUrl(self, url): |
480 # Strip from last '/' | 509 # Strip from last '/' |
481 # Equivalent to unix basename | 510 # Equivalent to unix basename |
482 base_url = self.url | 511 base_url = self.url |
483 return base_url[:base_url.rfind('/')] + url | 512 return base_url[:base_url.rfind('/')] + url |
484 | 513 |
485 def _Clone(self, revision, url, options): | 514 def _Clone(self, revision, url, options): |
486 """Clone a git repository from the given URL. | 515 """Clone a git repository from the given URL. |
487 | 516 |
488 Once we've cloned the repo, we checkout a working branch if the specified | 517 Once we've cloned the repo, we checkout a working branch if the specified |
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
984 command = ['status'] + args | 1013 command = ['status'] + args |
985 if not os.path.isdir(self.checkout_path): | 1014 if not os.path.isdir(self.checkout_path): |
986 # svn status won't work if the directory doesn't exist. | 1015 # svn status won't work if the directory doesn't exist. |
987 print(('\n________ couldn\'t run \'%s\' in \'%s\':\n' | 1016 print(('\n________ couldn\'t run \'%s\' in \'%s\':\n' |
988 'The directory does not exist.') % | 1017 'The directory does not exist.') % |
989 (' '.join(command), self.checkout_path)) | 1018 (' '.join(command), self.checkout_path)) |
990 # There's no file list to retrieve. | 1019 # There's no file list to retrieve. |
991 else: | 1020 else: |
992 self._RunAndGetFileList(command, options, file_list) | 1021 self._RunAndGetFileList(command, options, file_list) |
993 | 1022 |
1023 @staticmethod | |
1024 def GetUsableRev(cwd, url, rev, options): | |
1025 """Finds a useful revision for this repository.""" | |
M-A Ruel
2011/11/09 14:16:08
Verifies the validity of the revision for this rep
Dan Beam
2011/11/10 10:29:15
Done.
| |
1026 if scm.SVN.IsValidRevision(cwd=cwd, url=url, rev=rev): | |
M-A Ruel
2011/11/09 14:16:08
I think you should do the url@revision formatting
Dan Beam
2011/11/09 19:21:59
I guess I could, but the git version doesn't use t
Dan Beam
2011/11/10 10:29:15
Done.
| |
1027 return rev | |
1028 raise gclient_utils.Error( | |
1029 'The content of safesync_url doesn\'t look like a valid Subversion ' | |
M-A Ruel
2011/11/09 14:16:08
Prepend '%s isn't a valid revision'
Dan Beam
2011/11/10 10:29:15
Done.
| |
1030 'revision. Please check that your safesync_url is correct.') | |
1031 | |
994 def FullUrlForRelativeUrl(self, url): | 1032 def FullUrlForRelativeUrl(self, url): |
995 # Find the forth '/' and strip from there. A bit hackish. | 1033 # Find the forth '/' and strip from there. A bit hackish. |
996 return '/'.join(self.url.split('/')[:4]) + url | 1034 return '/'.join(self.url.split('/')[:4]) + url |
997 | 1035 |
998 def _Run(self, args, options, **kwargs): | 1036 def _Run(self, args, options, **kwargs): |
999 """Runs a commands that goes to stdout.""" | 1037 """Runs a commands that goes to stdout.""" |
1000 kwargs.setdefault('cwd', self.checkout_path) | 1038 kwargs.setdefault('cwd', self.checkout_path) |
1001 gclient_utils.CheckCallAndFilterAndHeader(['svn'] + args, | 1039 gclient_utils.CheckCallAndFilterAndHeader(['svn'] + args, |
1002 always=options.verbose, **kwargs) | 1040 always=options.verbose, **kwargs) |
1003 | 1041 |
(...skipping 29 matching lines...) Expand all Loading... | |
1033 new_command.append('--force') | 1071 new_command.append('--force') |
1034 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: | 1072 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: |
1035 new_command.extend(('--accept', 'theirs-conflict')) | 1073 new_command.extend(('--accept', 'theirs-conflict')) |
1036 elif options.manually_grab_svn_rev: | 1074 elif options.manually_grab_svn_rev: |
1037 new_command.append('--force') | 1075 new_command.append('--force') |
1038 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: | 1076 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: |
1039 new_command.extend(('--accept', 'postpone')) | 1077 new_command.extend(('--accept', 'postpone')) |
1040 elif command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: | 1078 elif command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: |
1041 new_command.extend(('--accept', 'postpone')) | 1079 new_command.extend(('--accept', 'postpone')) |
1042 return new_command | 1080 return new_command |
OLD | NEW |