2019-05-30 23:32:55 +05:30
|
|
|
import sys
|
2020-03-09 18:09:20 +05:30
|
|
|
import datetime
|
2019-05-30 23:32:55 +05:30
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
import shlex
|
2020-03-09 18:09:20 +05:30
|
|
|
import fractions
|
2020-02-21 11:51:45 +05:30
|
|
|
from functools import reduce
|
2015-10-09 11:21:58 +05:30
|
|
|
from optparse import Option
|
2019-05-20 23:24:57 +05:30
|
|
|
|
2020-02-21 11:51:45 +05:30
|
|
|
import numpy as np
|
2019-05-20 23:24:57 +05:30
|
|
|
|
2020-08-24 02:53:23 +05:30
|
|
|
import damask
|
|
|
|
|
2020-04-10 16:02:33 +05:30
|
|
|
# limit visibility
|
|
|
|
__all__=[
|
|
|
|
'srepr',
|
|
|
|
'croak',
|
|
|
|
'report',
|
|
|
|
'emph','deemph','delete','strikeout',
|
|
|
|
'execute',
|
|
|
|
'show_progress',
|
|
|
|
'scale_to_coprime',
|
|
|
|
'return_message',
|
|
|
|
'extendableOption',
|
2020-08-24 02:53:23 +05:30
|
|
|
'edit_info'
|
2020-04-10 16:02:33 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
####################################################################################################
|
|
|
|
# Functions
|
|
|
|
####################################################################################################
|
2016-03-04 19:52:01 +05:30
|
|
|
def srepr(arg,glue = '\n'):
|
2020-02-22 04:36:51 +05:30
|
|
|
r"""
|
2020-06-24 23:43:09 +05:30
|
|
|
Join arguments with glue string.
|
2020-03-09 18:09:20 +05:30
|
|
|
|
2020-02-22 03:55:22 +05:30
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
arg : iterable
|
2020-03-15 02:23:48 +05:30
|
|
|
Items to join.
|
2020-02-22 03:55:22 +05:30
|
|
|
glue : str, optional
|
2020-03-15 02:23:48 +05:30
|
|
|
Defaults to \n.
|
2020-02-22 03:55:22 +05:30
|
|
|
|
|
|
|
"""
|
|
|
|
if (not hasattr(arg, "strip") and
|
|
|
|
(hasattr(arg, "__getitem__") or
|
|
|
|
hasattr(arg, "__iter__"))):
|
|
|
|
return glue.join(str(x) for x in arg)
|
|
|
|
return arg if isinstance(arg,str) else repr(arg)
|
|
|
|
|
|
|
|
|
2016-03-04 19:52:01 +05:30
|
|
|
def croak(what, newline = True):
|
2020-02-22 03:55:22 +05:30
|
|
|
"""
|
|
|
|
Write formated to stderr.
|
2020-03-09 18:09:20 +05:30
|
|
|
|
2020-02-22 03:55:22 +05:30
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
what : str or iterable
|
2020-03-15 02:23:48 +05:30
|
|
|
Content to be displayed.
|
2020-02-22 03:55:22 +05:30
|
|
|
newline : bool, optional
|
2020-03-15 02:23:48 +05:30
|
|
|
Separate items of what by newline. Defaults to True.
|
2020-02-22 03:55:22 +05:30
|
|
|
|
|
|
|
"""
|
2020-03-21 04:12:23 +05:30
|
|
|
if what is not None:
|
2020-02-22 03:55:22 +05:30
|
|
|
sys.stderr.write(srepr(what,glue = '\n') + ('\n' if newline else ''))
|
|
|
|
sys.stderr.flush()
|
|
|
|
|
|
|
|
|
2016-07-18 19:50:39 +05:30
|
|
|
def report(who = None,
|
|
|
|
what = None):
|
2020-02-22 03:55:22 +05:30
|
|
|
"""
|
|
|
|
Reports script and file name.
|
2020-02-22 01:34:23 +05:30
|
|
|
|
2020-02-22 03:55:22 +05:30
|
|
|
DEPRECATED
|
2020-02-22 01:34:23 +05:30
|
|
|
|
2020-02-22 03:55:22 +05:30
|
|
|
"""
|
|
|
|
croak( (emph(who)+': ' if who is not None else '') + (what if what is not None else '') + '\n' )
|
2015-09-23 02:30:18 +05:30
|
|
|
|
2016-04-24 21:50:55 +05:30
|
|
|
|
2015-08-22 22:32:49 +05:30
|
|
|
def emph(what):
|
2020-02-22 03:55:22 +05:30
|
|
|
"""Formats string with emphasis."""
|
|
|
|
return bcolors.BOLD+srepr(what)+bcolors.ENDC
|
|
|
|
|
2015-08-22 22:32:49 +05:30
|
|
|
|
2016-08-25 21:29:04 +05:30
|
|
|
def deemph(what):
|
2020-02-22 03:55:22 +05:30
|
|
|
"""Formats string with deemphasis."""
|
|
|
|
return bcolors.DIM+srepr(what)+bcolors.ENDC
|
|
|
|
|
2016-08-25 21:29:04 +05:30
|
|
|
|
|
|
|
def delete(what):
|
2020-02-22 03:55:22 +05:30
|
|
|
"""Formats string as deleted."""
|
|
|
|
return bcolors.DIM+srepr(what)+bcolors.ENDC
|
|
|
|
|
2016-08-25 21:29:04 +05:30
|
|
|
|
2019-05-28 06:44:09 +05:30
|
|
|
def strikeout(what):
|
2020-02-22 03:55:22 +05:30
|
|
|
"""Formats string as strikeout."""
|
|
|
|
return bcolors.CROSSOUT+srepr(what)+bcolors.ENDC
|
2019-05-28 06:44:09 +05:30
|
|
|
|
|
|
|
|
2016-03-21 18:21:56 +05:30
|
|
|
def execute(cmd,
|
2020-06-21 02:21:00 +05:30
|
|
|
stream_in = None,
|
2019-06-07 21:21:27 +05:30
|
|
|
wd = './',
|
|
|
|
env = None):
|
2020-02-22 03:55:22 +05:30
|
|
|
"""
|
|
|
|
Execute command.
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
cmd : str
|
2020-03-15 02:23:48 +05:30
|
|
|
Command to be executed.
|
2020-06-21 02:21:00 +05:30
|
|
|
stream_in : file object, optional
|
2020-03-15 02:23:48 +05:30
|
|
|
Input (via pipe) for executed process.
|
2020-02-22 03:55:22 +05:30
|
|
|
wd : str, optional
|
2020-03-15 02:23:48 +05:30
|
|
|
Working directory of process. Defaults to ./ .
|
|
|
|
env : dict, optional
|
|
|
|
Environment for execution.
|
2020-02-22 03:55:22 +05:30
|
|
|
|
|
|
|
"""
|
|
|
|
initialPath = os.getcwd()
|
|
|
|
myEnv = os.environ if env is None else env
|
2020-04-26 18:22:27 +05:30
|
|
|
os.chdir(wd)
|
2020-02-22 03:55:22 +05:30
|
|
|
process = subprocess.Popen(shlex.split(cmd),
|
|
|
|
stdout = subprocess.PIPE,
|
|
|
|
stderr = subprocess.PIPE,
|
|
|
|
stdin = subprocess.PIPE,
|
|
|
|
env = myEnv)
|
2020-06-21 02:21:00 +05:30
|
|
|
stdout, stderr = [i for i in (process.communicate() if stream_in is None
|
|
|
|
else process.communicate(stream_in.read().encode('utf-8')))]
|
2020-04-26 18:22:27 +05:30
|
|
|
os.chdir(initialPath)
|
2020-06-21 02:21:00 +05:30
|
|
|
stdout = stdout.decode('utf-8').replace('\x08','')
|
|
|
|
stderr = stderr.decode('utf-8').replace('\x08','')
|
2020-02-22 03:55:22 +05:30
|
|
|
if process.returncode != 0:
|
2020-06-24 20:32:15 +05:30
|
|
|
raise RuntimeError(f'{cmd} failed with returncode {process.returncode}')
|
2020-06-21 02:21:00 +05:30
|
|
|
return stdout, stderr
|
2020-02-22 03:55:22 +05:30
|
|
|
|
|
|
|
|
2020-04-10 16:02:33 +05:30
|
|
|
def show_progress(iterable,N_iter=None,prefix='',bar_length=50):
|
|
|
|
"""
|
|
|
|
Decorate a loop with a status bar.
|
|
|
|
|
|
|
|
Use similar like enumerate.
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
iterable : iterable/function with yield statement
|
|
|
|
Iterable (or function with yield statement) to be decorated.
|
|
|
|
N_iter : int
|
|
|
|
Total # of iterations. Needed if number of iterations can not be obtained as len(iterable).
|
|
|
|
prefix : str, optional.
|
|
|
|
Prefix string.
|
|
|
|
bar_length : int, optional
|
|
|
|
Character length of bar. Defaults to 50.
|
|
|
|
|
|
|
|
"""
|
|
|
|
status = _ProgressBar(N_iter if N_iter else len(iterable),prefix,bar_length)
|
|
|
|
|
|
|
|
for i,item in enumerate(iterable):
|
|
|
|
yield item
|
|
|
|
status.update(i)
|
|
|
|
|
|
|
|
|
|
|
|
def scale_to_coprime(v):
|
|
|
|
"""Scale vector to co-prime (relatively prime) integers."""
|
2020-06-25 11:59:36 +05:30
|
|
|
MAX_DENOMINATOR = 1000000
|
2020-04-10 16:02:33 +05:30
|
|
|
|
|
|
|
def get_square_denominator(x):
|
|
|
|
"""Denominator of the square of a number."""
|
|
|
|
return fractions.Fraction(x ** 2).limit_denominator(MAX_DENOMINATOR).denominator
|
|
|
|
|
|
|
|
def lcm(a, b):
|
|
|
|
"""Least common multiple."""
|
|
|
|
return a * b // np.gcd(a, b)
|
|
|
|
|
2020-06-25 04:07:33 +05:30
|
|
|
m = (np.array(v) * reduce(lcm, map(lambda x: int(get_square_denominator(x)),v)) ** 0.5).astype(np.int)
|
|
|
|
m = m//reduce(np.gcd,m)
|
|
|
|
|
2020-06-25 11:48:39 +05:30
|
|
|
if not np.allclose(v[v.nonzero()]/m[v.nonzero()],v[v.nonzero()][0]/m[m.nonzero()][0]):
|
2020-06-25 04:07:33 +05:30
|
|
|
raise ValueError(f'Invalid result {m} for input {v}. Insufficient precision?')
|
|
|
|
|
|
|
|
return m
|
2020-04-10 16:02:33 +05:30
|
|
|
|
|
|
|
|
2020-08-24 02:53:23 +05:30
|
|
|
def edit_info(who):
|
|
|
|
now = datetime.datetime.now().astimezone().strftime('%Y-%m-%d %H:%M:%S%z')
|
|
|
|
return f'{who} v{damask.version} ({now})'
|
|
|
|
|
|
|
|
|
2020-04-10 16:02:33 +05:30
|
|
|
####################################################################################################
|
|
|
|
# Classes
|
|
|
|
####################################################################################################
|
2014-06-17 12:40:10 +05:30
|
|
|
class extendableOption(Option):
|
2020-02-22 03:55:22 +05:30
|
|
|
"""
|
|
|
|
Used for definition of new option parser action 'extend', which enables to take multiple option arguments.
|
2014-06-17 12:40:10 +05:30
|
|
|
|
2020-02-22 03:55:22 +05:30
|
|
|
Adopted from online tutorial http://docs.python.org/library/optparse.html
|
|
|
|
DEPRECATED
|
|
|
|
"""
|
2019-01-05 15:11:49 +05:30
|
|
|
|
2020-02-22 03:55:22 +05:30
|
|
|
ACTIONS = Option.ACTIONS + ("extend",)
|
|
|
|
STORE_ACTIONS = Option.STORE_ACTIONS + ("extend",)
|
|
|
|
TYPED_ACTIONS = Option.TYPED_ACTIONS + ("extend",)
|
|
|
|
ALWAYS_TYPED_ACTIONS = Option.ALWAYS_TYPED_ACTIONS + ("extend",)
|
2019-01-05 15:11:49 +05:30
|
|
|
|
2020-02-22 03:55:22 +05:30
|
|
|
def take_action(self, action, dest, opt, value, values, parser):
|
2020-03-15 02:23:48 +05:30
|
|
|
if action == "extend":
|
|
|
|
lvalue = value.split(",")
|
|
|
|
values.ensure_value(dest, []).extend(lvalue)
|
|
|
|
else:
|
|
|
|
Option.take_action(self, action, dest, opt, value, values, parser)
|
2018-12-09 13:38:33 +05:30
|
|
|
|
2019-05-28 12:32:29 +05:30
|
|
|
|
2020-03-09 18:09:20 +05:30
|
|
|
class _ProgressBar:
|
|
|
|
"""
|
|
|
|
Report progress of an interation as a status bar.
|
|
|
|
|
|
|
|
Works for 0-based loops, ETA is estimated by linear extrapolation.
|
2019-09-20 01:02:15 +05:30
|
|
|
"""
|
2020-03-09 18:09:20 +05:30
|
|
|
|
|
|
|
def __init__(self,total,prefix,bar_length):
|
|
|
|
"""
|
|
|
|
Inititalize a progress bar to current time as basis for ETA estimation.
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
total : int
|
2020-03-15 02:23:48 +05:30
|
|
|
Total # of iterations.
|
2020-03-09 18:09:20 +05:30
|
|
|
prefix : str
|
2020-03-15 02:23:48 +05:30
|
|
|
Prefix string.
|
2020-03-09 18:09:20 +05:30
|
|
|
bar_length : int
|
2020-03-15 02:23:48 +05:30
|
|
|
Character length of bar.
|
2020-03-09 18:09:20 +05:30
|
|
|
|
|
|
|
"""
|
|
|
|
self.total = total
|
|
|
|
self.prefix = prefix
|
|
|
|
self.bar_length = bar_length
|
|
|
|
self.start_time = datetime.datetime.now()
|
|
|
|
self.last_fraction = 0.0
|
|
|
|
|
2020-06-24 20:32:15 +05:30
|
|
|
sys.stderr.write(f"{self.prefix} {'░'*self.bar_length} 0% ETA n/a")
|
2020-03-09 18:09:20 +05:30
|
|
|
sys.stderr.flush()
|
|
|
|
|
|
|
|
def update(self,iteration):
|
|
|
|
|
|
|
|
fraction = (iteration+1) / self.total
|
2020-06-24 20:32:15 +05:30
|
|
|
filled_length = int(self.bar_length * fraction)
|
2020-03-09 18:09:20 +05:30
|
|
|
|
2020-06-24 20:32:15 +05:30
|
|
|
if filled_length > int(self.bar_length * self.last_fraction):
|
|
|
|
bar = '█' * filled_length + '░' * (self.bar_length - filled_length)
|
2020-03-09 18:09:20 +05:30
|
|
|
delta_time = datetime.datetime.now() - self.start_time
|
|
|
|
remaining_time = (self.total - (iteration+1)) * delta_time / (iteration+1)
|
|
|
|
remaining_time -= datetime.timedelta(microseconds=remaining_time.microseconds) # remove μs
|
2020-06-25 01:04:51 +05:30
|
|
|
sys.stderr.write(f'\r{self.prefix} {bar} {fraction:>4.0%} ETA {remaining_time}')
|
2020-03-09 18:09:20 +05:30
|
|
|
sys.stderr.flush()
|
|
|
|
|
|
|
|
self.last_fraction = fraction
|
|
|
|
|
|
|
|
if iteration == self.total - 1:
|
|
|
|
sys.stderr.write('\n')
|
|
|
|
sys.stderr.flush()
|
|
|
|
|
2020-02-22 04:36:51 +05:30
|
|
|
|
2020-04-10 16:02:33 +05:30
|
|
|
class bcolors:
|
2019-09-20 01:02:15 +05:30
|
|
|
"""
|
2020-06-24 20:32:15 +05:30
|
|
|
ASCII colors.
|
2020-03-09 18:09:20 +05:30
|
|
|
|
2020-04-10 16:02:33 +05:30
|
|
|
https://svn.blender.org/svnroot/bf-blender/trunk/blender/build_files/scons/tools/bcolors.py
|
|
|
|
https://stackoverflow.com/questions/287871
|
|
|
|
"""
|
2020-03-09 18:09:20 +05:30
|
|
|
|
2020-04-10 16:02:33 +05:30
|
|
|
HEADER = '\033[95m'
|
|
|
|
OKBLUE = '\033[94m'
|
|
|
|
OKGREEN = '\033[92m'
|
|
|
|
WARNING = '\033[93m'
|
|
|
|
FAIL = '\033[91m'
|
|
|
|
ENDC = '\033[0m'
|
|
|
|
BOLD = '\033[1m'
|
|
|
|
DIM = '\033[2m'
|
|
|
|
UNDERLINE = '\033[4m'
|
|
|
|
CROSSOUT = '\033[9m'
|
2020-03-09 18:09:20 +05:30
|
|
|
|
2020-04-10 16:02:33 +05:30
|
|
|
def disable(self):
|
|
|
|
self.HEADER = ''
|
|
|
|
self.OKBLUE = ''
|
|
|
|
self.OKGREEN = ''
|
|
|
|
self.WARNING = ''
|
|
|
|
self.FAIL = ''
|
|
|
|
self.ENDC = ''
|
|
|
|
self.BOLD = ''
|
|
|
|
self.UNDERLINE = ''
|
|
|
|
self.CROSSOUT = ''
|
2020-03-06 02:24:47 +05:30
|
|
|
|
|
|
|
|
2020-03-19 13:15:25 +05:30
|
|
|
class return_message:
|
2020-02-22 03:55:22 +05:30
|
|
|
"""Object with formatted return message."""
|
2020-03-09 18:09:20 +05:30
|
|
|
|
2020-02-22 03:55:22 +05:30
|
|
|
def __init__(self,message):
|
|
|
|
"""
|
|
|
|
Sets return message.
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
message : str or list of str
|
2020-03-15 02:23:48 +05:30
|
|
|
message for output to screen
|
2020-02-22 03:55:22 +05:30
|
|
|
|
|
|
|
"""
|
|
|
|
self.message = message
|
2020-03-09 18:09:20 +05:30
|
|
|
|
2020-02-22 03:55:22 +05:30
|
|
|
def __repr__(self):
|
|
|
|
"""Return message suitable for interactive shells."""
|
|
|
|
return srepr(self.message)
|