blob: 6736abc9ea9a1775dc716091614d828349f31ccc [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
Shawn O. Pearceecff4f12011-11-29 15:01:33 -080045from subcmds.version import Version
Shawn O. Pearce7965f9f2008-10-29 15:20:02 -070046from editor import Editor
Shawn O. Pearcef322b9a2011-09-19 14:50:58 -070047from error import DownloadError
Jarkko Pöyry87ea5912015-06-19 15:39:25 -070048from error import InvalidProjectGroupsError
Shawn O. Pearce559b8462009-03-02 12:56:08 -080049from error import ManifestInvalidRevisionError
David Pursehouse0b8df7b2012-11-13 09:51:57 +090050from error import ManifestParseError
Conley Owens75ee0572012-11-15 17:33:11 -080051from error import NoManifestException
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070052from error import NoSuchProjectError
53from error import RepoChangedException
Shawn O. Pearcec8a300f2009-05-18 13:19:57 -070054from manifest_xml import XmlManifest
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070055from pager import RunPager
Conley Owens094cdbe2014-01-30 15:09:59 -080056from wrapper import WrapperPath, Wrapper
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070057
David Pursehouse5c6eeac2012-10-11 16:44:48 +090058from subcmds import all_commands
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070059
David Pursehouse59bbb582013-05-17 10:49:33 +090060if not is_python3():
61 # pylint:disable=W0622
Chirayu Desai217ea7d2013-03-01 19:14:38 +053062 input = raw_input
David Pursehouse59bbb582013-05-17 10:49:33 +090063 # pylint:enable=W0622
Chirayu Desai217ea7d2013-03-01 19:14:38 +053064
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070065global_options = optparse.OptionParser(
66 usage="repo [-p|--paginate|--no-pager] COMMAND [ARGS]"
67 )
68global_options.add_option('-p', '--paginate',
69 dest='pager', action='store_true',
70 help='display command output in the pager')
71global_options.add_option('--no-pager',
72 dest='no_pager', action='store_true',
73 help='disable the pager')
Mike Frysinger902665b2014-12-22 15:17:59 -050074global_options.add_option('--color',
75 choices=('auto', 'always', 'never'), default=None,
76 help='control color usage: auto, always, never')
Shawn O. Pearce0ed2bd12009-03-09 18:26:31 -070077global_options.add_option('--trace',
78 dest='trace', action='store_true',
79 help='trace git command execution')
Shawn O. Pearce3a0e7822011-09-22 17:06:41 -070080global_options.add_option('--time',
81 dest='time', action='store_true',
82 help='time repo command execution')
Shawn O. Pearce47c1a632009-03-02 18:24:23 -080083global_options.add_option('--version',
84 dest='show_version', action='store_true',
85 help='display this version of repo')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070086
87class _Repo(object):
88 def __init__(self, repodir):
89 self.repodir = repodir
90 self.commands = all_commands
Mike Lockwood2bf9db02009-07-14 15:23:39 -040091 # add 'branch' as an alias for 'branches'
92 all_commands['branch'] = all_commands['branches']
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070093
94 def _Run(self, argv):
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -040095 result = 0
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070096 name = None
97 glob = []
98
Sarah Owensa6053d52012-11-01 13:36:50 -070099 for i in range(len(argv)):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700100 if not argv[i].startswith('-'):
101 name = argv[i]
102 if i > 0:
103 glob = argv[:i]
104 argv = argv[i + 1:]
105 break
106 if not name:
107 glob = argv
108 name = 'help'
109 argv = []
David Pursehouse8a68ff92012-09-24 12:15:13 +0900110 gopts, _gargs = global_options.parse_args(glob)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700111
Shawn O. Pearce0ed2bd12009-03-09 18:26:31 -0700112 if gopts.trace:
Shawn O. Pearcead3193a2009-04-18 09:54:51 -0700113 SetTrace()
Shawn O. Pearce47c1a632009-03-02 18:24:23 -0800114 if gopts.show_version:
115 if name == 'help':
116 name = 'version'
117 else:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700118 print('fatal: invalid usage of --version', file=sys.stderr)
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400119 return 1
Shawn O. Pearce47c1a632009-03-02 18:24:23 -0800120
Mike Frysinger902665b2014-12-22 15:17:59 -0500121 SetDefaultColoring(gopts.color)
122
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700123 try:
124 cmd = self.commands[name]
125 except KeyError:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700126 print("repo: '%s' is not a repo command. See 'repo help'." % name,
127 file=sys.stderr)
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400128 return 1
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700129
130 cmd.repodir = self.repodir
Shawn O. Pearcec8a300f2009-05-18 13:19:57 -0700131 cmd.manifest = XmlManifest(cmd.repodir)
Shawn O. Pearce7965f9f2008-10-29 15:20:02 -0700132 Editor.globalConfig = cmd.manifest.globalConfig
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700133
Shawn O. Pearcec95583b2009-03-03 17:47:06 -0800134 if not isinstance(cmd, MirrorSafeCommand) and cmd.manifest.IsMirror:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700135 print("fatal: '%s' requires a working directory" % name,
136 file=sys.stderr)
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400137 return 1
Shawn O. Pearcec95583b2009-03-03 17:47:06 -0800138
Dan Sandler53e902a2014-03-09 13:20:02 -0400139 try:
140 copts, cargs = cmd.OptionParser.parse_args(argv)
141 copts = cmd.ReadEnvironmentOptions(copts)
142 except NoManifestException as e:
143 print('error: in `%s`: %s' % (' '.join([name] + argv), str(e)),
144 file=sys.stderr)
145 print('error: manifest missing or unreadable -- please run init',
146 file=sys.stderr)
147 return 1
Shawn O. Pearcedb45da12009-04-18 13:49:13 -0700148
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700149 if not gopts.no_pager and not isinstance(cmd, InteractiveCommand):
150 config = cmd.manifest.globalConfig
151 if gopts.pager:
152 use_pager = True
153 else:
154 use_pager = config.GetBoolean('pager.%s' % name)
155 if use_pager is None:
Shawn O. Pearcedb45da12009-04-18 13:49:13 -0700156 use_pager = cmd.WantPager(copts)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700157 if use_pager:
158 RunPager(config)
159
Conley Owens7ba25be2012-11-14 14:18:06 -0800160 start = time.time()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700161 try:
Conley Owens7ba25be2012-11-14 14:18:06 -0800162 result = cmd.Execute(copts, cargs)
Dan Sandler53e902a2014-03-09 13:20:02 -0400163 except (DownloadError, ManifestInvalidRevisionError,
164 NoManifestException) as e:
165 print('error: in `%s`: %s' % (' '.join([name] + argv), str(e)),
166 file=sys.stderr)
167 if isinstance(e, NoManifestException):
168 print('error: manifest missing or unreadable -- please run init',
169 file=sys.stderr)
Conley Owens75ee0572012-11-15 17:33:11 -0800170 result = 1
Sarah Owensa5be53f2012-09-09 15:37:57 -0700171 except NoSuchProjectError as e:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700172 if e.name:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700173 print('error: project %s not found' % e.name, file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700174 else:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700175 print('error: no project in current directory', file=sys.stderr)
Conley Owens7ba25be2012-11-14 14:18:06 -0800176 result = 1
Jarkko Pöyry87ea5912015-06-19 15:39:25 -0700177 except InvalidProjectGroupsError as e:
178 if e.name:
179 print('error: project group must be enabled for project %s' % e.name, file=sys.stderr)
180 else:
181 print('error: project group must be enabled for the project in the current directory', file=sys.stderr)
182 result = 1
Conley Owens7ba25be2012-11-14 14:18:06 -0800183 finally:
184 elapsed = time.time() - start
185 hours, remainder = divmod(elapsed, 3600)
186 minutes, seconds = divmod(remainder, 60)
187 if gopts.time:
188 if hours == 0:
189 print('real\t%dm%.3fs' % (minutes, seconds), file=sys.stderr)
190 else:
191 print('real\t%dh%dm%.3fs' % (hours, minutes, seconds),
192 file=sys.stderr)
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400193
194 return result
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700195
Conley Owens094cdbe2014-01-30 15:09:59 -0800196
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700197def _MyRepoPath():
198 return os.path.dirname(__file__)
199
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700200
201def _CheckWrapperVersion(ver, repo_path):
202 if not repo_path:
203 repo_path = '~/bin/repo'
204
205 if not ver:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700206 print('no --wrapper-version argument', file=sys.stderr)
David Pursehouse8a68ff92012-09-24 12:15:13 +0900207 sys.exit(1)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700208
Conley Owens094cdbe2014-01-30 15:09:59 -0800209 exp = Wrapper().VERSION
David Pursehouse7e6dd2d2012-10-25 12:40:51 +0900210 ver = tuple(map(int, ver.split('.')))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700211 if len(ver) == 1:
212 ver = (0, ver[0])
213
David Pursehouse7e6dd2d2012-10-25 12:40:51 +0900214 exp_str = '.'.join(map(str, exp))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700215 if exp[0] > ver[0] or ver < (0, 4):
Sarah Owenscecd1d82012-11-01 22:59:27 -0700216 print("""
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700217!!! A new repo command (%5s) is available. !!!
218!!! You must upgrade before you can continue: !!!
219
220 cp %s %s
Conley Owens094cdbe2014-01-30 15:09:59 -0800221""" % (exp_str, WrapperPath(), repo_path), file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700222 sys.exit(1)
223
224 if exp > ver:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700225 print("""
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700226... A new repo command (%5s) is available.
227... You should upgrade soon:
228
229 cp %s %s
Conley Owens094cdbe2014-01-30 15:09:59 -0800230""" % (exp_str, WrapperPath(), repo_path), file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700231
Mickaël Salaün2f6ab7f2012-09-30 00:37:55 +0200232def _CheckRepoDir(repo_dir):
233 if not repo_dir:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700234 print('no --repo-dir argument', file=sys.stderr)
David Pursehouse8a68ff92012-09-24 12:15:13 +0900235 sys.exit(1)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700236
237def _PruneOptions(argv, opt):
238 i = 0
239 while i < len(argv):
240 a = argv[i]
241 if a == '--':
242 break
243 if a.startswith('--'):
244 eq = a.find('=')
245 if eq > 0:
246 a = a[0:eq]
247 if not opt.has_option(a):
248 del argv[i]
249 continue
250 i += 1
251
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700252_user_agent = None
253
254def _UserAgent():
255 global _user_agent
256
257 if _user_agent is None:
258 py_version = sys.version_info
259
260 os_name = sys.platform
261 if os_name == 'linux2':
262 os_name = 'Linux'
263 elif os_name == 'win32':
264 os_name = 'Win32'
265 elif os_name == 'cygwin':
266 os_name = 'Cygwin'
267 elif os_name == 'darwin':
268 os_name = 'Darwin'
269
270 p = GitCommand(
271 None, ['describe', 'HEAD'],
272 cwd = _MyRepoPath(),
273 capture_stdout = True)
274 if p.Wait() == 0:
275 repo_version = p.stdout
276 if len(repo_version) > 0 and repo_version[-1] == '\n':
277 repo_version = repo_version[0:-1]
278 if len(repo_version) > 0 and repo_version[0] == 'v':
279 repo_version = repo_version[1:]
280 else:
281 repo_version = 'unknown'
282
283 _user_agent = 'git-repo/%s (%s) git/%s Python/%d.%d.%d' % (
284 repo_version,
285 os_name,
David Pursehouse7e6dd2d2012-10-25 12:40:51 +0900286 '.'.join(map(str, git.version_tuple())),
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700287 py_version[0], py_version[1], py_version[2])
288 return _user_agent
289
Sarah Owens1f7627f2012-10-31 09:21:55 -0700290class _UserAgentHandler(urllib.request.BaseHandler):
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700291 def http_request(self, req):
292 req.add_header('User-Agent', _UserAgent())
293 return req
294
295 def https_request(self, req):
296 req.add_header('User-Agent', _UserAgent())
297 return req
298
JoonCheol Parke9860722012-10-11 02:31:44 +0900299def _AddPasswordFromUserInput(handler, msg, req):
David Pursehousec1b86a22012-11-14 11:36:51 +0900300 # If repo could not find auth info from netrc, try to get it from user input
301 url = req.get_full_url()
302 user, password = handler.passwd.find_user_password(None, url)
303 if user is None:
304 print(msg)
305 try:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530306 user = input('User: ')
David Pursehousec1b86a22012-11-14 11:36:51 +0900307 password = getpass.getpass()
308 except KeyboardInterrupt:
309 return
310 handler.passwd.add_password(None, url, user, password)
JoonCheol Parke9860722012-10-11 02:31:44 +0900311
Sarah Owens1f7627f2012-10-31 09:21:55 -0700312class _BasicAuthHandler(urllib.request.HTTPBasicAuthHandler):
JoonCheol Parke9860722012-10-11 02:31:44 +0900313 def http_error_401(self, req, fp, code, msg, headers):
314 _AddPasswordFromUserInput(self, msg, req)
Sarah Owens1f7627f2012-10-31 09:21:55 -0700315 return urllib.request.HTTPBasicAuthHandler.http_error_401(
JoonCheol Parke9860722012-10-11 02:31:44 +0900316 self, req, fp, code, msg, headers)
317
Shawn O. Pearcefab96c62011-10-11 12:00:38 -0700318 def http_error_auth_reqed(self, authreq, host, req, headers):
319 try:
Shawn O. Pearcedf5ee522011-10-11 14:05:21 -0700320 old_add_header = req.add_header
321 def _add_header(name, val):
322 val = val.replace('\n', '')
323 old_add_header(name, val)
324 req.add_header = _add_header
Sarah Owens1f7627f2012-10-31 09:21:55 -0700325 return urllib.request.AbstractBasicAuthHandler.http_error_auth_reqed(
Shawn O. Pearcefab96c62011-10-11 12:00:38 -0700326 self, authreq, host, req, headers)
327 except:
Shawn O. Pearcedf5ee522011-10-11 14:05:21 -0700328 reset = getattr(self, 'reset_retry_count', None)
329 if reset is not None:
330 reset()
Shawn O. Pearceb6605392011-10-11 15:58:07 -0700331 elif getattr(self, 'retried', None):
332 self.retried = 0
Shawn O. Pearcefab96c62011-10-11 12:00:38 -0700333 raise
334
Sarah Owens1f7627f2012-10-31 09:21:55 -0700335class _DigestAuthHandler(urllib.request.HTTPDigestAuthHandler):
JoonCheol Parke9860722012-10-11 02:31:44 +0900336 def http_error_401(self, req, fp, code, msg, headers):
337 _AddPasswordFromUserInput(self, msg, req)
Sarah Owens1f7627f2012-10-31 09:21:55 -0700338 return urllib.request.HTTPDigestAuthHandler.http_error_401(
JoonCheol Parke9860722012-10-11 02:31:44 +0900339 self, req, fp, code, msg, headers)
340
Xiaodong Xuae0a36c2012-01-31 11:10:09 +0800341 def http_error_auth_reqed(self, auth_header, host, req, headers):
342 try:
343 old_add_header = req.add_header
344 def _add_header(name, val):
345 val = val.replace('\n', '')
346 old_add_header(name, val)
347 req.add_header = _add_header
Sarah Owens1f7627f2012-10-31 09:21:55 -0700348 return urllib.request.AbstractDigestAuthHandler.http_error_auth_reqed(
Xiaodong Xuae0a36c2012-01-31 11:10:09 +0800349 self, auth_header, host, req, headers)
350 except:
351 reset = getattr(self, 'reset_retry_count', None)
352 if reset is not None:
353 reset()
354 elif getattr(self, 'retried', None):
355 self.retried = 0
356 raise
357
Carlos Aguado1242e602014-02-03 13:48:47 +0100358class _KerberosAuthHandler(urllib.request.BaseHandler):
359 def __init__(self):
360 self.retried = 0
361 self.context = None
362 self.handler_order = urllib.request.BaseHandler.handler_order - 50
363
364 def http_error_401(self, req, fp, code, msg, headers):
365 host = req.get_host()
366 retry = self.http_error_auth_reqed('www-authenticate', host, req, headers)
367 return retry
368
369 def http_error_auth_reqed(self, auth_header, host, req, headers):
370 try:
371 spn = "HTTP@%s" % host
372 authdata = self._negotiate_get_authdata(auth_header, headers)
373
374 if self.retried > 3:
375 raise urllib.request.HTTPError(req.get_full_url(), 401,
376 "Negotiate auth failed", headers, None)
377 else:
378 self.retried += 1
379
380 neghdr = self._negotiate_get_svctk(spn, authdata)
381 if neghdr is None:
382 return None
383
384 req.add_unredirected_header('Authorization', neghdr)
385 response = self.parent.open(req)
386
387 srvauth = self._negotiate_get_authdata(auth_header, response.info())
388 if self._validate_response(srvauth):
389 return response
390 except kerberos.GSSError:
391 return None
392 except:
393 self.reset_retry_count()
394 raise
395 finally:
396 self._clean_context()
397
398 def reset_retry_count(self):
399 self.retried = 0
400
401 def _negotiate_get_authdata(self, auth_header, headers):
402 authhdr = headers.get(auth_header, None)
403 if authhdr is not None:
404 for mech_tuple in authhdr.split(","):
405 mech, __, authdata = mech_tuple.strip().partition(" ")
406 if mech.lower() == "negotiate":
407 return authdata.strip()
408 return None
409
410 def _negotiate_get_svctk(self, spn, authdata):
411 if authdata is None:
412 return None
413
414 result, self.context = kerberos.authGSSClientInit(spn)
415 if result < kerberos.AUTH_GSS_COMPLETE:
416 return None
417
418 result = kerberos.authGSSClientStep(self.context, authdata)
419 if result < kerberos.AUTH_GSS_CONTINUE:
420 return None
421
422 response = kerberos.authGSSClientResponse(self.context)
423 return "Negotiate %s" % response
424
425 def _validate_response(self, authdata):
426 if authdata is None:
427 return None
428 result = kerberos.authGSSClientStep(self.context, authdata)
429 if result == kerberos.AUTH_GSS_COMPLETE:
430 return True
431 return None
432
433 def _clean_context(self):
434 if self.context is not None:
435 kerberos.authGSSClientClean(self.context)
436 self.context = None
437
Shawn O. Pearce014d0602011-09-11 12:57:15 -0700438def init_http():
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700439 handlers = [_UserAgentHandler()]
440
Sarah Owens1f7627f2012-10-31 09:21:55 -0700441 mgr = urllib.request.HTTPPasswordMgrWithDefaultRealm()
Shawn O. Pearcebd0312a2011-09-19 10:04:23 -0700442 try:
443 n = netrc.netrc()
444 for host in n.hosts:
445 p = n.hosts[host]
Xiaodong Xuae0a36c2012-01-31 11:10:09 +0800446 mgr.add_password(p[1], 'http://%s/' % host, p[0], p[2])
447 mgr.add_password(p[1], 'https://%s/' % host, p[0], p[2])
Shawn O. Pearcebd0312a2011-09-19 10:04:23 -0700448 except netrc.NetrcParseError:
449 pass
Shawn O. Pearce7b947de2011-09-23 11:50:31 -0700450 except IOError:
451 pass
Shawn O. Pearcefab96c62011-10-11 12:00:38 -0700452 handlers.append(_BasicAuthHandler(mgr))
Xiaodong Xuae0a36c2012-01-31 11:10:09 +0800453 handlers.append(_DigestAuthHandler(mgr))
Carlos Aguado1242e602014-02-03 13:48:47 +0100454 if kerberos:
455 handlers.append(_KerberosAuthHandler())
Shawn O. Pearcebd0312a2011-09-19 10:04:23 -0700456
Shawn O. Pearce014d0602011-09-11 12:57:15 -0700457 if 'http_proxy' in os.environ:
458 url = os.environ['http_proxy']
Sarah Owens1f7627f2012-10-31 09:21:55 -0700459 handlers.append(urllib.request.ProxyHandler({'http': url, 'https': url}))
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700460 if 'REPO_CURL_VERBOSE' in os.environ:
Sarah Owens1f7627f2012-10-31 09:21:55 -0700461 handlers.append(urllib.request.HTTPHandler(debuglevel=1))
462 handlers.append(urllib.request.HTTPSHandler(debuglevel=1))
463 urllib.request.install_opener(urllib.request.build_opener(*handlers))
Shawn O. Pearce014d0602011-09-11 12:57:15 -0700464
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700465def _Main(argv):
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400466 result = 0
467
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700468 opt = optparse.OptionParser(usage="repo wrapperinfo -- ...")
469 opt.add_option("--repo-dir", dest="repodir",
470 help="path to .repo/")
471 opt.add_option("--wrapper-version", dest="wrapper_version",
472 help="version of the wrapper script")
473 opt.add_option("--wrapper-path", dest="wrapper_path",
474 help="location of the wrapper script")
475 _PruneOptions(argv, opt)
476 opt, argv = opt.parse_args(argv)
477
478 _CheckWrapperVersion(opt.wrapper_version, opt.wrapper_path)
479 _CheckRepoDir(opt.repodir)
480
Shawn O. Pearceecff4f12011-11-29 15:01:33 -0800481 Version.wrapper_version = opt.wrapper_version
482 Version.wrapper_path = opt.wrapper_path
483
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700484 repo = _Repo(opt.repodir)
485 try:
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700486 try:
Doug Anderson0048b692010-12-21 13:39:23 -0800487 init_ssh()
Shawn O. Pearce014d0602011-09-11 12:57:15 -0700488 init_http()
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400489 result = repo._Run(argv) or 0
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700490 finally:
491 close_ssh()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700492 except KeyboardInterrupt:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700493 print('aborted by user', file=sys.stderr)
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400494 result = 1
David Pursehouse0b8df7b2012-11-13 09:51:57 +0900495 except ManifestParseError as mpe:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700496 print('fatal: %s' % mpe, file=sys.stderr)
David Pursehouse0b8df7b2012-11-13 09:51:57 +0900497 result = 1
Sarah Owensa5be53f2012-09-09 15:37:57 -0700498 except RepoChangedException as rce:
Shawn O. Pearcec9ef7442008-11-03 10:32:09 -0800499 # If repo changed, re-exec ourselves.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700500 #
Shawn O. Pearcec9ef7442008-11-03 10:32:09 -0800501 argv = list(sys.argv)
502 argv.extend(rce.extra_args)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700503 try:
Shawn O. Pearcec9ef7442008-11-03 10:32:09 -0800504 os.execv(__file__, argv)
Sarah Owensa5be53f2012-09-09 15:37:57 -0700505 except OSError as e:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700506 print('fatal: cannot restart repo after upgrade', file=sys.stderr)
507 print('fatal: %s' % e, file=sys.stderr)
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400508 result = 128
509
510 sys.exit(result)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700511
512if __name__ == '__main__':
513 _Main(sys.argv[1:])