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
|
# -*- coding: utf-8 -*-
#
# AWL simulator - Library entry selection
#
# Copyright 2014-2015 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.compat import *
from awlsim.common.enumeration import *
from awlsim.common.wordpacker import *
from awlsim.common.util import *
import hashlib
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
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 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):
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,
)
|