aboutsummaryrefslogtreecommitdiffstats
path: root/awlsim/fupcompiler/grid.py
blob: 5a9b93be50d1c0326b17a5f5973fd8a0b9c7f828 (plain)
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
# -*- coding: utf-8 -*-
#
# AWL simulator - FUP compiler - Grid
#
# Copyright 2016-2018 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.xmlfactory import *

from awlsim.awloptimizer.awloptimizer import *

from awlsim.fupcompiler.base import *
from awlsim.fupcompiler.conn import *
from awlsim.fupcompiler.wire import *
from awlsim.fupcompiler.elem import *
from awlsim.fupcompiler.elemcomment import *


class FupCompiler_GridFactory(XmlFactory):
	def parser_open(self, tag=None):
		assert(tag)
		uuid = tag.getAttr("uuid", None)
		self.grid.uuid = uuid
		XmlFactory.parser_open(self, tag)

	def parser_beginTag(self, tag):
		if tag.name == "optimizers":
			optSettCont = self.grid.optimizerSettingsContainer
			optSettCont.clear()
			self.parser_switchTo(optSettCont.factory(settingsContainer=optSettCont))
			return
		if tag.name == "wires":
			self.parser_switchTo(FupCompiler_Wire.factory(grid=self.grid))
			return
		if tag.name == "elements":
			self.parser_switchTo(FupCompiler_Elem.factory(grid=self.grid))
			return
		XmlFactory.parser_beginTag(self, tag)

	def parser_endTag(self, tag):
		if tag.name == "grid":
			self.parser_finish()
			return
		XmlFactory.parser_endTag(self, tag)

