-
Notifications
You must be signed in to change notification settings - Fork 4
/
12283_Buderus-alternativer_Waermeerzeuger.py
973 lines (841 loc) · 33.4 KB
/
12283_Buderus-alternativer_Waermeerzeuger.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
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
# -*# -*- coding: iso8859-1 -*-
## -----------------------------------------------------
## Logik-Generator V1.5
## -----------------------------------------------------
## Copyright © 2012, knx-user-forum e.V, All rights reserved.
##
## This program is free software; you can redistribute it and/or modify it under the terms
## of the GNU General Public License as published by the Free Software Foundation; either
## version 3 of the License, or (at your option) any later version.
##
## This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
## without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
## See the GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License along with this program;
## if not, see <http://www.gnu.de/documents/gpl-3.0.de.html>.
### USAGE: python.exe LogikGenerator.py [--debug --en1=34 --en2="TEST"]
import sys
import codecs
import os
import base64
import marshal
import re
try:
from hashlib import md5
except ImportError:
import md5 as md5old
md5 = lambda x='': md5old.md5(x)
import inspect
import time
import socket
import tempfile
import zlib
import zipfile
##############
### Config ###
##############
## Name der Logik
LOGIKNAME="Buderus-alternativer_Waermeerzeuger"
## Logik ID
LOGIKID="12283"
## Ordner im GLE
LOGIKCAT="Buderus"
## Beschreibung
LOGIKDESC="""
"""
VERSION="V0.20"
## Bedingung wann die kompilierte Zeile ausgeführt werden soll
BEDINGUNG="EI"
## Formel die in den Zeitspeicher geschrieben werden soll
ZEITFORMEL=""
## Nummer des zu verwenden Zeitspeichers
ZEITSPEICHER="0"
## AUF True setzen um Binären Code zu erstellen
doByteCode=False
#doByteCode=True
## Base64Code über SN[x] cachen
doCache=False
## Doku erstellen Ja/Nein
doDoku=True
debug=False
livedebug=False
showList=False
#############################
########## Logik ############
#############################
LOGIK = '''# -*- coding: iso8859-1 -*-
## -----------------------------------------------------
## '''+ LOGIKNAME +''' ### '''+VERSION+'''
##
## erstellt am: '''+time.strftime("%Y-%m-%d %H:%M")+'''
## -----------------------------------------------------
## Copyright © '''+ time.strftime("%Y") + ''', knx-user-forum e.V, All rights reserved.
##
## This program is free software; you can redistribute it and/or modify it under the terms
## of the GNU General Public License as published by the Free Software Foundation; either
## version 3 of the License, or (at your option) any later version.
##
## This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
## without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
## See the GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License along with this program;
## if not, see <http://www.gnu.de/documents/gpl-3.0.de.html>.
## -- ''' +re.sub("\n","\n## -- ",LOGIKDESC)+ '''
#5000|"Text"|Remanent(1/0)|Anz.Eingänge|.n.|Anzahl Ausgänge|.n.|.n.
#5001|Anzahl Eingänge|Ausgänge|Offset|Speicher|Berechnung bei Start
#5002|Index Eingang|Default Wert|0=numerisch 1=alphanummerisch
#5003|Speicher|Initwert|Remanent
#5004|ausgang|Initwert|runden binär (0/1)|typ (1-send/2-sbc)|0=numerisch 1=alphanummerisch
#5012|abbruch bei bed. (0/1)|bedingung|formel|zeit|pin-ausgang|pin-offset|pin-speicher|pin-neg.ausgang
5000|"'''+LOGIKCAT+'''\\'''+LOGIKNAME+'''"|0|2|"E1 Payload IN"|"E2 ECOCAN Bus"|24|"A1 Payload OUT"|"A2 SystemLog"|"A3 Vorlauf IST (FWV)"|"A4 Rücklauf IST (FWR)"|"A5 Abgas Byte2 (FWG)"|"A6 Abgas Byte1 (FWG)"|"A7 Anl. Rücklauf IST (FWG)"|"A8 Puffer oben IST (FPO)"|"A9 Puffer mitte IST (FPM)"|"A10 Puffer unten IST (FPU)"|"A11 Vorlauf SOLL"|"A12 Sollwert Vorlaufregelung"|"A13 Sollwert Rücklaufregelgung"|"A14 Soll Puffer"|"A15 Soll Anlage"|"A16 Brenner AN"|"A17 SWE AUF"|"A18 Pumpe WE"|"A19 ON/Notkühlung"|"A20 Öl/Gaskessel gesperrt"|"A21 Stellglied SWR"|"A22 Betriebsstunden Byte3"|"A23 Betriebsstunden Byte2"|"A24 Betriebsstunden Byte1"|"'''+VERSION+'''"
5001|2|24|0|1|1
# EN[x]
5002|1|""|1 #* Payload IN
5002|2|1|0 #* ECOCAN Bus ID
# Speicher
5003|1||0 #* logic
#"A3 Vorlauf IST (FWV)"|
#"A4 Rücklauf IST (FWR)"|
#"A5 Abgas Byte2 (FWG)"|
#"A6 Abgas Byte1 (FWG)"|
#"A7 Anl. Rücklauf IST (FWG)"|
#"A8 Puffer oben IST (FPO)"|
#"A9 Puffer mitte IST (FPM)"|
#"A10 Puffer unten IST (FPU)"|
#"A11 Vorlauf SOLL"|
#"A12 Sollwert Vorlaufregelung"|
#"A13 Sollwert Rücklaufregelgung"|
#"A14 Soll Puffer"|
#"A15 Soll Anlage"|
#"A16 Brenner AN"|
#"A17 SWE AUF"|
#"A18 Pumpe WE"|
#"A19 ON/Notkühlung"|
#"A20 Öl/Gaskessel gesperrt"|
#"A21 Stellglied SWR"|
#"A22 Betriebsstunden Byte3"|
#"A23 Betriebsstunden Byte2"|
#"A24 Betriebsstunden Byte1"
# Ausgänge
#5004|ausgang|Initwert|runden binär (0/1)|typ (1-send/2-sbc)|0=numerisch 1=alphanummerisch
5004|1|""|0|1|1 #* Payload OUT
5004|2|""|0|1|1 #* SystemLog
5004|3|0|0|1|0 #* Vorlauf IST (FWV)
5004|4|0|0|1|0 #* Rücklauf IST (FWR)
5004|5|0|0|1|0 #* Abgas Byte2 (FWG)
5004|6|0|0|1|0 #* Abgas Byte1 (FWG)
5004|7|0|0|1|0 #* Anl. Rücklauf IST (FWG)
5004|8|0|0|1|0 #* Puffer oben IST (FPO)
5004|9|0|0|1|0 #* Puffer mitte IST (FPM)
5004|10|0|0|1|0 #* Puffer unten IST (FPU)
5004|11|0|0|1|0 #* Vorlauf SOLL
5004|12|0|0|1|0 #* Sollwert Vorlaufregelung
5004|13|0|0|1|0 #* Sollwert Rücklaufregelgung
5004|14|0|0|1|0 #* Soll Puffer
5004|15|0|0|1|0 #* Soll Anlage
5004|16|0|1|1|0 #* Brenner AN.
5004|17|0|1|1|0 #* SWE AUF
5004|18|0|1|1|0 #* Pumpe WE
5004|19|0|1|1|0 #* ON/Notkühlung
5004|20|0|1|1|0 #* Öl/Gaskessel gesperrt
5004|21|0|1|1|0 #* Stellglied SWR
5004|22|0|0|1|0 #* Betriebsstunden Byte3
5004|23|0|0|1|0 #* Betriebsstunden Byte2
5004|24|0|0|1|0 #* Betriebsstunden Byte1
#################################################
'''
#####################
#### Python Code ####
#####################
code=[]
code.append([3,"EI",r"""
if EI == 1:
class buderus_alternativewaerme(object):
def __init__(self,localvars):
import re
self.logik = localvars["pItem"]
self.MC = self.logik.MC
EN = localvars['EN']
self.localvars = localvars
self.current_status = [ ]
self.status_length = 42
self.bus_id = "%.2X" % int(EN[2])
self.id = "Alternativer Wärmeerzeuger"
##keine Info über einstellbare Parameter des FM444
##self.send_prefix = "B0%.2x24" % (int(EN[2]))
self.payload_regex = re.compile( "(?P<mode>AB|A7)%s9F(?P<offset>[0-9A-F]{2})(?P<data>(?:[0-9A-F]{2})+)" % ( self.bus_id ) )
##
##Buderus FM444 -> Beschreibung aus Bildschirmkopie übernommen
## Offset Beschreibung
## 0 - Vorlauf IST (FWV)
## 5 - Rücklauf IST (FWR)
## 36 - Abgas Byte2 (FWG)
## 37 - Abgas Byte1 (FWG)
## 1 - Anl. Rücklauf IST (FWG)
## 2 - Puffer oben IST (FPO)
## 4 - Puffer mitte IST (FPM)
## 3 - Puffer unten IST (FPU)
## 23- Vorlauf SOLL
## 6- Sollwert Vorlaufregelung
## 34- Sollwert Rücklaufregelgung
## 7 - Soll Puffer
## 17- Soll Anlage
## 27 Bit1 - Brenner AN
## 21 Bit2 - SWE AUF
## 27 Bit4 - Pumpe WE
## 21 Bit3 - ON/Notkühlung
## 21 Bit6 - Öl/Gaskessel gesperrt
## 38 - Stellglied SWR
## 12 - Betriebsstunden Byte3
## 13 - Betriebsstunden Byte2
## 14- Betriebsstunden Byte1
##
##
self.output_functions = [
(lambda x: [float(x)],[3]),
(lambda x: [float(x)],[7]),
(lambda x: [float(x)],[8]),
(lambda x: [x],[10]),
(lambda x: [x],[9]),
(lambda x: [x],[4]),
(lambda x: [x],[12]),
(lambda x: [x],[14]),
(lambda x: [x],[0]),
(lambda x: [x],[0]),
(lambda x: [x],[0]),
(lambda x: [x],[0]),
(lambda x: [x],[22]),
(lambda x: [x],[23]),
(lambda x: [x],[24]),
(lambda x: [x],[0]),
(lambda x: [x],[0]),
(lambda x: [x],[0]),
(lambda x: [x],[0]),
(lambda x: [x],[0]),
(lambda x: [x],[0]),
(self.to_bits,[0,17,19,0,0,20,0,0]),
(lambda x: [x],[0]),
(lambda x: [x],[11]),
(lambda x: [x],[0]),
(lambda x: [x],[0]),
(lambda x: [x],[0]),
(self.to_bits,[16,0,0,18,0,0,0,0]),
(lambda x: [x],[0]),
(lambda x: [x],[0]),
(lambda x: [x],[0]),
(lambda x: [x],[0]),
(lambda x: [x],[0]),
(lambda x: [x],[0]),
(lambda x: [x],[0]),
(lambda x: [x],[0]),
(lambda x: [x],[5]),
(lambda x: [x],[6]),
(lambda x: [x],[21]),
(lambda x: [x],[0]),
(lambda x: [x],[0]),
(lambda x: [x],[0]),
(lambda x: [x],[0]),
]
self.get_monitor_data()
def get_monitor_data(self):
self.send_to_output(1,"A2%s" % self.bus_id)
def debug(self,msg):
#self.log(msg,severity='debug')
print "DEBUG: %r" % (msg,)
def send_to_output(self,out,msg,sbc=False):
if sbc and msg == self.localvars["AN"][out] and not self.localvars["EI"] == 1:
return
self.localvars["AN"][out] = msg
self.localvars["AC"][out] = 1
def log(self,msg,severity='info'):
import time
try:
from hashlib import md5
except ImportError:
import md5 as md5old
md5 = lambda x,md5old=md5old: md5old.md5(x)
_msg_uid = md5( "%s%s" % ( self.id, time.time() ) ).hexdigest()
_msg = '<log><id>%s</id><facility>buderus</facility><severity>%s</severity><message>%s</message></log>' % (_msg_uid,severity,msg)
self.send_to_output( 2, _msg )
def parse(self,offset, data):
offset = int(offset,16)
#if offset > len(self.current_status):
# self.debug("Daten offset größer als vorhandene Daten")
# return
_len = len(data)
#self.current_status = self.current_status[:offset] + [ _x for _x in data ] + self.current_status[offset + _len:]
for _x in xrange(_len):
_offset = offset + _x
_func, _out = self.output_functions[_offset]
_ret = _func( ord(data[_x]) )
for _xx in xrange(len(_ret)):
self.send_to_output(_out[_xx] , _ret[_xx], sbc=True)
#self.debug("Zustand: %r" % (self.current_status,) )
def to_bits(self,byte):
return [(byte >> i) & 1 for i in xrange(8)]
def incomming(self,msg, localvars):
import binascii
self.localvars = localvars
self.debug("incomming message %r" % msg)
msg = msg.replace(' ','')
_data = self.payload_regex.search(msg)
if _data:
self.parse( _data.group("offset"), binascii.unhexlify(_data.group("data")) )
def set_value(self, val, offset, byte,localvars, min=-99999, max=99999, resolution=1):
self.localvars = localvars
if val < min or val > max:
self.log("ungültiger Wert %r (%s-%s)" % (val,min,max) )
_val = val * resolution
if _val < 0:
(_val * -1) + 128
_6bytes = [ "65","65","65","65","65","65" ]
_6bytes[byte - 1] = "%.2x" % round(_val)
self.send_to_output(1,"%s%s%s" % (self.send_prefix, offset.upper(), "".join(_6bytes).upper() ) )
"""])
debugcode = """
"""
postlogik=[0,"",r"""
5012|0|"EI"|"buderus_alternativewaerme(locals())"|""|0|0|1|0
5012|0|"EC[1]"|"SN[1].incomming(EN[1],locals())"|""|0|0|0|0
"""]
####################################################################################################################################################
###################################################
############## Interne Funktionen #################
###################################################
LGVersion="1.5"
livehost=""
liveport=0
doSend=False
noexec=False
nosource=False
doZip=False
for option in sys.argv:
if option.find("--new")==0:
try:
LOGIKID=int(option.split("=")[1].split(":")[0])
LOGIKNAME=option.split("=")[1].split(":")[1]
try:
LOGIKCAT=option.split("=")[1].split(":")[2]
except:
pass
except:
print "--new=id:name[:cat]"
raise
sys.exit(1)
if LOGIKID >99999 or LOGIKID == 0:
print "invalid Logik-ID"
sys.exit(1)
if LOGIKID <10000:
LOGIKID+=10000
LOGIKID="%05d" % LOGIKID
f=open(inspect.currentframe().f_code.co_filename,'r')
data=""
while True:
line = f.readline()
if line.find("LOGIKID=") == 0:
line = "LOGIKID=\""+LOGIKID+"\"\n"
if line.find("LOGIKNAME=") == 0:
line = "LOGIKNAME=\""+LOGIKNAME+"\"\n"
if line.find("LOGIKCAT=") == 0:
line = "LOGIKCAT=\""+LOGIKCAT+"\"\n"
data += line
if not line:
break
f.close()
open(str(LOGIKID)+"_"+LOGIKNAME+".py",'w').write(data)
sys.exit(0)
if option=="--list":
showList=True
if option=="--debug":
debug=True
if option=="--noexec":
noexec=True
if option=="--nosource":
nosource=True
if option=="--zip":
doZip=True
if option=="--nocache":
doCache=False
if option.find("--live")==0:
livedebug=True
debug=True
doByteCode=False
doCache=True
try:
livehost=option.split("=")[1].split(":")[0]
liveport=int(option.split("=")[1].split(":")[1])
except:
print "--live=host:port"
if option.find("--send")==0:
doSend=True
try:
livehost=option.split("=")[1].split(":")[0]
liveport=int(option.split("=")[1].split(":")[1])
except:
print "--send=host:port"
print "HOST: "+livehost+" Port:" +str(liveport)
### DEBUG ####
EI=True
EA=[]
EC=[]
EN=[]
SA=[]
SC=[]
SN=[]
AA=[]
AC=[]
AN=[]
OC=[]
ON=[]
if debug or doSend:
EA.append(0)
EC.append(False)
EN.append(0)
AA.append(0)
AC.append(False)
AN.append(0)
SA.append(0)
SC.append(False)
SN.append(0)
ON.append(0)
OC.append(False)
## Initialisieren ##
for logikLine in LOGIK.split("\n"):
if logikLine.find("5001") == 0:
for i in (range(0,int(logikLine.split("|")[3]))):
ON.append(0)
OC.append(False)
if logikLine.find("5002") == 0:
EN.append(logikLine.split("|")[2].replace('\x22',''))
EA.append(logikLine.split("|")[2])
EC.append(False)
if logikLine.find("5003") == 0:
if logikLine.split("|")[3][0] == "1":
SN.append(re.sub('"','',logikLine.split("|")[2]))
else:
try:
SN.append(int(logikLine.split("|")[2]))
except:
pass
SN.append(logikLine.split("|")[2])
SA.append(logikLine.split("|")[2])
SC.append(False)
if logikLine.find("5004") == 0:
AN.append(logikLine.split("|")[2])
AA.append(logikLine.split("|")[2])
AC.append(False)
def bool2Name(b):
if int(b)==1:
return "Ja"
else:
return "Nein"
def sbc2Name(b):
if int(b)==1:
return "Send"
else:
return "Send By Change"
def addInputDoku(num,init,desc):
return '<tr><td class="log_e1">Eingang '+str(num)+'</td><td class="log_e2">'+str(init)+'</td><td class="log_e3">'+str(desc)+'</td></tr>\n'
def addOutputDoku(num,sbc,init,desc):
return '<tr><td class="log_a1">Ausgang '+str(num)+' ('+sbc2Name(sbc)+')</td><td class="log_a2">'+str(init)+'</td><td class="log_a3">'+str(desc)+'</td></tr>\n'
LOGIKINHTM=""
LOGIKOUTHTM=""
i=0
LEXPDEFINELINE=LHSDEFINELINE=LINDEFINELINE=LSPDEFINELINE=LOUTDEFINELINE=0
for logikLine in LOGIK.split("\n"):
if logikLine.find("5000") == 0:
LEXPDEFINELINE=i
LOGIKREMANT=bool2Name(logikLine.split("|")[2])
LOGIKDEF=logikLine
if logikLine.find("5001") == 0:
LHSDEFINELINE=i
ANZIN=int(logikLine.split("|")[1])
ANZOUT=int(logikLine.split("|")[2])
ANZSP=int(logikLine.split("|")[4])
CALCSTARTBOOL=logikLine.split("|")[5]
CALCSTART=bool2Name(CALCSTARTBOOL)
if logikLine.find("5002") == 0:
LINDEFINELINE=i
desc=re.sub('"','',LOGIKDEF.split("|")[3+int(logikLine.split("|")[1])])
if logikLine.find("#*") >0:
desc=logikLine.split("#*")[1]
LOGIKINHTM+=addInputDoku(logikLine.split("|")[1],logikLine.split("|")[2],desc)
if logikLine.find("5003") == 0 or logikLine.find("# Speicher") == 0:
LSPDEFINELINE=i
if logikLine.find("5004") == 0:
LOUTDEFINELINE=i
desc=re.sub('"','',LOGIKDEF.split("|")[(4+ANZIN+int(logikLine.split("|")[1]))])
if logikLine.find("#*") >0:
desc=logikLine.split("#*")[1]
LOGIKOUTHTM+=addOutputDoku(logikLine.split("|")[1],logikLine.split("|")[4],logikLine.split("|")[2],desc)
i=i+1
if livedebug:
EC.append(0)
EN.append("")
sendVars=""
for option in sys.argv:
if option.find("--sa") == 0:
SA[int(option[4:option.find("=")])]=option.split("=")[1]
sendVars+="SA["+str(int(option[4:option.find("=")]))+"]="+option.split("=")[1]+"\n"
if option.find("--sn") == 0:
SN[int(option[4:option.find("=")])]=option.split("=")[1]
SC[int(option[4:option.find("=")])]=True
sendVars+="SN["+str(int(option[4:option.find("=")]))+"]="+option.split("=")[1]+"\n"
sendVars+="SC["+str(int(option[4:option.find("=")]))+"]=1\n"
if option.find("--aa") == 0:
AA[int(option[4:option.find("=")])]=option.split("=")[1]
sendVars+="AA["+str(int(option[4:option.find("=")]))+"]="+option.split("=")[1]+"\n"
if option.find("--an") == 0:
AN[int(option[4:option.find("=")])]=option.split("=")[1]
AC[int(option[4:option.find("=")])]=True
sendVars+="AN["+str(int(option[4:option.find("=")]))+"]="+option.split("=")[1:]+"\n"
sendVars+="AC["+str(int(option[4:option.find("=")]))+"]=1\n"
if option.find("--ea") == 0:
EA[int(option[4:option.find("=")])]=option.split("=")[1]
sendVars+="EA["+str(int(option[4:option.find("=")]))+"]="+option.split("=")[1:]+"\n"
if option.find("--en") == 0:
EN[int(option[4:option.find("=")])]="".join(option.split("=",1)[1])
EC[int(option[4:option.find("=")])]=True
sendVars+="EN["+str(int(option[4:option.find("=")]))+"]="+"".join(option.split("=")[1:])+"\n"
sendVars+="EC["+str(int(option[4:option.find("=")]))+"]=1\n"
if option.find("--ec") == 0:
# EC[int(option[4:option.find("=")])]=int(option.split("=")[1])
sendVars+="EC["+str(int(option[4:option.find("=")]))+"]="+option.split("=")[1]+"\n"
print sendVars
if option.find("--sc") == 0:
# EC[int(option[4:option.find("=")])]=int(option.split("=")[1])
sendVars+="SC["+str(int(option[4:option.find("=")]))+"]="+option.split("=")[1]+"\n"
print sendVars
if option.find("--on") == 0:
ON[int(option[4:option.find("=")])]=option.split("=")[1]
sendVars+="ON["+str(int(option[4:option.find("=")]))+"]="+option.split("=")[1]+"\n"
if option.find("--oc") == 0:
OC[int(option[4:option.find("=")])]=True
sendVars+="OC["+str(int(option[4:option.find("=")]))+"]=1\n"
if option.find("--ei") == 0:
EI=(int(option.split("=")[1])==1)
sendVars+="EI=1\n"
if option.find("--run") == 0:
sendVars+="eval(SN["+str(ANZSP+1)+"])\n"
def symbolize(LOGIK,code):
symbols = {}
for i in re.findall(r"(?m)^500([234])[|]([0-9]{1,}).*[@][@](.*)\s", LOGIK):
varName=((i[0]=='2') and 'E') or ((i[0]=='3') and 'S') or ((i[0]=='4') and 'A')
isunique=True
try:
type(symbols[i[2]])
sym=i[2]
isunique=False
except KeyError:
pass
## überprüft auch die alternativen Varianten
if re.match("[ACN]",i[2][-1:]):
try:
type(symbols[i[2][:-1]])
sym=i[2][:-1]
isunique=False
except KeyError:
pass
if isunique:
symbols[i[2]]=[varName,"["+i[1]+"]"]
else:
print "Variablen Kollision :" +repr(i[2])+" ist in " +repr(symbols[sym]) + " und "+ varName +"["+i[1]+"] vergeben"
sys.exit(1)
## Symbole wieder entfernen
LOGIK=re.sub("[@][@]\w+", "",LOGIK)
#im Code tauschen
for i in symbols.keys():
code=[code[0],re.sub("[\@][\@]"+i+"([ACN])",symbols[i][0]+"\\1"+symbols[i][1],code[1]),re.sub("[\@][\@]"+i+"([ACN])",symbols[i][0]+"\\1"+symbols[i][1],code[2])]
code=[code[0],re.sub("[\@][\@]"+i+"",symbols[i][0]+"N"+symbols[i][1],code[1]),re.sub("[\@][\@]"+i+"",symbols[i][0]+"N"+symbols[i][1],code[2])]
return LOGIK,code
NCODE=[]
commentcode=[]
for codepart in code:
NLOGIK,codepart=symbolize(LOGIK,codepart)
NCODE.append(codepart)
if codepart[0]==0 or codepart[0]==3:
commentcode.append("##########################\n###### Quelltext: ########\n##########################"+"\n##".join(codepart[2].split("\n"))+"\n")
#else:
# commentcode.append("#"+codepart[2].split("\n")[1]+"\n################################\n## Quelltext nicht Öffentlich ##\n################################")
NLOGIK,postlogik = symbolize(LOGIK,postlogik)
LOGIK=NLOGIK
code=NCODE
## Doku
doku = """
<html>
<head><title></title></head>
<link rel="stylesheet" href="style.css" type="text/css">
<body><div class="titel">"""+LOGIKNAME+"""</div>
<div class="nav"><A HREF="index.html">Hilfe</A> / <A HREF="logic.html">Logik</A> / """+LOGIKNAME+""" / <A HREF="#anker1">Eingänge</A> / <A HREF="#anker2">Ausgänge</A></div><div class="field0">Funktion</div>
<div class="field1">"""+re.sub("\r\n|\n","<br>",LOGIKDESC.decode("iso-8859-1").encode("ascii","xmlcharrefreplace") )+"""</div>
<div class="field0">Eingänge</div>
<a name="anker1" /><table border="1" width="612" class="log_e" cellpadding="0" cellspacing="0">
<COL WIDTH=203><COL WIDTH=132><COL WIDTH=275>
<tr><td>Eingang</td><td>Init</td><td>Beschreibung</td></tr>
"""+LOGIKINHTM.decode("iso-8859-1").encode("ascii","xmlcharrefreplace") +"""
</table>
<div class="field0">Ausgänge</div>
<a name="anker2" /><table border="1" width="612" class="log_a" cellpadding="0" cellspacing="0">
<COL WIDTH=203><COL WIDTH=132><COL WIDTH=275>
<tr><td>Ausgang</td><td>Init</td><td>Beschreibung</td></tr>
"""+LOGIKOUTHTM.decode("iso-8859-1").encode("ascii","xmlcharrefreplace") +"""
</table>
<div class="field0">Sonstiges</div>
<div class="field1">Neuberechnung beim Start: """+CALCSTART+"""<br />Baustein ist remanent: """+LOGIKREMANT+"""<br />Interne Bezeichnung: """+LOGIKID+"""<br />Der Baustein wird im "Experten" in der Kategorie '"""+LOGIKCAT+"""' einsortiert.<br /></div>
</body></html>
"""
if doDoku:
open("log"+LOGIKID+".html",'w').write(doku)
LIVECODE="""
if EN["""+str(ANZIN+1)+"""].find("<id"""+LOGIKID+""">")!=-1:
print "LivePort " +str(len(EN["""+str(ANZIN+1)+"""]))+ " Bytes erhalten"
try:
__LiveDebugCode_="".join(__import__('re').findall("(?i)<id"""+LOGIKID+""">(.*)</id"""+LOGIKID+""">",EN["""+str(ANZIN+1)+"""]))
print "LiveDebug-Daten ID:"""+LOGIKID+" Name:"+LOGIKNAME+""" "
except:
pass
print "Fehler Datenlesen"
__LiveDebugCode_=''
if __LiveDebugCode_.find("<inject>") != -1:
SN["""+str(ANZSP+2)+"""]+="".join(__import__('re').findall("(?i)<inject>([A-Za-z0-9\\x2B\\x3D\\x2F]+?)</inject>", __LiveDebugCode_))
print "Daten erhalten Buffer: " + str(len(SN["""+str(ANZSP+2)+"""]))
elif __LiveDebugCode_.find("<compile />") != -1:
print "Compile"
try:
__LiveBase64Code_=__import__('base64').decodestring(SN["""+str(ANZSP+2)+"""])
print __LiveBase64Code_
except:
pass
print "Base64 Error"
raise
try:
SN["""+str(ANZSP+1)+"""]=compile(__LiveBase64Code_,'<LiveDebug_"""+LOGIKID+""">','exec')
SC["""+str(ANZSP+1)+"""]=1
print "Running"
except:
pass
SN["""+str(ANZSP+1)+"""]="0"
SC["""+str(ANZSP+1)+"""]=1
print "Compile Error"
SN["""+str(ANZSP+2)+"""]=''
elif __LiveDebugCode_.find("<vars>") == 0:
print "Run Script"
try:
__LiveBase64Code_=__import__('base64').decodestring("".join(__import__('re').findall("(?i)<vars>([A-Za-z0-9\\x2B\\x3D\\x2F]+?)</vars>", __LiveDebugCode_)))
except:
pass
print "Script Base64 Error"
__LiveBase64Code_='0'
try:
eval(compile(__LiveBase64Code_,'<LiveDebugVars"""+LOGIKID+""">','exec'))
except:
print "Script Error"
print __LiveBase64Code_
print __import__('traceback').print_exception(__import__('sys').exc_info()[0],__import__('sys').exc_info()[1],__import__('sys').exc_info()[2])
raise
else:
print "unbekanntes TAG: " + repr(__LiveDebugCode_)
"""
#print LIVECODE
LOGIKFILE=LOGIKID+"_"+LOGIKNAME
## Debug Lines
NCODE=[]
if debug or livedebug:
for codepart in code:
codepart[2]=re.sub("###DEBUG###","",codepart[2])
NCODE.append(codepart)
code=NCODE
#print "\n".join(code)
def commentRemover(code):
## Komentar Remover
## thanks to gaston
codelist=code[2].split("\n")
removelist=[]
lencode=len(codelist)-1
for i in range(1,lencode):
codeline=codelist[lencode-i].lstrip(" \t")
if len(codeline)>0:
if codeline[0]=='#':
removelist.insert(0,"REMOVED: ("+str(lencode-i)+") "+codelist.pop(lencode-i))
else:
codelist.pop(lencode-i)
return ([code[0],code[1],"\n".join(codelist)],"\n".join(removelist))
Nremoved=""
NCode=[]
for codepart in code:
codepart, removed=commentRemover(codepart)
Nremoved=Nremoved+removed
NCode.append(codepart)
code=NCode
#print Nremoved
#print "\n\n"
#print code
if livedebug:
NCODE="\n##### VERSION #### %04d-%02d-%02d %02d:%02d:%02d ###\n" % time.localtime()[:6]
code.append(NCODE)
CODELENGTH=len(repr(code))
breakStart=str((int(CALCSTARTBOOL)-1)*-1)
LOGIKARRAY=LOGIK.split("\n")
lformel=""
def compileMe(code,doByteCode,BEDINGUNG=''):
if doByteCode:
data=compile(code,"<"+LOGIKFILE+">","exec")
data=marshal.dumps(data)
version = sys.version[:3]
formel = ""
if doByteCode==2:
formel += "5012|0|\""+BEDINGUNG+"\"|\"eval(__import__('marshal').loads(__import__('zlib').decompress(__import__('base64').decodestring('"+re.sub("\n","",base64.encodestring(zlib.compress(data,6)))+"'))))\"|\""+ZEITFORMEL+"\"|0|"+ZEITSPEICHER+"|0|0"
else:
formel += "5012|0|\""+BEDINGUNG+"\"|\"eval(__import__('marshal').loads(__import__('base64').decodestring('"+re.sub("\n","",base64.encodestring(data))+"')))\"|\""+ZEITFORMEL+"\"|0|"+ZEITSPEICHER+"|0|0"
formel+="\n"
else:
if doCache:
LOGIKDEFARRAY=LOGIKARRAY[LHSDEFINELINE].split("|")
if livedebug:
LOGIKDEFARRAY[4]=str(ANZSP+2)
else:
LOGIKDEFARRAY[4]=str(ANZSP+1)
LOGIKARRAY[LHSDEFINELINE]="|".join(LOGIKDEFARRAY)
LOGIKARRAY[LSPDEFINELINE]+="\n"+"5003|"+str(ANZSP+1)+"|\"0\"|0 # Base64 Code-Cache"
if livedebug:
LOGIKARRAY[LSPDEFINELINE]+="\n"+"5003|"+str(ANZSP+2)+"|\"\"|0 # LivePortBase64Buffer"
if livedebug:
formel = "5012|0|\"EI or EC["+str(ANZIN+1)+"]\"|\"eval(compile(__import__('base64').decodestring('"+re.sub("\n","",base64.encodestring(LIVECODE))+"'),'<"+LOGIKFILE+">','exec'))\"|\"\"|0|0|0|0\n"
#formel += "5012|0|\"("+BEDINGUNG+") or SC["+str(ANZSP+1)+"]\"|\"eval(SN["+str(ANZSP+1)+"])\"|\""+ZEITFORMEL+"\"|0|"+ZEITSPEICHER+"|0|0"
formel += "5012|0|\"\"|\"eval(SN["+str(ANZSP+1)+"])\"|\""+ZEITFORMEL+"\"|0|"+ZEITSPEICHER+"|0|0"
else:
formel = "5012|0|\"EI\"|\"compile(__import__('base64').decodestring('"+re.sub("\n","",base64.encodestring(code))+"'),'<"+LOGIKFILE+">','exec')\"|\"\"|0|0|"+str(ANZSP+1)+"|0\n"
formel += "5012|0|\""+BEDINGUNG+"\"|\"eval(SN["+str(ANZSP+1)+"])\"|\""+ZEITFORMEL+"\"|0|"+ZEITSPEICHER+"|0|0"
else:
formel = "5012|0|\""+BEDINGUNG+"\"|\"eval(compile(__import__('base64').decodestring('"+re.sub("\n","",base64.encodestring(code))+"'),'<"+LOGIKFILE+">','exec'))\"|\""+ZEITFORMEL+"\"|0|"+ZEITSPEICHER+"|0|0"
#formel+="\n## MD5 der Formelzeile: "+md5.new(formel).hexdigest()
return formel
formel=""
for i in range(len(code)):
codepart=code[i]
if codepart[0]==1:
tempBC=1
if codepart[0]==2:
tempBC=2
else:
tempBC=doByteCode
if livedebug:
doCache=True
formel=compileMe(LIVECODE,False,BEDINGUNG="")
break
formel+=compileMe(codepart[2],tempBC,BEDINGUNG=codepart[1])
#formel+=commentcode[i]+"\n\n"
### DEBUG ###
formel+="\n"+postlogik[2]
## Debuggerbaustein
if livedebug:
LOGIKDEFARRAY=LOGIKARRAY[LEXPDEFINELINE].split("|")
LOGIKDEFARRAY[3]=str(ANZIN+1)
LOGIKDEFARRAY[3+ANZIN]+="|\"E"+str(ANZIN+1)+" DEBUG\""
LOGIKARRAY[LEXPDEFINELINE]="|".join(LOGIKDEFARRAY)
LOGIKDEFARRAY=LOGIKARRAY[LHSDEFINELINE].split("|")
LOGIKDEFARRAY[1]=str(ANZIN+1)
LOGIKARRAY[LHSDEFINELINE]="|".join(LOGIKDEFARRAY)
LOGIKARRAY[LINDEFINELINE]+="\n"+"5002|"+str(ANZIN+1)+"|\"\"|1 # Debugger Live in"
LOGIK = "\n".join(LOGIKARRAY)
allcode=""
for i in code:
allcode+=i[2]+"\n"
if showList:
codeobj=allcode.split("\n")
for i in range(0,len(codeobj)):
print str(i)+": "+codeobj[i]
if debug and not livedebug:
debugstart=time.clock()
allcode += debugcode
if not noexec:
exec(allcode)
else:
compile(allcode,"<code>","exec")
debugtime=time.clock()-debugstart
print "Logikausfuehrzeit: %.4f ms" % (debugtime)
if debugtime>1:
print """
###############################################
### !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ###
### !!!ACHTUNG: sehr lange Ausfürungszeit!! ###
### !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ###
###############################################
"""
if debug or doSend:
del EN[0]
del SN[0]
del AN[0]
if livedebug:
#formel=lformel
LOGIK="""############################\n#### DEBUG BAUSTEIN #######\n############################\n"""+LOGIK
livesend=re.sub("\n","",base64.encodestring(allcode))
sock = socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
sock.connect((livehost,liveport))
Livepackets=0
while livesend!="":
Livepackets+=1
sock.sendall("<xml><id"+LOGIKID+"><inject>"+livesend[:4000]+"</inject></id"+LOGIKID+"></xml>")
livesend=livesend[4000:]
time.sleep(0.1)
time.sleep(1)
sock.sendall("<xml><id"+LOGIKID+"><compile /></id"+LOGIKID+"></xml>")
print str(Livepackets)+ " Packet per UDP verschickt"
sock.close()
if doSend:
## Das auslösen über den Debug verhindern
sendVars="EC["+str(ANZIN+1)+"]=0\n"+sendVars
sock = socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
sock.connect((livehost,liveport))
sock.sendall("<xml><id"+LOGIKID+"><vars>"+re.sub("\n","",base64.encodestring(sendVars)+"</vars></id"+LOGIKID+"></xml>\n"))
sock.close()
if VERSION !="":
VERSION="_"+VERSION
if debug:
VERSION+="_DEBUG"
open(LOGIKFILE+VERSION+".hsl",'w').write(LOGIK+"\n"+formel+"\n")
def md5sum(fn):
m = md5()
f=open(fn,'rb')
while True:
data = f.read(1024)
if not data:
break
m.update(data)
f.close()
return m.hexdigest() + " *" + fn + "\n"
#chksums = md5sum(LOGIKFILE+VERSION+".hsl")
#if not nosource:
# chksums += md5sum(inspect.currentframe().f_code.co_filename)
#if doDoku:
# chksums += md5sum("log"+LOGIKID+".html")
#
#open(LOGIKFILE+".md5",'w').write(chksums)
if doZip:
#os.remove(LOGIKFILE+VERSION+".zip")
z=zipfile.ZipFile(LOGIKFILE+VERSION+".zip" ,"w",zipfile.ZIP_DEFLATED)
if not nosource:
z.write(inspect.currentframe().f_code.co_filename)
if doDoku:
z.write("log"+LOGIKID+".html")
z.write(LOGIKFILE+VERSION+".hsl")
# z.write(LOGIKFILE+".md5")
z.close()
print "Baustein \"" + LOGIKFILE + "\" erstellt"
print "Groesse:" +str(CODELENGTH)
if livedebug:
print "########################################"
print "#### DEBUGBAUSTEIN ####"
print "########################################"
print """
Neuberechnung beim Start: """+CALCSTART+"""
Baustein ist remanent: """+LOGIKREMANT+"""
Interne Bezeichnung: """+LOGIKID+"""
Kategorie: '"""+LOGIKCAT+"""'
Anzahl Eingänge: """+str(ANZIN)+""" """+repr(EN)+"""
Anzahl Ausgänge: """+str(ANZOUT)+""" """+repr(AN)+"""
Interne Speicher: """+str(ANZSP)+""" """+repr(SN)+"""
"""
#print chksums