Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Unified Diff: upload_to_google_storage.py

Issue 807463005: Add support for tar.gz archive files to download from download_from_google_storage (Closed) Base URL: http://src.chromium.org/svn/trunk/tools/depot_tools/
Patch Set: fixes Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/upload_to_google_storage_unittests.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: upload_to_google_storage.py
diff --git a/upload_to_google_storage.py b/upload_to_google_storage.py
index 4cf9d1a6e84970e428fd039a3b8b151ab00ef64f..26bc6b148b1e7176a02d49660ecb22b0d2ab9e71 100755
--- a/upload_to_google_storage.py
+++ b/upload_to_google_storage.py
@@ -12,6 +12,7 @@ import Queue
import re
import stat
import sys
+import tarfile
import threading
import time
@@ -207,11 +208,38 @@ def upload_to_google_storage(
return max_ret_code
+def create_archives(dirs):
+ archive_names = []
+ for name in dirs:
+ tarname = '%s.tar.gz' % name
+ with tarfile.open(tarname, 'w:gz') as tar:
+ tar.add(name)
+ archive_names.append(tarname)
+ return archive_names
+
+
+def validate_archive_dirs(dirs):
+ # We don't allow .. in paths in our archives.
+ if any(map(lambda x: '..' in x, dirs)):
+ return False
+ # We only allow dirs.
+ if any(map(lambda x: not os.path.isdir(x), dirs)):
+ return False
+ # We don't allow sym links in our archives.
+ if any(map(os.path.islink, dirs)):
+ return False
+ # We required that the subdirectories we are archiving are all just below
+ # cwd.
+ return not any(map(lambda x: x not in next(os.walk('.'))[1], dirs))
+
+
def main():
parser = optparse.OptionParser(USAGE_STRING)
parser.add_option('-b', '--bucket',
help='Google Storage bucket to upload to.')
parser.add_option('-e', '--boto', help='Specify a custom boto file.')
+ parser.add_option('-z', '--archive', action='store_true',
+ help='Archive directory as a tar.gz file')
azarchs 2015/06/30 14:49:37 This conflicts with (and duplicates?) the -z optio
parser.add_option('-f', '--force', action='store_true',
help='Force upload even if remote file exists.')
parser.add_option('-g', '--gsutil_path', default=GSUTIL_DEFAULT_PATH,
@@ -235,6 +263,15 @@ def main():
# Enumerate our inputs.
input_filenames = get_targets(args, parser, options.use_null_terminator)
+ if options.archive:
+ if not validate_archive_dirs(input_filenames):
+ parser.error('Only directories just below cwd are valid entries when '
+ 'using the --archive argument. Entries can not contain .. '
+ ' and entries can not be symlinks. Entries was %s' %
+ input_filenames)
+ return 1
+ input_filenames = create_archives(input_filenames)
+
# Make sure we can find a working instance of gsutil.
if os.path.exists(GSUTIL_DEFAULT_PATH):
gsutil = Gsutil(GSUTIL_DEFAULT_PATH, boto_path=options.boto)
« no previous file with comments | « tests/upload_to_google_storage_unittests.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698