blob: a5979a87abb4e142479d6ad8c9276ccbfe343dcd [file] [log] [blame]
David Pursehouse8898e2f2012-11-14 07:51:03 +09001#!/usr/bin/env python
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002#
3# Copyright (C) 2008 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
Sarah Owenscecd1d82012-11-01 22:59:27 -070017from __future__ import print_function
JoonCheol Parke9860722012-10-11 02:31:44 +090018import getpass
Conley Owensc9129d92012-10-01 16:12:28 -070019import imp
Shawn O. Pearcebd0312a2011-09-19 10:04:23 -070020import netrc
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070021import optparse
22import os
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070023import sys
Shawn O. Pearce3a0e7822011-09-22 17:06:41 -070024import time
David Pursehouse59bbb582013-05-17 10:49:33 +090025
26from pyversion import is_python3
27if is_python3():
Sarah Owens1f7627f2012-10-31 09:21:55 -070028 import urllib.request
29else:
David Pursehouse59bbb582013-05-17 10:49:33 +090030 import urllib2
Sarah Owens1f7627f2012-10-31 09:21:55 -070031 urllib = imp.new_module('urllib')
32 urllib.request = urllib2
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070033
Carlos Aguado1242e602014-02-03 13:48:47 +010034try:
35 import kerberos
36except ImportError:
37 kerberos = None
38
Mike Frysinger902665b2014-12-22 15:17:59 -050039from color import SetDefaultColoring
Shawn O. Pearcead3193a2009-04-18 09:54:51 -070040from trace import SetTrace
Shawn O. Pearce334851e2011-09-19 08:05:31 -070041from git_command import git, GitCommand
Doug Anderson0048b692010-12-21 13:39:23 -080042from git_config import init_ssh, close_ssh
Shawn O. Pearcec95583b2009-03-03 17:47:06 -080043from command import InteractiveCommand
44from command import MirrorSafeCommand
Dan Willemsen9ff2ece2015-08-31 15:45:06 -070045from command import RequiresGitcCommand
Shawn O. Pearceecff4f12011-11-29 15:01:33 -080046from subcmds.version import Version
Shawn O. Pearce7965f9f2008-10-29 15:20:02 -070047from editor import Editor
Shawn O. Pearcef322b9a2011-09-19 14:50:58 -070048from error import DownloadError
Jarkko Pöyry87ea5912015-06-19 15:39:25 -070049from error import InvalidProjectGroupsError
Shawn O. Pearce559b8462009-03-02 12:56:08 -080050from error import ManifestInvalidRevisionError
David Pursehouse0b8df7b2012-11-13 09:51:57 +090051from error import ManifestParseError
Conley Owens75ee0572012-11-15 17:33:11 -080052from error import NoManifestException
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070053from error import NoSuchProjectError
54from error import RepoChangedException
Simran Basib9a1b732015-08-20 12:19:28 -070055import gitc_utils
56from manifest_xml import GitcManifest, XmlManifest
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070057from pager import RunPager
Conley Owens094cdbe2014-01-30 15:09:59 -080058from wrapper import WrapperPath, Wrapper
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070059
David Pursehouse5c6eeac2012-10-11 16:44:48 +090060from subcmds import all_commands
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070061
David Pursehouse59bbb582013-05-17 10:49:33 +090062if not is_python3():
63 # pylint:disable=W0622
Chirayu Desai217ea7d2013-03-01 19:14:38 +053064 input = raw_input
David Pursehouse59bbb582013-05-17 10:49:33 +090065 # pylint:enable=W0622
Chirayu Desai217ea7d2013-03-01 19:14:38 +053066
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070067global_options = optparse.OptionParser(
68 usage="repo [-p|--paginate|--no-pager] COMMAND [ARGS]"
69 )
70global_options.add_option('-p', '--paginate',
71 dest='pager', action='store_true',
72 help='display command output in the pager')
73global_options.add_option('--no-pager',
74 dest='no_pager', action='store_true',
75 help='disable the pager')
Mike Frysinger902665b2014-12-22 15:17:59 -050076global_options.add_option('--color',
77 choices=('auto', 'always', 'never'), default=None,
78 help='control color usage: auto, always, never')
Shawn O. Pearce0ed2bd12009-03-09 18:26:31 -070079global_options.add_option('--trace',
80 dest='trace', action='store_true',
81 help='trace git command execution')
Shawn O. Pearce3a0e7822011-09-22 17:06:41 -070082global_options.add_option('--time',
83 dest='time', action='store_true',
84 help='time repo command execution')
Shawn O. Pearce47c1a632009-03-02 18:24:23 -080085global_options.add_option('--version',
86 dest='show_version', action='store_true',
87 help='display this version of repo')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070088
89class _Repo(object):
90 def __init__(self, repodir):
91 self.repodir = repodir
92 self.commands = all_commands
Mike Lockwood2bf9db02009-07-14 15:23:39 -040093 # add 'branch' as an alias for 'branches'
94 all_commands['branch'] = all_commands['branches']
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070095
96 def _Run(self, argv):
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -040097 result = 0
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070098 name = None
99 glob = []
100
Sarah Owensa6053d52012-11-01 13:36:50 -0700101 for i in range(len(argv)):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700102 if not argv[i].startswith('-'):
103 name = argv[i]
104 if i > 0:
105 glob = argv[:i]
106 argv = argv[i + 1:]
107 break
108 if not name:
109 glob = argv
110 name = 'help'
111 argv = []
David Pursehouse8a68ff92012-09-24 12:15:13 +0900112 gopts, _gargs = global_options.parse_args(glob)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700113
Shawn O. Pearce0ed2bd12009-03-09 18:26:31 -0700114 if gopts.trace:
Shawn O. Pearcead3193a2009-04-18 09:54:51 -0700115 SetTrace()
Shawn O. Pearce47c1a632009-03-02 18:24:23 -0800116 if gopts.show_version:
117 if name == 'help':
118 name = 'version'
119 else:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700120 print('fatal: invalid usage of --version', file=sys.stderr)
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400121 return 1
Shawn O. Pearce47c1a632009-03-02 18:24:23 -0800122
Mike Frysinger902665b2014-12-22 15:17:59 -0500123 SetDefaultColoring(gopts.color)
124
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700125 try:
126 cmd = self.commands[name]
127 except KeyError:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700128 print("repo: '%s' is not a repo command. See 'repo help'." % name,
129 file=sys.stderr)
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400130 return 1
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700131
132 cmd.repodir = self.repodir
Shawn O. Pearcec8a300f2009-05-18 13:19:57 -0700133 cmd.manifest = XmlManifest(cmd.repodir)
Simran Basib9a1b732015-08-20 12:19:28 -0700134 cmd.gitc_manifest = None
135 gitc_client_name = gitc_utils.parse_clientdir(os.getcwd())
136 if gitc_client_name:
137 cmd.gitc_manifest = GitcManifest(cmd.repodir, gitc_client_name)
138 cmd.manifest.isGitcClient = True
139
Shawn O. Pearce7965f9f2008-10-29 15:20:02 -0700140 Editor.globalConfig = cmd.manifest.globalConfig
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700141
Shawn O. Pearcec95583b2009-03-03 17:47:06 -0800142 if not isinstance(cmd, MirrorSafeCommand) and cmd.manifest.IsMirror:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700143 print("fatal: '%s' requires a working directory" % name,
144 file=sys.stderr)
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400145 return 1
Shawn O. Pearcec95583b2009-03-03 17:47:06 -0800146
Dan Willemsen9ff2ece2015-08-31 15:45:06 -0700147 if isinstance(cmd, RequiresGitcCommand) and not gitc_utils.get_gitc_manifest_dir():
148 print("fatal: '%s' requires GITC to be available" % name,
149 file=sys.stderr)
150 return 1
151
Dan Sandler53e902a2014-03-09 13:20:02 -0400152 try:
153 copts, cargs = cmd.OptionParser.parse_args(argv)
154 copts = cmd.ReadEnvironmentOptions(copts)
155 except NoManifestException as e:
156 print('error: in `%s`: %s' % (' '.join([name] + argv), str(e)),
157 file=sys.stderr)
158 print('error: manifest missing or unreadable -- please run init',
159 file=sys.stderr)
160 return 1
Shawn O. Pearcedb45da12009-04-18 13:49:13 -0700161
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700162 if not gopts.no_pager and not isinstance(cmd, InteractiveCommand):
163 config = cmd.manifest.globalConfig
164 if gopts.pager:
165 use_pager = True
166 else:
167 use_pager = config.GetBoolean('pager.%s' % name)
168 if use_pager is None:
Shawn O. Pearcedb45da12009-04-18 13:49:13 -0700169 use_pager = cmd.WantPager(copts)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700170 if use_pager:
171 RunPager(config)
172
Conley Owens7ba25be2012-11-14 14:18:06 -0800173 start = time.time()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700174 try:
Conley Owens7ba25be2012-11-14 14:18:06 -0800175 result = cmd.Execute(copts, cargs)
Dan Sandler53e902a2014-03-09 13:20:02 -0400176 except (DownloadError, ManifestInvalidRevisionError,
177 NoManifestException) as e:
178 print('error: in `%s`: %s' % (' '.join([name] + argv), str(e)),
179 file=sys.stderr)
180 if isinstance(e, NoManifestException):
181 print('error: manifest missing or unreadable -- please run init',
182 file=sys.stderr)
Conley Owens75ee0572012-11-15 17:33:11 -0800183 result = 1
Sarah Owensa5be53f2012-09-09 15:37:57 -0700184 except NoSuchProjectError as e:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700185 if e.name:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700186 print('error: project %s not found' % e.name, file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700187 else:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700188 print('error: no project in current directory', file=sys.stderr)
Conley Owens7ba25be2012-11-14 14:18:06 -0800189 result = 1
Jarkko Pöyry87ea5912015-06-19 15:39:25 -0700190 except InvalidProjectGroupsError as e:
191 if e.name:
192 print('error: project group must be enabled for project %s' % e.name, file=sys.stderr)
193 else:
194 print('error: project group must be enabled for the project in the current directory', file=sys.stderr)
195 result = 1
Conley Owens7ba25be2012-11-14 14:18:06 -0800196 finally:
197 elapsed = time.time() - start
198 hours, remainder = divmod(elapsed, 3600)
199 minutes, seconds = divmod(remainder, 60)
200 if gopts.time:
201 if hours == 0:
202 print('real\t%dm%.3fs' % (minutes, seconds), file=sys.stderr)
203 else:
204 print('real\t%dh%dm%.3fs' % (hours, minutes, seconds),
205 file=sys.stderr)
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400206
207 return result
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700208
Conley Owens094cdbe2014-01-30 15:09:59 -0800209
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700210def _MyRepoPath():
211 return os.path.dirname(__file__)
212
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700213
214def _CheckWrapperVersion(ver, repo_path):
215 if not repo_path:
216 repo_path = '~/bin/repo'
217
218 if not ver:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700219 print('no --wrapper-version argument', file=sys.stderr)
David Pursehouse8a68ff92012-09-24 12:15:13 +0900220 sys.exit(1)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700221
Conley Owens094cdbe2014-01-30 15:09:59 -0800222 exp = Wrapper().VERSION
David Pursehouse7e6dd2d2012-10-25 12:40:51 +0900223 ver = tuple(map(int, ver.split('.')))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700224 if len(ver) == 1:
225 ver = (0, ver[0])
226
David Pursehouse7e6dd2d2012-10-25 12:40:51 +0900227 exp_str = '.'.join(map(str, exp))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700228 if exp[0] > ver[0] or ver < (0, 4):
Sarah Owenscecd1d82012-11-01 22:59:27 -0700229 print("""
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700230!!! A new repo command (%5s) is available. !!!
231!!! You must upgrade before you can continue: !!!
232
233 cp %s %s
Conley Owens094cdbe2014-01-30 15:09:59 -0800234""" % (exp_str, WrapperPath(), repo_path), file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700235 sys.exit(1)
236
237 if exp > ver:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700238 print("""
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700239... A new repo command (%5s) is available.
240... You should upgrade soon:
241
242 cp %s %s
Conley Owens094cdbe2014-01-30 15:09:59 -0800243""" % (exp_str, WrapperPath(), repo_path), file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700244
Mickaël Salaün2f6ab7f2012-09-30 00:37:55 +0200245def _CheckRepoDir(repo_dir):
246 if not repo_dir:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700247 print('no --repo-dir argument', file=sys.stderr)
David Pursehouse8a68ff92012-09-24 12:15:13 +0900248 sys.exit(1)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700249
250def _PruneOptions(argv, opt):
251 i = 0
252 while i < len(argv):
253 a = argv[i]
254 if a == '--':
255 break
256 if a.startswith('--'):
257 eq = a.find('=')
258 if eq > 0:
259 a = a[0:eq]
260 if not opt.has_option(a):
261 del argv[i]
262 continue
263 i += 1
264
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700265_user_agent = None
266
267def _UserAgent():
268 global _user_agent
269
270 if _user_agent is None:
271 py_version = sys.version_info
272
273 os_name = sys.platform
274 if os_name == 'linux2':
275 os_name = 'Linux'
276 elif os_name == 'win32':
277 os_name = 'Win32'
278 elif os_name == 'cygwin':
279 os_name = 'Cygwin'
280 elif os_name == 'darwin':
281 os_name = 'Darwin'
282
283 p = GitCommand(
284 None, ['describe', 'HEAD'],
285 cwd = _MyRepoPath(),
286 capture_stdout = True)
287 if p.Wait() == 0:
288 repo_version = p.stdout
289 if len(repo_version) > 0 and repo_version[-1] == '\n':
290 repo_version = repo_version[0:-1]
291 if len(repo_version) > 0 and repo_version[0] == 'v':
292 repo_version = repo_version[1:]
293 else:
294 repo_version = 'unknown'
295
296 _user_agent = 'git-repo/%s (%s) git/%s Python/%d.%d.%d' % (
297 repo_version,
298 os_name,
David Pursehouse7e6dd2d2012-10-25 12:40:51 +0900299 '.'.join(map(str, git.version_tuple())),
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700300 py_version[0], py_version[1], py_version[2])
301 return _user_agent
302
Sarah Owens1f7627f2012-10-31 09:21:55 -0700303class _UserAgentHandler(urllib.request.BaseHandler):
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700304 def http_request(self, req):
305 req.add_header('User-Agent', _UserAgent())
306 return req
307
308 def https_request(self, req):
309 req.add_header('User-Agent', _UserAgent())
310 return req
311
JoonCheol Parke9860722012-10-11 02:31:44 +0900312def _AddPasswordFromUserInput(handler, msg, req):
David Pursehousec1b86a22012-11-14 11:36:51 +0900313 # If repo could not find auth info from netrc, try to get it from user input
314 url = req.get_full_url()
315 user, password = handler.passwd.find_user_password(None, url)
316 if user is None:
317 print(msg)
318 try:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530319 user = input('User: ')
David Pursehousec1b86a22012-11-14 11:36:51 +0900320 password = getpass.getpass()
321 except KeyboardInterrupt:
322 return
323 handler.passwd.add_password(None, url, user, password)
JoonCheol Parke9860722012-10-11 02:31:44 +0900324
Sarah Owens1f7627f2012-10-31 09:21:55 -0700325class _BasicAuthHandler(urllib.request.HTTPBasicAuthHandler):
JoonCheol Parke9860722012-10-11 02:31:44 +0900326 def http_error_401(self, req, fp, code, msg, headers):
327 _AddPasswordFromUserInput(self, msg, req)
Sarah Owens1f7627f2012-10-31 09:21:55 -0700328 return urllib.request.HTTPBasicAuthHandler.http_error_401(
JoonCheol Parke9860722012-10-11 02:31:44 +0900329 self, req, fp, code, msg, headers)
330
Shawn O. Pearcefab96c62011-10-11 12:00:38 -0700331 def http_error_auth_reqed(self, authreq, host, req, headers):
332 try:
Shawn O. Pearcedf5ee522011-10-11 14:05:21 -0700333 old_add_header = req.add_header
334 def _add_header(name, val):
335 val = val.replace('\n', '')
336 old_add_header(name, val)
337 req.add_header = _add_header
Sarah Owens1f7627f2012-10-31 09:21:55 -0700338 return urllib.request.AbstractBasicAuthHandler.http_error_auth_reqed(
Shawn O. Pearcefab96c62011-10-11 12:00:38 -0700339 self, authreq, host, req, headers)
340 except:
Shawn O. Pearcedf5ee522011-10-11 14:05:21 -0700341 reset = getattr(self, 'reset_retry_count', None)
342 if reset is not None:
343 reset()
Shawn O. Pearceb6605392011-10-11 15:58:07 -0700344 elif getattr(self, 'retried', None):
345 self.retried = 0
Shawn O. Pearcefab96c62011-10-11 12:00:38 -0700346 raise
347
Sarah Owens1f7627f2012-10-31 09:21:55 -0700348class _DigestAuthHandler(urllib.request.HTTPDigestAuthHandler):
JoonCheol Parke9860722012-10-11 02:31:44 +0900349 def http_error_401(self, req, fp, code, msg, headers):
350 _AddPasswordFromUserInput(self, msg, req)
Sarah Owens1f7627f2012-10-31 09:21:55 -0700351 return urllib.request.HTTPDigestAuthHandler.http_error_401(
JoonCheol Parke9860722012-10-11 02:31:44 +0900352 self, req, fp, code, msg, headers)
353
Xiaodong Xuae0a36c2012-01-31 11:10:09 +0800354 def http_error_auth_reqed(self, auth_header, host, req, headers):
355 try:
356 old_add_header = req.add_header
357 def _add_header(name, val):
358 val = val.replace('\n', '')
359 old_add_header(name, val)
360 req.add_header = _add_header
Sarah Owens1f7627f2012-10-31 09:21:55 -0700361 return urllib.request.AbstractDigestAuthHandler.http_error_auth_reqed(
Xiaodong Xuae0a36c2012-01-31 11:10:09 +0800362 self, auth_header, host, req, headers)
363 except:
364 reset = getattr(self, 'reset_retry_count', None)
365 if reset is not None:
366 reset()
367 elif getattr(self, 'retried', None):
368 self.retried = 0
369 raise
370
Carlos Aguado1242e602014-02-03 13:48:47 +0100371class _KerberosAuthHandler(urllib.request.BaseHandler):
372 def __init__(self):
373 self.retried = 0
374 self.context = None
375 self.handler_order = urllib.request.BaseHandler.handler_order - 50
376
377 def http_error_401(self, req, fp, code, msg, headers):
378 host = req.get_host()
379 retry = self.http_error_auth_reqed('www-authenticate', host, req, headers)
380 return retry
381
382 def http_error_auth_reqed(self, auth_header, host, req, headers):
383 try:
384 spn = "HTTP@%s" % host
385 authdata = self._negotiate_get_authdata(auth_header, headers)
386
387 if self.retried > 3:
388 raise urllib.request.HTTPError(req.get_full_url(), 401,
389 "Negotiate auth failed", headers, None)
390 else:
391 self.retried += 1
392
393 neghdr = self._negotiate_get_svctk(spn, authdata)
394 if neghdr is None:
395 return None
396
397 req.add_unredirected_header('Authorization', neghdr)
398 response = self.parent.open(req)
399
400 srvauth = self._negotiate_get_authdata(auth_header, response.info())
401 if self._validate_response(srvauth):
402 return response
403 except kerberos.GSSError:
404 return None
405 except:
406 self.reset_retry_count()
407 raise
408 finally:
409 self._clean_context()
410
411 def reset_retry_count(self):
412 self.retried = 0
413
414 def _negotiate_get_authdata(self, auth_header, headers):
415 authhdr = headers.get(auth_header, None)
416 if authhdr is not None:
417 for mech_tuple in authhdr.split(","):
418 mech, __, authdata = mech_tuple.strip().partition(" ")
419 if mech.lower() == "negotiate":
420 return authdata.strip()
421 return None
422
423 def _negotiate_get_svctk(self, spn, authdata):
424 if authdata is None:
425 return None
426
427 result, self.context = kerberos.authGSSClientInit(spn)
428 if result < kerberos.AUTH_GSS_COMPLETE:
429 return None
430
431 result = kerberos.authGSSClientStep(self.context, authdata)
432 if result < kerberos.AUTH_GSS_CONTINUE:
433 return None
434
435 response = kerberos.authGSSClientResponse(self.context)
436 return "Negotiate %s" % response
437
438 def _validate_response(self, authdata):
439 if authdata is None:
440 return None
441 result = kerberos.authGSSClientStep(self.context, authdata)
442 if result == kerberos.AUTH_GSS_COMPLETE:
443 return True
444 return None
445
446 def _clean_context(self):
447 if self.context is not None:
448 kerberos.authGSSClientClean(self.context)
449 self.context = None
450
Shawn O. Pearce014d0602011-09-11 12:57:15 -0700451def init_http():
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700452 handlers = [_UserAgentHandler()]
453
Sarah Owens1f7627f2012-10-31 09:21:55 -0700454 mgr = urllib.request.HTTPPasswordMgrWithDefaultRealm()
Shawn O. Pearcebd0312a2011-09-19 10:04:23 -0700455 try:
456 n = netrc.netrc()
457 for host in n.hosts:
458 p = n.hosts[host]
Xiaodong Xuae0a36c2012-01-31 11:10:09 +0800459 mgr.add_password(p[1], 'http://%s/' % host, p[0], p[2])
460 mgr.add_password(p[1], 'https://%s/' % host, p[0], p[2])
Shawn O. Pearcebd0312a2011-09-19 10:04:23 -0700461 except netrc.NetrcParseError:
462 pass
Shawn O. Pearce7b947de2011-09-23 11:50:31 -0700463 except IOError:
464 pass
Shawn O. Pearcefab96c62011-10-11 12:00:38 -0700465 handlers.append(_BasicAuthHandler(mgr))
Xiaodong Xuae0a36c2012-01-31 11:10:09 +0800466 handlers.append(_DigestAuthHandler(mgr))
Carlos Aguado1242e602014-02-03 13:48:47 +0100467 if kerberos:
468 handlers.append(_KerberosAuthHandler())
Shawn O. Pearcebd0312a2011-09-19 10:04:23 -0700469
Shawn O. Pearce014d0602011-09-11 12:57:15 -0700470 if 'http_proxy' in os.environ:
471 url = os.environ['http_proxy']
Sarah Owens1f7627f2012-10-31 09:21:55 -0700472 handlers.append(urllib.request.ProxyHandler({'http': url, 'https': url}))
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700473 if 'REPO_CURL_VERBOSE' in os.environ:
Sarah Owens1f7627f2012-10-31 09:21:55 -0700474 handlers.append(urllib.request.HTTPHandler(debuglevel=1))
475 handlers.append(urllib.request.HTTPSHandler(debuglevel=1))
476 urllib.request.install_opener(urllib.request.build_opener(*handlers))
Shawn O. Pearce014d0602011-09-11 12:57:15 -0700477
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700478def _Main(argv):
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400479 result = 0
480
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700481 opt = optparse.OptionParser(usage="repo wrapperinfo -- ...")
482 opt.add_option("--repo-dir", dest="repodir",
483 help="path to .repo/")
484 opt.add_option("--wrapper-version", dest="wrapper_version",
485 help="version of the wrapper script")
486 opt.add_option("--wrapper-path", dest="wrapper_path",
487 help="location of the wrapper script")
488 _PruneOptions(argv, opt)
489 opt, argv = opt.parse_args(argv)
490
491 _CheckWrapperVersion(opt.wrapper_version, opt.wrapper_path)
492 _CheckRepoDir(opt.repodir)
493
Shawn O. Pearceecff4f12011-11-29 15:01:33 -0800494 Version.wrapper_version = opt.wrapper_version
495 Version.wrapper_path = opt.wrapper_path
496
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700497 repo = _Repo(opt.repodir)
498 try:
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700499 try:
Doug Anderson0048b692010-12-21 13:39:23 -0800500 init_ssh()
Shawn O. Pearce014d0602011-09-11 12:57:15 -0700501 init_http()
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400502 result = repo._Run(argv) or 0
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700503 finally:
504 close_ssh()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700505 except KeyboardInterrupt:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700506 print('aborted by user', file=sys.stderr)
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400507 result = 1
David Pursehouse0b8df7b2012-11-13 09:51:57 +0900508 except ManifestParseError as mpe:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700509 print('fatal: %s' % mpe, file=sys.stderr)
David Pursehouse0b8df7b2012-11-13 09:51:57 +0900510 result = 1
Sarah Owensa5be53f2012-09-09 15:37:57 -0700511 except RepoChangedException as rce:
Shawn O. Pearcec9ef7442008-11-03 10:32:09 -0800512 # If repo changed, re-exec ourselves.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700513 #
Shawn O. Pearcec9ef7442008-11-03 10:32:09 -0800514 argv = list(sys.argv)
515 argv.extend(rce.extra_args)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700516 try:
Shawn O. Pearcec9ef7442008-11-03 10:32:09 -0800517 os.execv(__file__, argv)
Sarah Owensa5be53f2012-09-09 15:37:57 -0700518 except OSError as e:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700519 print('fatal: cannot restart repo after upgrade', file=sys.stderr)
520 print('fatal: %s' % e, file=sys.stderr)
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400521 result = 128
522
523 sys.exit(result)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700524
525if __name__ == '__main__':
526 _Main(sys.argv[1:])