OLD | NEW |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 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 880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
891 solutions = [ | 891 solutions = [ |
892 { "name" : "%(solution_name)s", | 892 { "name" : "%(solution_name)s", |
893 "url" : "%(solution_url)s", | 893 "url" : "%(solution_url)s", |
894 "deps_file" : "%(deps_file)s", | 894 "deps_file" : "%(deps_file)s", |
895 "managed" : %(managed)s, | 895 "managed" : %(managed)s, |
896 "custom_deps" : { | 896 "custom_deps" : { |
897 }, | 897 }, |
898 "safesync_url": "%(safesync_url)s", | 898 "safesync_url": "%(safesync_url)s", |
899 }, | 899 }, |
900 ] | 900 ] |
901 cache_dir = %(cache_dir)r | |
szager1
2013/07/03 16:49:52
str(None) == repr(None), so for the sake of consis
iannucci
2013/07/03 19:07:32
Ah, but str('foobar') != repr('foobar') :)
we nee
| |
901 """) | 902 """) |
902 | 903 |
903 DEFAULT_SNAPSHOT_SOLUTION_TEXT = ("""\ | 904 DEFAULT_SNAPSHOT_SOLUTION_TEXT = ("""\ |
904 { "name" : "%(solution_name)s", | 905 { "name" : "%(solution_name)s", |
905 "url" : "%(solution_url)s", | 906 "url" : "%(solution_url)s", |
906 "deps_file" : "%(deps_file)s", | 907 "deps_file" : "%(deps_file)s", |
907 "managed" : %(managed)s, | 908 "managed" : %(managed)s, |
908 "custom_deps" : { | 909 "custom_deps" : { |
909 %(solution_deps)s }, | 910 %(solution_deps)s }, |
910 "safesync_url": "%(safesync_url)s", | 911 "safesync_url": "%(safesync_url)s", |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
943 except SyntaxError, e: | 944 except SyntaxError, e: |
944 gclient_utils.SyntaxErrorToError('.gclient', e) | 945 gclient_utils.SyntaxErrorToError('.gclient', e) |
945 | 946 |
946 # Append any target OS that is not already being enforced to the tuple. | 947 # Append any target OS that is not already being enforced to the tuple. |
947 target_os = config_dict.get('target_os', []) | 948 target_os = config_dict.get('target_os', []) |
948 if config_dict.get('target_os_only', False): | 949 if config_dict.get('target_os_only', False): |
949 self._enforced_os = tuple(set(target_os)) | 950 self._enforced_os = tuple(set(target_os)) |
950 else: | 951 else: |
951 self._enforced_os = tuple(set(self._enforced_os).union(target_os)) | 952 self._enforced_os = tuple(set(self._enforced_os).union(target_os)) |
952 | 953 |
954 gclient_scm.SCMWrapper.cache_dir = (gclient_scm.SCMWrapper.cache_dir or | |
955 config_dict.get('cache_dir')) | |
956 | |
953 if not target_os and config_dict.get('target_os_only', False): | 957 if not target_os and config_dict.get('target_os_only', False): |
954 raise gclient_utils.Error('Can\'t use target_os_only if target_os is ' | 958 raise gclient_utils.Error('Can\'t use target_os_only if target_os is ' |
955 'not specified') | 959 'not specified') |
956 | 960 |
957 deps_to_add = [] | 961 deps_to_add = [] |
958 for s in config_dict.get('solutions', []): | 962 for s in config_dict.get('solutions', []): |
959 try: | 963 try: |
960 deps_to_add.append(Dependency( | 964 deps_to_add.append(Dependency( |
961 self, s['name'], s['url'], | 965 self, s['name'], s['url'], |
962 s.get('safesync_url', None), | 966 s.get('safesync_url', None), |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
997 print >> sys.stderr, ( | 1001 print >> sys.stderr, ( |
998 'You must specify the full solution name like --revision %s@%s\n' | 1002 'You must specify the full solution name like --revision %s@%s\n' |
999 'when you have multiple solutions setup in your .gclient file.\n' | 1003 'when you have multiple solutions setup in your .gclient file.\n' |
1000 'Other solutions present are: %s.') % ( | 1004 'Other solutions present are: %s.') % ( |
1001 client.dependencies[0].name, | 1005 client.dependencies[0].name, |
1002 options.revisions[0], | 1006 options.revisions[0], |
1003 ', '.join(s.name for s in client.dependencies[1:])) | 1007 ', '.join(s.name for s in client.dependencies[1:])) |
1004 return client | 1008 return client |
1005 | 1009 |
1006 def SetDefaultConfig(self, solution_name, deps_file, solution_url, | 1010 def SetDefaultConfig(self, solution_name, deps_file, solution_url, |
1007 safesync_url, managed=True): | 1011 safesync_url, managed=True, cache_dir=None): |
1008 self.SetConfig(self.DEFAULT_CLIENT_FILE_TEXT % { | 1012 self.SetConfig(self.DEFAULT_CLIENT_FILE_TEXT % { |
1009 'solution_name': solution_name, | 1013 'solution_name': solution_name, |
1010 'solution_url': solution_url, | 1014 'solution_url': solution_url, |
1011 'deps_file': deps_file, | 1015 'deps_file': deps_file, |
1012 'safesync_url' : safesync_url, | 1016 'safesync_url' : safesync_url, |
1013 'managed': managed, | 1017 'managed': managed, |
1018 'cache_dir': cache_dir, | |
1014 }) | 1019 }) |
1015 | 1020 |
1016 def _SaveEntries(self): | 1021 def _SaveEntries(self): |
1017 """Creates a .gclient_entries file to record the list of unique checkouts. | 1022 """Creates a .gclient_entries file to record the list of unique checkouts. |
1018 | 1023 |
1019 The .gclient_entries file lives in the same directory as .gclient. | 1024 The .gclient_entries file lives in the same directory as .gclient. |
1020 """ | 1025 """ |
1021 # Sometimes pprint.pformat will use {', sometimes it'll use { ' ... It | 1026 # Sometimes pprint.pformat will use {', sometimes it'll use { ' ... It |
1022 # makes testing a bit too fun. | 1027 # makes testing a bit too fun. |
1023 result = 'entries = {\n' | 1028 result = 'entries = {\n' |
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1425 else: | 1430 else: |
1426 # specify an alternate relpath for the given URL. | 1431 # specify an alternate relpath for the given URL. |
1427 name = options.name | 1432 name = options.name |
1428 deps_file = options.deps_file | 1433 deps_file = options.deps_file |
1429 if options.git_deps: | 1434 if options.git_deps: |
1430 deps_file = '.DEPS.git' | 1435 deps_file = '.DEPS.git' |
1431 safesync_url = '' | 1436 safesync_url = '' |
1432 if len(args) > 1: | 1437 if len(args) > 1: |
1433 safesync_url = args[1] | 1438 safesync_url = args[1] |
1434 client.SetDefaultConfig(name, deps_file, base_url, safesync_url, | 1439 client.SetDefaultConfig(name, deps_file, base_url, safesync_url, |
1435 managed=not options.unmanaged) | 1440 managed=not options.unmanaged, |
1441 cache_dir=options.cache_dir) | |
1436 client.SaveConfig() | 1442 client.SaveConfig() |
1437 return 0 | 1443 return 0 |
1438 | 1444 |
1439 | 1445 |
1440 @attr('epilog', """Example: | 1446 @attr('epilog', """Example: |
1441 gclient pack > patch.txt | 1447 gclient pack > patch.txt |
1442 generate simple patch for configured client and dependences | 1448 generate simple patch for configured client and dependences |
1443 """) | 1449 """) |
1444 def CMDpack(parser, args): | 1450 def CMDpack(parser, args): |
1445 """Generate a patch which can be applied at the root of the tree. | 1451 """Generate a patch which can be applied at the root of the tree. |
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1713 parser.add_option('--gclientfile', dest='config_filename', | 1719 parser.add_option('--gclientfile', dest='config_filename', |
1714 default=None, | 1720 default=None, |
1715 help='Specify an alternate %s file' % gclientfile_default) | 1721 help='Specify an alternate %s file' % gclientfile_default) |
1716 parser.add_option('--spec', | 1722 parser.add_option('--spec', |
1717 default=None, | 1723 default=None, |
1718 help='create a gclient file containing the provided ' | 1724 help='create a gclient file containing the provided ' |
1719 'string. Due to Cygwin/Python brokenness, it ' | 1725 'string. Due to Cygwin/Python brokenness, it ' |
1720 'probably can\'t contain any newlines.') | 1726 'probably can\'t contain any newlines.') |
1721 parser.add_option('--no-nag-max', default=False, action='store_true', | 1727 parser.add_option('--no-nag-max', default=False, action='store_true', |
1722 help='If a subprocess runs for too long without generating' | 1728 help='If a subprocess runs for too long without generating' |
1723 ' terminal output, generate warnings, but do not kill' | 1729 ' terminal output, generate warnings, but do not kill' |
1724 ' the process.') | 1730 ' the process.') |
1731 parser.add_option('--cache-dir', | |
szager1
2013/07/03 16:49:52
I think I'd prefer that --cache-dir can only be sp
iannucci
2013/07/03 19:07:32
Fair enough.
| |
1732 help='(git only) Cache all repos into this dir and do ' | |
1733 'shared clones from the cache, instead of cloning ' | |
1734 'directly from the remote. (experimental)') | |
1725 # Integrate standard options processing. | 1735 # Integrate standard options processing. |
1726 old_parser = parser.parse_args | 1736 old_parser = parser.parse_args |
1727 def Parse(args): | 1737 def Parse(args): |
1728 (options, args) = old_parser(args) | 1738 (options, args) = old_parser(args) |
1729 level = [logging.ERROR, logging.WARNING, logging.INFO, logging.DEBUG][ | 1739 level = [logging.ERROR, logging.WARNING, logging.INFO, logging.DEBUG][ |
1730 min(options.verbose, 3)] | 1740 min(options.verbose, 3)] |
1731 logging.basicConfig(level=level, | 1741 logging.basicConfig(level=level, |
1732 format='%(module)s(%(lineno)d) %(funcName)s:%(message)s') | 1742 format='%(module)s(%(lineno)d) %(funcName)s:%(message)s') |
1733 if options.config_filename and options.spec: | 1743 if options.config_filename and options.spec: |
1734 parser.error('Cannot specifiy both --gclientfile and --spec') | 1744 parser.error('Cannot specifiy both --gclientfile and --spec') |
(...skipping 12 matching lines...) Expand all Loading... | |
1747 if not hasattr(options, 'nohooks'): | 1757 if not hasattr(options, 'nohooks'): |
1748 options.nohooks = True | 1758 options.nohooks = True |
1749 if not hasattr(options, 'deps_os'): | 1759 if not hasattr(options, 'deps_os'): |
1750 options.deps_os = None | 1760 options.deps_os = None |
1751 if not hasattr(options, 'manually_grab_svn_rev'): | 1761 if not hasattr(options, 'manually_grab_svn_rev'): |
1752 options.manually_grab_svn_rev = None | 1762 options.manually_grab_svn_rev = None |
1753 if not hasattr(options, 'force'): | 1763 if not hasattr(options, 'force'): |
1754 options.force = None | 1764 options.force = None |
1755 if options.no_nag_max: | 1765 if options.no_nag_max: |
1756 gclient_scm.SCMWrapper.nag_max = None | 1766 gclient_scm.SCMWrapper.nag_max = None |
1767 if options.cache_dir: | |
1768 gclient_scm.SCMWrapper.cache_dir = options.cache_dir | |
1757 return (options, args) | 1769 return (options, args) |
1758 parser.parse_args = Parse | 1770 parser.parse_args = Parse |
1759 # We don't want wordwrapping in epilog (usually examples) | 1771 # We don't want wordwrapping in epilog (usually examples) |
1760 parser.format_epilog = lambda _: parser.epilog or '' | 1772 parser.format_epilog = lambda _: parser.epilog or '' |
1761 return parser | 1773 return parser |
1762 | 1774 |
1763 | 1775 |
1764 def Main(argv): | 1776 def Main(argv): |
1765 """Doesn't parse the arguments here, just find the right subcommand to | 1777 """Doesn't parse the arguments here, just find the right subcommand to |
1766 execute.""" | 1778 execute.""" |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1807 except (gclient_utils.Error, subprocess2.CalledProcessError), e: | 1819 except (gclient_utils.Error, subprocess2.CalledProcessError), e: |
1808 print >> sys.stderr, 'Error: %s' % str(e) | 1820 print >> sys.stderr, 'Error: %s' % str(e) |
1809 return 1 | 1821 return 1 |
1810 | 1822 |
1811 | 1823 |
1812 if '__main__' == __name__: | 1824 if '__main__' == __name__: |
1813 fix_encoding.fix_encoding() | 1825 fix_encoding.fix_encoding() |
1814 sys.exit(Main(sys.argv[1:])) | 1826 sys.exit(Main(sys.argv[1:])) |
1815 | 1827 |
1816 # vim: ts=2:sw=2:tw=80:et: | 1828 # vim: ts=2:sw=2:tw=80:et: |
OLD | NEW |