sys.path.append(join(HERE, 'src'))
from debocker.utils import cached_constant, cached_property, tmppath, \
- calculate_md5_and_size
+ calculate_md5_and_size, log_check_call, log_check_output
+from debocker.log import log, LOW, fail
__version__ = "0.2"
-NONE, LOW = 0, 1
-VERBOSITY = NONE
-
-# USEFUL ROUTINES
-
-def fail(msg, *params):
- raise click.ClickException(msg.format(*params))
-
-def log(msg, v = 0):
- if VERBOSITY == NONE:
- if v == 0:
- click.secho('LOG {}'.format(msg), fg = 'green')
- else:
- if v <= VERBOSITY:
- click.secho('LOG[{}] {}'.format(v, msg), fg = 'green')
-
-def log_check_call(cmd, **kwds):
- log('Run (check): {}'.format(cmd), LOW)
- return check_call(cmd, **kwds)
-
-def log_check_output(cmd, **kwds):
- log('Run (output): {}'.format(cmd), LOW)
- return check_output(cmd, **kwds)
-
@cached_constant
def find_bundle_files():
'''finds the location of bundle files'''
--- /dev/null
+# logging (using click)
+
+import click
+
+NONE, LOW = 0, 1
+VERBOSITY = NONE
+
+def fail(msg, *params):
+ raise click.ClickException(msg.format(*params))
+
+def log(msg, v = 0):
+ if VERBOSITY == NONE:
+ if v == 0:
+ click.secho('LOG {}'.format(msg), fg = 'green')
+ else:
+ if v <= VERBOSITY:
+ click.secho('LOG[{}] {}'.format(v, msg), fg = 'green')
# utilities
+import os
+import hashlib
from tempfile import TemporaryDirectory
from datetime import datetime
from os.path import join
-import os
-import hashlib
+from subprocess import check_call, check_output
+
+from .log import log, LOW
def cached_constant(f):
cache = []
count += len(buff)
md5.update(buff)
return md5.hexdigest(), count
+
+def log_check_call(cmd, **kwds):
+ log('Run (check): {}'.format(cmd), LOW)
+ return check_call(cmd, **kwds)
+
+def log_check_output(cmd, **kwds):
+ log('Run (output): {}'.format(cmd), LOW)
+ return check_output(cmd, **kwds)