core.py
1.44 KB
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
import abc
import importlib
from os.path import isfile
from datetime import datetime
from uuid import uuid4
from .content import content
hit_count_path = "VISITS"
def generate_unique_id():
"""
:return: a unique identifier that can be sorted chronologically.
"""
return u"%s" % (
datetime.now().strftime('%Y-%m-%d_%H:%M:%S_') + str(uuid4())[0:4]
)
def get_emission_models():
emission_models_confs = content.models
emission_models = []
for model_conf in emission_models_confs:
model_file = model_conf.file
the_module = importlib.import_module("flaskr.laws.%s" % model_file)
model = the_module.EmissionModel(model_conf, content.shared_config)
# model.configure(extra_model_conf)
emission_models.append(model)
return emission_models
models = get_emission_models()
def get_hit_counter():
hit_count = 1
if isfile(hit_count_path):
with open(hit_count_path) as hcf:
hit_count = int(hcf.read().strip())
return hit_count
def increment_hit_counter():
if isfile(hit_count_path):
hit_count = get_hit_counter()
hit_count += 1
else:
hit_count = 1
with open(hit_count_path, 'w') as hcf:
hcf.write(str(hit_count))
return hit_count
# # unused
# class FootprintEstimatorDriver(abc.ABCMeta):
# @abc.abstractmethod
# def get_travel_footprint(self, from_location, to_location): # TBD
# pass