class FupCompiler_Grid(FupCompiler_BaseObj):
	factory			= FupCompiler_GridFactory
	noPreprocessing		= True

	def __init__(self, compiler, uuid=None):
		FupCompiler_BaseObj.__init__(self, uuid=uuid)
		self.compiler = compiler	# FupCompiler
		self.wires = {}			# FupCompiler_Wire
		self.elems = set()		# FupCompiler_Elem
		self.uuids = {}			# Dict of { uuid : uuid-owner-object }
		self.optimizerSettingsContainer = AwlOptimizerSettingsContainer()

	def newWire(self, virtual=False):
		newWireId = 0
		if self.wires:
			newWireId = max(dictKeys(self.wires)) + 1
		wire = FupCompiler_Wire(self, newWireId, virtual)
		self.addWire(wire)
		return wire

	def addWire(self, wire):
		if wire.idNum in self.wires:
			return False
		self.wires[wire.idNum] = wire
		# Check and warn if we have a duplicate UUID.
		if wire.uuid != wire.NIL_UUID:
			other = self.uuids.get(wire.uuid, None)
			if other and other is not wire:
				printError("FUP-compiler ERROR: "
					"Duplicate wire UUID: %s" % wire.uuid)
			self.uuids[wire.uuid] = wire
		return True

	def getWire(self, wireId):
		try:
			if wireId >= 0:
				return self.wires[wireId]
		except KeyError:
			pass
		return None

	def removeWire(self, wire):
		self.wires.pop(wire.idNum, None)

	def addElem(self, elem):
		self.elems.add(elem)
		# Check and warn if we have a duplicate UUID.
		if elem.uuid != elem.NIL_UUID:
			other = self.uuids.get(elem.uuid, None)
			if other and other is not elem:
				printError("FUP-compiler ERROR: "
					"Duplicate element UUID: %s" % elem.uuid)
			self.uuids[elem.uuid] = elem

	@property
	def enabledElems(self):
		"""Get all enabled elements.
		"""
		return filter(lambda elem: elem.enabled, self.elems)

	def compile(self):
		"""Compile this FUP grid to AWL.
		Returns a list of instructions.
		"""
		if self.compileState == self.COMPILE_DONE:
			return []
		self.compileState = self.COMPILE_RUNNING
		insns = []

		from awlsim.fupcompiler.elemoper import FupCompiler_ElemOper

		# Resolve all wire-IDs
		for wire in dictValues(self.wires):
			wire.clearConnections()
		for elem in self.elems:
			for conn in elem.connections:
				if elem.enabled and\
				   conn.wireId == conn.WIREID_NONE and not conn.isOptional:
					raise FupGridError("Unconnected pin%s found "
						"in FUP element %s." % (
						(" \"%s\"" % conn.text) if conn.text else "",
						str(elem)),
						self)
				if conn.wireId == conn.WIREID_NONE:
					conn.wire = None
				else:
					wire = self.getWire(conn.wireId)
					if not wire:
						raise FupGridError("Wire with ID %d "
							"does not exist, but %s "
							"references it." % (
							conn.wireId, str(elem)),
							self)
					wire.addConn(conn)
					conn.wire = wire

		# Disable all load and assignment operators that
		# are directly connected to disabled elements.
		for elem in self.elems:
			if elem.enabled:
				continue
			if elem.isType(FupCompiler_Elem.TYPE_OPERAND,
				       FupCompiler_ElemOper.SUBTYPE_LOAD):
				# Disabled load operands do not affect other elems.
				continue
			for conn in elem.connections:
				for otherElem in conn.getConnectedElems(viaOut=True, viaIn=True):
					if not otherElem.enabled:
						continue
					if not otherElem.isType(FupCompiler_Elem.TYPE_OPERAND,
								(FupCompiler_ElemOper.SUBTYPE_LOAD,
								 FupCompiler_ElemOper.SUBTYPE_ASSIGN)):
						continue
					# This is a load or assignment connected
					# to a disabled element. Disable it, too.
					otherElem.enabled = False

		# Disconnect disabled elements from the wires.
		# Disabled elements will be left dangling.
		for wire in tuple(dictValues(self.wires)):
			removedConn = False
			for conn in frozenset(wire.connections):
				if not conn.elem.enabled:
					wire.removeConn(conn)
					removedConn = True
			if removedConn:
				# If there is only one connection left, also remove that.
				if len(wire.connections) == 1:
					wire.removeConn(getany(wire.connections))
				# If there are no connections left to this wire, remove the wire.
				if len(wire.connections) == 0:
					self.removeWire(wire)

		# Wire sanity checks.
		for wire in dictValues(self.wires):
			if len(wire.connections) == 0:
				raise FupGridError("Found unconnected wire %s" % (
					str(wire)),
					self)
			if len(wire.connections) == 1:
				raise FupGridError("Found dangling wire "
					"%s with only one connection" % (
					str(wire)),
					self)

		def checkAllElemStates(checkState):
			# Check if all elements have been processed.
			for elem in self.enabledElems:
				if elem.compileState != checkState and\
				   not isinstance(elem, FupCompiler_ElemComment):
					raise FupGridError("Found dangling element "
						"'%s'. Please make sure all connections of "
						"this element are connected." % (
						str(elem)),
						self)

		# Preprocess all elements.
		# Find all assignment operators and walk the logic chain upwards.
		for elem in FupCompiler_Elem.sorted(self.enabledElems):
			if elem.isCompileEntryPoint and elem.needPreprocess:
				elem.preprocess()

		# Check if all elements have been preprocessed.
		checkAllElemStates(FupCompiler_Elem.COMPILE_PREPROCESSED)

		# Check if inverted connections are only used on supported elements.
		for elem in FupCompiler_Elem.sorted(self.enabledElems):
			for conn in elem.connections:
				if conn.inverted and\
				   conn.connType != conn.TYPE_VKE:
					raise FupGridError("An inverted connection "
						"is only allowed for VKE based (boolean) "
						"connections. The connection '%s' in "
						"element '%s' is not supported." % (
						str(conn), str(elem)),
						self)

		# Compile all elements.
		# Find all assignment operators and walk the logic chain upwards.
		for elem in FupCompiler_Elem.sorted(self.enabledElems):
			if elem.isCompileEntryPoint and elem.needCompile:
				insns.extend(elem.compile())

		# Check if all elements have been compiled.
		checkAllElemStates(FupCompiler_Elem.COMPILE_DONE)

		self.compileState = self.COMPILE_DONE
		return insns

	def __repr__(self): #@nocov
		return "FupCompiler_Grid(compiler)"

	def __str__(self): #@nocov
		return "FUP-grid"
bues.ch cgit interface