-
Notifications
You must be signed in to change notification settings - Fork 0
/
generator.pyw
3245 lines (2749 loc) · 148 KB
/
generator.pyw
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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""
# Generator CSV
# Wersja 4.0
# Autorzy: Mateusz Skoczek
# styczeń 2019 - wrzesień 2020
# dla ZSP Sobolew
"""
# ------------------------------------- # Import bibliotek # ------------------------------------ #
# Biblioteki główne
import sys as SS
import os as OS
import time as TM
import codecs as CD
import pathlib as PT
import shutil as SU
# Biblioteki interfejsu graficznego
import tkinter as TK
from tkinter import ttk as TKttk
from tkinter import messagebox as TKmsb
from tkinter import filedialog as TKfld
from PIL import ImageTk as PLitk
from PIL import Image as PLimg
# --------------------------------- # Główne zmienne globalne # --------------------------------- #
class VAR:
# Informacje o programie
programName = 'Generator CSV'
programVersion = '4.0'
programVersionStage = ''
programVersionBuild = '20254'
programCustomer = 'ZSP Sobolew'
programAuthors = ['Mateusz Skoczek']
programToW = ['styczeń', '2019', 'wrzesień', '2020']
# Dozwolone kodowanie plików
allowedCoding = ['utf-8', 'ANSI', 'iso-8859-2']
# Dozwolone znaki
allowedCharactersInSeparator = ['`', '~', '!', '@', '#', '$', '%', '^', '&', '(', ')', '-', '_', '=', '+', '[', ']', ' ', '?', '/', '>', '.', '<', ',', '"', "'", ':', ';', '|']
# Katalog APPDATA
appdataPath = PT.Path.home() / 'Appdata/Roaming'
# -------------------------------------- # Okna dialogowe # ------------------------------------- #
# Lista komunikatów
MSGlist = {
'E0000' : 'none',
'E0001' : 'Wystąpił błąd podczas inicjalizacji katalogu z plikami konfiguracyjnymi programu w katalogu %APPDATA%',
'E0002' : 'Wystąpił błąd podczas ładowania pliku konfiguracyjnego (config.cfg)',
'E0003' : 'Niepoprawne dane w pliku konfiguracyjnym (config.cfg)',
'E0004' : 'Wystąpił błąd podczas ładowania pliku stylu (style.cfg)',
'E0005' : 'Niepoprawne dane w pliku stylu (style.cfg)',
'E0006' : 'Niepoprawne dane w pliku formatu',
'E0007' : 'Wymagany przynajmniej jeden plik wejściowy',
'E0008' : 'Nie można odnaleźć jednego z powyższych plików',
'E0009' : 'Nie można odnaleźć jednego z powyższych format presetów',
'E0010' : 'Nie można przetworzyć danych z plików wejściowych z pomocą podanych format presetów',
'E0011' : 'Niepoprawne dane w plikach wejściowych',
'E0012' : 'Nie można przetworzyć danych na format wyjściowy',
'E0013' : 'Nie można utworzyć plików wejściowych',
'E0014' : 'Nie można zapisać plików wejściowych',
'E0015' : 'Nie można usunąć wybranych format presetów',
'E0016' : 'Nie można uruchomić pliku instrukcji (documentation/index.html)',
'E0017' : 'Nie można zapisać pliku formatu',
'A0001' : 'Czy chcesz zapisać? Zostanie utworzony nowy plik',
'A0002' : 'Czy chcesz zapisać? Plik zostanie nadpisany',
'A0003' : 'Czy chcesz rozpocząć przetwarzanie plików?',
'A0004' : 'Czy chcesz zapisać?',
'A0005' : 'Czy na pewno chcesz przywrócić domyślne ustawienia ogólne?',
'A0006' : 'Czy na pewno chcesz przywrócić domyślne ustawienia wyglądu?',
'A0007' : 'Czy na pewno chcesz usunąc zaznaczone format presety?',
'A0008' : 'Nie znaleziono informacji o wersji programu w katalogu programu w APPDATA. Nastąpi zresetowanie katalogu programu w APPDATA oraz utworzenie kopii zapasowej dotychczasowej zawartości. Czy chcesz kontynuować?',
'A0009' : 'Została zainstalowana nowa wersja programu. Nastąpi zresetowanie katalogu programu w APPDATA oraz utworzenie kopii zapasowej dotychczasowej zawartości. Czy chcesz kontynuować?',
'I0001' : 'Operacja ukończona pomyślnie',
'I0002' : 'Aplikacja zostanie zamknięta w celu przeładowania ustawień',
}
# Funkcja odpowiedzialna za wywoływanie komunikatów dialogowych
def MSG(code, terminate, *optionalInfo):
try:
optionalInfo[0]
except:
optionalInfo = ['']
# Błędy
if code[0] == 'E':
TKmsb.showerror('Wystąpił błąd!', '%s\n%s' % (MSGlist[code], optionalInfo[0]))
if terminate:
SS.exit(0)
# Informacja
elif code[0] == 'I':
TKmsb.showinfo('Informacja', '%s\n%s' % (MSGlist[code], optionalInfo[0]))
if terminate:
SS.exit(0)
# Ostrzeżenie
elif code[0] == 'W':
TKmsb.showwarning('Ostrzeżenie', '%s\n%s' % (MSGlist[code], optionalInfo[0]))
if terminate:
SS.exit(0)
# Zapytania
elif code[0] == 'A':
if TKmsb.askokcancel('Pytanie', '%s\n%s' % (MSGlist[code], optionalInfo[0])):
return True
else:
return False
# ------------------------- # Sprawdzanie katalogu programu w APPDATA # ------------------------- #
class checkAppdata:
def __init__(self):
if 'Generator CSV' in [x for x in OS.listdir(VAR.appdataPath)]:
if 'version' in [x for x in OS.listdir(str(VAR.appdataPath) + '\Generator CSV')]:
versionFile = CD.open((str(VAR.appdataPath) + r'\Generator CSV\version'), 'r', 'utf-8')
if versionFile.read() == VAR.programVersionBuild:
versionFile.close()
if 'config.cfg' not in [x for x in OS.listdir(str(VAR.appdataPath) + '\Generator CSV')]:
self.__restoreCFG('config')
if 'style.cfg' not in [x for x in OS.listdir(str(VAR.appdataPath) + '\Generator CSV')]:
self.__restoreCFG('style')
if 'format-presets' not in [x for x in OS.listdir(str(VAR.appdataPath) + '\Generator CSV')]:
self.__createFormatPresetsDir()
else:
versionFile.close()
if MSG('A0009', False):
self.__resetAppdata()
MSG('I0002', True)
else: SS.exit(0)
else:
if MSG('A0008', False):
self.__resetAppdata()
MSG('I0002', True)
else: SS.exit(0)
else: self.__buildAppdata()
# Budowanie katalogu programu
def __buildAppdata(self):
try:
OS.mkdir(str(VAR.appdataPath) + '\Generator CSV')
versionFile = CD.open((str(VAR.appdataPath) + r'\Generator CSV\version'), 'w', 'utf-8')
versionFile.write(VAR.programVersionBuild)
versionFile.close()
except Exception as exceptInfo:
MSG('E0001', True, exceptInfo)
self.__restoreCFG('config')
self.__restoreCFG('style')
self.__createFormatPresetsDir()
# Resetowanie katalogu programu
def __resetAppdata(self):
try:
if 'Generator CSV_old' in [x for x in OS.listdir(str(VAR.appdataPath) + '\Generator CSV')]:
SU.rmtree(str(VAR.appdataPath) + '\Generator CSV\Generator CSV_old')
OS.rename((str(VAR.appdataPath) + '\Generator CSV'), (str(VAR.appdataPath) + '\Generator CSV_old'))
except Exception as exceptInfo:
MSG('E0001', True, exceptInfo)
self.__buildAppdata()
try:
SU.move((str(VAR.appdataPath) + '\Generator CSV_old'), (str(VAR.appdataPath) + '\Generator CSV\Generator CSV_old'))
except Exception as exceptInfo:
MSG('E0001', True, exceptInfo)
# Przywracanie plików konfiguracyjnych
def __restoreCFG(self, configFileName):
try:
SU.copy(('configs\%s.cfg' % configFileName), str(VAR.appdataPath) + ('\Generator CSV\%s.cfg' % configFileName))
except Exception as exceptInfo:
MSG('E0001', True, exceptInfo)
# Tworzenie katalogu przechowującego format presety
def __createFormatPresetsDir(self):
try:
OS.mkdir(str(VAR.appdataPath) + r'\Generator CSV\format-presets')
except Exception as exceptInfo:
MSG('E0001', True, exceptInfo)
checkAppdata()
# ------------------ # Ładowanie głównego pliku konfiguracyjnego 'config.cfg' # ----------------- #
class CFG:
def R(self, record):
self.__checkIfFileExist(False)
content = {}
for x in CD.open((str(VAR.appdataPath) + '\Generator CSV\config.cfg'), 'r', 'utf-8').read().strip('\r').split('\n'):
x = x.split(' = ')
try:
name = x[0].split('(')[0]
var = x[1]
type = x[0].split('(')[1].strip(')')
content[name] = [var, type]
except:
continue
checkingOutput = self.__checkIfRecordExist(content, record)
if not checkingOutput[0]:
MSG('E0003', True, checkingOutput[1])
var = content[record]
if var[1] == 'S':
# String
var = var[0].strip('\r')
return var
elif var[1] == 'Sc':
# Integer
checkingOutput = self.__checkSc(record, var[0])
if checkingOutput[0]:
return checkingOutput[1]
else:
MSG('E0003', True, checkingOutput[1])
elif var[1] == 'I':
# Integer
checkingOutput = self.__checkI(False, record, var[0])
if checkingOutput[0]:
return checkingOutput[1]
else:
MSG('E0003', True, checkingOutput[1])
elif var[1] == 'D':
# Date (DD.MM.RRRR HH:MM:SS)
checkingOutput = self.__checkD(False, record, var[0])
if checkingOutput[0]:
return checkingOutput[1]
else:
MSG('E0003', True, checkingOutput[1])
elif var[1] == 'MSAs':
# Multiple Specified Arrays - schoolData
checkingOutput = self.__checkMSAs(False, record, var[0])
if checkingOutput[0]:
return checkingOutput[1]
else:
MSG('E0003', True, checkingOutput[1])
elif var[1] == 'B':
# Boolean
checkingOutput = self.__checkB(False, record, var[0])
if checkingOutput[0]:
return checkingOutput[1]
else:
MSG('E0003', True, checkingOutput[1])
else:
MSG('E0003', True, 'Nie można rozpoznać typu klucza %s' % record)
def W(self, changes):
self.__checkIfFileExist(True)
file = CD.open(str(VAR.appdataPath) + '\Generator CSV\config.cfg', 'r', 'utf-8').read().split('\n')
if file[-1] == '':
file = file[:-1]
content = {}
for x in file:
x = x.split(' = ')
try:
name = x[0].split('(')[0]
var = x[1]
type = x[0].split('(')[1].strip(')')
content[name] = [var, type]
except Exception as exceptInfo:
MSG('E0003', False, exceptInfo)
for x in changes:
name = x
var = changes[name]
type = (content[name])[1]
if type == 'S':
# String
pass
elif type == 'Sc':
# Integer
checkingOutput = self.__checkSc(name, var)
if checkingOutput[0]:
var = checkingOutput[1]
else:
MSG('E0006', False, checkingOutput[1])
return False
elif type == 'I':
# Integer
checkingOutput = self.__checkI(True, name, var)
if checkingOutput[0]:
var = checkingOutput[1]
else:
MSG('E0006', False, checkingOutput[1])
return False
elif type == 'D':
# Date (DD.MM.RRRR HH:MM:SS)
checkingOutput = self.__checkD(True, name, var)
if checkingOutput[0]:
var = checkingOutput[1]
else:
MSG('E0006', False, checkingOutput[1])
return False
elif type == 'MSAs':
# Multiple Specified Arrays - schoolData
checkingOutput = self.__checkMSAs(True, name, var)
if checkingOutput[0]:
var = checkingOutput[1]
else:
MSG('E0006', False, checkingOutput[1])
return False
elif type == 'B':
# Boolean
checkingOutput = self.__checkB(True, name, var)
if checkingOutput[0]:
var = checkingOutput[1]
else:
MSG('E0006', False, checkingOutput[1])
return False
else:
MSG('E0003', False, 'Nie można rozpoznać typu klucza %s' % name)
return False
content[name] = [var, type]
with CD.open(str(VAR.appdataPath) + '\Generator CSV\config.cfg', 'w', 'utf-8') as file:
for x in content:
file.write('%s(%s) = %s\n' % (x, (content[x])[1], (content[x][0])))
return True
# Funkcje sprawdzające istnienie
def __checkIfFileExist(self, write):
if write:
try:
checkAppdata()
file = open((str(VAR.appdataPath) + '\Generator CSV\config.cfg'), 'a')
except Exception as exceptInfo:
MSG('E0002', True, exceptInfo)
return False
else:
if not file.writable():
MSG('E0002', False, 'Plik tylko do odczytu')
return False
else:
return True
else:
try:
checkAppdata()
open(str(VAR.appdataPath) + '\Generator CSV\config.cfg')
except Exception as exceptInfo:
MSG('E0002', True, exceptInfo)
def __checkIfRecordExist(self, content, record):
if record in list(content.keys()):
return [True]
else:
return [False, 'Brak danych - klucz: %s' % record]
# Funkcje sprawdzające poprawność recordu
def __checkI(self, write, record, var):
if write:
try:
var = int(var)
except:
return (False, 'Niepoprawne dane - klucz: %s' % record)
var = str(var)
else:
try:
var = int(var)
except:
return (False, 'Niepoprawne dane - klucz: %s' % record)
return [True, var]
def __checkD(self, write, record, var):
if write:
varX = ''
if var['D'] == None:
varX += '*'
else:
try:
var['D'] = int(var['D'])
except:
return (False, 'Niepoprawne dane - klucz: %s' % record)
if int(var['D']) > 31 or int(var['D']) < 1:
return (False, 'Niepoprawne dane - klucz: %s' % record)
day = str(var['D'])
if len(day) == 1:
day = '0' + day
varX += day
varX += '.'
if var['M'] == None:
varX += '*'
else:
try:
var['M'] = int(var['M'])
except:
return (False, 'Niepoprawne dane - klucz: %s' % record)
if int(var['M']) > 12 or int(var['M']) < 1:
return (False, 'Niepoprawne dane - klucz: %s' % record)
month = str(var['M'])
if len(month) == 1:
month = '0' + month
varX += month
varX += '.'
if var['Y'] == None:
varX += '*'
else:
try:
var['Y'] = int(var['Y'])
except:
return (False, 'Niepoprawne dane - klucz: %s' % record)
if int(var['Y']) == 0:
return (False, 'Niepoprawne dane - klucz: %s' % record)
varX += str(var['Y'])
varX += ' '
if var['h'] == None:
varX += '*'
else:
try:
var['h'] = int(var['h'])
except:
return (False, 'Niepoprawne dane - klucz: %s' % record)
if int(var['h']) > 23 or int(var['h']) < 1:
return (False, 'Niepoprawne dane - klucz: %s' % record)
hour = str(var['h'])
if len(hour) == 1:
hour = '0' + hour
varX += hour
varX += ':'
if var['m'] == None:
varX += '*'
else:
try:
var['m'] = int(var['m'])
except:
return (False, 'Niepoprawne dane - klucz: %s' % record)
if int(var['m']) > 59 or int(var['m']) < 0:
return (False, 'Niepoprawne dane - klucz: %s' % record)
minute = str(var['m'])
if len(minute) == 1:
minute = '0' + minute
varX += minute
varX += ':'
if var['s'] == None:
varX += '*'
else:
try:
var['s'] = int(var['s'])
except:
return (False, 'Niepoprawne dane - klucz: %s' % record)
if int(var['s']) > 59 or int(var['s']) < 0:
return (False, 'Niepoprawne dane - klucz: %s' % record)
seconds = str(var['s'])
if len(seconds) == 1:
seconds = '0' + seconds
varX += seconds
var = varX
else:
varToReturn = {}
var = var.split(' ')
try:
var[0] = var[0].split('.')
var[1] = var[1].split(':')
var = var[0] + var[1]
dateLabels = ['D', 'M', 'Y', 'h', 'm', 's']
if len(var) != len(dateLabels):
return (False, 'Niepoprawne dane - klucz: %s' % record)
index = 0
for x in var:
x = x.strip('\r')
if x != '*':
try:
x = int(x)
except:
return (False, 'Niepoprawne dane - klucz: %s' % record)
varToReturn[dateLabels[index]] = int(x)
else:
varToReturn[dateLabels[index]] = None
index += 1
except:
return (False, 'Niepoprawne dane - klucz: %s' % record)
var = varToReturn
return [True, var]
def __checkMSAs(self, write, record, var):
if write:
varX = []
while var.count(''):
var.remove('')
for x in var:
check = x.split(' | ')
if len(check) != 3:
return (False, 'Niepoprawne dane - klucz: %s' % record)
try:
checkX = int(check[1])
except:
return (False, 'Niepoprawne dane - klucz: %s' % record)
if not (check[2] == '0' or check[2] == '1'):
return (False, 'Niepoprawne dane - klucz: %s' % record)
x = x.replace(' | ', ', ')
x = '[' + x + ']'
varX.append(x)
var = '|'.join(varX)
else:
var = var.split('|')
var = [x.strip('\r').strip('[').strip(']').split(', ') for x in var]
newVar = []
for x in var:
if len(x) != 3:
return (False, 'Niepoprawne dane - klucz: %s' % record)
try:
if x[2] == '0':
x[2] = False
elif x[2] == '1':
x[2] = True
else:
return (False, 'Niepoprawne dane - klucz: %s' % record)
x = [x[0], int(x[1]), x[2]]
newVar.append(x)
except:
return (False, 'Niepoprawne dane - klucz: %s' % record)
var = newVar
return [True, var]
def __checkSc(self, record, var):
var = var.strip('\r')
if var not in VAR.allowedCoding:
return [False, 'Niepoprawne dane - klucz: %s' % record]
return [True, var]
def __checkB(self, write, record, var):
if write:
if var:
var = '1'
else:
var = '0'
else:
try:
var = int(var)
except:
return [False, 'Niepoprawne dane - klucz: %s' % record]
if var != 0 and var != 1:
return [False, 'Niepoprawne dane - klucz: %s' % record]
else:
if var == 0:
var = False
else:
var = True
return [True, var]
CFG = CFG()
# -------------------- # Ładowanie pliku konfiguracyjnego stylu 'style.cfg' # ------------------- #
class GUI:
# Odczytywanie pojedyńczej zmiennej z pliku
def R(self, record):
self.__checkIfFileExist()
content = {}
for x in CD.open((str(VAR.appdataPath) + '\Generator CSV\style.cfg'), 'r', 'utf-8').read().strip('\r').split('\n'):
x = x.split(' = ')
try:
name = x[0].split('(')[0]
var = x[1]
type = x[0].split('(')[1].strip(')')
content[name] = [var.strip('\r'), type]
except:
continue
checkingOutput = self.__checkIfRecordExist(content, record)
if not checkingOutput[0]:
MSG('E0005', True, checkingOutput[1])
var = content[record]
if var[1] == 'I':
# Integer
checkingOutput = self.__checkI(record, var[0])
if checkingOutput[0]:
return checkingOutput[1]
else:
MSG('E0005', True, checkingOutput[1])
elif var[1] == 'B':
# Boolean
checkingOutput = self.__checkB(record, var[0])
if checkingOutput[0]:
return checkingOutput[1]
else:
MSG('E0005', True, checkingOutput[1])
elif var[1] == 'C':
# Color
checkingOutput = self.__checkC(record, var[0])
if checkingOutput[0]:
return checkingOutput[1]
else:
MSG('E0005', True, checkingOutput[1])
elif var[1] == 'P':
# Path
checkingOutput = self.__checkP(record, var[0])
if checkingOutput[0]:
return checkingOutput[1]
else:
MSG('E0005', True, checkingOutput[1])
elif (var[1])[:2] == 'FA':
# From Array
checkingOutput = self.__checkFA(record, var[0], (var[1])[2:])
if checkingOutput[0]:
return checkingOutput[1]
else:
MSG('E0005', True, checkingOutput[1])
elif var[1] == 'F':
# Font
checkingOutput = self.__checkF(record, var[0])
if checkingOutput[0]:
return checkingOutput[1]
else:
MSG('E0005', True, checkingOutput[1])
else:
MSG('E0005', True, 'Nie można rozpoznać typu klucza %s' % record)
# Funkcje sprawdzające istnienie
def __checkIfFileExist(self):
try:
checkAppdata()
open(str(VAR.appdataPath) + '\Generator CSV\style.cfg')
except Exception as exceptInfo:
checkAppdata()
def __checkIfRecordExist(self, content, record):
if record in list(content.keys()):
return [True]
else:
return [False, 'Brak danych - klucz: %s' % record]
# Funkcje sprawdzające poprawność rekordu
def __checkI(self, record, var):
try:
var = int(var)
except:
return (False, 'Niepoprawne dane - klucz: %s' % record)
return [True, var]
def __checkB(self, record, var):
try:
var = int(var)
except:
return [False, 'Niepoprawne dane - klucz: %s' % record]
if var != 0 and var != 1:
return [False, 'Niepoprawne dane - klucz: %s' % record]
else:
if var == 0:
var = False
else:
var = True
return [True, var]
def __checkC(self, record, var):
if len(var) != 7:
return [False, 'Niepoprawne dane - klucz: %s' % record]
else:
if var[0] != '#':
return [False, 'Niepoprawne dane - klucz: %s' % record]
return [True, var]
def __checkP(self, record, var):
try:
check = open(var)
except:
return [False, 'Niepoprawne dane - klucz: %s' % record]
return [True, var]
def __checkFA(self, record, var, array):
arrays = {
'position' : ['nw', 'ne', 'en', 'es', 'se', 'sw', 'ws', 'wn'],
'anchor' : ['center', 'nw', 'n', 'ne', 'w', 'e', 'sw', 's', 'se'],
'relief' : ['flat', 'raised', 'sunken', 'groove', 'ridge'],
'fill' : ['x', 'y', 'both'],
'activestyle' : ['dotbox', 'none', 'underline']
}
if var not in arrays[array]:
return [False, 'Niepoprawne dane - klucz: %s' % record]
return [True, var]
def __checkF(self, record, var):
try:
check = int(var.split(';')[1])
except:
return [False, 'Niepoprawne dane - klucz: %s' % record]
else:
var = (var.split(';')[0], int(var.split(';')[1]))
return [True, var]
GUI = GUI()
# ------------------------------- # Zarządzanie plikami formatu # ------------------------------- #
class FMT:
# Odczytywanie pojedyńczej zmiennej z pliku
def R(self, preset, record):
self.__checkIfFolderExist()
if preset in self.getList():
path = str(VAR.appdataPath) + '/Generator CSV/format-presets/%s.fmt' % preset
file = CD.open(path, 'r', 'utf-8').read().strip('\r').split('\n')
content = {}
for x in file:
x = x.split(' = ')
try:
name = x[0].split('(')[0]
var = x[1]
type = x[0].split('(')[1].strip(')')
content[name] = [var, type]
except:
continue
checkingOutput = self.__checkIfRecordExist(content, record)
if not checkingOutput[0]:
MSG('E0006', False, checkingOutput[1])
var = content[record]
if var[1] == 'B':
# Boolean
checkingOutput = self.__checkB(False, record, var[0])
if checkingOutput[0]:
return checkingOutput[1]
else:
MSG('E0006', False, checkingOutput[1])
elif var[1] == 'Ss':
# String - separator
checkingOutput = self.__checkSs(record, var[0])
if checkingOutput[0]:
return checkingOutput[1]
else:
MSG('E0006', False, checkingOutput[1])
elif var[1] == 'As':
# Array - separator
checkingOutput = self.__checkAs(False, record, var[0])
if checkingOutput[0]:
return checkingOutput[1]
else:
MSG('E0006', False, checkingOutput[1])
elif var[1] == 'I':
# Integer
checkingOutput = self.__checkI(False, record, var[0])
if checkingOutput[0]:
return checkingOutput[1]
else:
MSG('E0006', False, checkingOutput[1])
elif var[1] == 'Sc':
# Integer
checkingOutput = self.__checkSc(record, var[0])
if checkingOutput[0]:
return checkingOutput[1]
else:
MSG('E0006', False, checkingOutput[1])
else:
MSG('E0006', True, 'Nie można rozpoznać typu klucza %s' % record)
else:
content = {
"student" : True,
"personSeparator" : '',
"rowSeparator" : '',
"dataSeparators" : [],
"loginRow" : 0,
"loginPositionInRow" : 0,
"fnameRow" : 0,
"fnamePositionInRow" : 0,
"lnameRow" : 0,
"lnamePositionInRow" : 0,
"schoolRow" : 0,
"schoolPositionInRow" : 0,
"classRow" : 0,
"classPositionInRow" : 0,
"inputCoding" : 'utf-8',
}
var = content[record]
return var
# Zapisywanie zmian w pliku
def W(self, preset, changes):
self.__checkIfFolderExist()
if preset in self.getList():
file = CD.open(str(VAR.appdataPath) + '/Generator CSV/format-presets/%s.fmt' % preset, 'r', 'utf-8').read().split('\n')
if file[-1] == '':
file = file[:-1]
content = {}
for x in file:
x = x.split(' = ')
try:
name = x[0].split('(')[0]
var = x[1]
type = x[0].split('(')[1].strip(')')
content[name] = [var, type]
except Exception as exceptInfo:
MSG('E0006', False, exceptInfo)
else:
content = {
"student" : ['1', 'B'],
"personSeparator" : ['', 'Ss'],
"rowSeparator" : ['', 'Ss'],
"dataSeparators" : ['', 'As'],
"loginRow" : ['0', 'I'],
"loginPositionInRow" : ['0', 'I'],
"fnameRow" : ['0', 'I'],
"fnamePositionInRow" : ['0', 'I'],
"lnameRow" : ['0', 'I'],
"lnamePositionInRow" : ['0', 'I'],
"schoolRow" : ['0', 'I'],
"schoolPositionInRow" : ['0', 'I'],
"classRow" : ['0', 'I'],
"classPositionInRow" : ['0', 'I'],
"inputCoding" : ['utf-8', 'Sc']
}
for x in changes:
name = x
var = changes[name]
type = (content[name])[1]
if type == 'B':
checkingOutput = self.__checkB(True, name, var)
if checkingOutput[0]:
var = checkingOutput[1]
else:
MSG('E0006', False, checkingOutput[1])
return False
elif type == 'Ss':
checkingOutput = self.__checkSs(name, var)
if checkingOutput[0]:
var = checkingOutput[1]
else:
MSG('E0006', False, checkingOutput[1])
return False
elif type == 'As':
checkingOutput = self.__checkAs(True, name, var)
if checkingOutput[0]:
var = checkingOutput[1]
else:
MSG('E0006', False, checkingOutput[1])
return False
elif type == 'I':
# Integer
checkingOutput = self.__checkI(True, name, var)
if checkingOutput[0]:
var = checkingOutput[1]
else:
MSG('E0006', False, checkingOutput[1])
return False
elif type == 'Sc':
checkingOutput = self.__checkSc(name, var)
if checkingOutput[0]:
var = checkingOutput[1]
else:
MSG('E0006', False, checkingOutput[1])
return False
else:
MSG('E0006', False, 'Nie można rozpoznać typu klucza %s' % name)
return False
content[name] = [var, type]
try:
with CD.open(str(VAR.appdataPath) + '/Generator CSV/format-presets/%s.fmt' % preset, 'w', 'utf-8') as file:
for x in content:
file.write('%s(%s) = %s\n' % (x, (content[x])[1], (content[x][0])))
except Exception as exceptInfo:
MSG('E0017', False, exceptInfo)
return False
return True
# Funkcja zwracająca listę presetów
def getList(self):
self.__checkIfFolderExist()
filesList = OS.listdir(str(VAR.appdataPath) + '/Generator CSV/format-presets')
formatPresetsList = []
for x in filesList:
if x[-4:] == '.fmt':
formatPresetsList.append(x[:-4])
else:
continue
return formatPresetsList
# Funkcje sprawdzające istnienie
def __checkIfFolderExist(self):
checkAppdata()
def __checkIfRecordExist(self, content, record):
if record in list(content.keys()):
return [True]
else:
return [False, 'Brak danych - klucz: %s' % record]
# Funkcje sprawdzające poprawność rekordu
def __checkB(self, write, record, var):
if write:
if var == True:
var = '1'
elif var == False:
var = '0'
else:
return [False, 'Niepoprawne dane - klucz: %s' % record]
else:
try:
var = int(var)
except:
return [False, 'Niepoprawne dane - klucz: %s' % record]
if var != 0 and var != 1:
return [False, 'Niepoprawne dane - klucz: %s' % record]
else:
if var == 0:
var = False
else:
var = True
return [True, var]
def __checkSs(self, record, var):
check = var
check = check.strip('<enter>')
for x in check:
if x not in VAR.allowedCharactersInSeparator:
return [False, 'Niepoprawne dane - klucz: %s' % record]
return [True, var]
def __checkAs(self, write, record, var):
if write:
check = var
for x in check:
x = x.strip('<enter>')
for y in x:
if y not in VAR.allowedCharactersInSeparator:
return [False, 'Niepoprawne dane - klucz: %s' % record]
var = str(var)
else:
new_contentVar = (var)[2:-2].split("', '")
check = new_contentVar
for x in check:
x = x.strip('<enter>')
for y in x:
if y not in VAR.allowedCharactersInSeparator:
return [False, 'Niepoprawne dane - klucz: %s' % record]
var = new_contentVar
return [True, var]
def __checkI(self, write, record, var):
if write:
try:
var = int(var)
except:
return (False, 'Niepoprawne dane - klucz: %s' % record)
var = str(var)
else:
try:
var = int(var)
except:
return (False, 'Niepoprawne dane - klucz: %s' % record)
return [True, var]
def __checkSc(self, record, var):
if var not in VAR.allowedCoding:
return [False, 'Niepoprawne dane - klucz: %s' % record]
return [True, var]
FMT = FMT()
# ---------------------------------- # Przetwarzanie plików # ----------------------------------- #