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

Side by Side Diff: upload_to_google_storage.py

Issue 12042069: Scripts to download files from google storage based on sha1 sums (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Move printing from main thread to printer thread Created 7 years, 9 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 unified diff | Download patch
« download_from_google_storage.py ('K') | « tests/gstools_unittest.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
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
4 # found in the LICENSE file.
5
6 """Uploads files to Google Storage content addressed."""
7
8 import hashlib
9 import optparse
10 import os
11 import Queue
12 import re
13 import sys
14 import threading
15 import time
16
17 from download_from_google_storage import CheckBucketPermissions
18 from download_from_google_storage import GetSHA1
19 from download_from_google_storage import Gsutil
20 from download_from_google_storage import printer_worker
21
22 GSUTIL_DEFAULT_PATH = os.path.join(
23 os.path.dirname(os.path.abspath(__file__)),
24 'third_party', 'gsutil', 'gsutil')
25
26 USAGE_STRING = """%prog [options] target [target2 ...].
27 Target is the file intended to be uploaded to Google Storage.
28 If target is "-", then a list of files will be taken from standard input
29
30 This script will generate a file (original filename).sha1 containing the
31 sha1 sum of the uploaded file.
32 It is recommended that the .sha1 file is checked into the repository,
33 the original file removed from the repository, and a hook added to the
34 DEPS file to call download_from_google_storage.py.
35
36 Example usages
37 --------------
38
39 Scan the current directory and upload all files larger than 1MB:
40 find . -name .svn -prune -o -size +1000k -type f -print0 | %prog -0 -
41 """
42
43
44 def GetMD5(filename):
45 md5_calculator = hashlib.md5()
46 with open(filename, 'rb') as f:
47 while True:
48 chunk = f.read(1024*1024)
49 if not chunk:
50 break
51 md5_calculator.update(chunk)
52 return md5_calculator.hexdigest()
53
54
55 def GetMD5Cached(filename):
56 """Don't calculate the MD5 if we can find a .md5 file."""
57 # See if we can find an existing MD5 sum stored in a file.
58 if os.path.exists('%s.md5' % filename):
59 with open('%s.md5' % filename) as f:
60 md5_match = re.search('([a-z0-9]{32})', f.read())
61 if md5_match:
62 return md5_match.group(1)
63 else:
64 md5_hash = GetMD5(filename)
65 with open('%s.md5' % filename, 'w') as f:
66 f.write(md5_hash)
67 return md5_hash
68
69
70 def _upload_worker(
71 thread_num, q, base_url, gsutil, md5_lock, force,
72 use_md5, stdout_queue, ret_codes):
73 while True:
74 filename, sha1_sum = q.get()
75 if not filename:
76 break
77 file_url = '%s/%s' % (base_url, sha1_sum)
78 if gsutil.check_call('ls', file_url)[0] == 0 and not force:
79 # File exists, check MD5 hash.
80 _, out, _ = gsutil.check_call('ls', '-L', file_url)
81 etag_match = re.search('ETag:\s+([a-z0-9]{32})', out)
82 if etag_match:
83 remote_md5 = etag_match.group(1)
84 # Calculate the MD5 checksum to match it to Google Storage's ETag.
85 with md5_lock:
86 if use_md5:
87 local_md5 = GetMD5Cached(filename)
88 else:
89 local_md5 = GetMD5(filename)
90 if local_md5 == remote_md5:
91 stdout_queue.put(
92 'File %s already exists at %s and MD5 matches, exiting' %
93 (filename, file_url))
94 continue
95 stdout_queue.put('Uploading %s to %s' % (filename, file_url))
96 code, _, err = gsutil.check_call('cp', '-q', filename, file_url)
97 if code != 0:
98 ret_codes.put(
99 (code,
100 'Encountered error on uploading %s to %s\n%s' %
101 (filename, file_url, err)))
102 continue
103
104
105 def get_targets(args, parser, use_null_terminator):
106 if not args:
107 parser.error('Missing target.')
108
109 if len(args) == 1 and args[0] == '-':
110 # Take stdin as a newline or null seperated list of files.
111 if use_null_terminator:
112 return sys.stdin.read().split('\0')
113 else:
114 return sys.stdin.read().splitlines()
115 else:
116 return args
117
118
119 def upload_to_google_storage(
120 input_filenames, base_url, gsutil, force,
121 use_md5, num_threads, skip_hashing):
122 # We only want one MD5 calculation happening at a time to avoid HD thrashing.
123 md5_lock = threading.Lock()
124
125 # Start up all the worker threads.
126 all_threads = []
127 ret_codes = Queue.Queue()
128 ret_codes.put((0, None))
129 upload_queue = Queue.Queue()
130 upload_timer = time.time()
131 stdout_queue = Queue.Queue()
132 for thread_num in range(num_threads):
133 t = threading.Thread(
134 target=_upload_worker,
135 args=[thread_num, upload_queue, base_url, gsutil.clone(), md5_lock,
136 force, use_md5, stdout_queue, ret_codes])
137 t.daemon = True
138 t.start()
139 all_threads.append(t)
140
141 # We want to hash everything in a single thread since its faster.
142 # The bottleneck is in disk IO, not CPU.
143 hash_timer = time.time() # For timing statistics.
M-A Ruel 2013/03/07 16:22:46 Remove the comment on that line. hashing_start
Ryan Tseng 2013/03/07 18:51:48 Done.
144 for filename in input_filenames:
145 if not os.path.exists(filename):
146 print 'Error: %s not found, skipping.' % filename
147 continue
148 if os.path.exists('%s.sha1' % filename) and skip_hashing:
149 print 'Found hash for %s, skipping.' % filename
150 upload_queue.put((filename, open('%s.sha1' % filename).read()))
151 continue
152 print 'Calculating hash for %s...' % filename,
153 sha1_sum = GetSHA1(filename)
154 with open(filename + '.sha1', 'wb') as f:
155 f.write(sha1_sum)
156 print 'done'
157 upload_queue.put((filename, sha1_sum))
158 hash_time = time.time() - hash_timer
M-A Ruel 2013/03/07 16:22:46 hashing_duration
Ryan Tseng 2013/03/07 18:51:48 Done.
159
160 # Wait for everything to finish.
161 for _ in all_threads:
162 upload_queue.put((None, None)) # To mark the end of the work queue.
163 printer_thread = threading.Thread(target=printer_worker, args=[stdout_queue])
164 printer_thread.daemon = True
165 printer_thread.start()
166 for t in all_threads:
167 t.join()
168 stdout_queue.put(None)
169 printer_thread.join()
170
171 # Print timing information.
172 print 'Hashing %s files took %1f seconds' % (len(input_filenames), hash_time)
173 print 'Uploading took %1f seconds' % (time.time() - upload_timer)
174
175 # See if we ran into any errors.
176 max_ret_code = 0
177 for ret_code, message in ret_codes.queue:
178 max_ret_code = max(ret_code, max_ret_code)
179 if message:
180 print >> sys.stderr, message
181
182 if not max_ret_code:
183 print 'Success.'
184 else:
185 print 'We encountered some error(s).'
186
187 return max_ret_code
188
189
190 def main(args):
191 parser = optparse.OptionParser(USAGE_STRING)
192 parser.add_option('-b', '--bucket',
193 help='Google Storage bucket to upload to.')
194 parser.add_option('-e', '--boto', help='Specify a custom boto file.')
195 parser.add_option('-f', '--force', action='store_true',
196 help='Force upload even if remote file exists.')
197 parser.add_option('-g', '--gsutil_path', default=GSUTIL_DEFAULT_PATH,
198 help='Path to the gsutil script.')
199 parser.add_option('-m', '--use_md5', action='store_true',
200 help='Generate MD5 files when scanning, and don\'t check '
201 'the MD5 checksum if a .md5 file is found.')
202 parser.add_option('-t', '--num_threads', default=1, type='int',
203 help='Number of uploader threads to run.')
204 parser.add_option('-s', '--skip_hashing', action='store_true',
205 help='Skip hashing if .sha1 file exists.')
206 parser.add_option('-0', '--use_null_terminator', action='store_true',
207 help='Use \\0 instead of \\n when parsing '
208 'the file list from stdin. This is useful if the input '
209 'is coming from "find ... -print0".')
210 (options, args) = parser.parse_args()
211
212 # Enumerate our inputs.
213 input_filenames = get_targets(args, parser, options.use_null_terminator)
214
215 # Make sure we can find a working instance of gsutil.
216 if os.path.exists(GSUTIL_DEFAULT_PATH):
217 gsutil = Gsutil(GSUTIL_DEFAULT_PATH)
218 else:
219 print >> sys.stderr, ('gsutil not found in %s, bad depot_tools checkout?' %
220 GSUTIL_DEFAULT_PATH)
221 return 1
222
223 # Check we have a valid bucket with valid permissions.
224 base_url, code = CheckBucketPermissions(options.bucket, gsutil)
225 if code:
226 return code
227
228 return upload_to_google_storage(
229 input_filenames, base_url, gsutil, options.force, options.use_md5,
230 options.num_threads, options.skip_hashing)
231
232
233 if __name__ == '__main__':
234 sys.exit(main(sys.argv))
OLDNEW
« download_from_google_storage.py ('K') | « tests/gstools_unittest.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698