kjellander@webrtc.org | 8925662 | 2014-08-20 12:10:11 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
| 3 | # |
| 4 | # Use of this source code is governed by a BSD-style license |
| 5 | # that can be found in the LICENSE file in the root of the source |
| 6 | # tree. An additional intellectual property rights grant can be found |
| 7 | # in the file PATENTS. All contributing project authors may |
| 8 | # be found in the AUTHORS file in the root of the source tree. |
| 9 | |
| 10 | """Setup links to a Chromium checkout for WebRTC. |
| 11 | |
| 12 | WebRTC standalone shares a lot of dependencies and build tools with Chromium. |
| 13 | To do this, many of the paths of a Chromium checkout is emulated by creating |
| 14 | symlinks to files and directories. This script handles the setup of symlinks to |
| 15 | achieve this. |
| 16 | |
| 17 | It also handles cleanup of the legacy Subversion-based approach that was used |
| 18 | before Chrome switched over their master repo from Subversion to Git. |
| 19 | """ |
| 20 | |
| 21 | |
| 22 | import ctypes |
| 23 | import errno |
| 24 | import logging |
| 25 | import optparse |
| 26 | import os |
| 27 | import shelve |
| 28 | import shutil |
| 29 | import subprocess |
| 30 | import sys |
| 31 | import textwrap |
| 32 | |
| 33 | |
| 34 | DIRECTORIES = [ |
| 35 | 'build', |
| 36 | 'buildtools', |
| 37 | 'google_apis', # Needed by build/common.gypi. |
| 38 | 'net', |
| 39 | 'testing', |
kjellander@webrtc.org | 8925662 | 2014-08-20 12:10:11 +0000 | [diff] [blame] | 40 | 'third_party/binutils', |
| 41 | 'third_party/boringssl', |
| 42 | 'third_party/colorama', |
| 43 | 'third_party/drmemory', |
| 44 | 'third_party/expat', |
| 45 | 'third_party/icu', |
kjellander@webrtc.org | 4e4fe4f | 2014-10-01 08:03:19 +0000 | [diff] [blame] | 46 | 'third_party/instrumented_libraries', |
kjellander@webrtc.org | 8925662 | 2014-08-20 12:10:11 +0000 | [diff] [blame] | 47 | 'third_party/jsoncpp', |
kjellander@webrtc.org | 8925662 | 2014-08-20 12:10:11 +0000 | [diff] [blame] | 48 | 'third_party/libjpeg', |
| 49 | 'third_party/libjpeg_turbo', |
| 50 | 'third_party/libsrtp', |
kjellander@webrtc.org | 7d4e6d0 | 2014-11-27 10:41:04 +0000 | [diff] [blame] | 51 | 'third_party/libudev', |
kjellander@webrtc.org | 8925662 | 2014-08-20 12:10:11 +0000 | [diff] [blame] | 52 | 'third_party/libvpx', |
| 53 | 'third_party/libyuv', |
| 54 | 'third_party/llvm-build', |
Patrik Höglund | c92c23d | 2015-08-31 11:30:14 +0200 | [diff] [blame] | 55 | 'third_party/lss', |
kjellander@webrtc.org | 8925662 | 2014-08-20 12:10:11 +0000 | [diff] [blame] | 56 | 'third_party/nss', |
tkchin@webrtc.org | 3a63a3c | 2015-01-06 07:21:34 +0000 | [diff] [blame] | 57 | 'third_party/ocmock', |
kjellander@webrtc.org | 8925662 | 2014-08-20 12:10:11 +0000 | [diff] [blame] | 58 | 'third_party/openmax_dl', |
| 59 | 'third_party/opus', |
Patrik Höglund | c92c23d | 2015-08-31 11:30:14 +0200 | [diff] [blame] | 60 | 'third_party/proguard', |
kjellander@webrtc.org | 8925662 | 2014-08-20 12:10:11 +0000 | [diff] [blame] | 61 | 'third_party/protobuf', |
| 62 | 'third_party/sqlite', |
| 63 | 'third_party/syzygy', |
| 64 | 'third_party/usrsctp', |
Henrik Kjellander | eecbab7 | 2015-09-16 19:19:04 +0200 | [diff] [blame^] | 65 | 'third_party/WebKit', |
kjellander@webrtc.org | 8925662 | 2014-08-20 12:10:11 +0000 | [diff] [blame] | 66 | 'third_party/yasm', |
kjellander@webrtc.org | 3bd4156 | 2014-09-01 11:06:37 +0000 | [diff] [blame] | 67 | 'third_party/zlib', |
kjellander@webrtc.org | 8925662 | 2014-08-20 12:10:11 +0000 | [diff] [blame] | 68 | 'tools/clang', |
| 69 | 'tools/generate_library_loader', |
| 70 | 'tools/gn', |
| 71 | 'tools/gyp', |
| 72 | 'tools/memory', |
| 73 | 'tools/protoc_wrapper', |
| 74 | 'tools/python', |
| 75 | 'tools/swarming_client', |
| 76 | 'tools/valgrind', |
Andrew MacDonald | 65de7d2 | 2015-05-19 11:37:34 -0700 | [diff] [blame] | 77 | 'tools/vim', |
kjellander@webrtc.org | 8925662 | 2014-08-20 12:10:11 +0000 | [diff] [blame] | 78 | 'tools/win', |
| 79 | ] |
| 80 | |
kjellander@webrtc.org | 3bd4156 | 2014-09-01 11:06:37 +0000 | [diff] [blame] | 81 | from sync_chromium import get_target_os_list |
Henrik Kjellander | ca84302 | 2015-06-09 10:51:22 +0200 | [diff] [blame] | 82 | target_os = get_target_os_list() |
| 83 | if 'android' in target_os: |
kjellander@webrtc.org | 3bd4156 | 2014-09-01 11:06:37 +0000 | [diff] [blame] | 84 | DIRECTORIES += [ |
| 85 | 'base', |
Henrik Kjellander | 94a1232 | 2015-06-09 14:56:20 +0200 | [diff] [blame] | 86 | 'third_party/android_platform', |
kjellander@webrtc.org | 3bd4156 | 2014-09-01 11:06:37 +0000 | [diff] [blame] | 87 | 'third_party/android_testrunner', |
| 88 | 'third_party/android_tools', |
kjellander@webrtc.org | cbe7ca8 | 2015-01-06 07:24:27 +0000 | [diff] [blame] | 89 | 'third_party/appurify-python', |
kjellander@webrtc.org | b8caf6a | 2014-09-30 18:05:02 +0000 | [diff] [blame] | 90 | 'third_party/ashmem', |
Henrik Kjellander | eecbab7 | 2015-09-16 19:19:04 +0200 | [diff] [blame^] | 91 | 'third_party/ijar', |
kjellander@webrtc.org | b8caf6a | 2014-09-30 18:05:02 +0000 | [diff] [blame] | 92 | 'third_party/jsr-305', |
Henrik Kjellander | 10ba3ee | 2015-04-29 14:47:53 +0200 | [diff] [blame] | 93 | 'third_party/junit', |
kjellander@webrtc.org | b8caf6a | 2014-09-30 18:05:02 +0000 | [diff] [blame] | 94 | 'third_party/libevent', |
| 95 | 'third_party/libxml', |
Henrik Kjellander | 10ba3ee | 2015-04-29 14:47:53 +0200 | [diff] [blame] | 96 | 'third_party/mockito', |
kjellander@webrtc.org | b8caf6a | 2014-09-30 18:05:02 +0000 | [diff] [blame] | 97 | 'third_party/modp_b64', |
kjellander@webrtc.org | cbe7ca8 | 2015-01-06 07:24:27 +0000 | [diff] [blame] | 98 | 'third_party/requests', |
Henrik Kjellander | 10ba3ee | 2015-04-29 14:47:53 +0200 | [diff] [blame] | 99 | 'third_party/robolectric', |
kjellander@webrtc.org | 3bd4156 | 2014-09-01 11:06:37 +0000 | [diff] [blame] | 100 | 'tools/android', |
kjellander@webrtc.org | bfdee69 | 2015-02-03 15:23:34 +0000 | [diff] [blame] | 101 | 'tools/grit', |
marpan@webrtc.org | 4765ca5 | 2014-11-03 20:10:26 +0000 | [diff] [blame] | 102 | 'tools/relocation_packer' |
kjellander@webrtc.org | 3bd4156 | 2014-09-01 11:06:37 +0000 | [diff] [blame] | 103 | ] |
Henrik Kjellander | ca84302 | 2015-06-09 10:51:22 +0200 | [diff] [blame] | 104 | if 'ios' in target_os: |
| 105 | DIRECTORIES.append('third_party/class-dump') |
kjellander@webrtc.org | 3bd4156 | 2014-09-01 11:06:37 +0000 | [diff] [blame] | 106 | |
kjellander@webrtc.org | 8925662 | 2014-08-20 12:10:11 +0000 | [diff] [blame] | 107 | FILES = { |
kjellander@webrtc.org | 8925662 | 2014-08-20 12:10:11 +0000 | [diff] [blame] | 108 | 'tools/find_depot_tools.py': None, |
| 109 | 'third_party/BUILD.gn': None, |
kjellander@webrtc.org | 8925662 | 2014-08-20 12:10:11 +0000 | [diff] [blame] | 110 | } |
| 111 | |
kjellander@webrtc.org | e94f83a | 2014-09-18 13:47:23 +0000 | [diff] [blame] | 112 | ROOT_DIR = os.path.dirname(os.path.abspath(__file__)) |
kjellander@webrtc.org | 8925662 | 2014-08-20 12:10:11 +0000 | [diff] [blame] | 113 | CHROMIUM_CHECKOUT = os.path.join('chromium', 'src') |
| 114 | LINKS_DB = 'links' |
| 115 | |
| 116 | # Version management to make future upgrades/downgrades easier to support. |
| 117 | SCHEMA_VERSION = 1 |
| 118 | |
| 119 | |
| 120 | def query_yes_no(question, default=False): |
| 121 | """Ask a yes/no question via raw_input() and return their answer. |
| 122 | |
| 123 | Modified from http://stackoverflow.com/a/3041990. |
| 124 | """ |
| 125 | prompt = " [%s/%%s]: " |
| 126 | prompt = prompt % ('Y' if default is True else 'y') |
| 127 | prompt = prompt % ('N' if default is False else 'n') |
| 128 | |
| 129 | if default is None: |
| 130 | default = 'INVALID' |
| 131 | |
| 132 | while True: |
| 133 | sys.stdout.write(question + prompt) |
| 134 | choice = raw_input().lower() |
| 135 | if choice == '' and default != 'INVALID': |
| 136 | return default |
| 137 | |
| 138 | if 'yes'.startswith(choice): |
| 139 | return True |
| 140 | elif 'no'.startswith(choice): |
| 141 | return False |
| 142 | |
| 143 | print "Please respond with 'yes' or 'no' (or 'y' or 'n')." |
| 144 | |
| 145 | |
| 146 | # Actions |
| 147 | class Action(object): |
| 148 | def __init__(self, dangerous): |
| 149 | self.dangerous = dangerous |
| 150 | |
| 151 | def announce(self, planning): |
| 152 | """Log a description of this action. |
| 153 | |
| 154 | Args: |
| 155 | planning - True iff we're in the planning stage, False if we're in the |
| 156 | doit stage. |
| 157 | """ |
| 158 | pass |
| 159 | |
| 160 | def doit(self, links_db): |
| 161 | """Execute the action, recording what we did to links_db, if necessary.""" |
| 162 | pass |
| 163 | |
| 164 | |
| 165 | class Remove(Action): |
| 166 | def __init__(self, path, dangerous): |
| 167 | super(Remove, self).__init__(dangerous) |
| 168 | self._priority = 0 |
| 169 | self._path = path |
| 170 | |
| 171 | def announce(self, planning): |
| 172 | log = logging.warn |
| 173 | filesystem_type = 'file' |
| 174 | if not self.dangerous: |
| 175 | log = logging.info |
| 176 | filesystem_type = 'link' |
| 177 | if planning: |
| 178 | log('Planning to remove %s: %s', filesystem_type, self._path) |
| 179 | else: |
| 180 | log('Removing %s: %s', filesystem_type, self._path) |
| 181 | |
Henrik Kjellander | 57e5fd2 | 2015-05-25 12:55:39 +0200 | [diff] [blame] | 182 | def doit(self, _): |
kjellander@webrtc.org | 8925662 | 2014-08-20 12:10:11 +0000 | [diff] [blame] | 183 | os.remove(self._path) |
| 184 | |
| 185 | |
| 186 | class Rmtree(Action): |
| 187 | def __init__(self, path): |
| 188 | super(Rmtree, self).__init__(dangerous=True) |
| 189 | self._priority = 0 |
| 190 | self._path = path |
| 191 | |
| 192 | def announce(self, planning): |
| 193 | if planning: |
| 194 | logging.warn('Planning to remove directory: %s', self._path) |
| 195 | else: |
| 196 | logging.warn('Removing directory: %s', self._path) |
| 197 | |
Henrik Kjellander | 57e5fd2 | 2015-05-25 12:55:39 +0200 | [diff] [blame] | 198 | def doit(self, _): |
kjellander@webrtc.org | 8925662 | 2014-08-20 12:10:11 +0000 | [diff] [blame] | 199 | if sys.platform.startswith('win'): |
| 200 | # shutil.rmtree() doesn't work on Windows if any of the directories are |
| 201 | # read-only, which svn repositories are. |
| 202 | subprocess.check_call(['rd', '/q', '/s', self._path], shell=True) |
| 203 | else: |
| 204 | shutil.rmtree(self._path) |
| 205 | |
| 206 | |
| 207 | class Makedirs(Action): |
| 208 | def __init__(self, path): |
| 209 | super(Makedirs, self).__init__(dangerous=False) |
| 210 | self._priority = 1 |
| 211 | self._path = path |
| 212 | |
Henrik Kjellander | 57e5fd2 | 2015-05-25 12:55:39 +0200 | [diff] [blame] | 213 | def doit(self, _): |
kjellander@webrtc.org | 8925662 | 2014-08-20 12:10:11 +0000 | [diff] [blame] | 214 | try: |
| 215 | os.makedirs(self._path) |
| 216 | except OSError as e: |
| 217 | if e.errno != errno.EEXIST: |
| 218 | raise |
| 219 | |
| 220 | |
| 221 | class Symlink(Action): |
| 222 | def __init__(self, source_path, link_path): |
| 223 | super(Symlink, self).__init__(dangerous=False) |
| 224 | self._priority = 2 |
| 225 | self._source_path = source_path |
| 226 | self._link_path = link_path |
| 227 | |
| 228 | def announce(self, planning): |
| 229 | if planning: |
| 230 | logging.info( |
| 231 | 'Planning to create link from %s to %s', self._link_path, |
| 232 | self._source_path) |
| 233 | else: |
| 234 | logging.debug( |
| 235 | 'Linking from %s to %s', self._link_path, self._source_path) |
| 236 | |
| 237 | def doit(self, links_db): |
| 238 | # Files not in the root directory need relative path calculation. |
| 239 | # On Windows, use absolute paths instead since NTFS doesn't seem to support |
| 240 | # relative paths for symlinks. |
| 241 | if sys.platform.startswith('win'): |
| 242 | source_path = os.path.abspath(self._source_path) |
| 243 | else: |
| 244 | if os.path.dirname(self._link_path) != self._link_path: |
| 245 | source_path = os.path.relpath(self._source_path, |
| 246 | os.path.dirname(self._link_path)) |
| 247 | |
| 248 | os.symlink(source_path, os.path.abspath(self._link_path)) |
| 249 | links_db[self._source_path] = self._link_path |
| 250 | |
| 251 | |
| 252 | class LinkError(IOError): |
| 253 | """Failed to create a link.""" |
| 254 | pass |
| 255 | |
| 256 | |
| 257 | # Handles symlink creation on the different platforms. |
| 258 | if sys.platform.startswith('win'): |
| 259 | def symlink(source_path, link_path): |
| 260 | flag = 1 if os.path.isdir(source_path) else 0 |
| 261 | if not ctypes.windll.kernel32.CreateSymbolicLinkW( |
| 262 | unicode(link_path), unicode(source_path), flag): |
| 263 | raise OSError('Failed to create symlink to %s. Notice that only NTFS ' |
| 264 | 'version 5.0 and up has all the needed APIs for ' |
| 265 | 'creating symlinks.' % source_path) |
| 266 | os.symlink = symlink |
| 267 | |
| 268 | |
Henrik Kjellander | 57e5fd2 | 2015-05-25 12:55:39 +0200 | [diff] [blame] | 269 | class WebRTCLinkSetup(object): |
kjellander@webrtc.org | 8925662 | 2014-08-20 12:10:11 +0000 | [diff] [blame] | 270 | def __init__(self, links_db, force=False, dry_run=False, prompt=False): |
| 271 | self._force = force |
| 272 | self._dry_run = dry_run |
| 273 | self._prompt = prompt |
| 274 | self._links_db = links_db |
| 275 | |
| 276 | def CreateLinks(self, on_bot): |
| 277 | logging.debug('CreateLinks') |
| 278 | # First, make a plan of action |
| 279 | actions = [] |
| 280 | |
| 281 | for source_path, link_path in FILES.iteritems(): |
| 282 | actions += self._ActionForPath( |
| 283 | source_path, link_path, check_fn=os.path.isfile, check_msg='files') |
| 284 | for source_dir in DIRECTORIES: |
| 285 | actions += self._ActionForPath( |
| 286 | source_dir, None, check_fn=os.path.isdir, |
| 287 | check_msg='directories') |
| 288 | |
kjellander@webrtc.org | e94f83a | 2014-09-18 13:47:23 +0000 | [diff] [blame] | 289 | if not on_bot and self._force: |
| 290 | # When making the manual switch from legacy SVN checkouts to the new |
| 291 | # Git-based Chromium DEPS, the .gclient_entries file that contains cached |
| 292 | # URLs for all DEPS entries must be removed to avoid future sync problems. |
| 293 | entries_file = os.path.join(os.path.dirname(ROOT_DIR), '.gclient_entries') |
| 294 | if os.path.exists(entries_file): |
| 295 | actions.append(Remove(entries_file, dangerous=True)) |
| 296 | |
kjellander@webrtc.org | 8925662 | 2014-08-20 12:10:11 +0000 | [diff] [blame] | 297 | actions.sort() |
| 298 | |
| 299 | if self._dry_run: |
| 300 | for action in actions: |
| 301 | action.announce(planning=True) |
| 302 | logging.info('Not doing anything because dry-run was specified.') |
| 303 | sys.exit(0) |
| 304 | |
| 305 | if any(a.dangerous for a in actions): |
| 306 | logging.warn('Dangerous actions:') |
| 307 | for action in (a for a in actions if a.dangerous): |
| 308 | action.announce(planning=True) |
| 309 | print |
| 310 | |
| 311 | if not self._force: |
| 312 | logging.error(textwrap.dedent("""\ |
| 313 | @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ |
| 314 | A C T I O N R E Q I R E D |
| 315 | @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ |
| 316 | |
| 317 | Because chromium/src is transitioning to Git (from SVN), we needed to |
| 318 | change the way that the WebRTC standalone checkout works. Instead of |
| 319 | individually syncing subdirectories of Chromium in SVN, we're now |
| 320 | syncing Chromium (and all of its DEPS, as defined by its own DEPS file), |
| 321 | into the `chromium/src` directory. |
| 322 | |
| 323 | As such, all Chromium directories which are currently pulled by DEPS are |
| 324 | now replaced with a symlink into the full Chromium checkout. |
| 325 | |
| 326 | To avoid disrupting developers, we've chosen to not delete your |
| 327 | directories forcibly, in case you have some work in progress in one of |
| 328 | them :). |
| 329 | |
| 330 | ACTION REQUIRED: |
| 331 | Before running `gclient sync|runhooks` again, you must run: |
| 332 | %s%s --force |
| 333 | |
| 334 | Which will replace all directories which now must be symlinks, after |
| 335 | prompting with a summary of the work-to-be-done. |
| 336 | """), 'python ' if sys.platform.startswith('win') else '', sys.argv[0]) |
| 337 | sys.exit(1) |
| 338 | elif self._prompt: |
| 339 | if not query_yes_no('Would you like to perform the above plan?'): |
| 340 | sys.exit(1) |
| 341 | |
| 342 | for action in actions: |
| 343 | action.announce(planning=False) |
| 344 | action.doit(self._links_db) |
| 345 | |
| 346 | if not on_bot and self._force: |
| 347 | logging.info('Completed!\n\nNow run `gclient sync|runhooks` again to ' |
| 348 | 'let the remaining hooks (that probably were interrupted) ' |
| 349 | 'execute.') |
| 350 | |
| 351 | def CleanupLinks(self): |
| 352 | logging.debug('CleanupLinks') |
| 353 | for source, link_path in self._links_db.iteritems(): |
| 354 | if source == 'SCHEMA_VERSION': |
| 355 | continue |
| 356 | if os.path.islink(link_path) or sys.platform.startswith('win'): |
| 357 | # os.path.islink() always returns false on Windows |
| 358 | # See http://bugs.python.org/issue13143. |
| 359 | logging.debug('Removing link to %s at %s', source, link_path) |
| 360 | if not self._dry_run: |
| 361 | if os.path.exists(link_path): |
| 362 | if sys.platform.startswith('win') and os.path.isdir(link_path): |
Henrik Kjellander | c444de6 | 2015-04-29 11:27:22 +0200 | [diff] [blame] | 363 | subprocess.check_call(['rmdir', '/q', '/s', link_path], |
| 364 | shell=True) |
kjellander@webrtc.org | 8925662 | 2014-08-20 12:10:11 +0000 | [diff] [blame] | 365 | else: |
| 366 | os.remove(link_path) |
| 367 | del self._links_db[source] |
| 368 | |
| 369 | @staticmethod |
| 370 | def _ActionForPath(source_path, link_path=None, check_fn=None, |
| 371 | check_msg=None): |
| 372 | """Create zero or more Actions to link to a file or directory. |
| 373 | |
| 374 | This will be a symlink on POSIX platforms. On Windows this requires |
| 375 | that NTFS is version 5.0 or higher (Vista or newer). |
| 376 | |
| 377 | Args: |
| 378 | source_path: Path relative to the Chromium checkout root. |
| 379 | For readability, the path may contain slashes, which will |
| 380 | automatically be converted to the right path delimiter on Windows. |
| 381 | link_path: The location for the link to create. If omitted it will be the |
| 382 | same path as source_path. |
| 383 | check_fn: A function returning true if the type of filesystem object is |
| 384 | correct for the attempted call. Otherwise an error message with |
| 385 | check_msg will be printed. |
| 386 | check_msg: String used to inform the user of an invalid attempt to create |
| 387 | a file. |
| 388 | Returns: |
| 389 | A list of Action objects. |
| 390 | """ |
| 391 | def fix_separators(path): |
| 392 | if sys.platform.startswith('win'): |
| 393 | return path.replace(os.altsep, os.sep) |
| 394 | else: |
| 395 | return path |
| 396 | |
| 397 | assert check_fn |
| 398 | assert check_msg |
| 399 | link_path = link_path or source_path |
| 400 | link_path = fix_separators(link_path) |
| 401 | |
| 402 | source_path = fix_separators(source_path) |
| 403 | source_path = os.path.join(CHROMIUM_CHECKOUT, source_path) |
| 404 | if os.path.exists(source_path) and not check_fn: |
| 405 | raise LinkError('_LinkChromiumPath can only be used to link to %s: ' |
| 406 | 'Tried to link to: %s' % (check_msg, source_path)) |
| 407 | |
| 408 | if not os.path.exists(source_path): |
| 409 | logging.debug('Silently ignoring missing source: %s. This is to avoid ' |
| 410 | 'errors on platform-specific dependencies.', source_path) |
| 411 | return [] |
| 412 | |
| 413 | actions = [] |
| 414 | |
| 415 | if os.path.exists(link_path) or os.path.islink(link_path): |
| 416 | if os.path.islink(link_path): |
| 417 | actions.append(Remove(link_path, dangerous=False)) |
| 418 | elif os.path.isfile(link_path): |
| 419 | actions.append(Remove(link_path, dangerous=True)) |
| 420 | elif os.path.isdir(link_path): |
| 421 | actions.append(Rmtree(link_path)) |
| 422 | else: |
| 423 | raise LinkError('Don\'t know how to plan: %s' % link_path) |
| 424 | |
| 425 | # Create parent directories to the target link if needed. |
| 426 | target_parent_dirs = os.path.dirname(link_path) |
| 427 | if (target_parent_dirs and |
| 428 | target_parent_dirs != link_path and |
| 429 | not os.path.exists(target_parent_dirs)): |
| 430 | actions.append(Makedirs(target_parent_dirs)) |
| 431 | |
| 432 | actions.append(Symlink(source_path, link_path)) |
| 433 | |
| 434 | return actions |
| 435 | |
| 436 | def _initialize_database(filename): |
| 437 | links_database = shelve.open(filename) |
| 438 | |
| 439 | # Wipe the database if this version of the script ends up looking at a |
| 440 | # newer (future) version of the links db, just to be sure. |
| 441 | version = links_database.get('SCHEMA_VERSION') |
| 442 | if version and version != SCHEMA_VERSION: |
| 443 | logging.info('Found database with schema version %s while this script only ' |
| 444 | 'supports %s. Wiping previous database contents.', version, |
| 445 | SCHEMA_VERSION) |
| 446 | links_database.clear() |
| 447 | links_database['SCHEMA_VERSION'] = SCHEMA_VERSION |
| 448 | return links_database |
| 449 | |
| 450 | |
| 451 | def main(): |
| 452 | on_bot = os.environ.get('CHROME_HEADLESS') == '1' |
| 453 | |
| 454 | parser = optparse.OptionParser() |
| 455 | parser.add_option('-d', '--dry-run', action='store_true', default=False, |
| 456 | help='Print what would be done, but don\'t perform any ' |
| 457 | 'operations. This will automatically set logging to ' |
| 458 | 'verbose.') |
| 459 | parser.add_option('-c', '--clean-only', action='store_true', default=False, |
| 460 | help='Only clean previously created links, don\'t create ' |
| 461 | 'new ones. This will automatically set logging to ' |
| 462 | 'verbose.') |
| 463 | parser.add_option('-f', '--force', action='store_true', default=on_bot, |
| 464 | help='Force link creation. CAUTION: This deletes existing ' |
| 465 | 'folders and files in the locations where links are ' |
| 466 | 'about to be created.') |
| 467 | parser.add_option('-n', '--no-prompt', action='store_false', dest='prompt', |
| 468 | default=(not on_bot), |
| 469 | help='Prompt if we\'re planning to do a dangerous action') |
| 470 | parser.add_option('-v', '--verbose', action='store_const', |
| 471 | const=logging.DEBUG, default=logging.INFO, |
| 472 | help='Print verbose output for debugging.') |
| 473 | options, _ = parser.parse_args() |
| 474 | |
| 475 | if options.dry_run or options.force or options.clean_only: |
| 476 | options.verbose = logging.DEBUG |
| 477 | logging.basicConfig(format='%(message)s', level=options.verbose) |
| 478 | |
| 479 | # Work from the root directory of the checkout. |
| 480 | script_dir = os.path.dirname(os.path.abspath(__file__)) |
| 481 | os.chdir(script_dir) |
| 482 | |
| 483 | if sys.platform.startswith('win'): |
| 484 | def is_admin(): |
| 485 | try: |
| 486 | return os.getuid() == 0 |
| 487 | except AttributeError: |
| 488 | return ctypes.windll.shell32.IsUserAnAdmin() != 0 |
| 489 | if not is_admin(): |
| 490 | logging.error('On Windows, you now need to have administrator ' |
| 491 | 'privileges for the shell running %s (or ' |
| 492 | '`gclient sync|runhooks`).\nPlease start another command ' |
Henrik Kjellander | 57e5fd2 | 2015-05-25 12:55:39 +0200 | [diff] [blame] | 493 | 'prompt as Administrator and try again.', sys.argv[0]) |
kjellander@webrtc.org | 8925662 | 2014-08-20 12:10:11 +0000 | [diff] [blame] | 494 | return 1 |
| 495 | |
| 496 | if not os.path.exists(CHROMIUM_CHECKOUT): |
| 497 | logging.error('Cannot find a Chromium checkout at %s. Did you run "gclient ' |
| 498 | 'sync" before running this script?', CHROMIUM_CHECKOUT) |
| 499 | return 2 |
| 500 | |
| 501 | links_database = _initialize_database(LINKS_DB) |
| 502 | try: |
| 503 | symlink_creator = WebRTCLinkSetup(links_database, options.force, |
| 504 | options.dry_run, options.prompt) |
| 505 | symlink_creator.CleanupLinks() |
| 506 | if not options.clean_only: |
| 507 | symlink_creator.CreateLinks(on_bot) |
| 508 | except LinkError as e: |
| 509 | print >> sys.stderr, e.message |
| 510 | return 3 |
| 511 | finally: |
| 512 | links_database.close() |
| 513 | return 0 |
| 514 | |
| 515 | |
| 516 | if __name__ == '__main__': |
| 517 | sys.exit(main()) |