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
|
# -*- coding: utf-8 -*-
#
# AWL simulator - datablocks
#
# Copyright 2012-2014 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.blockinfo import *
from awlsim.core.util import *
from awlsim.core.operators import *
from awlsim.core.datatypes import *
from awlsim.core.datastructure import *
from awlsim.core.blocks import *
class DB(Block):
PERM_READ = 1 << 0
PERM_WRITE = 1 << 1
def __init__(self, index, codeBlock=None,
permissions=(PERM_READ|PERM_WRITE)):
Block.__init__(self, index)
self.setPermissions(permissions)
self.codeBlock = codeBlock # The FB, if this is an instance-DB.
if self.codeBlock:
# The data structure is declared by the interface.
self.__struct = None
else:
self.__struct = AwlStruct()
self.structInstance = None
def setPermissions(self, newPermissions):
self.permissions = newPermissions
if self.permissions & self.PERM_READ:
self.fetch = self.__fetch
else:
self.fetch = self.__fetch_noPermission
if self.permissions & self.PERM_WRITE:
self.store = self.__store
else:
self.store = self.__store_noPermission
@property
def struct(self):
if self.codeBlock:
return self.codeBlock.interface.struct
return self.__struct
def isInstanceDB(self):
return bool(self.codeBlock)
def allocate(self):
self.structInstance = AwlStructInstance(self.struct)
def __fetch(self, operator, baseOffset=AwlOffset()):
return self.structInstance.dataBytes.fetch(baseOffset + operator.value,
operator.width)
def __fetch_noPermission(self, operator, baseOffset=None):
raise AwlSimError("Fetch from read protected DB %d" % self.index)
fetch = __fetch
def __store(self, operator, value, baseOffset=AwlOffset()):
self.structInstance.dataBytes.store(baseOffset + operator.value,
operator.width,
value)
def __store_noPermission(self, operator, value, baseOffset=None):
raise AwlSimError("Store to write protected DB %d" % self.index)
store = __store
def getBlockInfo(self):
"""Get a BlockInfo instance for this block.
"""
return BlockInfo(blockType = BlockInfo.TYPE_DB,
blockIndex = self.index,
identHash = self.identHash)
def __repr__(self):
if self.index == 0:
return "DB --"
return "DB %d" % self.index
|