The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2008 The Android Open Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
Shawn O. Pearce | c12c360 | 2009-04-17 21:03:32 -0700 | [diff] [blame] | 16 | import cPickle |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 17 | import os |
| 18 | import re |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 19 | import subprocess |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 20 | import sys |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 21 | import time |
| 22 | from signal import SIGTERM |
Shawn O. Pearce | b54a392 | 2009-01-05 16:18:58 -0800 | [diff] [blame] | 23 | from urllib2 import urlopen, HTTPError |
| 24 | from error import GitError, UploadError |
Shawn O. Pearce | ad3193a | 2009-04-18 09:54:51 -0700 | [diff] [blame] | 25 | from trace import Trace |
Shawn O. Pearce | ca8c32c | 2010-05-11 18:21:33 -0700 | [diff] [blame] | 26 | |
| 27 | from git_command import GitCommand |
| 28 | from git_command import ssh_sock |
| 29 | from git_command import terminate_ssh_clients |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 30 | |
| 31 | R_HEADS = 'refs/heads/' |
| 32 | R_TAGS = 'refs/tags/' |
| 33 | ID_RE = re.compile('^[0-9a-f]{40}$') |
| 34 | |
Shawn O. Pearce | 146fe90 | 2009-03-25 14:06:43 -0700 | [diff] [blame] | 35 | REVIEW_CACHE = dict() |
| 36 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 37 | def IsId(rev): |
| 38 | return ID_RE.match(rev) |
| 39 | |
Shawn O. Pearce | f8e3273 | 2009-04-17 11:00:31 -0700 | [diff] [blame] | 40 | def _key(name): |
| 41 | parts = name.split('.') |
| 42 | if len(parts) < 2: |
| 43 | return name.lower() |
| 44 | parts[ 0] = parts[ 0].lower() |
| 45 | parts[-1] = parts[-1].lower() |
| 46 | return '.'.join(parts) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 47 | |
| 48 | class GitConfig(object): |
Shawn O. Pearce | 90be5c0 | 2008-10-29 15:21:24 -0700 | [diff] [blame] | 49 | _ForUser = None |
| 50 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 51 | @classmethod |
| 52 | def ForUser(cls): |
Shawn O. Pearce | 90be5c0 | 2008-10-29 15:21:24 -0700 | [diff] [blame] | 53 | if cls._ForUser is None: |
| 54 | cls._ForUser = cls(file = os.path.expanduser('~/.gitconfig')) |
| 55 | return cls._ForUser |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 56 | |
| 57 | @classmethod |
| 58 | def ForRepository(cls, gitdir, defaults=None): |
| 59 | return cls(file = os.path.join(gitdir, 'config'), |
| 60 | defaults = defaults) |
| 61 | |
Shawn O. Pearce | 1b34c91 | 2009-05-21 18:52:49 -0700 | [diff] [blame] | 62 | def __init__(self, file, defaults=None, pickleFile=None): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 63 | self.file = file |
| 64 | self.defaults = defaults |
| 65 | self._cache_dict = None |
Shawn O. Pearce | accc56d | 2009-04-18 14:45:51 -0700 | [diff] [blame] | 66 | self._section_dict = None |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 67 | self._remotes = {} |
| 68 | self._branches = {} |
Shawn O. Pearce | 1b34c91 | 2009-05-21 18:52:49 -0700 | [diff] [blame] | 69 | |
| 70 | if pickleFile is None: |
| 71 | self._pickle = os.path.join( |
| 72 | os.path.dirname(self.file), |
| 73 | '.repopickle_' + os.path.basename(self.file)) |
| 74 | else: |
| 75 | self._pickle = pickleFile |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 76 | |
| 77 | def Has(self, name, include_defaults = True): |
| 78 | """Return true if this configuration file has the key. |
| 79 | """ |
Shawn O. Pearce | f8e3273 | 2009-04-17 11:00:31 -0700 | [diff] [blame] | 80 | if _key(name) in self._cache: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 81 | return True |
| 82 | if include_defaults and self.defaults: |
| 83 | return self.defaults.Has(name, include_defaults = True) |
| 84 | return False |
| 85 | |
| 86 | def GetBoolean(self, name): |
| 87 | """Returns a boolean from the configuration file. |
| 88 | None : The value was not defined, or is not a boolean. |
| 89 | True : The value was set to true or yes. |
| 90 | False: The value was set to false or no. |
| 91 | """ |
| 92 | v = self.GetString(name) |
| 93 | if v is None: |
| 94 | return None |
| 95 | v = v.lower() |
| 96 | if v in ('true', 'yes'): |
| 97 | return True |
| 98 | if v in ('false', 'no'): |
| 99 | return False |
| 100 | return None |
| 101 | |
| 102 | def GetString(self, name, all=False): |
| 103 | """Get the first value for a key, or None if it is not defined. |
| 104 | |
| 105 | This configuration file is used first, if the key is not |
| 106 | defined or all = True then the defaults are also searched. |
| 107 | """ |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 108 | try: |
Shawn O. Pearce | f8e3273 | 2009-04-17 11:00:31 -0700 | [diff] [blame] | 109 | v = self._cache[_key(name)] |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 110 | except KeyError: |
| 111 | if self.defaults: |
| 112 | return self.defaults.GetString(name, all = all) |
| 113 | v = [] |
| 114 | |
| 115 | if not all: |
| 116 | if v: |
| 117 | return v[0] |
| 118 | return None |
| 119 | |
| 120 | r = [] |
| 121 | r.extend(v) |
| 122 | if self.defaults: |
| 123 | r.extend(self.defaults.GetString(name, all = True)) |
| 124 | return r |
| 125 | |
| 126 | def SetString(self, name, value): |
| 127 | """Set the value(s) for a key. |
| 128 | Only this configuration file is modified. |
| 129 | |
| 130 | The supplied value should be either a string, |
| 131 | or a list of strings (to store multiple values). |
| 132 | """ |
Shawn O. Pearce | f8e3273 | 2009-04-17 11:00:31 -0700 | [diff] [blame] | 133 | key = _key(name) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 134 | |
| 135 | try: |
Shawn O. Pearce | f8e3273 | 2009-04-17 11:00:31 -0700 | [diff] [blame] | 136 | old = self._cache[key] |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 137 | except KeyError: |
| 138 | old = [] |
| 139 | |
| 140 | if value is None: |
| 141 | if old: |
Shawn O. Pearce | f8e3273 | 2009-04-17 11:00:31 -0700 | [diff] [blame] | 142 | del self._cache[key] |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 143 | self._do('--unset-all', name) |
| 144 | |
| 145 | elif isinstance(value, list): |
| 146 | if len(value) == 0: |
| 147 | self.SetString(name, None) |
| 148 | |
| 149 | elif len(value) == 1: |
| 150 | self.SetString(name, value[0]) |
| 151 | |
| 152 | elif old != value: |
Shawn O. Pearce | f8e3273 | 2009-04-17 11:00:31 -0700 | [diff] [blame] | 153 | self._cache[key] = list(value) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 154 | self._do('--replace-all', name, value[0]) |
| 155 | for i in xrange(1, len(value)): |
| 156 | self._do('--add', name, value[i]) |
| 157 | |
| 158 | elif len(old) != 1 or old[0] != value: |
Shawn O. Pearce | f8e3273 | 2009-04-17 11:00:31 -0700 | [diff] [blame] | 159 | self._cache[key] = [value] |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 160 | self._do('--replace-all', name, value) |
| 161 | |
| 162 | def GetRemote(self, name): |
| 163 | """Get the remote.$name.* configuration values as an object. |
| 164 | """ |
| 165 | try: |
| 166 | r = self._remotes[name] |
| 167 | except KeyError: |
| 168 | r = Remote(self, name) |
| 169 | self._remotes[r.name] = r |
| 170 | return r |
| 171 | |
| 172 | def GetBranch(self, name): |
| 173 | """Get the branch.$name.* configuration values as an object. |
| 174 | """ |
| 175 | try: |
| 176 | b = self._branches[name] |
| 177 | except KeyError: |
| 178 | b = Branch(self, name) |
| 179 | self._branches[b.name] = b |
| 180 | return b |
| 181 | |
Shawn O. Pearce | 366ad21 | 2009-05-19 12:47:37 -0700 | [diff] [blame] | 182 | def GetSubSections(self, section): |
| 183 | """List all subsection names matching $section.*.* |
| 184 | """ |
| 185 | return self._sections.get(section, set()) |
| 186 | |
Shawn O. Pearce | accc56d | 2009-04-18 14:45:51 -0700 | [diff] [blame] | 187 | def HasSection(self, section, subsection = ''): |
| 188 | """Does at least one key in section.subsection exist? |
| 189 | """ |
| 190 | try: |
| 191 | return subsection in self._sections[section] |
| 192 | except KeyError: |
| 193 | return False |
| 194 | |
| 195 | @property |
| 196 | def _sections(self): |
| 197 | d = self._section_dict |
| 198 | if d is None: |
| 199 | d = {} |
| 200 | for name in self._cache.keys(): |
| 201 | p = name.split('.') |
| 202 | if 2 == len(p): |
| 203 | section = p[0] |
| 204 | subsect = '' |
| 205 | else: |
| 206 | section = p[0] |
| 207 | subsect = '.'.join(p[1:-1]) |
| 208 | if section not in d: |
| 209 | d[section] = set() |
| 210 | d[section].add(subsect) |
| 211 | self._section_dict = d |
| 212 | return d |
| 213 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 214 | @property |
| 215 | def _cache(self): |
| 216 | if self._cache_dict is None: |
| 217 | self._cache_dict = self._Read() |
| 218 | return self._cache_dict |
| 219 | |
| 220 | def _Read(self): |
Shawn O. Pearce | c12c360 | 2009-04-17 21:03:32 -0700 | [diff] [blame] | 221 | d = self._ReadPickle() |
| 222 | if d is None: |
| 223 | d = self._ReadGit() |
| 224 | self._SavePickle(d) |
| 225 | return d |
| 226 | |
| 227 | def _ReadPickle(self): |
| 228 | try: |
| 229 | if os.path.getmtime(self._pickle) \ |
| 230 | <= os.path.getmtime(self.file): |
| 231 | os.remove(self._pickle) |
| 232 | return None |
| 233 | except OSError: |
| 234 | return None |
| 235 | try: |
Shawn O. Pearce | ad3193a | 2009-04-18 09:54:51 -0700 | [diff] [blame] | 236 | Trace(': unpickle %s', self.file) |
Shawn O. Pearce | 76ca9f8 | 2009-04-18 14:48:03 -0700 | [diff] [blame] | 237 | fd = open(self._pickle, 'rb') |
| 238 | try: |
| 239 | return cPickle.load(fd) |
| 240 | finally: |
| 241 | fd.close() |
Shawn O. Pearce | 2a3a81b | 2009-06-12 09:10:07 -0700 | [diff] [blame] | 242 | except EOFError: |
| 243 | os.remove(self._pickle) |
| 244 | return None |
Shawn O. Pearce | c12c360 | 2009-04-17 21:03:32 -0700 | [diff] [blame] | 245 | except IOError: |
| 246 | os.remove(self._pickle) |
| 247 | return None |
| 248 | except cPickle.PickleError: |
| 249 | os.remove(self._pickle) |
| 250 | return None |
| 251 | |
| 252 | def _SavePickle(self, cache): |
| 253 | try: |
Shawn O. Pearce | 76ca9f8 | 2009-04-18 14:48:03 -0700 | [diff] [blame] | 254 | fd = open(self._pickle, 'wb') |
| 255 | try: |
| 256 | cPickle.dump(cache, fd, cPickle.HIGHEST_PROTOCOL) |
| 257 | finally: |
| 258 | fd.close() |
Shawn O. Pearce | c12c360 | 2009-04-17 21:03:32 -0700 | [diff] [blame] | 259 | except IOError: |
| 260 | os.remove(self._pickle) |
| 261 | except cPickle.PickleError: |
| 262 | os.remove(self._pickle) |
| 263 | |
| 264 | def _ReadGit(self): |
David Aguilar | 438c547 | 2009-06-28 15:09:16 -0700 | [diff] [blame] | 265 | """ |
| 266 | Read configuration data from git. |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 267 | |
David Aguilar | 438c547 | 2009-06-28 15:09:16 -0700 | [diff] [blame] | 268 | This internal method populates the GitConfig cache. |
| 269 | |
| 270 | """ |
David Aguilar | 438c547 | 2009-06-28 15:09:16 -0700 | [diff] [blame] | 271 | c = {} |
Shawn O. Pearce | c24c720 | 2009-07-02 16:12:57 -0700 | [diff] [blame] | 272 | d = self._do('--null', '--list') |
| 273 | if d is None: |
| 274 | return c |
| 275 | for line in d.rstrip('\0').split('\0'): |
David Aguilar | 438c547 | 2009-06-28 15:09:16 -0700 | [diff] [blame] | 276 | if '\n' in line: |
| 277 | key, val = line.split('\n', 1) |
| 278 | else: |
| 279 | key = line |
| 280 | val = None |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 281 | |
| 282 | if key in c: |
| 283 | c[key].append(val) |
| 284 | else: |
| 285 | c[key] = [val] |
| 286 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 287 | return c |
| 288 | |
| 289 | def _do(self, *args): |
| 290 | command = ['config', '--file', self.file] |
| 291 | command.extend(args) |
| 292 | |
| 293 | p = GitCommand(None, |
| 294 | command, |
| 295 | capture_stdout = True, |
| 296 | capture_stderr = True) |
| 297 | if p.Wait() == 0: |
| 298 | return p.stdout |
| 299 | else: |
| 300 | GitError('git config %s: %s' % (str(args), p.stderr)) |
| 301 | |
| 302 | |
| 303 | class RefSpec(object): |
| 304 | """A Git refspec line, split into its components: |
| 305 | |
| 306 | forced: True if the line starts with '+' |
| 307 | src: Left side of the line |
| 308 | dst: Right side of the line |
| 309 | """ |
| 310 | |
| 311 | @classmethod |
| 312 | def FromString(cls, rs): |
| 313 | lhs, rhs = rs.split(':', 2) |
| 314 | if lhs.startswith('+'): |
| 315 | lhs = lhs[1:] |
| 316 | forced = True |
| 317 | else: |
| 318 | forced = False |
| 319 | return cls(forced, lhs, rhs) |
| 320 | |
| 321 | def __init__(self, forced, lhs, rhs): |
| 322 | self.forced = forced |
| 323 | self.src = lhs |
| 324 | self.dst = rhs |
| 325 | |
| 326 | def SourceMatches(self, rev): |
| 327 | if self.src: |
| 328 | if rev == self.src: |
| 329 | return True |
| 330 | if self.src.endswith('/*') and rev.startswith(self.src[:-1]): |
| 331 | return True |
| 332 | return False |
| 333 | |
| 334 | def DestMatches(self, ref): |
| 335 | if self.dst: |
| 336 | if ref == self.dst: |
| 337 | return True |
| 338 | if self.dst.endswith('/*') and ref.startswith(self.dst[:-1]): |
| 339 | return True |
| 340 | return False |
| 341 | |
| 342 | def MapSource(self, rev): |
| 343 | if self.src.endswith('/*'): |
| 344 | return self.dst[:-1] + rev[len(self.src) - 1:] |
| 345 | return self.dst |
| 346 | |
| 347 | def __str__(self): |
| 348 | s = '' |
| 349 | if self.forced: |
| 350 | s += '+' |
| 351 | if self.src: |
| 352 | s += self.src |
| 353 | if self.dst: |
| 354 | s += ':' |
| 355 | s += self.dst |
| 356 | return s |
| 357 | |
| 358 | |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 359 | _ssh_cache = {} |
| 360 | _ssh_master = True |
| 361 | |
Josh Guilfoyle | 7198572 | 2009-08-16 09:44:40 -0700 | [diff] [blame] | 362 | def _open_ssh(host, port=None): |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 363 | global _ssh_master |
| 364 | |
Josh Guilfoyle | 7198572 | 2009-08-16 09:44:40 -0700 | [diff] [blame] | 365 | if port is not None: |
| 366 | key = '%s:%s' % (host, port) |
| 367 | else: |
| 368 | key = host |
| 369 | |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 370 | if key in _ssh_cache: |
| 371 | return True |
| 372 | |
| 373 | if not _ssh_master \ |
| 374 | or 'GIT_SSH' in os.environ \ |
Shawn O. Pearce | 2b5b4ac | 2009-04-23 17:22:18 -0700 | [diff] [blame] | 375 | or sys.platform in ('win32', 'cygwin'): |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 376 | # failed earlier, or cygwin ssh can't do this |
| 377 | # |
| 378 | return False |
| 379 | |
| 380 | command = ['ssh', |
Nico Sallembien | 1c85f4e | 2010-04-27 14:35:27 -0700 | [diff] [blame] | 381 | '-o','ControlPath %s' % ssh_sock(), |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 382 | '-M', |
| 383 | '-N', |
| 384 | host] |
Josh Guilfoyle | 7198572 | 2009-08-16 09:44:40 -0700 | [diff] [blame] | 385 | |
| 386 | if port is not None: |
| 387 | command[3:3] = ['-p',str(port)] |
| 388 | |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 389 | try: |
| 390 | Trace(': %s', ' '.join(command)) |
| 391 | p = subprocess.Popen(command) |
| 392 | except Exception, e: |
| 393 | _ssh_master = False |
| 394 | print >>sys.stderr, \ |
| 395 | '\nwarn: cannot enable ssh control master for %s:%s\n%s' \ |
| 396 | % (host,port, str(e)) |
| 397 | return False |
| 398 | |
| 399 | _ssh_cache[key] = p |
| 400 | time.sleep(1) |
| 401 | return True |
| 402 | |
| 403 | def close_ssh(): |
Shawn O. Pearce | ca8c32c | 2010-05-11 18:21:33 -0700 | [diff] [blame] | 404 | terminate_ssh_clients() |
| 405 | |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 406 | for key,p in _ssh_cache.iteritems(): |
Shawn O. Pearce | 26120ca | 2009-06-16 11:49:10 -0700 | [diff] [blame] | 407 | try: |
| 408 | os.kill(p.pid, SIGTERM) |
| 409 | p.wait() |
Shawn O. Pearce | fb5c8fd | 2009-06-16 14:57:46 -0700 | [diff] [blame] | 410 | except OSError: |
Shawn O. Pearce | 26120ca | 2009-06-16 11:49:10 -0700 | [diff] [blame] | 411 | pass |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 412 | _ssh_cache.clear() |
| 413 | |
Nico Sallembien | 1c85f4e | 2010-04-27 14:35:27 -0700 | [diff] [blame] | 414 | d = ssh_sock(create=False) |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 415 | if d: |
| 416 | try: |
| 417 | os.rmdir(os.path.dirname(d)) |
| 418 | except OSError: |
| 419 | pass |
| 420 | |
| 421 | URI_SCP = re.compile(r'^([^@:]*@?[^:/]{1,}):') |
Shawn O. Pearce | 2f968c9 | 2009-04-30 14:30:28 -0700 | [diff] [blame] | 422 | URI_ALL = re.compile(r'^([a-z][a-z+]*)://([^@/]*@?[^/]*)/') |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 423 | |
| 424 | def _preconnect(url): |
| 425 | m = URI_ALL.match(url) |
| 426 | if m: |
| 427 | scheme = m.group(1) |
| 428 | host = m.group(2) |
| 429 | if ':' in host: |
| 430 | host, port = host.split(':') |
Shawn O. Pearce | 896d5df | 2009-04-21 14:51:04 -0700 | [diff] [blame] | 431 | else: |
Josh Guilfoyle | 7198572 | 2009-08-16 09:44:40 -0700 | [diff] [blame] | 432 | port = None |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 433 | if scheme in ('ssh', 'git+ssh', 'ssh+git'): |
| 434 | return _open_ssh(host, port) |
| 435 | return False |
| 436 | |
| 437 | m = URI_SCP.match(url) |
| 438 | if m: |
| 439 | host = m.group(1) |
Josh Guilfoyle | 7198572 | 2009-08-16 09:44:40 -0700 | [diff] [blame] | 440 | return _open_ssh(host) |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 441 | |
Shawn O. Pearce | 7b4f435 | 2009-06-12 09:06:35 -0700 | [diff] [blame] | 442 | return False |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 443 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 444 | class Remote(object): |
| 445 | """Configuration options related to a remote. |
| 446 | """ |
| 447 | def __init__(self, config, name): |
| 448 | self._config = config |
| 449 | self.name = name |
| 450 | self.url = self._Get('url') |
| 451 | self.review = self._Get('review') |
Shawn O. Pearce | 339ba9f | 2008-11-06 09:52:51 -0800 | [diff] [blame] | 452 | self.projectname = self._Get('projectname') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 453 | self.fetch = map(lambda x: RefSpec.FromString(x), |
| 454 | self._Get('fetch', all=True)) |
Shawn O. Pearce | b54a392 | 2009-01-05 16:18:58 -0800 | [diff] [blame] | 455 | self._review_protocol = None |
| 456 | |
Ulrik Sjolin | b6ea3bf | 2010-01-03 18:20:17 +0100 | [diff] [blame] | 457 | def _InsteadOf(self): |
| 458 | globCfg = GitConfig.ForUser() |
| 459 | urlList = globCfg.GetSubSections('url') |
| 460 | longest = "" |
| 461 | longestUrl = "" |
| 462 | |
| 463 | for url in urlList: |
| 464 | key = "url." + url + ".insteadOf" |
| 465 | insteadOfList = globCfg.GetString(key, all=True) |
| 466 | |
| 467 | for insteadOf in insteadOfList: |
| 468 | if self.url.startswith(insteadOf) \ |
| 469 | and len(insteadOf) > len(longest): |
| 470 | longest = insteadOf |
| 471 | longestUrl = url |
| 472 | |
| 473 | if len(longest) == 0: |
| 474 | return self.url |
| 475 | |
| 476 | return self.url.replace(longest, longestUrl, 1) |
| 477 | |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 478 | def PreConnectFetch(self): |
Ulrik Sjolin | b6ea3bf | 2010-01-03 18:20:17 +0100 | [diff] [blame] | 479 | connectionUrl = self._InsteadOf() |
| 480 | return _preconnect(connectionUrl) |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 481 | |
Shawn O. Pearce | b54a392 | 2009-01-05 16:18:58 -0800 | [diff] [blame] | 482 | @property |
| 483 | def ReviewProtocol(self): |
| 484 | if self._review_protocol is None: |
| 485 | if self.review is None: |
| 486 | return None |
| 487 | |
| 488 | u = self.review |
| 489 | if not u.startswith('http:') and not u.startswith('https:'): |
| 490 | u = 'http://%s' % u |
Shawn O. Pearce | 13cc384 | 2009-03-25 13:54:54 -0700 | [diff] [blame] | 491 | if u.endswith('/Gerrit'): |
| 492 | u = u[:len(u) - len('/Gerrit')] |
| 493 | if not u.endswith('/ssh_info'): |
| 494 | if not u.endswith('/'): |
| 495 | u += '/' |
| 496 | u += 'ssh_info' |
Shawn O. Pearce | b54a392 | 2009-01-05 16:18:58 -0800 | [diff] [blame] | 497 | |
Shawn O. Pearce | 146fe90 | 2009-03-25 14:06:43 -0700 | [diff] [blame] | 498 | if u in REVIEW_CACHE: |
| 499 | info = REVIEW_CACHE[u] |
| 500 | self._review_protocol = info[0] |
| 501 | self._review_host = info[1] |
| 502 | self._review_port = info[2] |
| 503 | else: |
| 504 | try: |
| 505 | info = urlopen(u).read() |
| 506 | if info == 'NOT_AVAILABLE': |
| 507 | raise UploadError('Upload over ssh unavailable') |
| 508 | if '<' in info: |
| 509 | # Assume the server gave us some sort of HTML |
| 510 | # response back, like maybe a login page. |
| 511 | # |
| 512 | raise UploadError('Cannot read %s:\n%s' % (u, info)) |
Shawn O. Pearce | b54a392 | 2009-01-05 16:18:58 -0800 | [diff] [blame] | 513 | |
Shawn O. Pearce | 146fe90 | 2009-03-25 14:06:43 -0700 | [diff] [blame] | 514 | self._review_protocol = 'ssh' |
| 515 | self._review_host = info.split(" ")[0] |
| 516 | self._review_port = info.split(" ")[1] |
| 517 | except HTTPError, e: |
| 518 | if e.code == 404: |
| 519 | self._review_protocol = 'http-post' |
| 520 | self._review_host = None |
| 521 | self._review_port = None |
| 522 | else: |
| 523 | raise UploadError('Cannot guess Gerrit version') |
Shawn O. Pearce | b54a392 | 2009-01-05 16:18:58 -0800 | [diff] [blame] | 524 | |
Shawn O. Pearce | 146fe90 | 2009-03-25 14:06:43 -0700 | [diff] [blame] | 525 | REVIEW_CACHE[u] = ( |
| 526 | self._review_protocol, |
| 527 | self._review_host, |
| 528 | self._review_port) |
Shawn O. Pearce | b54a392 | 2009-01-05 16:18:58 -0800 | [diff] [blame] | 529 | return self._review_protocol |
| 530 | |
| 531 | def SshReviewUrl(self, userEmail): |
| 532 | if self.ReviewProtocol != 'ssh': |
| 533 | return None |
| 534 | return 'ssh://%s@%s:%s/%s' % ( |
| 535 | userEmail.split("@")[0], |
| 536 | self._review_host, |
| 537 | self._review_port, |
| 538 | self.projectname) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 539 | |
| 540 | def ToLocal(self, rev): |
| 541 | """Convert a remote revision string to something we have locally. |
| 542 | """ |
| 543 | if IsId(rev): |
| 544 | return rev |
| 545 | if rev.startswith(R_TAGS): |
| 546 | return rev |
| 547 | |
| 548 | if not rev.startswith('refs/'): |
| 549 | rev = R_HEADS + rev |
| 550 | |
| 551 | for spec in self.fetch: |
| 552 | if spec.SourceMatches(rev): |
| 553 | return spec.MapSource(rev) |
| 554 | raise GitError('remote %s does not have %s' % (self.name, rev)) |
| 555 | |
| 556 | def WritesTo(self, ref): |
| 557 | """True if the remote stores to the tracking ref. |
| 558 | """ |
| 559 | for spec in self.fetch: |
| 560 | if spec.DestMatches(ref): |
| 561 | return True |
| 562 | return False |
| 563 | |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 564 | def ResetFetch(self, mirror=False): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 565 | """Set the fetch refspec to its default value. |
| 566 | """ |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 567 | if mirror: |
| 568 | dst = 'refs/heads/*' |
| 569 | else: |
| 570 | dst = 'refs/remotes/%s/*' % self.name |
| 571 | self.fetch = [RefSpec(True, 'refs/heads/*', dst)] |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 572 | |
| 573 | def Save(self): |
| 574 | """Save this remote to the configuration. |
| 575 | """ |
| 576 | self._Set('url', self.url) |
| 577 | self._Set('review', self.review) |
Shawn O. Pearce | 339ba9f | 2008-11-06 09:52:51 -0800 | [diff] [blame] | 578 | self._Set('projectname', self.projectname) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 579 | self._Set('fetch', map(lambda x: str(x), self.fetch)) |
| 580 | |
| 581 | def _Set(self, key, value): |
| 582 | key = 'remote.%s.%s' % (self.name, key) |
| 583 | return self._config.SetString(key, value) |
| 584 | |
| 585 | def _Get(self, key, all=False): |
| 586 | key = 'remote.%s.%s' % (self.name, key) |
| 587 | return self._config.GetString(key, all = all) |
| 588 | |
| 589 | |
| 590 | class Branch(object): |
| 591 | """Configuration options related to a single branch. |
| 592 | """ |
| 593 | def __init__(self, config, name): |
| 594 | self._config = config |
| 595 | self.name = name |
| 596 | self.merge = self._Get('merge') |
| 597 | |
| 598 | r = self._Get('remote') |
| 599 | if r: |
| 600 | self.remote = self._config.GetRemote(r) |
| 601 | else: |
| 602 | self.remote = None |
| 603 | |
| 604 | @property |
| 605 | def LocalMerge(self): |
| 606 | """Convert the merge spec to a local name. |
| 607 | """ |
| 608 | if self.remote and self.merge: |
| 609 | return self.remote.ToLocal(self.merge) |
| 610 | return None |
| 611 | |
| 612 | def Save(self): |
| 613 | """Save this branch back into the configuration. |
| 614 | """ |
Shawn O. Pearce | accc56d | 2009-04-18 14:45:51 -0700 | [diff] [blame] | 615 | if self._config.HasSection('branch', self.name): |
| 616 | if self.remote: |
| 617 | self._Set('remote', self.remote.name) |
| 618 | else: |
| 619 | self._Set('remote', None) |
| 620 | self._Set('merge', self.merge) |
| 621 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 622 | else: |
Shawn O. Pearce | accc56d | 2009-04-18 14:45:51 -0700 | [diff] [blame] | 623 | fd = open(self._config.file, 'ab') |
| 624 | try: |
| 625 | fd.write('[branch "%s"]\n' % self.name) |
| 626 | if self.remote: |
| 627 | fd.write('\tremote = %s\n' % self.remote.name) |
| 628 | if self.merge: |
| 629 | fd.write('\tmerge = %s\n' % self.merge) |
| 630 | finally: |
| 631 | fd.close() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 632 | |
| 633 | def _Set(self, key, value): |
| 634 | key = 'branch.%s.%s' % (self.name, key) |
| 635 | return self._config.SetString(key, value) |
| 636 | |
| 637 | def _Get(self, key, all=False): |
| 638 | key = 'branch.%s.%s' % (self.name, key) |
| 639 | return self._config.GetString(key, all = all) |