Add progress bar in pithos upload & compute md5sum
[snf-image-creator] / image_creator / util.py
index a0d44ba..2805de7 100644 (file)
 # interpreted as representing official policies, either expressed
 # or implied, of GRNET S.A.
 
+import sys
 import pbs
-from clint.textui import puts, puts_err, colored, progress
+import hashlib
+from clint.textui import colored, progress as uiprogress
+
+
+class FatalError(Exception):
+    pass
+
+
+silent = False
 
 
 def get_command(command):
@@ -50,24 +59,60 @@ def get_command(command):
 
 
 def error(msg, new_line=True):
-    puts_err(colored.red("Error: %s\n" % msg), new_line)
+    nl = "\n" if new_line else ''
+    sys.stderr.write(colored.red('Error: %s' % msg) + nl)
 
 
 def warn(msg, new_line=True):
-    puts_err(colored.yellow("Warning: %s" % msg), new_line)
+    if not silent:
+        nl = "\n" if new_line else ''
+        sys.stderr.write(colored.yellow("Warning: %s" % msg) + nl)
 
 
 def success(msg, new_line=True):
-    puts(colored.green(msg), new_line)
+    if not silent:
+        nl = "\n" if new_line else ''
+        sys.stdout.write(colored.green(msg) + nl)
+        if not nl:
+            sys.stdout.flush()
+
+
+def output(msg="", new_line=True):
+    if not silent:
+        nl = "\n" if new_line else ''
+        sys.stdout.write(msg + nl)
+        if not nl:
+            sys.stdout.flush()
+
+
+def progress(message=''):
+
+    PROGRESS_LENGTH = 32
+    MESSAGE_LENGTH = 32
+
+    def progress_generator(n=100):
+        position = 0
+        msg = message.ljust(MESSAGE_LENGTH)
+        for i in uiprogress.bar(range(n), msg, PROGRESS_LENGTH, silent):
+            if i < position:
+                continue
+            position = yield
+        yield  # suppress the StopIteration exception
+    return progress_generator
+
+def md5(filename, size, progress = None):
 
+    BLOCKSIZE = 2^22  # 4MB
 
-def progress_generator(label='', n=100):
-    position = 0
-    for i in progress.bar(range(n), label):
-        if i < position:
-            continue
-        position = yield
-    yield  # suppress the StopIteration exception
+    md5 = hashlib.md5()
+    with open(filename, "r") as src:
+        left = size
+        while left > 0:
+            length = min(left, BLOCKSIZE)
+            data = src.read(length)
+            md5.update(data)
+            left -= length
 
+    return md5.hexdigest()
 
 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :