nodeset.py 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339
  1. #!/usr/bin/env/python
  2. # -*- coding: utf-8 -*-
  3. ###
  4. ### Author: Chris Iatrou (ichrispa@core-vector.net)
  5. ### Version: rev 13
  6. ###
  7. ### This program was created for educational purposes and has been
  8. ### contributed to the open62541 project by the author. All licensing
  9. ### terms for this source is inherited by the terms and conditions
  10. ### specified for by the open62541 project (see the projects readme
  11. ### file for more information on the LGPL terms and restrictions).
  12. ###
  13. ### This program is not meant to be used in a production environment. The
  14. ### author is not liable for any complications arising due to the use of
  15. ### this program.
  16. ###
  17. from __future__ import print_function
  18. import sys
  19. import xml.dom.minidom as dom
  20. from struct import pack as structpack
  21. from time import struct_time, strftime, strptime, mktime
  22. import logging
  23. import codecs
  24. import re
  25. logger = logging.getLogger(__name__)
  26. from nodes import *
  27. from opaque_type_mapping import opaque_type_mapping
  28. import codecs
  29. ####################
  30. # Helper Functions #
  31. ####################
  32. hassubtype = NodeId("ns=0;i=45")
  33. def getSubTypesOf(nodeset, node, skipNodes=[]):
  34. if node in skipNodes:
  35. return []
  36. re = [node]
  37. for ref in node.references:
  38. if ref.referenceType == hassubtype and ref.isForward:
  39. re = re + getSubTypesOf(nodeset, nodeset.nodes[ref.target], skipNodes=skipNodes)
  40. return re
  41. def extractNamespaces(xmlfile):
  42. # Extract a list of namespaces used. The first namespace is always
  43. # "http://opcfoundation.org/UA/". minidom gobbles up
  44. # <NamespaceUris></NamespaceUris> elements, without a decent way to reliably
  45. # access this dom2 <uri></uri> elements (only attribute xmlns= are accessible
  46. # using minidom). We need them for dereferencing though... This function
  47. # attempts to do just that.
  48. namespaces = ["http://opcfoundation.org/UA/"]
  49. infile = codecs.open(xmlfile.name, encoding='utf-8')
  50. foundURIs = False
  51. nsline = ""
  52. line = infile.readline()
  53. for line in infile:
  54. if "<namespaceuris>" in line.lower():
  55. foundURIs = True
  56. elif "</namespaceuris>" in line.lower():
  57. foundURIs = False
  58. nsline = nsline + line
  59. break
  60. if foundURIs:
  61. nsline = nsline + line
  62. if len(nsline) > 0:
  63. ns = dom.parseString(nsline).getElementsByTagName("NamespaceUris")
  64. for uri in ns[0].childNodes:
  65. if uri.nodeType != uri.ELEMENT_NODE:
  66. continue
  67. if uri.firstChild.data in namespaces:
  68. continue
  69. namespaces.append(uri.firstChild.data)
  70. infile.close()
  71. return namespaces
  72. def buildAliasList(xmlelement):
  73. """Parses the <Alias> XML Element present in must XML NodeSet definitions.
  74. Contents the Alias element are stored in a dictionary for further
  75. dereferencing during pointer linkage (see linkOpenPointer())."""
  76. aliases = {}
  77. for al in xmlelement.childNodes:
  78. if al.nodeType == al.ELEMENT_NODE:
  79. if al.hasAttribute("Alias"):
  80. aliasst = al.getAttribute("Alias")
  81. aliasnd = unicode(al.firstChild.data)
  82. aliases[aliasst] = aliasnd
  83. return aliases
  84. class NodeSet(object):
  85. """ This class handles parsing XML description of namespaces, instantiating
  86. nodes, linking references, graphing the namespace and compiling a binary
  87. representation.
  88. Note that nodes assigned to this class are not restricted to having a
  89. single namespace ID. This class represents the entire physical address
  90. space of the binary representation and all nodes that are to be included
  91. in that segment of memory.
  92. """
  93. def __init__(self):
  94. self.nodes = {}
  95. self.aliases = {}
  96. self.namespaces = ["http://opcfoundation.org/UA/"]
  97. def sanitize(self):
  98. for n in self.nodes.values():
  99. if n.sanitize() == False:
  100. raise Exception("Failed to sanitize node " + str(n))
  101. # Sanitize reference consistency
  102. for n in self.nodes.values():
  103. for ref in n.references:
  104. if not ref.source == n.id:
  105. raise Exception("Reference " + str(ref) + " has an invalid source")
  106. if not ref.referenceType in self.nodes:
  107. raise Exception("Reference " + str(ref) + " has an unknown reference type")
  108. if not ref.target in self.nodes:
  109. raise Exception("Reference " + str(ref) + " has an unknown target")
  110. def addNamespace(self, nsURL):
  111. if not nsURL in self.namespaces:
  112. self.namespaces.append(nsURL)
  113. def createNamespaceMapping(self, orig_namespaces):
  114. """Creates a dict that maps from the nsindex in the original nodeset to the
  115. nsindex in the combined nodeset"""
  116. m = {}
  117. for index, name in enumerate(orig_namespaces):
  118. m[index] = self.namespaces.index(name)
  119. return m
  120. def getNodeByBrowseName(self, idstring):
  121. return next((n for n in self.nodes.values() if idstring == n.browseName.name), None)
  122. def getNodeById(self, namespace, id):
  123. nodeId = NodeId()
  124. nodeId.ns = namespace
  125. nodeId.i = id
  126. return self.nodes[nodeId]
  127. def getRoot(self):
  128. return self.getNodeByBrowseName("Root")
  129. def createNode(self, xmlelement, nsMapping, hidden=False):
  130. ndtype = xmlelement.localName.lower()
  131. if ndtype[:2] == "ua":
  132. ndtype = ndtype[2:]
  133. node = None
  134. if ndtype == 'variable':
  135. node = VariableNode(xmlelement)
  136. if ndtype == 'object':
  137. node = ObjectNode(xmlelement)
  138. if ndtype == 'method':
  139. node = MethodNode(xmlelement)
  140. if ndtype == 'objecttype':
  141. node = ObjectTypeNode(xmlelement)
  142. if ndtype == 'variabletype':
  143. node = VariableTypeNode(xmlelement)
  144. if ndtype == 'methodtype':
  145. node = MethodNode(xmlelement)
  146. if ndtype == 'datatype':
  147. node = DataTypeNode(xmlelement)
  148. if ndtype == 'referencetype':
  149. node = ReferenceTypeNode(xmlelement)
  150. if node and hidden:
  151. node.hidden = True
  152. # References from an existing nodeset are all suppressed
  153. for ref in node.references:
  154. ref.hidden = True
  155. for ref in node.inverseReferences:
  156. ref.hidden = True
  157. return node
  158. def hide_node(self, nodeId, hidden=True):
  159. if not nodeId in self.nodes:
  160. return False
  161. node = self.nodes[nodeId]
  162. node.hidden = hidden
  163. # References from an existing nodeset are all suppressed
  164. for ref in node.references:
  165. ref.hidden = hidden
  166. for ref in node.inverseReferences:
  167. ref.hidden = hidden
  168. return True
  169. def merge_dicts(self, *dict_args):
  170. """
  171. Given any number of dicts, shallow copy and merge into a new dict,
  172. precedence goes to key value pairs in latter dicts.
  173. """
  174. result = {}
  175. for dictionary in dict_args:
  176. result.update(dictionary)
  177. return result
  178. def addNodeSet(self, xmlfile, hidden=False, typesArray="UA_TYPES"):
  179. # Extract NodeSet DOM
  180. fileContent = xmlfile.read()
  181. # Remove BOM since the dom parser cannot handle it on python 3 windows
  182. if fileContent.startswith( codecs.BOM_UTF8 ):
  183. fileContent = fileContent.lstrip( codecs.BOM_UTF8 )
  184. if (sys.version_info >= (3, 0)):
  185. fileContent = fileContent.decode("utf-8")
  186. # Remove the uax namespace from tags. UaModeler adds this namespace to some elements
  187. fileContent = re.sub(r"<([/]?)uax:(\w+)([/]?)>", "<\g<1>\g<2>\g<3>>", fileContent)
  188. nodesets = dom.parseString(fileContent).getElementsByTagName("UANodeSet")
  189. if len(nodesets) == 0 or len(nodesets) > 1:
  190. raise Exception(self, self.originXML + " contains no or more then 1 nodeset")
  191. nodeset = nodesets[0]
  192. # Create the namespace mapping
  193. orig_namespaces = extractNamespaces(xmlfile) # List of namespaces used in the xml file
  194. for ns in orig_namespaces:
  195. self.addNamespace(ns)
  196. nsMapping = self.createNamespaceMapping(orig_namespaces)
  197. # Extract the aliases
  198. for nd in nodeset.childNodes:
  199. if nd.nodeType != nd.ELEMENT_NODE:
  200. continue
  201. ndtype = nd.localName.lower()
  202. if 'aliases' in ndtype:
  203. self.aliases = self.merge_dicts(self.aliases, buildAliasList(nd))
  204. # Instantiate nodes
  205. newnodes = []
  206. for nd in nodeset.childNodes:
  207. if nd.nodeType != nd.ELEMENT_NODE:
  208. continue
  209. node = self.createNode(nd, nsMapping, hidden)
  210. if not node:
  211. continue
  212. node.replaceAliases(self.aliases)
  213. node.replaceNamespaces(nsMapping)
  214. node.typesArray = typesArray
  215. # Add the node the the global dict
  216. if node.id in self.nodes:
  217. raise Exception("XMLElement with duplicate ID " + str(node.id))
  218. self.nodes[node.id] = node
  219. newnodes.append(node)
  220. # add inverse references
  221. for node in newnodes:
  222. for ref in node.references:
  223. newsource = self.nodes[ref.target]
  224. hide = ref.hidden or (node.hidden and newsource.hidden)
  225. newref = Reference(newsource.id, ref.referenceType, ref.source, False, hide, inferred=True)
  226. newsource.inverseReferences.add(newref)
  227. for ref in node.inverseReferences:
  228. newsource = self.nodes[ref.target]
  229. hide = ref.hidden or (node.hidden and newsource.hidden)
  230. newref = Reference(newsource.id, ref.referenceType, ref.source, True, hide, inferred=True)
  231. newsource.references.add(newref)
  232. def getBinaryEncodingIdForNode(self, nodeId):
  233. """
  234. The node should have a 'HasEncoding' forward reference which points to the encoding ids.
  235. These can be XML Encoding or Binary Encoding. Therefore we also need to check if the SymbolicName
  236. of the target node is "DefaultBinary"
  237. """
  238. node = self.nodes[nodeId]
  239. refId = NodeId()
  240. for ref in node.references:
  241. if ref.referenceType.ns == 0 and ref.referenceType.i == 38:
  242. refNode = self.nodes[ref.target]
  243. if refNode.symbolicName.value == "DefaultBinary":
  244. return ref.target
  245. raise Exception("No DefaultBinary encoding defined for node " + str(nodeId))
  246. def buildEncodingRules(self):
  247. """ Calls buildEncoding() for all DataType nodes (opcua_node_dataType_t).
  248. No return value
  249. """
  250. stat = {True: 0, False: 0}
  251. for n in self.nodes.values():
  252. if isinstance(n, DataTypeNode):
  253. n.buildEncoding(self)
  254. stat[n.isEncodable()] = stat[n.isEncodable()] + 1
  255. logger.debug("Type definitions built/passed: " + str(stat))
  256. def allocateVariables(self):
  257. for n in self.nodes.values():
  258. if isinstance(n, VariableNode):
  259. n.allocateValue(self)
  260. def getBaseDataType(self, node):
  261. if node is None:
  262. return None
  263. if node.browseName.name not in opaque_type_mapping:
  264. return node
  265. for ref in node.inverseReferences:
  266. if ref.referenceType.i == 45:
  267. return self.getBaseDataType(self.nodes[ref.target])
  268. return node
  269. def getDataTypeNode(self, dataType):
  270. if isinstance(dataType, six.string_types):
  271. if not valueIsInternalType(dataType):
  272. logger.error("Not a valid dataType string: " + dataType)
  273. return None
  274. return self.nodes[NodeId(self.aliases[dataType])]
  275. if isinstance(dataType, NodeId):
  276. if dataType.i == 0:
  277. return None
  278. dataTypeNode = self.nodes[dataType]
  279. if not isinstance(dataTypeNode, DataTypeNode):
  280. logger.error("Node id " + str(dataType) + " is not reference a valid dataType.")
  281. return None
  282. if not dataTypeNode.isEncodable():
  283. logger.warn("DataType " + str(dataTypeNode.browseName) + " is not encodable.")
  284. return dataTypeNode
  285. return None
  286. def getRelevantOrderingReferences(self):
  287. relevant_types = getSubTypesOf(self,
  288. self.getNodeByBrowseName("HierarchicalReferences"),
  289. [])
  290. relevant_types += getSubTypesOf(self,
  291. self.getNodeByBrowseName("HasEncoding"),
  292. [])
  293. relevant_types = map(lambda x: x.id, relevant_types)
  294. return list(relevant_types)