-
Notifications
You must be signed in to change notification settings - Fork 8
/
engine.py
413 lines (332 loc) · 11.9 KB
/
engine.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
#!/usr/bin/python3
# -*- coding: utf-8 -*-
#-----------------------------------------------------------------------------
# project: biovarase
# authors: 1966bc
# mailto: [[email protected]]
# modify: autumn MMXXIII
#-----------------------------------------------------------------------------
""" This is the engine module of Biovarase."""
import os
import sys
import inspect
import datetime
import socket
import hashlib
from tools import Tools
from dbms import DBMS
from qc import QC
from westgards import Westgards
from exporter import Exporter
from launcher import Launcher
class Engine(DBMS, QC, Westgards, Exporter, Launcher, Tools):
def __init__(self,):
super().__init__()
self.dict_instances = {}
self.set_connection()
self.poller = None
self.log_out = None
self.log_user = {}
self.no_selected = "Attention!\nNo record selected!"
self.mandatory = "Attention!\nField %s is mandatory!"
self.ask_to_delete = "Delete data?"
self.ask_to_save = "Save data?"
self.abort = "Operation aborted!"
self.user_not_enable = "User not enabled for this function."
self.batch_remembers = None
self.title = "Biovarase"
def __str__(self):
return "class: {0}\nMRO: {1}\ncon: {2}".format(self.__class__.__name__,
[x.__name__ for x in Engine.__mro__],
self.get_connections)
def set_instance(self, which, operation, show = False):
#print(which.winfo_name())
if operation == 1:
self.dict_instances[which.winfo_name()] = which.winfo_id()
else:
del self.dict_instances[which.winfo_name()]
if show:
self.show_istances()
def get_instance(self, which):
if which in self.dict_instances:
return True
else:
return False
def show_istances(self):
for k, v in self.dict_instances.items():
print(k, v)
def get_log_file(self):
path = self.get_file("log.txt")
self.open_file(path)
def get_python_version(self,):
return "Python version: %s" % ".".join(map(str, sys.version_info[:3]))
def get_file(self, file):
"""# return full path of the directory where program resides."""
return os.path.join(os.path.dirname(__file__), file)
def busy(self, caller):
caller.config(cursor="watch")
def not_busy(self, caller):
caller.config(cursor="")
def set_log_user(self, rs):
self.log_user.clear()
for k, v in enumerate(rs):
#print k,v
self.log_user[k] = v
def on_log(self, function, exc_value, exc_type, module):
now = datetime.datetime.now()
log_text = "{0}\n{1}\n{2}\n{3}\n{4}\n\n".format(now,
function,
exc_value,
exc_type,
module)
path = self.get_file("log.txt")
log_file = open(path, "a")
log_file.write(log_text)
log_file.close()
def get_ddof(self):
try:
f = open('ddof', 'r')
v = f.readline()
f.close()
return int(v)
except FileNotFoundError:
self.on_log(inspect.stack()[0][3],
sys.exc_info()[1],
sys.exc_info()[0],
sys.modules[__name__])
def set_ddof(self, value):
try:
with open('ddof', 'w') as f:
f.write(str(value))
except FileNotFoundError:
self.on_log(inspect.stack()[0][3],
sys.exc_info()[1],
sys.exc_info()[0],
sys.modules[__name__])
def get_zscore(self):
try:
f = open('zscore', 'r')
v = f.readline()
f.close()
return float(v)
except FileNotFoundError:
self.on_log(inspect.stack()[0][3],
sys.exc_info()[1],
sys.exc_info()[0],
sys.modules[__name__])
def set_zscore(self, value):
try:
with open('zscore', 'w') as f:
f.write(str(value))
except FileNotFoundError:
self.on_log(inspect.stack()[0][3],
sys.exc_info()[1],
sys.exc_info()[0],
sys.modules[__name__])
def get_section_id(self):
try:
path = self.get_file("section_id")
f = open(path, 'r')
v = f.readline()
f.close()
return int(v)
except OSError:
self.on_log(inspect.stack()[0][3],
sys.exc_info()[1],
sys.exc_info()[0],
sys.modules[__name__])
def set_section_id(self, value):
try:
with open("section_id", "w") as f:
f.write(str(value))
except FileNotFoundError:
self.on_log(inspect.stack()[0][3],
sys.exc_info()[1],
sys.exc_info()[0],
sys.modules[__name__])
def get_remeber_batch_data(self):
try:
path = self.get_file("remeber_batch_data")
f = open(path, 'r')
v = f.readline()
f.close()
return int(v)
except OSError:
self.on_log(inspect.stack()[0][3],
sys.exc_info()[1],
sys.exc_info()[0],
sys.modules[__name__])
def set_remeber_batch_data(self, value):
try:
with open('remeber_batch_data', 'w') as f:
f.write(str(value))
except FileNotFoundError:
self.on_log(inspect.stack()[0][3],
sys.exc_info()[1],
sys.exc_info()[0],
sys.modules[__name__])
def get_log_ip(self):
try:
return socket.gethostbyname(socket.getfqdn())
except:
return "No IP detect."
def get_log_time(self):
return datetime.datetime.now()
def get_log_id(self):
return self.log_user[0]
def get_license(self):
"""get license"""
try:
path = self.get_file("LICENSE")
f = open(path, "r")
v = f.read()
f.close()
return v
except FileNotFoundError:
self.on_log(inspect.stack()[0][3],
sys.exc_info()[1],
sys.exc_info()[0],
sys.modules[__name__])
def get_date(self):
now = datetime.datetime.now()
return now.strftime("%Y-%m-%d")
def get_time(self):
return datetime.datetime.now().time()
def get_observations(self):
try:
file = open('observations', 'r')
observations = file.readline()
file.close()
return observations
except FileNotFoundError:
self.on_log(inspect.stack()[0][3],
sys.exc_info()[1],
sys.exc_info()[0],
sys.modules[__name__])
def set_observations(self, observations):
try:
with open('observations', 'w') as f:
f.write(str(observations))
except FileNotFoundError:
self.on_log(inspect.stack()[0][3],
sys.exc_info()[1],
sys.exc_info()[0],
sys.modules[__name__])
def get_icon(self):
try:
path = self.get_file("icon")
f = open(path, "r")
v = f.readline()
f.close()
return v
except FileNotFoundError:
self.on_log(inspect.stack()[0][3],
sys.exc_info()[1],
sys.exc_info()[0],
sys.modules[__name__])
def get_expiration_date(self, expiration_date):
return (datetime.datetime.strptime(expiration_date, "%d-%m-%Y").date() - datetime.date.today()).days
def get_password(self, s):
password = hashlib.md5()
password.update(s.strip().encode("utf-8"))
encripted = password.hexdigest()
return encripted
def get_encript_password(self, password):
password = password.strip()
return hashlib.md5(password.encode()).hexdigest()
def get_dimensions(self):
try:
d = {}
with open("dimensions", "r") as filestream:
for line in filestream:
currentline = line.split(",")
d[currentline[0]] = currentline[1]
return d
except FileNotFoundError:
self.on_log(inspect.stack()[0][3],
sys.exc_info()[1],
sys.exc_info()[0],
sys.modules[__name__])
def get_code_length(self):
try:
file = open("code_length", "r")
ret = file.readline()
file.close()
return int(ret)
except FileNotFoundError:
self.on_log(inspect.stack()[0][3],
sys.exc_info()[1],
sys.exc_info()[0],
sys.modules[__name__])
def get_batch_length(self):
try:
file = open("batch_lenght", "r")
ret = file.readline()
file.close()
return int(ret)
except FileNotFoundError:
self.on_log(inspect.stack()[0][3],
sys.exc_info()[1],
sys.exc_info()[0],
sys.modules[__name__])
def get_lot_length(self):
try:
file = open("lot_length", "r")
ret = file.readline()
file.close()
return int(ret)
except FileNotFoundError:
self.on_log(inspect.stack()[0][3],
sys.exc_info()[1],
sys.exc_info()[0],
sys.modules[__name__])
def get_correlation_coefficient(self):
try:
file = open("correlation_coefficient", "r")
ret = file.readline()
file.close()
return float(ret)
except FileNotFoundError:
self.on_log(inspect.stack()[0][3],
sys.exc_info()[1],
sys.exc_info()[0],
sys.modules[__name__])
def get_bvv(self):
try:
f = open('bvv', 'r')
v = f.readline()
f.close()
return v
except FileNotFoundError:
self.on_log(inspect.stack()[0][3],
sys.exc_info()[1],
sys.exc_info()[0],
sys.modules[__name__])
def get_user_manual(self):
try:
f = open('manual', 'r')
v = f.readline()
f.close()
return v
except FileNotFoundError:
self.on_log(inspect.stack()[0][3],
sys.exc_info()[1],
sys.exc_info()[0],
sys.modules[__name__])
def get_qc_thecnical_manual(self):
try:
f = open('qc_thecnical_manual', 'r')
v = f.readline()
f.close()
return v
except FileNotFoundError:
self.on_log(inspect.stack()[0][3],
sys.exc_info()[1],
sys.exc_info()[0],
sys.modules[__name__])
def main():
foo = Engine()
print(foo)
input('end')
if __name__ == "__main__":
main()