OLD | NEW |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 """Meta checkout manager supporting both Subversion and GIT. | 6 """Meta checkout manager supporting both Subversion and GIT. |
7 | 7 |
8 Files | 8 Files |
9 .gclient : Current client configuration, written by 'config' command. | 9 .gclient : Current client configuration, written by 'config' command. |
10 Format is a Python script defining 'solutions', a list whose | 10 Format is a Python script defining 'solutions', a list whose |
(...skipping 901 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
912 def _EnforceRevisions(self): | 912 def _EnforceRevisions(self): |
913 """Checks for revision overrides.""" | 913 """Checks for revision overrides.""" |
914 revision_overrides = {} | 914 revision_overrides = {} |
915 if self._options.head: | 915 if self._options.head: |
916 return revision_overrides | 916 return revision_overrides |
917 # Do not check safesync_url if one or more --revision flag is specified. | 917 # Do not check safesync_url if one or more --revision flag is specified. |
918 if not self._options.revisions: | 918 if not self._options.revisions: |
919 for s in self.dependencies: | 919 for s in self.dependencies: |
920 if not s.managed: | 920 if not s.managed: |
921 self._options.revisions.append('%s@unmanaged' % s.name) | 921 self._options.revisions.append('%s@unmanaged' % s.name) |
922 elif s.safesync_url: | 922 elif s.safesync_url: |
M-A Ruel
2011/12/21 18:31:02
I'd rather move everything in this condition into
Dan Beam
2011/12/21 20:20:11
Done.
| |
923 handle = urllib.urlopen(s.safesync_url) | 923 handle = urllib.urlopen(s.safesync_url) |
924 rev = handle.read().strip() | 924 rev = handle.read().strip() |
925 handle.close() | 925 handle.close() |
926 scm = gclient_scm.CreateSCM(s.url, s.root.root_dir, s.name) | 926 if not len(rev): |
927 safe_rev = scm.GetUsableRev(rev=rev, options=self._options) | |
928 if not safe_rev: | |
929 raise gclient_utils.Error( | 927 raise gclient_utils.Error( |
930 'Despite our best attempts, we couldn\'t find a useful\n' | 928 'It appears your safesync_url (%s) is not working properly\n' |
931 'safesync_url revision for you.') | 929 '(as it returned an empty response). Check your config.' % |
932 if self._options.verbose: | 930 s.safesync_url) |
933 print('Using safesync_url revision: %s.\n' % safe_rev) | 931 # If the content of the safesync_url appears to be an SVN rev and the |
934 self._options.revisions.append('%s@%s' % (s.name, safe_rev)) | 932 # URL of the source appears to be git, we can only attempt to find out |
933 # if a revision is useful after we've cloned the original URL. | |
934 elif (rev.isdigit() and len(rev) < 7 and | |
935 not os.path.isdir(os.path.join(s.root.root_dir, s.name)) and | |
M-A Ruel
2011/12/21 18:31:02
I'd rather have GetUsableRev() handles that, it'd
Dan Beam
2011/12/21 20:20:11
Done.
| |
936 gclient_scm.GetScmName(s.url) == 'git'): | |
937 print('Checking out new git dependencies (%s) with an SVN\n' | |
938 'safesync_url (%s) isn\'t currently supported. Ignoring the\n' | |
939 'safesync_url during initial checkout.\n' % | |
940 (s.url, s.safesync_url)) | |
941 else: | |
942 self._ApplySafeSyncRev(dependency=s, rev=rev) | |
935 if not self._options.revisions: | 943 if not self._options.revisions: |
936 return revision_overrides | 944 return revision_overrides |
937 solutions_names = [s.name for s in self.dependencies] | 945 solutions_names = [s.name for s in self.dependencies] |
938 index = 0 | 946 index = 0 |
939 for revision in self._options.revisions: | 947 for revision in self._options.revisions: |
940 if not '@' in revision: | 948 if not '@' in revision: |
941 # Support for --revision 123 | 949 # Support for --revision 123 |
942 revision = '%s@%s' % (solutions_names[index], revision) | 950 revision = '%s@%s' % (solutions_names[index], revision) |
943 sol, rev = revision.split('@', 1) | 951 sol, rev = revision.split('@', 1) |
944 if not sol in solutions_names: | 952 if not sol in solutions_names: |
945 #raise gclient_utils.Error('%s is not a valid solution.' % sol) | 953 #raise gclient_utils.Error('%s is not a valid solution.' % sol) |
946 print >> sys.stderr, ('Please fix your script, having invalid ' | 954 print >> sys.stderr, ('Please fix your script, having invalid ' |
947 '--revision flags will soon considered an error.') | 955 '--revision flags will soon considered an error.') |
948 else: | 956 else: |
949 revision_overrides[sol] = rev | 957 revision_overrides[sol] = rev |
950 index += 1 | 958 index += 1 |
951 return revision_overrides | 959 return revision_overrides |
952 | 960 |
961 def _ApplySafeSyncRev(self, dependency, rev): | |
962 """Find a valid revision from the content of the safesync_url and apply it | |
M-A Ruel
2011/12/21 18:31:02
Finds
Dan Beam
2011/12/21 20:20:11
Done.
| |
963 by appending revisions to the revision list. Throws if revision appears to | |
964 be invalid for the given |dependency|.""" | |
965 scm = gclient_scm.CreateSCM(dependency.url, dependency.root.root_dir, | |
966 dependency.name) | |
967 safe_rev = scm.GetUsableRev(rev=rev, options=self._options) | |
968 if not safe_rev: | |
969 raise gclient_utils.Error( | |
M-A Ruel
2011/12/21 18:31:02
You know that you are also raising inside GetUsabl
Dan Beam
2011/12/21 20:20:11
Done.
| |
970 'Despite our best attempts, we couldn\'t find a useful\n' | |
971 'safesync_url revision for you. Please check your config.') | |
972 if self._options.verbose: | |
973 print('Using safesync_url revision: %s.\n' % safe_rev) | |
974 self._options.revisions.append('%s@%s' % (dependency.name, safe_rev)) | |
975 | |
953 def RunOnDeps(self, command, args): | 976 def RunOnDeps(self, command, args): |
954 """Runs a command on each dependency in a client and its dependencies. | 977 """Runs a command on each dependency in a client and its dependencies. |
955 | 978 |
956 Args: | 979 Args: |
957 command: The command to use (e.g., 'status' or 'diff') | 980 command: The command to use (e.g., 'status' or 'diff') |
958 args: list of str - extra arguments to add to the command line. | 981 args: list of str - extra arguments to add to the command line. |
959 """ | 982 """ |
960 if not self.dependencies: | 983 if not self.dependencies: |
961 raise gclient_utils.Error('No solution specified') | 984 raise gclient_utils.Error('No solution specified') |
962 revision_overrides = self._EnforceRevisions() | 985 revision_overrides = self._EnforceRevisions() |
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1524 except (gclient_utils.Error, subprocess2.CalledProcessError), e: | 1547 except (gclient_utils.Error, subprocess2.CalledProcessError), e: |
1525 print >> sys.stderr, 'Error: %s' % str(e) | 1548 print >> sys.stderr, 'Error: %s' % str(e) |
1526 return 1 | 1549 return 1 |
1527 | 1550 |
1528 | 1551 |
1529 if '__main__' == __name__: | 1552 if '__main__' == __name__: |
1530 fix_encoding.fix_encoding() | 1553 fix_encoding.fix_encoding() |
1531 sys.exit(Main(sys.argv[1:])) | 1554 sys.exit(Main(sys.argv[1:])) |
1532 | 1555 |
1533 # vim: ts=2:sw=2:tw=80:et: | 1556 # vim: ts=2:sw=2:tw=80:et: |
OLD | NEW |