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 | |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 16 | from __future__ import print_function |
David Pursehouse | 86d973d | 2012-08-24 10:21:02 +0900 | [diff] [blame] | 17 | import netrc |
Shawn O. Pearce | 2a1ccb2 | 2009-04-10 16:51:53 -0700 | [diff] [blame] | 18 | from optparse import SUPPRESS_HELP |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 19 | import os |
Dave Borowitz | 67700e9 | 2012-10-23 15:00:54 -0700 | [diff] [blame] | 20 | import pickle |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 21 | import re |
Jaikumar Ganesh | 4f2517f | 2009-06-01 21:10:33 -0700 | [diff] [blame] | 22 | import shutil |
Nico Sallembien | a1bfd2c | 2010-04-06 10:40:01 -0700 | [diff] [blame] | 23 | import socket |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 24 | import subprocess |
| 25 | import sys |
Shawn O. Pearce | f690687 | 2009-04-18 10:49:00 -0700 | [diff] [blame] | 26 | import time |
David Pursehouse | 59bbb58 | 2013-05-17 10:49:33 +0900 | [diff] [blame] | 27 | |
| 28 | from pyversion import is_python3 |
| 29 | if is_python3(): |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 30 | import urllib.parse |
David Pursehouse | 59bbb58 | 2013-05-17 10:49:33 +0900 | [diff] [blame] | 31 | import xmlrpc.client |
| 32 | else: |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 33 | import imp |
| 34 | import urlparse |
David Pursehouse | 59bbb58 | 2013-05-17 10:49:33 +0900 | [diff] [blame] | 35 | import xmlrpclib |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 36 | urllib = imp.new_module('urllib') |
| 37 | urllib.parse = urlparse |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 38 | xmlrpc = imp.new_module('xmlrpc') |
| 39 | xmlrpc.client = xmlrpclib |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 40 | |
Roy Lee | 18afd7f | 2010-05-09 04:32:08 +0800 | [diff] [blame] | 41 | try: |
| 42 | import threading as _threading |
| 43 | except ImportError: |
| 44 | import dummy_threading as _threading |
| 45 | |
Shawn O. Pearce | 97d2b2f | 2011-09-22 17:23:41 -0700 | [diff] [blame] | 46 | try: |
| 47 | import resource |
| 48 | def _rlimit_nofile(): |
| 49 | return resource.getrlimit(resource.RLIMIT_NOFILE) |
| 50 | except ImportError: |
| 51 | def _rlimit_nofile(): |
| 52 | return (256, 256) |
| 53 | |
Dave Borowitz | 1885721 | 2012-10-23 17:02:59 -0700 | [diff] [blame] | 54 | try: |
| 55 | import multiprocessing |
| 56 | except ImportError: |
| 57 | multiprocessing = None |
| 58 | |
Dave Borowitz | e215267 | 2012-10-31 12:24:38 -0700 | [diff] [blame] | 59 | from git_command import GIT, git_require |
David Pursehouse | d94aaef | 2012-09-07 09:52:04 +0900 | [diff] [blame] | 60 | from git_refs import R_HEADS, HEAD |
Conley Owens | c9129d9 | 2012-10-01 16:12:28 -0700 | [diff] [blame] | 61 | from main import WrapperModule |
Jaikumar Ganesh | 4f2517f | 2009-06-01 21:10:33 -0700 | [diff] [blame] | 62 | from project import Project |
| 63 | from project import RemoteSpec |
Shawn O. Pearce | c95583b | 2009-03-03 17:47:06 -0800 | [diff] [blame] | 64 | from command import Command, MirrorSafeCommand |
Torne (Richard Coles) | 7bdbde7 | 2012-12-05 10:58:06 +0000 | [diff] [blame] | 65 | from error import RepoChangedException, GitError, ManifestParseError |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 66 | from project import SyncBuffer |
Shawn O. Pearce | 68194f4 | 2009-04-10 16:48:52 -0700 | [diff] [blame] | 67 | from progress import Progress |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 68 | |
Dave Borowitz | 67700e9 | 2012-10-23 15:00:54 -0700 | [diff] [blame] | 69 | _ONE_DAY_S = 24 * 60 * 60 |
| 70 | |
Doug Anderson | fc06ced | 2011-03-16 15:49:18 -0700 | [diff] [blame] | 71 | class _FetchError(Exception): |
| 72 | """Internal error thrown in _FetchHelper() when we don't want stack trace.""" |
| 73 | pass |
| 74 | |
Shawn O. Pearce | c95583b | 2009-03-03 17:47:06 -0800 | [diff] [blame] | 75 | class Sync(Command, MirrorSafeCommand): |
Roy Lee | 18afd7f | 2010-05-09 04:32:08 +0800 | [diff] [blame] | 76 | jobs = 1 |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 77 | common = True |
| 78 | helpSummary = "Update working tree to the latest revision" |
| 79 | helpUsage = """ |
| 80 | %prog [<project>...] |
| 81 | """ |
| 82 | helpDescription = """ |
| 83 | The '%prog' command synchronizes local project directories |
| 84 | with the remote repositories specified in the manifest. If a local |
| 85 | project does not yet exist, it will clone a new local directory from |
| 86 | the remote repository and set up tracking branches as specified in |
| 87 | the manifest. If the local project already exists, '%prog' |
| 88 | will update the remote branches and rebase any new local changes |
| 89 | on top of the new remote changes. |
| 90 | |
| 91 | '%prog' will synchronize all projects listed at the command |
| 92 | line. Projects can be specified either by name, or by a relative |
| 93 | or absolute path to the project's local directory. If no projects |
| 94 | are specified, '%prog' will synchronize all projects listed in |
| 95 | the manifest. |
Shawn O. Pearce | 3e768c9 | 2009-04-10 16:59:36 -0700 | [diff] [blame] | 96 | |
| 97 | The -d/--detach option can be used to switch specified projects |
| 98 | back to the manifest revision. This option is especially helpful |
| 99 | if the project is currently on a topic branch, but the manifest |
| 100 | revision is temporarily needed. |
Shawn O. Pearce | eb7af87 | 2009-04-21 08:02:04 -0700 | [diff] [blame] | 101 | |
Nico Sallembien | a1bfd2c | 2010-04-06 10:40:01 -0700 | [diff] [blame] | 102 | The -s/--smart-sync option can be used to sync to a known good |
| 103 | build as specified by the manifest-server element in the current |
Victor Boivie | 08c880d | 2011-04-19 10:32:52 +0200 | [diff] [blame] | 104 | manifest. The -t/--smart-tag option is similar and allows you to |
| 105 | specify a custom tag/label. |
Nico Sallembien | a1bfd2c | 2010-04-06 10:40:01 -0700 | [diff] [blame] | 106 | |
David Pursehouse | cf76b1b | 2012-09-14 10:31:42 +0900 | [diff] [blame] | 107 | The -u/--manifest-server-username and -p/--manifest-server-password |
| 108 | options can be used to specify a username and password to authenticate |
| 109 | with the manifest server when using the -s or -t option. |
| 110 | |
| 111 | If -u and -p are not specified when using the -s or -t option, '%prog' |
| 112 | will attempt to read authentication credentials for the manifest server |
| 113 | from the user's .netrc file. |
| 114 | |
| 115 | '%prog' will not use authentication credentials from -u/-p or .netrc |
| 116 | if the manifest server specified in the manifest file already includes |
| 117 | credentials. |
| 118 | |
Andrei Warkentin | 5df6de0 | 2010-07-02 17:58:31 -0500 | [diff] [blame] | 119 | The -f/--force-broken option can be used to proceed with syncing |
| 120 | other projects if a project sync fails. |
| 121 | |
Shawn O. Pearce | e02ac0a | 2012-03-14 15:36:59 -0700 | [diff] [blame] | 122 | The --no-clone-bundle option disables any attempt to use |
| 123 | $URL/clone.bundle to bootstrap a new Git repository from a |
| 124 | resumeable bundle file on a content delivery network. This |
| 125 | may be necessary if there are problems with the local Python |
| 126 | HTTP client or proxy configuration, but the Git binary works. |
| 127 | |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 128 | The --fetch-submodules option enables fetching Git submodules |
| 129 | of a project from server. |
| 130 | |
Shawn O. Pearce | eb7af87 | 2009-04-21 08:02:04 -0700 | [diff] [blame] | 131 | SSH Connections |
| 132 | --------------- |
| 133 | |
| 134 | If at least one project remote URL uses an SSH connection (ssh://, |
| 135 | git+ssh://, or user@host:path syntax) repo will automatically |
| 136 | enable the SSH ControlMaster option when connecting to that host. |
| 137 | This feature permits other projects in the same '%prog' session to |
| 138 | reuse the same SSH tunnel, saving connection setup overheads. |
| 139 | |
| 140 | To disable this behavior on UNIX platforms, set the GIT_SSH |
| 141 | environment variable to 'ssh'. For example: |
| 142 | |
| 143 | export GIT_SSH=ssh |
| 144 | %prog |
| 145 | |
| 146 | Compatibility |
| 147 | ~~~~~~~~~~~~~ |
| 148 | |
| 149 | This feature is automatically disabled on Windows, due to the lack |
| 150 | of UNIX domain socket support. |
| 151 | |
| 152 | This feature is not compatible with url.insteadof rewrites in the |
| 153 | user's ~/.gitconfig. '%prog' is currently not able to perform the |
| 154 | rewrite early enough to establish the ControlMaster tunnel. |
| 155 | |
| 156 | If the remote SSH daemon is Gerrit Code Review, version 2.0.10 or |
| 157 | later is required to fix a server side protocol bug. |
| 158 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 159 | """ |
| 160 | |
Nico Sallembien | 6623b21 | 2010-05-11 12:57:01 -0700 | [diff] [blame] | 161 | def _Options(self, p, show_smart=True): |
Torne (Richard Coles) | 7bdbde7 | 2012-12-05 10:58:06 +0000 | [diff] [blame] | 162 | try: |
| 163 | self.jobs = self.manifest.default.sync_j |
| 164 | except ManifestParseError: |
| 165 | self.jobs = 1 |
Shawn O. Pearce | 6392c87 | 2011-09-22 17:44:31 -0700 | [diff] [blame] | 166 | |
Andrei Warkentin | 5df6de0 | 2010-07-02 17:58:31 -0500 | [diff] [blame] | 167 | p.add_option('-f', '--force-broken', |
| 168 | dest='force_broken', action='store_true', |
| 169 | help="continue sync even if a project fails to sync") |
David Pursehouse | 8f62fb7 | 2012-11-14 12:09:38 +0900 | [diff] [blame] | 170 | p.add_option('-l', '--local-only', |
Shawn O. Pearce | b1562fa | 2009-04-10 17:04:08 -0700 | [diff] [blame] | 171 | dest='local_only', action='store_true', |
| 172 | help="only update working tree, don't fetch") |
David Pursehouse | 8f62fb7 | 2012-11-14 12:09:38 +0900 | [diff] [blame] | 173 | p.add_option('-n', '--network-only', |
Shawn O. Pearce | 96fdcef | 2009-04-10 16:29:20 -0700 | [diff] [blame] | 174 | dest='network_only', action='store_true', |
| 175 | help="fetch only, don't update working tree") |
David Pursehouse | 8f62fb7 | 2012-11-14 12:09:38 +0900 | [diff] [blame] | 176 | p.add_option('-d', '--detach', |
Shawn O. Pearce | 3e768c9 | 2009-04-10 16:59:36 -0700 | [diff] [blame] | 177 | dest='detach_head', action='store_true', |
| 178 | help='detach projects back to manifest revision') |
David Pursehouse | 8f62fb7 | 2012-11-14 12:09:38 +0900 | [diff] [blame] | 179 | p.add_option('-c', '--current-branch', |
Anatol Pomazau | 53d6f4d | 2011-08-25 17:21:47 -0700 | [diff] [blame] | 180 | dest='current_branch_only', action='store_true', |
| 181 | help='fetch only current branch from server') |
David Pursehouse | 8f62fb7 | 2012-11-14 12:09:38 +0900 | [diff] [blame] | 182 | p.add_option('-q', '--quiet', |
Shawn O. Pearce | 16614f8 | 2010-10-29 12:05:43 -0700 | [diff] [blame] | 183 | dest='quiet', action='store_true', |
| 184 | help='be more quiet') |
David Pursehouse | 8f62fb7 | 2012-11-14 12:09:38 +0900 | [diff] [blame] | 185 | p.add_option('-j', '--jobs', |
Roy Lee | 18afd7f | 2010-05-09 04:32:08 +0800 | [diff] [blame] | 186 | dest='jobs', action='store', type='int', |
Shawn O. Pearce | 6392c87 | 2011-09-22 17:44:31 -0700 | [diff] [blame] | 187 | help="projects to fetch simultaneously (default %d)" % self.jobs) |
Chris Wolfe | e9dc3b3 | 2012-01-26 11:36:18 -0500 | [diff] [blame] | 188 | p.add_option('-m', '--manifest-name', |
| 189 | dest='manifest_name', |
| 190 | help='temporary manifest to use for this sync', metavar='NAME.xml') |
Shawn O. Pearce | e02ac0a | 2012-03-14 15:36:59 -0700 | [diff] [blame] | 191 | p.add_option('--no-clone-bundle', |
| 192 | dest='no_clone_bundle', action='store_true', |
| 193 | help='disable use of /clone.bundle on HTTP/HTTPS') |
Conley Owens | 8d070cf | 2012-11-06 13:14:31 -0800 | [diff] [blame] | 194 | p.add_option('-u', '--manifest-server-username', action='store', |
| 195 | dest='manifest_server_username', |
| 196 | help='username to authenticate with the manifest server') |
| 197 | p.add_option('-p', '--manifest-server-password', action='store', |
| 198 | dest='manifest_server_password', |
| 199 | help='password to authenticate with the manifest server') |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 200 | p.add_option('--fetch-submodules', |
| 201 | dest='fetch_submodules', action='store_true', |
| 202 | help='fetch submodules from server') |
Mitchel Humpherys | 597868b | 2012-10-29 10:18:34 -0700 | [diff] [blame] | 203 | p.add_option('--no-tags', |
| 204 | dest='no_tags', action='store_true', |
| 205 | help="don't fetch tags") |
Nico Sallembien | 6623b21 | 2010-05-11 12:57:01 -0700 | [diff] [blame] | 206 | if show_smart: |
| 207 | p.add_option('-s', '--smart-sync', |
| 208 | dest='smart_sync', action='store_true', |
| 209 | help='smart sync using manifest from a known good build') |
Victor Boivie | 08c880d | 2011-04-19 10:32:52 +0200 | [diff] [blame] | 210 | p.add_option('-t', '--smart-tag', |
| 211 | dest='smart_tag', action='store', |
| 212 | help='smart sync using manifest from a known tag') |
Shawn O. Pearce | 3e768c9 | 2009-04-10 16:59:36 -0700 | [diff] [blame] | 213 | |
Shawn O. Pearce | fd89b67 | 2009-04-18 11:28:57 -0700 | [diff] [blame] | 214 | g = p.add_option_group('repo Version options') |
| 215 | g.add_option('--no-repo-verify', |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 216 | dest='no_repo_verify', action='store_true', |
| 217 | help='do not verify repo source code') |
Shawn O. Pearce | fd89b67 | 2009-04-18 11:28:57 -0700 | [diff] [blame] | 218 | g.add_option('--repo-upgraded', |
Shawn O. Pearce | c9ef744 | 2008-11-03 10:32:09 -0800 | [diff] [blame] | 219 | dest='repo_upgraded', action='store_true', |
Shawn O. Pearce | 2a1ccb2 | 2009-04-10 16:51:53 -0700 | [diff] [blame] | 220 | help=SUPPRESS_HELP) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 221 | |
Doug Anderson | fc06ced | 2011-03-16 15:49:18 -0700 | [diff] [blame] | 222 | def _FetchHelper(self, opt, project, lock, fetched, pm, sem, err_event): |
David Pursehouse | c1b86a2 | 2012-11-14 11:36:51 +0900 | [diff] [blame] | 223 | """Main function of the fetch threads when jobs are > 1. |
Roy Lee | 18afd7f | 2010-05-09 04:32:08 +0800 | [diff] [blame] | 224 | |
David Pursehouse | c1b86a2 | 2012-11-14 11:36:51 +0900 | [diff] [blame] | 225 | Args: |
| 226 | opt: Program options returned from optparse. See _Options(). |
| 227 | project: Project object for the project to fetch. |
| 228 | lock: Lock for accessing objects that are shared amongst multiple |
| 229 | _FetchHelper() threads. |
| 230 | fetched: set object that we will add project.gitdir to when we're done |
| 231 | (with our lock held). |
| 232 | pm: Instance of a Project object. We will call pm.update() (with our |
| 233 | lock held). |
| 234 | sem: We'll release() this semaphore when we exit so that another thread |
| 235 | can be started up. |
| 236 | err_event: We'll set this event in the case of an error (after printing |
| 237 | out info about the error). |
| 238 | """ |
| 239 | # We'll set to true once we've locked the lock. |
| 240 | did_lock = False |
Doug Anderson | fc06ced | 2011-03-16 15:49:18 -0700 | [diff] [blame] | 241 | |
Chirayu Desai | fef4ae7 | 2013-04-12 14:54:32 +0530 | [diff] [blame] | 242 | if not opt.quiet: |
| 243 | print('Fetching project %s' % project.name) |
| 244 | |
David Pursehouse | c1b86a2 | 2012-11-14 11:36:51 +0900 | [diff] [blame] | 245 | # Encapsulate everything in a try/except/finally so that: |
| 246 | # - We always set err_event in the case of an exception. |
| 247 | # - We always make sure we call sem.release(). |
| 248 | # - We always make sure we unlock the lock if we locked it. |
| 249 | try: |
Doug Anderson | fc06ced | 2011-03-16 15:49:18 -0700 | [diff] [blame] | 250 | try: |
David Pursehouse | c1b86a2 | 2012-11-14 11:36:51 +0900 | [diff] [blame] | 251 | start = time.time() |
| 252 | success = project.Sync_NetworkHalf( |
| 253 | quiet=opt.quiet, |
| 254 | current_branch_only=opt.current_branch_only, |
Mitchel Humpherys | 597868b | 2012-10-29 10:18:34 -0700 | [diff] [blame] | 255 | clone_bundle=not opt.no_clone_bundle, |
| 256 | no_tags=opt.no_tags) |
David Pursehouse | c1b86a2 | 2012-11-14 11:36:51 +0900 | [diff] [blame] | 257 | self._fetch_times.Set(project, time.time() - start) |
Doug Anderson | fc06ced | 2011-03-16 15:49:18 -0700 | [diff] [blame] | 258 | |
David Pursehouse | c1b86a2 | 2012-11-14 11:36:51 +0900 | [diff] [blame] | 259 | # Lock around all the rest of the code, since printing, updating a set |
| 260 | # and Progress.update() are not thread safe. |
| 261 | lock.acquire() |
| 262 | did_lock = True |
Doug Anderson | fc06ced | 2011-03-16 15:49:18 -0700 | [diff] [blame] | 263 | |
David Pursehouse | c1b86a2 | 2012-11-14 11:36:51 +0900 | [diff] [blame] | 264 | if not success: |
| 265 | print('error: Cannot fetch %s' % project.name, file=sys.stderr) |
| 266 | if opt.force_broken: |
| 267 | print('warn: --force-broken, continuing to sync', |
| 268 | file=sys.stderr) |
| 269 | else: |
| 270 | raise _FetchError() |
Doug Anderson | fc06ced | 2011-03-16 15:49:18 -0700 | [diff] [blame] | 271 | |
David Pursehouse | c1b86a2 | 2012-11-14 11:36:51 +0900 | [diff] [blame] | 272 | fetched.add(project.gitdir) |
| 273 | pm.update() |
| 274 | except _FetchError: |
| 275 | err_event.set() |
| 276 | except: |
| 277 | err_event.set() |
| 278 | raise |
| 279 | finally: |
| 280 | if did_lock: |
| 281 | lock.release() |
| 282 | sem.release() |
Roy Lee | 18afd7f | 2010-05-09 04:32:08 +0800 | [diff] [blame] | 283 | |
Shawn O. Pearce | 16614f8 | 2010-10-29 12:05:43 -0700 | [diff] [blame] | 284 | def _Fetch(self, projects, opt): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 285 | fetched = set() |
Shawn O. Pearce | 68194f4 | 2009-04-10 16:48:52 -0700 | [diff] [blame] | 286 | pm = Progress('Fetching projects', len(projects)) |
Roy Lee | 18afd7f | 2010-05-09 04:32:08 +0800 | [diff] [blame] | 287 | |
| 288 | if self.jobs == 1: |
| 289 | for project in projects: |
| 290 | pm.update() |
Chirayu Desai | fef4ae7 | 2013-04-12 14:54:32 +0530 | [diff] [blame] | 291 | if not opt.quiet: |
| 292 | print('Fetching project %s' % project.name) |
Shawn O. Pearce | 5d0efdb | 2012-08-02 12:13:01 -0700 | [diff] [blame] | 293 | if project.Sync_NetworkHalf( |
| 294 | quiet=opt.quiet, |
| 295 | current_branch_only=opt.current_branch_only, |
Mitchel Humpherys | 597868b | 2012-10-29 10:18:34 -0700 | [diff] [blame] | 296 | clone_bundle=not opt.no_clone_bundle, |
| 297 | no_tags=opt.no_tags): |
Roy Lee | 18afd7f | 2010-05-09 04:32:08 +0800 | [diff] [blame] | 298 | fetched.add(project.gitdir) |
| 299 | else: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 300 | print('error: Cannot fetch %s' % project.name, file=sys.stderr) |
Andrei Warkentin | 5df6de0 | 2010-07-02 17:58:31 -0500 | [diff] [blame] | 301 | if opt.force_broken: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 302 | print('warn: --force-broken, continuing to sync', file=sys.stderr) |
Andrei Warkentin | 5df6de0 | 2010-07-02 17:58:31 -0500 | [diff] [blame] | 303 | else: |
| 304 | sys.exit(1) |
Roy Lee | 18afd7f | 2010-05-09 04:32:08 +0800 | [diff] [blame] | 305 | else: |
| 306 | threads = set() |
| 307 | lock = _threading.Lock() |
| 308 | sem = _threading.Semaphore(self.jobs) |
Doug Anderson | fc06ced | 2011-03-16 15:49:18 -0700 | [diff] [blame] | 309 | err_event = _threading.Event() |
Roy Lee | 18afd7f | 2010-05-09 04:32:08 +0800 | [diff] [blame] | 310 | for project in projects: |
Doug Anderson | fc06ced | 2011-03-16 15:49:18 -0700 | [diff] [blame] | 311 | # Check for any errors before starting any new threads. |
| 312 | # ...we'll let existing threads finish, though. |
Daniel Sandler | 723c5dc | 2011-04-04 11:15:17 -0400 | [diff] [blame] | 313 | if err_event.isSet(): |
Doug Anderson | fc06ced | 2011-03-16 15:49:18 -0700 | [diff] [blame] | 314 | break |
| 315 | |
Roy Lee | 18afd7f | 2010-05-09 04:32:08 +0800 | [diff] [blame] | 316 | sem.acquire() |
| 317 | t = _threading.Thread(target = self._FetchHelper, |
Shawn O. Pearce | 16614f8 | 2010-10-29 12:05:43 -0700 | [diff] [blame] | 318 | args = (opt, |
| 319 | project, |
| 320 | lock, |
| 321 | fetched, |
| 322 | pm, |
Doug Anderson | fc06ced | 2011-03-16 15:49:18 -0700 | [diff] [blame] | 323 | sem, |
| 324 | err_event)) |
David 'Digit' Turner | e212665 | 2012-09-05 10:35:06 +0200 | [diff] [blame] | 325 | # Ensure that Ctrl-C will not freeze the repo process. |
| 326 | t.daemon = True |
Roy Lee | 18afd7f | 2010-05-09 04:32:08 +0800 | [diff] [blame] | 327 | threads.add(t) |
| 328 | t.start() |
| 329 | |
| 330 | for t in threads: |
| 331 | t.join() |
| 332 | |
Doug Anderson | fc06ced | 2011-03-16 15:49:18 -0700 | [diff] [blame] | 333 | # If we saw an error, exit with code 1 so that other scripts can check. |
Daniel Sandler | 723c5dc | 2011-04-04 11:15:17 -0400 | [diff] [blame] | 334 | if err_event.isSet(): |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 335 | print('\nerror: Exited sync due to fetch errors', file=sys.stderr) |
Doug Anderson | fc06ced | 2011-03-16 15:49:18 -0700 | [diff] [blame] | 336 | sys.exit(1) |
| 337 | |
Shawn O. Pearce | 68194f4 | 2009-04-10 16:48:52 -0700 | [diff] [blame] | 338 | pm.end() |
Dave Borowitz | 67700e9 | 2012-10-23 15:00:54 -0700 | [diff] [blame] | 339 | self._fetch_times.Save() |
Dave Borowitz | 1885721 | 2012-10-23 17:02:59 -0700 | [diff] [blame] | 340 | |
| 341 | self._GCProjects(projects) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 342 | return fetched |
| 343 | |
Dave Borowitz | 1885721 | 2012-10-23 17:02:59 -0700 | [diff] [blame] | 344 | def _GCProjects(self, projects): |
Dave Borowitz | e215267 | 2012-10-31 12:24:38 -0700 | [diff] [blame] | 345 | has_dash_c = git_require((1, 7, 2)) |
| 346 | if multiprocessing and has_dash_c: |
Dave Borowitz | 1885721 | 2012-10-23 17:02:59 -0700 | [diff] [blame] | 347 | cpu_count = multiprocessing.cpu_count() |
| 348 | else: |
| 349 | cpu_count = 1 |
| 350 | jobs = min(self.jobs, cpu_count) |
| 351 | |
| 352 | if jobs < 2: |
| 353 | for project in projects: |
| 354 | project.bare_git.gc('--auto') |
| 355 | return |
| 356 | |
| 357 | config = {'pack.threads': cpu_count / jobs if cpu_count > jobs else 1} |
| 358 | |
| 359 | threads = set() |
| 360 | sem = _threading.Semaphore(jobs) |
| 361 | err_event = _threading.Event() |
| 362 | |
| 363 | def GC(project): |
| 364 | try: |
| 365 | try: |
| 366 | project.bare_git.gc('--auto', config=config) |
| 367 | except GitError: |
| 368 | err_event.set() |
| 369 | except: |
| 370 | err_event.set() |
| 371 | raise |
| 372 | finally: |
| 373 | sem.release() |
| 374 | |
| 375 | for project in projects: |
| 376 | if err_event.isSet(): |
| 377 | break |
| 378 | sem.acquire() |
| 379 | t = _threading.Thread(target=GC, args=(project,)) |
| 380 | t.daemon = True |
| 381 | threads.add(t) |
| 382 | t.start() |
| 383 | |
| 384 | for t in threads: |
| 385 | t.join() |
| 386 | |
| 387 | if err_event.isSet(): |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 388 | print('\nerror: Exited sync due to gc errors', file=sys.stderr) |
Dave Borowitz | 1885721 | 2012-10-23 17:02:59 -0700 | [diff] [blame] | 389 | sys.exit(1) |
| 390 | |
Tim Kilbourn | 0766900 | 2013-03-08 15:02:49 -0800 | [diff] [blame] | 391 | def _ReloadManifest(self, manifest_name=None): |
| 392 | if manifest_name: |
| 393 | # Override calls _Unload already |
| 394 | self.manifest.Override(manifest_name) |
| 395 | else: |
| 396 | self.manifest._Unload() |
| 397 | |
Jaikumar Ganesh | 4f2517f | 2009-06-01 21:10:33 -0700 | [diff] [blame] | 398 | def UpdateProjectList(self): |
| 399 | new_project_paths = [] |
Colin Cross | 5acde75 | 2012-03-28 20:15:45 -0700 | [diff] [blame] | 400 | for project in self.GetProjects(None, missing_ok=True): |
Shawn O. Pearce | 3a68bb4 | 2009-06-04 16:18:09 -0700 | [diff] [blame] | 401 | if project.relpath: |
| 402 | new_project_paths.append(project.relpath) |
Jaikumar Ganesh | 4f2517f | 2009-06-01 21:10:33 -0700 | [diff] [blame] | 403 | file_name = 'project.list' |
| 404 | file_path = os.path.join(self.manifest.repodir, file_name) |
| 405 | old_project_paths = [] |
| 406 | |
| 407 | if os.path.exists(file_path): |
| 408 | fd = open(file_path, 'r') |
| 409 | try: |
| 410 | old_project_paths = fd.read().split('\n') |
| 411 | finally: |
| 412 | fd.close() |
| 413 | for path in old_project_paths: |
Shawn O. Pearce | 3a68bb4 | 2009-06-04 16:18:09 -0700 | [diff] [blame] | 414 | if not path: |
| 415 | continue |
Jaikumar Ganesh | 4f2517f | 2009-06-01 21:10:33 -0700 | [diff] [blame] | 416 | if path not in new_project_paths: |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 417 | # If the path has already been deleted, we don't need to do it |
Anthony | f3fdf82 | 2009-09-26 13:38:52 -0400 | [diff] [blame] | 418 | if os.path.exists(self.manifest.topdir + '/' + path): |
David Pursehouse | c1b86a2 | 2012-11-14 11:36:51 +0900 | [diff] [blame] | 419 | project = Project( |
| 420 | manifest = self.manifest, |
| 421 | name = path, |
| 422 | remote = RemoteSpec('origin'), |
| 423 | gitdir = os.path.join(self.manifest.topdir, |
| 424 | path, '.git'), |
| 425 | worktree = os.path.join(self.manifest.topdir, path), |
| 426 | relpath = path, |
| 427 | revisionExpr = 'HEAD', |
| 428 | revisionId = None, |
| 429 | groups = None) |
Anthony | f3fdf82 | 2009-09-26 13:38:52 -0400 | [diff] [blame] | 430 | |
David Pursehouse | c1b86a2 | 2012-11-14 11:36:51 +0900 | [diff] [blame] | 431 | if project.IsDirty(): |
David Pursehouse | 2f9e7e4 | 2013-03-05 17:26:46 +0900 | [diff] [blame] | 432 | print('error: Cannot remove project "%s": uncommitted changes ' |
David Pursehouse | c1b86a2 | 2012-11-14 11:36:51 +0900 | [diff] [blame] | 433 | 'are present' % project.relpath, file=sys.stderr) |
| 434 | print(' commit changes, then run sync again', |
| 435 | file=sys.stderr) |
| 436 | return -1 |
| 437 | else: |
| 438 | print('Deleting obsolete path %s' % project.worktree, |
| 439 | file=sys.stderr) |
| 440 | shutil.rmtree(project.worktree) |
| 441 | # Try deleting parent subdirs if they are empty |
| 442 | project_dir = os.path.dirname(project.worktree) |
| 443 | while project_dir != self.manifest.topdir: |
| 444 | try: |
| 445 | os.rmdir(project_dir) |
| 446 | except OSError: |
| 447 | break |
| 448 | project_dir = os.path.dirname(project_dir) |
Jaikumar Ganesh | 4f2517f | 2009-06-01 21:10:33 -0700 | [diff] [blame] | 449 | |
Shawn O. Pearce | 9fb29ce | 2009-06-04 20:41:02 -0700 | [diff] [blame] | 450 | new_project_paths.sort() |
Jaikumar Ganesh | 4f2517f | 2009-06-01 21:10:33 -0700 | [diff] [blame] | 451 | fd = open(file_path, 'w') |
| 452 | try: |
| 453 | fd.write('\n'.join(new_project_paths)) |
Shawn O. Pearce | 3a68bb4 | 2009-06-04 16:18:09 -0700 | [diff] [blame] | 454 | fd.write('\n') |
Jaikumar Ganesh | 4f2517f | 2009-06-01 21:10:33 -0700 | [diff] [blame] | 455 | finally: |
| 456 | fd.close() |
| 457 | return 0 |
| 458 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 459 | def Execute(self, opt, args): |
Roy Lee | 18afd7f | 2010-05-09 04:32:08 +0800 | [diff] [blame] | 460 | if opt.jobs: |
| 461 | self.jobs = opt.jobs |
Shawn O. Pearce | 97d2b2f | 2011-09-22 17:23:41 -0700 | [diff] [blame] | 462 | if self.jobs > 1: |
| 463 | soft_limit, _ = _rlimit_nofile() |
| 464 | self.jobs = min(self.jobs, (soft_limit - 5) / 3) |
| 465 | |
Shawn O. Pearce | 3e768c9 | 2009-04-10 16:59:36 -0700 | [diff] [blame] | 466 | if opt.network_only and opt.detach_head: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 467 | print('error: cannot combine -n and -d', file=sys.stderr) |
Shawn O. Pearce | 3e768c9 | 2009-04-10 16:59:36 -0700 | [diff] [blame] | 468 | sys.exit(1) |
Shawn O. Pearce | b1562fa | 2009-04-10 17:04:08 -0700 | [diff] [blame] | 469 | if opt.network_only and opt.local_only: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 470 | print('error: cannot combine -n and -l', file=sys.stderr) |
Shawn O. Pearce | b1562fa | 2009-04-10 17:04:08 -0700 | [diff] [blame] | 471 | sys.exit(1) |
Chris Wolfe | e9dc3b3 | 2012-01-26 11:36:18 -0500 | [diff] [blame] | 472 | if opt.manifest_name and opt.smart_sync: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 473 | print('error: cannot combine -m and -s', file=sys.stderr) |
Chris Wolfe | e9dc3b3 | 2012-01-26 11:36:18 -0500 | [diff] [blame] | 474 | sys.exit(1) |
| 475 | if opt.manifest_name and opt.smart_tag: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 476 | print('error: cannot combine -m and -t', file=sys.stderr) |
Chris Wolfe | e9dc3b3 | 2012-01-26 11:36:18 -0500 | [diff] [blame] | 477 | sys.exit(1) |
David Pursehouse | cf76b1b | 2012-09-14 10:31:42 +0900 | [diff] [blame] | 478 | if opt.manifest_server_username or opt.manifest_server_password: |
| 479 | if not (opt.smart_sync or opt.smart_tag): |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 480 | print('error: -u and -p may only be combined with -s or -t', |
| 481 | file=sys.stderr) |
David Pursehouse | cf76b1b | 2012-09-14 10:31:42 +0900 | [diff] [blame] | 482 | sys.exit(1) |
| 483 | if None in [opt.manifest_server_username, opt.manifest_server_password]: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 484 | print('error: both -u and -p must be given', file=sys.stderr) |
David Pursehouse | cf76b1b | 2012-09-14 10:31:42 +0900 | [diff] [blame] | 485 | sys.exit(1) |
Chris Wolfe | e9dc3b3 | 2012-01-26 11:36:18 -0500 | [diff] [blame] | 486 | |
| 487 | if opt.manifest_name: |
| 488 | self.manifest.Override(opt.manifest_name) |
Shawn O. Pearce | 3e768c9 | 2009-04-10 16:59:36 -0700 | [diff] [blame] | 489 | |
Victor Boivie | 08c880d | 2011-04-19 10:32:52 +0200 | [diff] [blame] | 490 | if opt.smart_sync or opt.smart_tag: |
Nico Sallembien | a1bfd2c | 2010-04-06 10:40:01 -0700 | [diff] [blame] | 491 | if not self.manifest.manifest_server: |
David Pursehouse | 2f9e7e4 | 2013-03-05 17:26:46 +0900 | [diff] [blame] | 492 | print('error: cannot smart sync: no manifest server defined in ' |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 493 | 'manifest', file=sys.stderr) |
Nico Sallembien | a1bfd2c | 2010-04-06 10:40:01 -0700 | [diff] [blame] | 494 | sys.exit(1) |
David Pursehouse | 86d973d | 2012-08-24 10:21:02 +0900 | [diff] [blame] | 495 | |
| 496 | manifest_server = self.manifest.manifest_server |
David Pursehouse | cf76b1b | 2012-09-14 10:31:42 +0900 | [diff] [blame] | 497 | |
David Pursehouse | 86d973d | 2012-08-24 10:21:02 +0900 | [diff] [blame] | 498 | if not '@' in manifest_server: |
David Pursehouse | cf76b1b | 2012-09-14 10:31:42 +0900 | [diff] [blame] | 499 | username = None |
| 500 | password = None |
| 501 | if opt.manifest_server_username and opt.manifest_server_password: |
| 502 | username = opt.manifest_server_username |
| 503 | password = opt.manifest_server_password |
David Pursehouse | 86d973d | 2012-08-24 10:21:02 +0900 | [diff] [blame] | 504 | else: |
| 505 | try: |
David Pursehouse | cf76b1b | 2012-09-14 10:31:42 +0900 | [diff] [blame] | 506 | info = netrc.netrc() |
| 507 | except IOError: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 508 | print('.netrc file does not exist or could not be opened', |
| 509 | file=sys.stderr) |
David Pursehouse | 86d973d | 2012-08-24 10:21:02 +0900 | [diff] [blame] | 510 | else: |
David Pursehouse | cf76b1b | 2012-09-14 10:31:42 +0900 | [diff] [blame] | 511 | try: |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 512 | parse_result = urllib.parse(manifest_server) |
David Pursehouse | cf76b1b | 2012-09-14 10:31:42 +0900 | [diff] [blame] | 513 | if parse_result.hostname: |
| 514 | username, _account, password = \ |
| 515 | info.authenticators(parse_result.hostname) |
| 516 | except TypeError: |
| 517 | # TypeError is raised when the given hostname is not present |
| 518 | # in the .netrc file. |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 519 | print('No credentials found for %s in .netrc' |
| 520 | % parse_result.hostname, file=sys.stderr) |
Sarah Owens | a5be53f | 2012-09-09 15:37:57 -0700 | [diff] [blame] | 521 | except netrc.NetrcParseError as e: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 522 | print('Error parsing .netrc file: %s' % e, file=sys.stderr) |
David Pursehouse | cf76b1b | 2012-09-14 10:31:42 +0900 | [diff] [blame] | 523 | |
| 524 | if (username and password): |
| 525 | manifest_server = manifest_server.replace('://', '://%s:%s@' % |
| 526 | (username, password), |
| 527 | 1) |
David Pursehouse | 86d973d | 2012-08-24 10:21:02 +0900 | [diff] [blame] | 528 | |
Nico Sallembien | a1bfd2c | 2010-04-06 10:40:01 -0700 | [diff] [blame] | 529 | try: |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 530 | server = xmlrpc.client.Server(manifest_server) |
Victor Boivie | 08c880d | 2011-04-19 10:32:52 +0200 | [diff] [blame] | 531 | if opt.smart_sync: |
| 532 | p = self.manifest.manifestProject |
| 533 | b = p.GetBranch(p.CurrentBranch) |
| 534 | branch = b.merge |
| 535 | if branch.startswith(R_HEADS): |
| 536 | branch = branch[len(R_HEADS):] |
Nico Sallembien | a1bfd2c | 2010-04-06 10:40:01 -0700 | [diff] [blame] | 537 | |
Victor Boivie | 08c880d | 2011-04-19 10:32:52 +0200 | [diff] [blame] | 538 | env = os.environ.copy() |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 539 | if 'TARGET_PRODUCT' in env and 'TARGET_BUILD_VARIANT' in env: |
Victor Boivie | 08c880d | 2011-04-19 10:32:52 +0200 | [diff] [blame] | 540 | target = '%s-%s' % (env['TARGET_PRODUCT'], |
| 541 | env['TARGET_BUILD_VARIANT']) |
| 542 | [success, manifest_str] = server.GetApprovedManifest(branch, target) |
| 543 | else: |
| 544 | [success, manifest_str] = server.GetApprovedManifest(branch) |
Nico Sallembien | a1bfd2c | 2010-04-06 10:40:01 -0700 | [diff] [blame] | 545 | else: |
Victor Boivie | 08c880d | 2011-04-19 10:32:52 +0200 | [diff] [blame] | 546 | assert(opt.smart_tag) |
| 547 | [success, manifest_str] = server.GetManifest(opt.smart_tag) |
Nico Sallembien | a1bfd2c | 2010-04-06 10:40:01 -0700 | [diff] [blame] | 548 | |
| 549 | if success: |
| 550 | manifest_name = "smart_sync_override.xml" |
| 551 | manifest_path = os.path.join(self.manifest.manifestProject.worktree, |
| 552 | manifest_name) |
| 553 | try: |
| 554 | f = open(manifest_path, 'w') |
| 555 | try: |
| 556 | f.write(manifest_str) |
Nico Sallembien | a1bfd2c | 2010-04-06 10:40:01 -0700 | [diff] [blame] | 557 | finally: |
| 558 | f.close() |
| 559 | except IOError: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 560 | print('error: cannot write manifest to %s' % manifest_path, |
| 561 | file=sys.stderr) |
Nico Sallembien | a1bfd2c | 2010-04-06 10:40:01 -0700 | [diff] [blame] | 562 | sys.exit(1) |
Nico Sallembien | 719965a | 2010-04-20 15:28:19 -0700 | [diff] [blame] | 563 | self.manifest.Override(manifest_name) |
Nico Sallembien | a1bfd2c | 2010-04-06 10:40:01 -0700 | [diff] [blame] | 564 | else: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 565 | print('error: %s' % manifest_str, file=sys.stderr) |
Nico Sallembien | a1bfd2c | 2010-04-06 10:40:01 -0700 | [diff] [blame] | 566 | sys.exit(1) |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 567 | except (socket.error, IOError, xmlrpc.client.Fault) as e: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 568 | print('error: cannot connect to manifest server %s:\n%s' |
| 569 | % (self.manifest.manifest_server, e), file=sys.stderr) |
David Pursehouse | bd489c4 | 2012-08-23 10:21:26 +0900 | [diff] [blame] | 570 | sys.exit(1) |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 571 | except xmlrpc.client.ProtocolError as e: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 572 | print('error: cannot connect to manifest server %s:\n%d %s' |
| 573 | % (self.manifest.manifest_server, e.errcode, e.errmsg), |
| 574 | file=sys.stderr) |
Nico Sallembien | a1bfd2c | 2010-04-06 10:40:01 -0700 | [diff] [blame] | 575 | sys.exit(1) |
| 576 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 577 | rp = self.manifest.repoProject |
| 578 | rp.PreSync() |
| 579 | |
| 580 | mp = self.manifest.manifestProject |
| 581 | mp.PreSync() |
| 582 | |
Shawn O. Pearce | c9ef744 | 2008-11-03 10:32:09 -0800 | [diff] [blame] | 583 | if opt.repo_upgraded: |
Shawn O. Pearce | 80d2ceb | 2012-10-26 12:23:05 -0700 | [diff] [blame] | 584 | _PostRepoUpgrade(self.manifest, quiet=opt.quiet) |
Shawn O. Pearce | c9ef744 | 2008-11-03 10:32:09 -0800 | [diff] [blame] | 585 | |
Nico Sallembien | 9bb1816 | 2009-12-07 15:38:01 -0800 | [diff] [blame] | 586 | if not opt.local_only: |
Anatol Pomazau | 53d6f4d | 2011-08-25 17:21:47 -0700 | [diff] [blame] | 587 | mp.Sync_NetworkHalf(quiet=opt.quiet, |
Mitchel Humpherys | 597868b | 2012-10-29 10:18:34 -0700 | [diff] [blame] | 588 | current_branch_only=opt.current_branch_only, |
| 589 | no_tags=opt.no_tags) |
Nico Sallembien | 9bb1816 | 2009-12-07 15:38:01 -0800 | [diff] [blame] | 590 | |
| 591 | if mp.HasChanges: |
| 592 | syncbuf = SyncBuffer(mp.config) |
| 593 | mp.Sync_LocalHalf(syncbuf) |
| 594 | if not syncbuf.Finish(): |
| 595 | sys.exit(1) |
Tim Kilbourn | 0766900 | 2013-03-08 15:02:49 -0800 | [diff] [blame] | 596 | self._ReloadManifest(opt.manifest_name) |
Shawn O. Pearce | c465796 | 2011-09-26 09:08:01 -0700 | [diff] [blame] | 597 | if opt.jobs is None: |
| 598 | self.jobs = self.manifest.default.sync_j |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 599 | all_projects = self.GetProjects(args, |
| 600 | missing_ok=True, |
| 601 | submodules_ok=opt.fetch_submodules) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 602 | |
Dave Borowitz | 67700e9 | 2012-10-23 15:00:54 -0700 | [diff] [blame] | 603 | self._fetch_times = _FetchTimes(self.manifest) |
Shawn O. Pearce | b1562fa | 2009-04-10 17:04:08 -0700 | [diff] [blame] | 604 | if not opt.local_only: |
Shawn O. Pearce | f690687 | 2009-04-18 10:49:00 -0700 | [diff] [blame] | 605 | to_fetch = [] |
| 606 | now = time.time() |
Dave Borowitz | 67700e9 | 2012-10-23 15:00:54 -0700 | [diff] [blame] | 607 | if _ONE_DAY_S <= (now - rp.LastFetch): |
Shawn O. Pearce | f690687 | 2009-04-18 10:49:00 -0700 | [diff] [blame] | 608 | to_fetch.append(rp) |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 609 | to_fetch.extend(all_projects) |
Dave Borowitz | 67700e9 | 2012-10-23 15:00:54 -0700 | [diff] [blame] | 610 | to_fetch.sort(key=self._fetch_times.Get, reverse=True) |
Shawn O. Pearce | f690687 | 2009-04-18 10:49:00 -0700 | [diff] [blame] | 611 | |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 612 | fetched = self._Fetch(to_fetch, opt) |
Shawn O. Pearce | e756c41 | 2009-04-13 11:51:15 -0700 | [diff] [blame] | 613 | _PostRepoFetch(rp, opt.no_repo_verify) |
Shawn O. Pearce | b1562fa | 2009-04-10 17:04:08 -0700 | [diff] [blame] | 614 | if opt.network_only: |
| 615 | # bail out now; the rest touches the working tree |
| 616 | return |
| 617 | |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 618 | # Iteratively fetch missing and/or nested unregistered submodules |
| 619 | previously_missing_set = set() |
| 620 | while True: |
Tim Kilbourn | 0766900 | 2013-03-08 15:02:49 -0800 | [diff] [blame] | 621 | self._ReloadManifest(opt.manifest_name) |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 622 | all_projects = self.GetProjects(args, |
| 623 | missing_ok=True, |
| 624 | submodules_ok=opt.fetch_submodules) |
| 625 | missing = [] |
| 626 | for project in all_projects: |
| 627 | if project.gitdir not in fetched: |
| 628 | missing.append(project) |
| 629 | if not missing: |
| 630 | break |
| 631 | # Stop us from non-stopped fetching actually-missing repos: If set of |
| 632 | # missing repos has not been changed from last fetch, we break. |
| 633 | missing_set = set(p.name for p in missing) |
| 634 | if previously_missing_set == missing_set: |
| 635 | break |
| 636 | previously_missing_set = missing_set |
| 637 | fetched.update(self._Fetch(missing, opt)) |
| 638 | |
Shawn O. Pearce | cd1d7ff | 2009-06-04 16:15:53 -0700 | [diff] [blame] | 639 | if self.manifest.IsMirror: |
| 640 | # bail out now, we have no working tree |
| 641 | return |
| 642 | |
Jaikumar Ganesh | 4f2517f | 2009-06-01 21:10:33 -0700 | [diff] [blame] | 643 | if self.UpdateProjectList(): |
| 644 | sys.exit(1) |
| 645 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 646 | syncbuf = SyncBuffer(mp.config, |
| 647 | detach_head = opt.detach_head) |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 648 | pm = Progress('Syncing work tree', len(all_projects)) |
| 649 | for project in all_projects: |
Shawn O. Pearce | 68194f4 | 2009-04-10 16:48:52 -0700 | [diff] [blame] | 650 | pm.update() |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 651 | if project.worktree: |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 652 | project.Sync_LocalHalf(syncbuf) |
Shawn O. Pearce | 68194f4 | 2009-04-10 16:48:52 -0700 | [diff] [blame] | 653 | pm.end() |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 654 | print(file=sys.stderr) |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 655 | if not syncbuf.Finish(): |
| 656 | sys.exit(1) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 657 | |
Doug Anderson | 2b8db3c | 2010-11-01 15:08:06 -0700 | [diff] [blame] | 658 | # If there's a notice that's supposed to print at the end of the sync, print |
| 659 | # it now... |
| 660 | if self.manifest.notice: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 661 | print(self.manifest.notice) |
Doug Anderson | 2b8db3c | 2010-11-01 15:08:06 -0700 | [diff] [blame] | 662 | |
Shawn O. Pearce | 80d2ceb | 2012-10-26 12:23:05 -0700 | [diff] [blame] | 663 | def _PostRepoUpgrade(manifest, quiet=False): |
Conley Owens | c9129d9 | 2012-10-01 16:12:28 -0700 | [diff] [blame] | 664 | wrapper = WrapperModule() |
| 665 | if wrapper.NeedSetupGnuPG(): |
Shawn O. Pearce | 80d2ceb | 2012-10-26 12:23:05 -0700 | [diff] [blame] | 666 | wrapper.SetupGnuPG(quiet) |
Shawn O. Pearce | e756c41 | 2009-04-13 11:51:15 -0700 | [diff] [blame] | 667 | for project in manifest.projects.values(): |
| 668 | if project.Exists: |
| 669 | project.PostRepoUpgrade() |
| 670 | |
| 671 | def _PostRepoFetch(rp, no_repo_verify=False, verbose=False): |
| 672 | if rp.HasChanges: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 673 | print('info: A new version of repo is available', file=sys.stderr) |
| 674 | print(file=sys.stderr) |
Shawn O. Pearce | e756c41 | 2009-04-13 11:51:15 -0700 | [diff] [blame] | 675 | if no_repo_verify or _VerifyTag(rp): |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 676 | syncbuf = SyncBuffer(rp.config) |
| 677 | rp.Sync_LocalHalf(syncbuf) |
| 678 | if not syncbuf.Finish(): |
Shawn O. Pearce | e756c41 | 2009-04-13 11:51:15 -0700 | [diff] [blame] | 679 | sys.exit(1) |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 680 | print('info: Restarting repo with latest version', file=sys.stderr) |
Shawn O. Pearce | e756c41 | 2009-04-13 11:51:15 -0700 | [diff] [blame] | 681 | raise RepoChangedException(['--repo-upgraded']) |
| 682 | else: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 683 | print('warning: Skipped upgrade to unverified version', file=sys.stderr) |
Shawn O. Pearce | e756c41 | 2009-04-13 11:51:15 -0700 | [diff] [blame] | 684 | else: |
| 685 | if verbose: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 686 | print('repo version %s is current' % rp.work_git.describe(HEAD), |
| 687 | file=sys.stderr) |
Shawn O. Pearce | e756c41 | 2009-04-13 11:51:15 -0700 | [diff] [blame] | 688 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 689 | def _VerifyTag(project): |
| 690 | gpg_dir = os.path.expanduser('~/.repoconfig/gnupg') |
| 691 | if not os.path.exists(gpg_dir): |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 692 | print('warning: GnuPG was not available during last "repo init"\n' |
| 693 | 'warning: Cannot automatically authenticate repo."""', |
| 694 | file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 695 | return True |
| 696 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 697 | try: |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 698 | cur = project.bare_git.describe(project.GetRevisionId()) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 699 | except GitError: |
| 700 | cur = None |
| 701 | |
| 702 | if not cur \ |
| 703 | or re.compile(r'^.*-[0-9]{1,}-g[0-9a-f]{1,}$').match(cur): |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 704 | rev = project.revisionExpr |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 705 | if rev.startswith(R_HEADS): |
| 706 | rev = rev[len(R_HEADS):] |
| 707 | |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 708 | print(file=sys.stderr) |
| 709 | print("warning: project '%s' branch '%s' is not signed" |
| 710 | % (project.name, rev), file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 711 | return False |
| 712 | |
Shawn O. Pearce | f18cb76 | 2010-12-07 11:41:05 -0800 | [diff] [blame] | 713 | env = os.environ.copy() |
| 714 | env['GIT_DIR'] = project.gitdir.encode() |
| 715 | env['GNUPGHOME'] = gpg_dir.encode() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 716 | |
| 717 | cmd = [GIT, 'tag', '-v', cur] |
| 718 | proc = subprocess.Popen(cmd, |
| 719 | stdout = subprocess.PIPE, |
| 720 | stderr = subprocess.PIPE, |
| 721 | env = env) |
| 722 | out = proc.stdout.read() |
| 723 | proc.stdout.close() |
| 724 | |
| 725 | err = proc.stderr.read() |
| 726 | proc.stderr.close() |
| 727 | |
| 728 | if proc.wait() != 0: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 729 | print(file=sys.stderr) |
| 730 | print(out, file=sys.stderr) |
| 731 | print(err, file=sys.stderr) |
| 732 | print(file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 733 | return False |
| 734 | return True |
Dave Borowitz | 67700e9 | 2012-10-23 15:00:54 -0700 | [diff] [blame] | 735 | |
| 736 | class _FetchTimes(object): |
Dave Borowitz | d947858 | 2012-10-23 16:35:39 -0700 | [diff] [blame] | 737 | _ALPHA = 0.5 |
| 738 | |
Dave Borowitz | 67700e9 | 2012-10-23 15:00:54 -0700 | [diff] [blame] | 739 | def __init__(self, manifest): |
| 740 | self._path = os.path.join(manifest.repodir, '.repopickle_fetchtimes') |
| 741 | self._times = None |
Dave Borowitz | d947858 | 2012-10-23 16:35:39 -0700 | [diff] [blame] | 742 | self._seen = set() |
Dave Borowitz | 67700e9 | 2012-10-23 15:00:54 -0700 | [diff] [blame] | 743 | |
| 744 | def Get(self, project): |
| 745 | self._Load() |
| 746 | return self._times.get(project.name, _ONE_DAY_S) |
| 747 | |
| 748 | def Set(self, project, t): |
Dave Borowitz | d947858 | 2012-10-23 16:35:39 -0700 | [diff] [blame] | 749 | self._Load() |
| 750 | name = project.name |
| 751 | old = self._times.get(name, t) |
| 752 | self._seen.add(name) |
| 753 | a = self._ALPHA |
| 754 | self._times[name] = (a*t) + ((1-a) * old) |
Dave Borowitz | 67700e9 | 2012-10-23 15:00:54 -0700 | [diff] [blame] | 755 | |
| 756 | def _Load(self): |
| 757 | if self._times is None: |
| 758 | try: |
| 759 | f = open(self._path) |
| 760 | except IOError: |
| 761 | self._times = {} |
| 762 | return self._times |
| 763 | try: |
| 764 | try: |
| 765 | self._times = pickle.load(f) |
David Pursehouse | 1d947b3 | 2012-10-25 12:23:11 +0900 | [diff] [blame] | 766 | except IOError: |
Dave Borowitz | 67700e9 | 2012-10-23 15:00:54 -0700 | [diff] [blame] | 767 | try: |
| 768 | os.remove(self._path) |
| 769 | except OSError: |
| 770 | pass |
| 771 | self._times = {} |
| 772 | finally: |
| 773 | f.close() |
| 774 | return self._times |
| 775 | |
| 776 | def Save(self): |
| 777 | if self._times is None: |
| 778 | return |
Dave Borowitz | d947858 | 2012-10-23 16:35:39 -0700 | [diff] [blame] | 779 | |
| 780 | to_delete = [] |
| 781 | for name in self._times: |
| 782 | if name not in self._seen: |
| 783 | to_delete.append(name) |
| 784 | for name in to_delete: |
| 785 | del self._times[name] |
| 786 | |
Dave Borowitz | 67700e9 | 2012-10-23 15:00:54 -0700 | [diff] [blame] | 787 | try: |
| 788 | f = open(self._path, 'wb') |
| 789 | try: |
| 790 | pickle.dump(self._times, f) |
| 791 | except (IOError, OSError, pickle.PickleError): |
| 792 | try: |
| 793 | os.remove(self._path) |
| 794 | except OSError: |
| 795 | pass |
| 796 | finally: |
| 797 | f.close() |