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 FindSafesyncRev(cwd, rev, options): | |
M-A Ruel
2011/11/08 14:29:20
Note that this function has nothing to do with 'sa
Dan Beam
2011/11/09 10:31:15
Done.
| |
481 """Find a useful safesync revision for this repository. If SCM is git-svn | |
M-A Ruel
2011/11/08 14:29:20
Finds
Dan Beam
2011/11/09 10:31:15
Done.
| |
482 and the head revision is less than |rev|, git svn fetch will be | |
M-A Ruel
2011/11/08 14:29:20
style nit: In general we strive for the docstring
Dan Beam
2011/11/09 10:31:15
Done.
| |
483 called on the source.""" | |
484 sha1 = None | |
485 # As an optimization, only verify an SVN revision as [0-9]{1,6} for now so | |
486 # we avoiding making a network request. | |
487 if (scm.GIT.IsGitSvn(cwd=cwd) and | |
488 rev.isdigit() and len(rev) < 7): | |
489 local_head = scm.GIT.GetGitSvnHeadRev(cwd=cwd) | |
490 if not local_head or local_head < int(rev): | |
491 if options.verbose: | |
492 print('Running git svn fetch. This might take a while.\n') | |
493 scm.GIT.Capture(['svn', 'fetch'], cwd=cwd) | |
494 sha1 = scm.GIT.GetSha1ForSvnRev(cwd=cwd, rev=rev) | |
495 else: | |
496 sha1 = scm.GIT.VerifyRevisionFormat(cwd=cwd, rev=rev) | |
497 if not sha1: | |
498 # If we didn't find anything, show a warning. | |
M-A Ruel
2011/11/08 14:29:20
Are you sure a warning is a good idea? It'll get l
Dan Beam
2011/11/09 10:31:15
Done.
| |
499 help_url = ''.join(['http://code.google.com/p/chromium/wiki/UsingNewGit', | |
500 '#Initial_checkout']) | |
501 print('WARNING: Safesync URLs with a git checkout currently require a\n' | |
502 ' git-svn remote or a safesync_url that provides git\n' | |
503 ' sha1s. Please add a git-svn remote or change your\n' | |
504 ' safesync_url.\n' | |
505 ' %s\n' % help_url) | |
506 return sha1 | |
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 FindSafesyncRev(cwd, rev, options): | |
1025 """Find a useful safesync revision for this repository.""" | |
M-A Ruel
2011/11/08 14:29:20
Finds
Dan Beam
2011/11/09 10:31:15
Done.
| |
1026 if scm.SVN.VerifyRevisionFormat(cwd=cwd, rev=rev): | |
1027 return rev | |
1028 # Invalid revision format. | |
1029 print('WARNING: The content of safesync_url didn\'t look like a valid\n' | |
M-A Ruel
2011/11/08 14:29:20
Same as line 498. Either always return rev silentl
Dan Beam
2011/11/09 10:31:15
Done.
| |
1030 ' Subversion revision. Please check your safesync_url is\n' | |
1031 ' correct. Ignoring for now.\n') | |
1032 return None | |
1033 | |
994 def FullUrlForRelativeUrl(self, url): | 1034 def FullUrlForRelativeUrl(self, url): |
995 # Find the forth '/' and strip from there. A bit hackish. | 1035 # Find the forth '/' and strip from there. A bit hackish. |
996 return '/'.join(self.url.split('/')[:4]) + url | 1036 return '/'.join(self.url.split('/')[:4]) + url |
997 | 1037 |
998 def _Run(self, args, options, **kwargs): | 1038 def _Run(self, args, options, **kwargs): |
999 """Runs a commands that goes to stdout.""" | 1039 """Runs a commands that goes to stdout.""" |
1000 kwargs.setdefault('cwd', self.checkout_path) | 1040 kwargs.setdefault('cwd', self.checkout_path) |
1001 gclient_utils.CheckCallAndFilterAndHeader(['svn'] + args, | 1041 gclient_utils.CheckCallAndFilterAndHeader(['svn'] + args, |
1002 always=options.verbose, **kwargs) | 1042 always=options.verbose, **kwargs) |
1003 | 1043 |
(...skipping 29 matching lines...) Expand all Loading... | |
1033 new_command.append('--force') | 1073 new_command.append('--force') |
1034 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: | 1074 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: |
1035 new_command.extend(('--accept', 'theirs-conflict')) | 1075 new_command.extend(('--accept', 'theirs-conflict')) |
1036 elif options.manually_grab_svn_rev: | 1076 elif options.manually_grab_svn_rev: |
1037 new_command.append('--force') | 1077 new_command.append('--force') |
1038 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: | 1078 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: |
1039 new_command.extend(('--accept', 'postpone')) | 1079 new_command.extend(('--accept', 'postpone')) |
1040 elif command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: | 1080 elif command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: |
1041 new_command.extend(('--accept', 'postpone')) | 1081 new_command.extend(('--accept', 'postpone')) |
1042 return new_command | 1082 return new_command |
OLD | NEW |