-
Notifications
You must be signed in to change notification settings - Fork 0
/
parameters.py
71 lines (58 loc) · 2.27 KB
/
parameters.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
from datetime import datetime
import os
import subprocess
def get_commandline_output(command):
p = subprocess.Popen(command, stdout=subprocess.PIPE, shell=True)
(stdout, stderr) = p.communicate()
return stdout
def git_current_commit_hash():
return get_commandline_output('git rev-parse HEAD').strip()
def git_uncommited_changes():
res = get_commandline_output('git diff --name-only')
return len(res) > 0
def try_convert_to_float(string):
try:
return float(string)
except ValueError:
return string
# TODO(simonhog): Allow comments
def parameters_parse(filename):
# TODO(simonhog): Error handling
with open(filename, 'r') as file:
lines = file.read().splitlines()
parameters = {}
for line_number, line in enumerate(lines):
line = line.strip()
comment_start = line.find('#')
if comment_start >= 0:
line = line[:comment_start]
if len(line) == 0:
continue
parts = line.split('=', 1)
if len(parts) != 2:
print('Invalid syntax in "{}" on line {}. Expected key = value (separated by single =).'.format(
filename, line_number + 1))
key = parts[0].strip()
value = parts[1].strip()
if value.isdigit():
value = int(value)
else:
value = try_convert_to_float(value)
parameters[key] = value
now = datetime.now()
parameters['__date'] = now.isoformat() # TODO(simonhog): Ensure readable, add timezone. pytz library?
parameters['__date_string'] = now.strftime('%Y%m%d_%H_%M_%S_%f')
parameters['__parameter_file'] = os.path.abspath(filename)
if parameters.get('development', 'false').lower() != 'true':
parameters['__code_git_hash'] = git_current_commit_hash()
if git_uncommited_changes():
print("[WARN]: Uncommitted changes in git repository")
if 'shortname' not in parameters:
parameters['shortname'] = 'unnamed'
return parameters
def parameters_save(parameters, output_directory):
out_filename = os.path.join(output_directory, 'metadata.txt')
del parameters['__date_string']
with open(out_filename, 'w') as file:
for key, value in parameters.items():
file.write('{} = {}\n'.format(key, value))