-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLogikGen.py
executable file
·1429 lines (1262 loc) · 59.9 KB
/
LogikGen.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
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
# -*- coding: iso8859-1 -*-
## -----------------------------------------------------
## Logik-Generator V2.014
## -----------------------------------------------------
## Copyright © 2011, 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>.
LGTVERSION = 2.014
#######################
### Changelog #########
#######################
## 2.014 * interne IP
## 2.013 * diverse HS interne Objekte hinzugefügt
## * überwachung von AC[x] auf änderungen
## * __import__ gegen Funktion ausgetauscht um hs interne Module zu imitieren
## * KO Gateway Verbindung timeout geändert
## * eingaben string-decode um zum Beispiel bei EN[1]="d100=1\x03" das Steuerzeichen hex 03 zu senden
## * Fix Ausgang beim internen schreiben über SetWert des iko
## * --register nun je Python Version (Debug 2.4/Debug 2.6)
##
## 2.012 * runTime je Formelzeile
## * --register zum registrieren der Debug Erweiterung für .hsl Dateien
##
## 2.011 * Name von TimerThreads entsprechend dem OC
##
## 2.010 * Bugfix 'names'
##
## 2.009 * 'connect' zum manuellen verbinden aus dem Debugger
## * EN[1]=$IKO$1/0/100 aus dem debugger heraus
## * Bugfix .config nicht aus dem Installationspfad geladen beim Rechtsklick aus hsl
##
## 2.008 * Timer laufen automatisch bei autorun
## * Bugfixes beim Beenden
## * globals werden nicht mehr an die Formel übergeben
## * Zeilenummer beim Bedingungstest
## * Autorun per .config default und pro LogikID
## * Autorun override per Befehlszeile -a 1|0
##
## 2.007 * Bugfixes KO-Gateway
## * AutoRUn
##
## 2.006 * KO-Gateway für Ein/ausgänge
##
## 2.005 * Anzeige auf SystemCodepage angepasst, sodass Umlaute angezeigt werden
## * Option -n zum erstellen von .LGT Dateien aus .hsl
## * Kontrollen für EI bei nicht startetenden Bausteinen
## * Kontrolle auf Remanente Speicher bei nicht Remanenten Baustein
## * Kontrolle der Timer Anzahl
##
## 2.004 * BugFixes _defline
## * einige Dacom Bausteine (z.B. Codeschloss) haben keine gültige Definition
##
## 2.003 * 'names' zeigen jetzt auch die derzeitigen Werte
## * LogikGen.config hinzugefügt
## * Ausgang von intern beschreiben
## * Ausgaben auf Deutsch
##
## 2.002 * Parse Error in der 5001er Zeile
## * einige interne HS Klassen hinzugfügt
## * Timer ON/OC werden unterstützt
##
## 2.001 * Initial Release
##
import codecs
import sys
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 types
import time
import threading
import socket
import select
import ConfigParser
import popen2
import zlib
import zipfile
import traceback
import Queue
## Weil der HS zu viele alte Module erwartet ;) so einfach könnte auch der HS diese blöden Meldungen nicht an der Konsole zeigen.
import warnings
warnings.simplefilter("ignore",DeprecationWarning)
##############
### Config ###
##############
## kleine Hilfsfunktionen
def debug(msg):
print msg
def console(msg):
if type(msg) <> str:
msg = str(msg)
print msg.decode("iso-8859-1").encode(sys.stdout.encoding)
def unquote(text):
## entfernt die Anführungszeichen
if type(text) <> str:
try:
text = str(text)
except:
return ""
return re.sub("^[\"|\']|[\"|\']$","",text)
def quoteVal(e):
## setzt Anführungszeichen wenn typ string
if e['isalpha']:
return "\"" + e['value'] + "\""
return str(e['value'])
def grp2str(_i):
return "%d/%d/%d" % (_i >> 11 & 0xff, _x >> 8 & 0x07, x & 0xff)
def str2grp(_s):
_t = _s.split("/")
return int(_t[0]) << 11 | int(_t[1]) << 8 | int(_t[2])
### Homeserver Klassen ###
class HomerServerDummy:
pass
class HSLogikItemDummy:
pass
class HSLogikSelfDummy:
pass
class dummy:
pass
class debug_dummy:
Daten = []
def setErr(self,pException,pComment):
print "Error:"
traceback.print_exception(pException[0],pException[1],pException[2],file=sys.stdout)
print pComment
def setErrDirekt(self,pText):
print "Error: %r" % pText
def addGruppe(self,pGruppe,pItems):
print "addGruppe %r with Items %r" % (pGruppe,pItems)
def setWert(self,pGruppe,pToken,pWert):
print "setWert %s - %s to %r" % (pGruppe,pToken,pWert)
def addWert(self,pGruppe,pToken,pWert):
print "addWert %s - %s to %r" % (pGruppe,pToken,pWert)
class HSIKOdummy:
def __init__(self,LGT,attached_out):
self.LGT = LGT
self.Value = ''
self.Format = 22
self.SpeicherID = 1
self._attached_out = attached_out
def setWert(self,out,wert):
self.Value = wert
console("** intern ** auf AN[%d]: %s" % (self._attached_out,repr(wert)))
self.LGT.setVar("AN",self._attached_out,wert)
def getWert(self):
return self.Value
def checkLogik(self,out):
pass
__old_import__ = __import__
class hs_timer(threading._Timer):
def __init__(self,interval,function):
self.starttime = time.strftime("%H:%M:%S",time.localtime())
self.calctime = time.time() + interval
threading._Timer.__init__(self,interval, function)
def get_time(self):
return "start: %s remain %.2f s" % ( self.starttime,self.calctime - time.time() )
class hs_queue_queue(Queue.Queue):
def put(self,item):
Queue.Queue.put(self,[time.time(),item])
def get(self):
return Queue.Queue.get(self)[1]
class hs_queue(object):
Queue = hs_queue_queue
hs_threading = threading
sys.modules['hs_queue'] = hs_queue
#def __import__(module):
# print "LOAD Module %r" % module
# if module in ['hs_queue']:
# return globals().get(module)
# return __old_import__(module)
def get_local_ip():
_ip = socket.gethostbyname( socket.gethostname() )
if _ip.startswith("127"):
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(('google.com', 0))
_ip = s.getsockname()[0]
s.close()
return _ip
###########################
class LogikGeneratorClass:
def __init__(self):
self.GeneratorVersion = LGTVERSION
self.LogikNum = 10100
self.LogikName = "unamedLogik"
self.LogikiName = self.LogikName
self.LogikCat = ""
self.LogikHeader = []
self.Eingang = [{'value':0}]
self.Ausgang = [{'value':0}]
self.Speicher = [{'value':0}]
self.Offset = [[0,0,None]]
self.Formel = []
self.runStart = False
self.isRemanent = False
self.bCode = []
self.Options = { 'decode':False,'strict':False}
self.Errors = {'warning':0, 'error':0}
self.KOGW = {'running':False,'thread':None,'socket':None,'hsip': '','gwport':0,'gwsecret': ''}
self.KOGWInObj = {}
self.AutoRun = True
self.mutex = threading.RLock()
## some dummy Vars
_mc = HomerServerDummy()
_mc.SystemID = "0123456789ab"
_mc.ProjectID = time.strftime("%Y%m%d%H%M%S000",time.localtime())
## GUI
_mc.GUI = dummy()
_mc.GUI.ExtDatUrl = {}
## LogikList
_mc.LogikList = dummy()
_mc.LogikList.calcLock = threading.RLock()
_mc.LogikList.GatterList = []
## KameraList
_mc.KameraList = dummy()
_mc.KameraList.KamList = {}
## IP
_mc.Ethernet = dummy()
_mc.Ethernet.IPAdr = get_local_ip()
## Default HS Resolver
_mc.DNSResolver = dummy()
_mc.DNSResolver.getHostIP = socket.gethostbyname
## Debug
_mc.Debug = debug_dummy()
## HS self dummy
_HSself = HSLogikSelfDummy()
_HSself.MC = _mc
_HSself.ID = self.LogikNum
_HSself.makeCheckSum = lambda x: md5(x).hexdigest()
## HS Logik dummy
_pItem = HSLogikItemDummy()
_pItem.MC = _mc
_pItem.ID = 1
_pItem.Ausgang = []
## make them local
self.localVars = {
'self':_HSself,
'pItem':_pItem,
'Timer':[[None,None]],
'EI':1,
'EN':[None],
'EC':[None],
'EA':[None],
'SN':[None],
'SC':[None],
'SA':[None],
'AN':[None],
'AC':[None],
'AA':[None],
'ON':[None],
'OC':[None],
'OA':[None]
}
self.globalvars = globals()
def symbolize(self,LogikHeader,code):
symbols = {}
for i in re.findall(r"(?m)^500([234])[|]([0-9]{1,}).*[@][@](.*)\s", LogikHeader):
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:
console("Variablen Kollision :" +repr(i[2])+" ist in " +repr(symbols[sym]) + " und "+ varName +"["+i[1]+"] vergeben")
self.exitall(1)
## Symbole wieder entfernen
LogikHeader=re.sub("[@][@]\w+", "",LogikHeader)
#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 LogikHeader,code
def commentCode(self,code):
return "##########################\n###### Quelltext: ########\n##########################"+"\n##".join(code.split("\n"))+"\n"
def enableDebug(self,code):
return re.sub("###DEBUG###","",code)
def removeComments(self,code):
codelist=code.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)
print "Removed"
console("\n".join(removelist))
return "\n".join(codelist)
def compileMe(self,code):
pass
def readConfig(self,configFile):
self.Licences = {}
configparse = ConfigParser.SafeConfigParser()
configparse.read(configFile)
#for _lic in configparse.options("licences"):
# self.Licences[_lic] = configparse.get("licences",_lic)
console("Looking for %r Config" % self.LogikNum)
try:
self.AutoRun = configparse.getboolean('default','autorun')
except (ConfigParser.NoOptionError,ConfigParser.NoSectionError):
pass
if configparse.has_section(str(self.LogikNum)):
console("Found Config for %r" % self.LogikNum)
try:
self.AutoRun = configparse.getboolean(str(self.LogikNum),'autorun')
except ConfigParser.NoOptionError:
pass
for _v in configparse.options(str(self.LogikNum)):
_defSet = re.findall("^([e|a|s][n|a|c])\[(\d+)\]",_v)
if _defSet:
_defSet = _defSet[0]
_vals = configparse.get(str(self.LogikNum),_v)
for _val in _vals.split("|"):
if _val.startswith("$IKO$"):
try:
#_iko = (lambda x: (lambda y: int(y[0]) <<11 | int(y[1]) << 8 | int(y[2]))(x.split("/")))(_val[5:])
_iko = str2grp(_val[5:])
if _defSet[0].upper() == "EN":
self.KOGWInObj[_iko] = int(_defSet[1])
self.Eingang[int(_defSet[1])]['ikos'].append(_val[5:])
console("** Setze IKO %s auf EN[%d]" % (_val[5:],int(_defSet[1])))
elif _defSet[0].upper() == "AN":
self.Ausgang[int(_defSet[1])]['ikos'].append(_val[5:])
console("** Setze IKO %s auf AN[%d]" % (_val[5:],int(_defSet[1])))
except:
pass
else:
self.setVar(_defSet[0].upper(),int(_defSet[1]),_val)
#print "%s: %r" % (_v,configparse.get(str(self.LogikNum),_v))
try:
self.KOGW['hsip'] = configparse.get('kogw','hsip')
self.KOGW['gwport'] = configparse.getint('kogw','gwport')
self.KOGW['gwsecret'] = configparse.get('kogw','gwsecret')
except (ConfigParser.NoOptionError,ConfigParser.NoSectionError):
pass
#print self.KOGW
def _readConfig(self,cfile='LogikGen.config'):
cfg = ConfigParser.SafeConfigParser()
cfg.read(cfile)
console(cfg.get('default','copyright',''))
console(cfg.get('default','compiler',''))
#print sys.executable
def getHeader(self):
return "# -*- coding: iso8859-1 -*-"
def showHSLhelp(self):
return ""
def Header(self,header):
self.LogikHeader = header.split("\n")
def connectKOGW(self):
if self.KOGW['socket']:
console("*** KO-Gateway schon verbunden ***")
return
self.KOGW['thread'] = threading.Thread(target=self.__connectKOGW)
self.KOGW['running'] = True
self.KOGW['thread'].setDaemon(True)
self.KOGW['thread'].start()
def __connectKOGW(self):
while self.KOGW['running']:
try:
if not self.KOGW['socket']:
try:
self.KOGW['socket'] = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
self.KOGW['socket'].connect((self.KOGW['hsip'],self.KOGW['gwport']))
self.KOGW['socket'].send(self.KOGW['gwsecret']+"\x00")
console("*** Verbindung zum KO-Gateway hergestellt ***")
self.__readKOGW()
except:
__import__('traceback').print_exc(file=__import__('sys').stdout)
console("*** Fehler beim verbinden zum KO-Gateway des HS: %s:%d" % (self.KOGW['hsip'],self.KOGW['gwport']))
if not self.KOGW['running']:
break
_t = 0
while self.KOGW['running'] and _t < 20:
_t += 1
time.sleep(0.5)
finally:
console("*** Verbindung zum KO-Gateway getrennt ***")
self.KOGW['socket'].close()
self.KOGW['socket'] = None
def __readKOGW(self):
buf = ""
while self.KOGW['running']:
_r,_w,_e = select.select([self.KOGW['socket']],[],[],1)
if self.KOGW['socket'] in _r:
_buf = self.KOGW['socket'].recv(8192)
if not _buf:
break
buf += _buf
while buf.find("\x00"):
try:
line,buf = buf.split("\x00",1)
except ValueError:
break
info = line.split("|")
if len(info) > 2:
if not info[1]:
continue
address = int(info[1])
#addr = "%d/%d/%d" % ((address >> 11) & 0xff, (address >> 8) & 0x07, (address) & 0xff)
_io = self.KOGWInObj.get(address,None)
if _io:
self.setVar("EN",_io,info[2])
## nicht beim INIT
if self.AutoRun and info[0] <> "2":
self.LogikCalc()
def __sendKOGW(self,iko,val):
if self.KOGW['socket']:
try:
_a = (lambda x: (lambda y: int(y[0]) <<11 | int(y[1]) << 8 | int(y[2]))(x.split("/")))(iko)
_s = "1|"+str(_a)+"|"+str(val)+"\x00"
self.KOGW['socket'].send(_s)
except:
__import__('traceback').print_exc(file=__import__('sys').stdout)
pass
def LogikError(self,typ,line,LineNum,msg=" ",console=console):
if typ == "5000":
console("*** Fehler bei Experte Definition 5000: %d %s***" % (LineNum,msg))
console("#5000|\"Text\"|Remanent(1/0)|Anz.Eingänge|.n.|Anzahl Ausgänge|.n.|.n.")
elif typ == "5001":
console("*** Fehler bei HS Logik Definition 5001: %d %s***" % (LineNum,msg))
console("#5001|Anzahl Eingänge|Ausgänge|Offset|Speicher|Berechnung bei Start")
elif typ == "5002":
console("*** Fehler bei Eingangsdefinition 5002: %d %s***" % (LineNum,msg))
console("#5002|Index Eingang|Default Wert|0=numerisch 1=alphanummerisch")
elif typ =="5003":
console("*** Fehler bei Speicherdefinition 5003: %d %s***" % (LineNum,msg))
console("#5003|Speicher|Initwert|Remanent")
elif typ =="5004":
console("*** Fehler bei Ausgangsdefinition 5004: %d %s***" % (LineNum,msg))
console("#5004|ausgang|Initwert|runden binär (0/1)|typ (1-send/2-sbc)|0=numerisch 1=alphanummerisch")
elif typ =="5012":
console("*** Fehler bei Formel Definition 5012: %d %s***" % (LineNum,msg))
console("#5012|abbruch bei bed. (0/1)|bedingung|formel|zeit|pin-ausgang|pin-offset|pin-speicher|pin-neg.ausgang")
else:
print "TYPE %r" % typ
console("--------------------------------------------------------------------------")
console(line)
console("--------------------------------------------------------------------------")
#__import__('traceback').print_exc(file=__import__('sys').stdout)
if self.Options['strict']:
self.exitall(1)
def exitall(self,_r):
if _r > 0:
__import__('traceback').print_exc(file=__import__('sys').stdout)
if self.KOGW['running']:
self.KOGW['running'] = False
console("** Warte auf KO-Gateway *** ")
self.KOGW['thread'].join()
for _t in self.Offset:
try:
_t[2].cancel()
except:
pass
for _thread in threading.enumerate():
if _thread <> threading.currentThread():
try:
print "kill Thread: %r" % (_thread.name)
_thread.cancel()
_thread._Thread__stop()
_thread.join(2)
except:
pass
time.sleep(2)
sys.exit(int(_r <> 0))
def LogikDebug(self):
console("\n\n### Logik Debugger ###\n")
if self.AutoRun and self.runStart:
self.LogikCalc()
while True:
try:
_cmd = raw_input(">> ")
except (KeyboardInterrupt,SystemExit):
self.exitall(0)
_lcmd = _cmd.lower()
if _lcmd.startswith("quit") or _lcmd.startswith("exit"):
self.exitall(0)
break
elif _cmd == "":
continue
elif _lcmd.startswith("show"):
for v in sorted(self.localVars):
console("%s: %r" % (v,self.localVars[v]))
for t in self.localVars['Timer']:
if t[0]:
console("%s: %s (%s)" % (t[2].name,time.strftime("%H:%M:%S",time.localtime(t[0])),t[2].get_time()))
elif _lcmd.startswith("connect"):
self.connectKOGW()
elif _lcmd.startswith("names"):
console("Systemstart: % d Remanent: %d" % (self.runStart,self.isRemanent))
try:
for v in range(1,len(self.Eingang)):
_iko = ""
if self.Eingang[v]['ikos']:
_iko = "[" + repr(self.Eingang[v]['ikos']) + "]"
console("EN[%d]: %s (%s) %s" % (v,self.Eingang[v]['name'],repr(self.localVars['EN'][v])[:30], _iko))
for v in range(1,len(self.Ausgang)):
_iko = ""
if self.Ausgang[v]['ikos']:
_iko = "[" + repr(self.Ausgang[v]['ikos']) + "]"
console("AN[%d]: %s (%s) %s" % (v,self.Ausgang[v]['name'],repr(self.localVars['AN'][v])[:30],_iko))
except:
console("*** Fehler ... ***")
self.exitall(1)
pass
elif _lcmd.startswith("run"):
self.LogikCalc()
elif _lcmd.startswith("autorun"):
_sw = re.findall("autorun (\d)",_lcmd)
if _sw:
_sw = (int(_sw[0]) == 1)
self.AutoRun = _sw
elif _lcmd.startswith("help") or _cmd.startswith("hilfe"):
console("\nLogik Debugger Hilfe")
console("--------------------\n")
console("'quit' oder 'exit' zum beenden")
console("'show' um die Variablen anzuzeigen")
console("'names' zeigt die Namen der Ein-/Ausgänge an")
console("'run' um die Logik auszuführen")
console("'autorun [0/1]' autorun ein/aus")
console("'timer 1' lässt Timer OC[1]/ON[1] ablaufen")
console("'connect' verbinden zum definierten KO Gateway")
console("'exec [code]' ausführen von python Code innerhalb der Logik")
console("'EN[1]=23' um Eingang 1 den Wert 23 zu setzen")
console("-- es können EI,EN,SN,AN,ON sowie EC,SC,AC,OC als auch EA,SA,AA")
console("-- geändert werden. Bei den ersten wird automatisch das jeweilige xC gesetzt")
console("")
elif _lcmd.startswith("exec "):
try:
eval(compile(_cmd[5:],"ldebug","exec"),{'LGT':LGT},self.localVars)
except:
__import__('traceback').print_exc(file=__import__('sys').stdout)
elif _lcmd.startswith("timer "):
t = re.findall("\d+",_cmd)
if t:
t=t[0]
if type(t) in (list,tuple):
t=t[0]
t=int(t)
_v = self.Offset[t][1]
try:
self.Offset[t][2].cancel()
except:
pass
#self.Offset[t] = (time.time()-1,_v)
self.Offset[t][0] = time.time()-1
console("Set Offset: %r" % (self.Offset[t],))
elif _lcmd.startswith("ei="):
if _cmd[3] == "1":
self.localVars['EI'] = 1
else:
self.localVars['EI'] = 0
else:
_var = re.findall("^([O|E|S|A|o|e|s|a][N|n|A|a|C|c])\[([0-9]{1,2})\]=(.*)",_cmd)
if _var:
_vname,_vnum,_val = _var[0]
_vnum = int(_vnum)
_vname = _vname.upper()
if _val.startswith("$IKO$"):
try:
#_iko = (lambda x: (lambda y: int(y[0]) <<11 | int(y[1]) << 8 | int(y[2]))(x.split("/")))(_val[5:])
_iko = str2grp(_val[5:])
if _vname == "EN":
self.KOGWInObj[_iko] = _vnum
self.Eingang[_vnum]['ikos'].append(_val[5:])
console("** Setze IKO %s auf EN[%d]" % (_val[5:],_vnum))
elif __vname == "AN":
self.Ausgang[_vnum]['ikos'].append(_val[5:])
console("** Setze IKO %s auf AN[%d]" % (_val[5:],_vnum))
except:
__import__('traceback').print_exc(file=__import__('sys').stdout)
pass
else:
self.setVar(_vname,_vnum,_val.decode('string-escape'))
else:
console("*** unbekannter Befehl - tippe help für Hilfe ***")
_cmd = None
def setVar(self,_vname,_vnum,_val):
try:
_isalpha = True
_sbc = False
_old = None
_cvar = None
if _vname[1] == "C":
_isalpha = False
if _vname in ["AN","SN","ON","EN"]:
if _vname == "AN":
_isalpha = self.Ausgang[_vnum]['isalpha']
_sbc = self.Ausgang[_vnum]['sbc']
_old = "AA"
_cvar = "AC"
elif _vname == "EN":
_isalpha = self.Eingang[_vnum]['isalpha']
_old = "EA"
_cvar = "EC"
elif _vname == "SN":
_isalpha = self.Speicher[_vnum]['isalpha']
_old = "SA"
_cvar = "SC"
if _isalpha:
_val = unquote(_val)
else:
_val = float(_val)
try:
#self.mutex.acquire()
if _cvar and _old:
self.localVars[_old][_vnum] = self.localVars[_vname][_vnum]
if not _sbc or _val <> self.localVars[_old][_vnum]:
if _vname == "AN":
if len(self.Ausgang[_vnum]['ikos']) > 0:
console("*** sende an IKOs %r den Wert %s" % (self.Ausgang[_vnum]['ikos'],repr(_val)[:40]))
for _iko in self.Ausgang[_vnum]['ikos']:
self.__sendKOGW(_iko,_val)
self.localVars[_cvar][_vnum] = 1
self.localVars[_vname][_vnum] = _val
finally:
#self.mutex.release()
pass
except:
console(repr(self.localVars))
console("Fehler beim beschreiben der Variablen")
__import__('traceback').print_exc(file=__import__('sys').stdout)
def TimerCalc(self):
if self.AutoRun:
self.LogikCalc()
def stripline(self,line):
try:
if len(line) < 140:
return line
else:
return line[:80] + " .... " + line[-50:]
except TypeError:
return ""
def LogikCalc(self):
try:
self.mutex.acquire()
for t in xrange(1,len(self.Offset)):
if self.Offset[t][0] < 1:
continue
if time.time() >= self.Offset[t][0]:
try:
self.Offset[t][2].cancel()
except:
pass
self.localVars['ON'][t] = self.Offset[t][1]
self.localVars['OC'][t] = 1
#self.Offset[t] = (0,self.localVars['ON'][t])
self.Offset[t][0] = 0
for formel in self.Formel:
try:
console("teste Bedingung in Zeile %d: %r" % (formel['line'],self.stripline(formel['case'])))
startRunTime = time.clock()
if eval(formel['caseCode'],self.globalvars,self.localVars):
console("starte Formel: %r" % (self.stripline(formel['formel'])))
result = eval(formel['formelCode'],self.globalvars,self.localVars)
offset = eval(formel['offsetCode'],self.globalvars,self.localVars)
runTime = time.clock() - startRunTime
console("RunTime: %f" % (runTime))
console("Ausgabe: %d|%d|%d|%d" % (formel['pinAusgang'],formel['pinOffset'],formel['pinSpeicher'],formel['pinNegAusgang']))
console("Ergebnis: %r" % (result,))
console("-------")
_result = result
if formel['pinAusgang'] > 0:
_pin = formel['pinAusgang']
self.localVars['AA'][_pin] = self.localVars['AN'][_pin]
if self.Ausgang[_pin]['round']:
_result = _result <> 0
if self.Ausgang[_pin]['isalpha'] and type(_result) <> str:
print type(_result)
console("** Warnung falsches Format in Zeile %d für Ausgang %d" % ( formel['line'],_pin))
if self.Ausgang[_pin]['isalpha']:
_result = str(_result)
else:
_result = float(_result)
self.localVars['AN'][_pin] = _result
if not self.Ausgang[_pin]['sbc'] or (self.localVars['AA'][_pin] <> self.localVars['AN'][_pin]):
self.localVars['AC'][_pin] = 1
if len(self.Ausgang[_pin]['ikos']) > 0:
console("*** sende an IKOs %r den Wert %s" % (self.Ausgang[_pin]['ikos'],repr(_result)[:40]))
for _iko in self.Ausgang[_pin]['ikos']:
self.__sendKOGW(_iko,_result)
_result = result
if formel['pinNegAusgang'] > 0:
_pin = formel['pinNegAusgang']
self.localVars['AA'][_pin] = self.localVars['AN'][_pin]
if self.Ausgang[_pin]['round']:
_result = _result <> 0
if not self.Ausgang[_pin]['isalpha']:
if type(_result) == str:
console("** Warnung falsches Format in Zeile %d für Ausgang %d" % ( formel['line'],_pin))
self.localVars['AN'][_pin] = float(_result *(-1))
if not self.Ausgang[_pin]['sbc'] or (self.localVars['AA'][_pin] <> self.localVars['AN'][_pin]):
if _result <> 0:
self.localVars['AC'][_pin] = 1
if len(self.Ausgang[_pin]['ikos']) > 0:
console("*** sende an IKOs %r den Wert %s" % (self.Ausgang[_pin]['ikos'],repr(_result)[:40]))
for _iko in self.Ausgang[_pin]['ikos']:
self.__sendKOGW(_iko,_result)
_result = result
for _ac in xrange(1, len(self.localVars['AC']) ):
if self.localVars['AC'][_ac] == 1:
console("** AC[%s] <> 0 schreibe AN[%s] %r" % ( _ac,_ac, self.localVars['AN'][_ac] ))
self.localVars['AA'][_ac] = self.localVars['AN'][_ac]
self.localVars['AC'][_ac] = 0
if formel['pinSpeicher'] > 0:
_pin = formel['pinSpeicher']
self.localVars['SA'][_pin] = self.localVars['SN'][_pin]
self.localVars['SN'][_pin] = _result
self.localVars['SC'][_pin] = 1
if formel['pinOffset'] > 0:
_pin = formel['pinOffset']
if offset >0:
try:
self.Offset[_pin][0] = time.time() + offset
self.Offset[_pin][1] = _result
_t = [_pin] + self.Offset[_pin]
#try:
self.Offset[_pin][2] = hs_timer(offset,self.TimerCalc)
self.Offset[_pin][2].setName("OC["+str(_pin)+"]")
self.Offset[_pin][2].start()
#except:
#pass
console("*** setze Offset %s: %r" % (_pin,_t))
console("*** nächster start: %s (%s sec)" % (time.strftime("%H:%M:%S %d.%m.%Y", time.localtime(time.time()+offset)), offset))
except:
console("*** Offset Fehler: Wert: %r" % offset)
__import__('traceback').print_exc(file=__import__('sys').stdout)
else:
try:
self.Offset[_pin][2].cancel()
self.Offset[_pin][0] = None
self.Offset[_pin][1] = None
self.Offset[_pin][2] = None
except:
console("Error stopping Timer %s" % (_pin,))
pass
console("Offset %s gelöscht" % (_pin,))
if formel['dobreak'] == 1:
console("*** Ausführung nach Formelzeile abgebrochen ***")
break
except:
console("Fehler beim ausführen von Formel in Zeile: %s" % formel['line'])
__import__('traceback').print_exc(file=__import__('sys').stdout)
self.localVars['EI'] = 0
for v in ["EC","SC","AC","OC"]:
for i in range(1,len(self.localVars[v])):
self.localVars[v][i] = 0
finally:
self.mutex.release()
### HSL Parser ###
def HSLparser(self,hslfile,console=console):
fp = codecs.open(hslfile,"r")
lines = fp.readlines()
fp.close()
hslinfo = re.findall(".*(1[0-9][0-9][0-9][0-9])_(.*?).hsl",hslfile)
if hslinfo:
self.LogikNum, self.LogikName = hslinfo[0]
self.LogikNum = int(self.LogikNum)
self._HSLparser(lines)
def _HSLparser(self,lines):
numIn = numOut = 0
firstLogikLine = False
line5000 = 0
line5001 = 0
line5002 = 0
line5003 = 0
line5004 = 0
line5012 = 0
LineNum = 0
for line in lines:
#line = line.encode("iso-8859-1","backslashreplace")
#line.decode("iso-8859-1")
line = re.sub("\r|\n","",line)
LineNum +=1
## Experte Definitionszeile
if line.startswith("5000|"):
firstLogikLine = True
if line5000:
console("*** Fehler *** Die 5000er Zeile wurde mehrfach definiert")
line5000 += 1
## remove newline
try:
_defline = line.split("|")
_name = unquote(_defline[1])
_catName = _name.split("\\")
self.LogikiName = _catName[-1]
self.LogikCat = "\\".join(_catName[:-1]) + "\\"
self.isRemanent = int(int(_defline[2])==1)
numIn = int(_defline[3])
for i in range(0,numIn):
self.Eingang.append({'name':unquote(_defline[4+i]),'value':'','isalpha':True,'defined':False, 'ikos':[] })
self.localVars['EN'].append(None)
self.localVars['EC'].append(False)
self.localVars['EA'].append(None)
numOut = int(_defline[4+numIn])
for i in range(0,numOut):
self.Ausgang.append({'name':unquote(_defline[5+numIn+i]),'value':'','isalpha':True,'defined':False,'sbc':False,'round':False,'ikos':[]})
self.localVars['AN'].append(None)
self.localVars['AC'].append(False)
self.localVars['AA'].append(None)
self.localVars['pItem'].Ausgang.append([[],[HSIKOdummy(self,i+1)],[],[]])
except:
self.LogikError("5000",line,LineNum,console=console)
self.exitall(1)
## HS Definitionszeile
if line.startswith("5001|"):
firstLogikLine = True
if line5001:
console("*** Fehler *** Die 5001er Zeile wurde mehrfach definiert")
line5001 += 1
try:
_defline = line.split("|")
if numIn != int(_defline[1]):
console("*** 5001er und 5000er Eingänge passen nicht ***")
self.exitall(1)
if numOut != int(_defline[2]):
console("*** 5001er und 5000er Ausgänge passen nicht ***")
self.exitall(1)
numOffset = int(_defline[3])
for o in range(0,numOffset):
self.localVars['ON'].append(None)
self.localVars['OC'].append(False)
self.Offset.append([0,0,None])
self.localVars['Timer'].append(self.Offset[o+1])
Speicher = int(_defline[4])
for i in range(0,Speicher):
self.Speicher.append({'name':"%s" % (i+1,),'value':None,'isalpha':False,'defined':False,'remanent':False})
self.localVars['SN'].append(None)
self.localVars['SC'].append(False)
self.localVars['SA'].append(None)
self.runStart = int(_defline[5][0])
except:
self.LogikError("5001",line,LineNum,console=console)
self.exitall(1)
## Eingänge
if line.startswith("5002|"):
firstLogikLine = True
line5002 += 1
try:
_defline = line.split("|")
try:
## :( Dacom Baustein Codeschloss ist nicht gültig :(
_isalpha = int(_defline[3][0]) == 1
except IndexError:
self.LogikError("5002",line,LineNum,msg='(fehlende Angabe)',console=console)
_isalpha = False
## convert if string remove " '
try:
if len(_defline[2]) == 0:
_value = None
elif not _isalpha:
_f = re.findall("\d+(?:\.\d+)?",_defline[2])
if _f:
_value = float(_f[0])
else:
_value = unquote(_defline[2])
except ValueError:
_value = unquote(_defline[2])