forked from robcarver17/pysystemtrade
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrun_reports.py
49 lines (32 loc) · 1.49 KB
/
run_reports.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
from syscontrol.run_process import processToRun
from sysdata.data_blob import dataBlob
from sysproduction.data.reports import dataReports
# JUST A COPY AND PASTE JOB RIGHT NOW
def run_reports():
process_name = "run_reports"
data = dataBlob(log_name=process_name)
list_of_timer_names_and_functions = get_list_of_timer_functions_for_reports(data)
report_process = processToRun(process_name, data, list_of_timer_names_and_functions)
report_process.run_process()
def get_list_of_timer_functions_for_reports(data):
list_of_timer_names_and_functions = []
data_reports = dataReports(data)
all_configs = data_reports.get_report_configs_to_run()
for report_name, report_config in all_configs.items():
data_for_report = dataBlob(log_name=report_name)
report_object = runReport(data_for_report, report_config, report_name)
report_tuple = (report_name, report_object)
list_of_timer_names_and_functions.append(report_tuple)
return list_of_timer_names_and_functions
from sysproduction.reporting.reporting_functions import run_report
class runReport(object):
def __init__(self, data, config, report_function):
self.data = data
self.config = config
# run process expects a method with same name as log name
setattr(self, report_function, self.run_generic_report)
def run_generic_report(self):
## Will be renamed
run_report(self.config, data=self.data)
if __name__ == "__main__":
run_reports()