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

Unified Diff: third_party/gsutil/boto/bin/lss3

Issue 12317103: Added gsutil to depot tools (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/gsutil/boto/bin/list_instances ('k') | third_party/gsutil/boto/bin/mturk » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/gsutil/boto/bin/lss3
diff --git a/third_party/gsutil/boto/bin/lss3 b/third_party/gsutil/boto/bin/lss3
new file mode 100755
index 0000000000000000000000000000000000000000..497d08432475c515ae7812763ecae72e916c581c
--- /dev/null
+++ b/third_party/gsutil/boto/bin/lss3
@@ -0,0 +1,77 @@
+#!/usr/bin/env python
+import boto
+from boto.s3.connection import OrdinaryCallingFormat
+
+def sizeof_fmt(num):
+ for x in ['b ','KB','MB','GB','TB', 'XB']:
+ if num < 1024.0:
+ return "%3.1f %s" % (num, x)
+ num /= 1024.0
+ return "%3.1f %s" % (num, x)
+
+def list_bucket(b, prefix=None):
+ """List everything in a bucket"""
+ from boto.s3.prefix import Prefix
+ from boto.s3.key import Key
+ total = 0
+ query = b
+ if prefix:
+ if not prefix.endswith("/"):
+ prefix = prefix + "/"
+ query = b.list(prefix=prefix, delimiter="/")
+ print "%s" % prefix
+ num = 0
+ for k in query:
+ num += 1
+ mode = "-rwx---"
+ if isinstance(k, Prefix):
+ mode = "drwxr--"
+ size = 0
+ else:
+ size = k.size
+ for g in k.get_acl().acl.grants:
+ if g.id == None:
+ if g.permission == "READ":
+ mode = "-rwxr--"
+ elif g.permission == "FULL_CONTROL":
+ mode = "-rwxrwx"
+ if isinstance(k, Key):
+ print "%s\t%s\t%010s\t%s" % (mode, k.last_modified,
+ sizeof_fmt(size), k.name)
+ else:
+ #If it's not a Key object, it doesn't have a last_modified time, so
+ #print nothing instead
+ print "%s\t%s\t%010s\t%s" % (mode, ' '*24,
+ sizeof_fmt(size), k.name)
+ total += size
+ print "="*80
+ print "\t\tTOTAL: \t%010s \t%i Files" % (sizeof_fmt(total), num)
+
+def list_buckets(s3):
+ """List all the buckets"""
+ for b in s3.get_all_buckets():
+ print b.name
+
+if __name__ == "__main__":
+ import sys
+
+ pairs = []
+ mixedCase = False
+ for name in sys.argv[1:]:
+ if "/" in name:
+ pairs.append(name.split("/",1))
+ else:
+ pairs.append([name, None])
+ if pairs[-1][0].lower() != pairs[-1][0]:
+ mixedCase = True
+
+ if mixedCase:
+ s3 = boto.connect_s3(calling_format=OrdinaryCallingFormat())
+ else:
+ s3 = boto.connect_s3()
+
+ if len(sys.argv) < 2:
+ list_buckets(s3)
+ else:
+ for name, prefix in pairs:
+ list_bucket(s3.get_bucket(name), prefix)
« no previous file with comments | « third_party/gsutil/boto/bin/list_instances ('k') | third_party/gsutil/boto/bin/mturk » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698