OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 """Archives or replays webpages and creates SKPs in a Google Storage location. | 6 """Archives or replays webpages and creates SKPs in a Google Storage location. |
7 | 7 |
8 To archive webpages and store SKP files (archives should be rarely updated): | 8 To archive webpages and store SKP files (archives should be rarely updated): |
9 | 9 |
10 cd skia | 10 cd skia |
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
486 | 486 |
487 def delete_path(self, path): | 487 def delete_path(self, path): |
488 subprocess.check_call(['gsutil', 'rm', '-r', '/'.join((self._url, path))]) | 488 subprocess.check_call(['gsutil', 'rm', '-r', '/'.join((self._url, path))]) |
489 | 489 |
490 def download_file(self, name, local_path): | 490 def download_file(self, name, local_path): |
491 subprocess.check_call([ | 491 subprocess.check_call([ |
492 'gsutil', 'cp', '/'.join((self._url, name)), local_path]) | 492 'gsutil', 'cp', '/'.join((self._url, name)), local_path]) |
493 | 493 |
494 def upload_dir_contents(self, source_dir, dest_dir): | 494 def upload_dir_contents(self, source_dir, dest_dir): |
495 subprocess.check_call([ | 495 subprocess.check_call([ |
496 'gsutil', 'cp', '-r', source_dir, '/'.join(self._url, dest_dir)]) | 496 'gsutil', 'cp', '-r', source_dir, '/'.join((self._url, dest_dir))]) |
497 | 497 |
498 | 498 |
499 class LocalFileSystemDataStore(DataStore): | 499 class LocalFileSystemDataStore(DataStore): |
500 def __init__(self, data_store_location): | 500 def __init__(self, data_store_location): |
501 self._base_dir = data_store_location | 501 self._base_dir = data_store_location |
502 def target_name(self): | 502 def target_name(self): |
503 return self._base_dir | 503 return self._base_dir |
504 def target_type(self): | 504 def target_type(self): |
505 return self._base_dir | 505 return self._base_dir |
506 def does_storage_object_exist(self, name): | 506 def does_storage_object_exist(self, name): |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
585 '--skia_tools is specified then the debugger is not run.', | 585 '--skia_tools is specified then the debugger is not run.', |
586 default=False) | 586 default=False) |
587 option_parser.add_option( | 587 option_parser.add_option( |
588 '', '--skp_prefix', | 588 '', '--skp_prefix', |
589 help='Prefix to add to the names of generated SKPs.', | 589 help='Prefix to add to the names of generated SKPs.', |
590 default=None) | 590 default=None) |
591 options, unused_args = option_parser.parse_args() | 591 options, unused_args = option_parser.parse_args() |
592 | 592 |
593 playback = SkPicturePlayback(options) | 593 playback = SkPicturePlayback(options) |
594 sys.exit(playback.Run()) | 594 sys.exit(playback.Run()) |
OLD | NEW |