X-Git-Url: https://code.grnet.gr/git/snf-image-creator/blobdiff_plain/e2cf65d3994565f6dafc87ab8a10611d1f0cf520..8e3065a039b08d9c37d183f8cc3bb8ae5dcd4410:/image_creator/util.py diff --git a/image_creator/util.py b/image_creator/util.py index a0d44ba..2805de7 100644 --- a/image_creator/util.py +++ b/image_creator/util.py @@ -31,8 +31,17 @@ # 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 :