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