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
|
# -*- coding: utf-8 -*-
#
# AWL simulator - Library entry selection
#
# Copyright 2014-2017 Michael Buesch <m@bues.ch>
#
# 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 2 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, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
from __future__ import division, absolute_import, print_function, unicode_literals
#from awlsim.common.cython_support cimport * #@cy
from awlsim.common.compat import *
from awlsim.common.enumeration import *
from awlsim.common.wordpacker import *
from awlsim.common.xmlfactory import *
from awlsim.common.util import *
from awlsim.common.datatypehelpers import * #+cimport
import hashlib
class AwlLibEntrySelectionFactory(XmlFactory):
def parser_open(self, tag=None):
libSel = self.libSel
if tag:
name = tag.getAttr("name")
entryType = tag.getAttr("type")
index = tag.getAttrInt("index")
effectiveIndex = tag.getAttrInt("effective_index", index)
libSel.setLibName(name)
libSel.setEntryType(entryType)
libSel.setEntryIndex(index)
libSel.setEffectiveEntryIndex(effectiveIndex)
XmlFactory.parser_open(self, tag)
def parser_beginTag(self, tag):
XmlFactory.parser_beginTag(self, tag)
def parser_endTag(self, tag):
if tag.name == "lib_selection":
self.parser_finish()
return
XmlFactory.parser_endTag(self, tag)
def composer_getTags(self):
project, libSel = self.project, self.libSel
childTags = []
tags = [self.Tag(name="lib_selection",
comment="\nStandard library selection",
attrs={
"name" : str(libSel.getLibName()),
"type" : str(libSel.getEntryTypeStr()),
"index" : str(int(libSel.getEntryIndex())),
"effective_index" : str(int(libSel.getEffectiveEntryIndex())),
},
tags=childTags),
]
return tags
class AwlLibEntrySelection(object):
"""AWL library entry selection."""
IDENT_HASH = hashlib.sha256
# Library entry type.
# This enumeration is awlsim-coreserver API!
EnumGen.start
TYPE_UNKNOWN = EnumGen.item
TYPE_FC = EnumGen.item
TYPE_FB = EnumGen.item
EnumGen.end
factory = AwlLibEntrySelectionFactory
def __init__(self, libName="",
entryType=TYPE_UNKNOWN,
entryIndex=-1, effectiveEntryIndex=-1):
self.__identHash = None
self.setLibName(libName)
self.setEntryType(entryType)
self.setEntryIndex(entryIndex)
self.setEffectiveEntryIndex(effectiveEntryIndex)
def setLibName(self, libName):
self.__libName = libName.strip()
self.__identHash = None
def getLibName(self):
return self.__libName
def setEntryType(self, entryType):
if isString(entryType):
if entryType.upper() == "FC":
entryType = self.TYPE_FC
elif entryType.upper() == "FB":
entryType = self.TYPE_FB
if entryType not in (self.TYPE_UNKNOWN,
self.TYPE_FC,
self.TYPE_FB):
raise AwlSimError("Library selection: "
"Invalid entry type %d." %\
entryType)
self.__entryType = entryType
self.__identHash = None
def getEntryType(self):
return self.__entryType
def getEntryTypeStr(self):
return {
self.TYPE_UNKNOWN : "UNKNOWN",
self.TYPE_FC : "FC",
self.TYPE_FB : "FB",
}[self.getEntryType()]
def setEntryIndex(self, entryIndex):
if entryIndex < -1 or entryIndex > 0xFFFF:
raise AwlSimError("Library selection: "
"Invalid entry index %d." %\
entryIndex)
self.__entryIndex = entryIndex
self.__identHash = None
def getEntryIndex(self):
return self.__entryIndex
def setEffectiveEntryIndex(self, effectiveEntryIndex):
if effectiveEntryIndex < -1 or effectiveEntryIndex > 0xFFFF:
raise AwlSimError("Library selection: "
"Invalid effective entry index %d." %\
effectiveEntryIndex)
self.__effectiveEntryIndex = effectiveEntryIndex
self.__identHash = None
def getEffectiveEntryIndex(self):
return self.__effectiveEntryIndex
def isValid(self):
return self.__libName and\
self.__entryType in (self.TYPE_FC, self.TYPE_FB) and\
self.__entryIndex >= 0 and\
self.__entryIndex <= 0xFFFF and\
self.__effectiveEntryIndex >= 0 and\
self.__effectiveEntryIndex <= 0xFFFF
def getIdentHash(self):
"""Get the unique identification hash for this
library selection descriptor.
"""
if not self.__identHash:
# Calculate the ident hash
h = self.IDENT_HASH(b"AwlLibEntrySelection")
h.update(self.__libName.encode("utf-8", "ignore"))
h.update(WordPacker.toBytes(bytearray(4), 32, 0,
self.__entryIndex))
h.update(WordPacker.toBytes(bytearray(4), 32, 0,
self.__effectiveEntryIndex))
self.__identHash = h.digest()
return self.__identHash
def getIdentHashStr(self):
return bytesToHexStr(self.getIdentHash())
def __eq__(self, other):
return self.getIdentHash() == other.getIdentHash()
def __ne__(self, other):
return not self.__eq__(other)
def __repr__(self): #@nocov
asStr = ""
if self.getEntryIndex() != self.getEffectiveEntryIndex():
asStr = " (as %s %d)" % (self.getEntryTypeStr(),
self.getEffectiveEntryIndex())
return "%s: %s %d%s" % (
self.getLibName(),
self.getEntryTypeStr(),
self.getEntryIndex(),
asStr,
)
|