open62541_MacroHelper.py 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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 logger import *
  18. from ua_constants import *
  19. __unique_item_id = 0
  20. class open62541_MacroHelper():
  21. def __init__(self, supressGenerationOfAttribute=[]):
  22. self.supressGenerationOfAttribute = supressGenerationOfAttribute
  23. def getCreateExpandedNodeIDMacro(self, node):
  24. if node.id().i != None:
  25. return "UA_EXPANDEDNODEID_NUMERIC(" + str(node.id().ns) + ", " + str(node.id().i) + ")"
  26. elif node.id().s != None:
  27. return "UA_EXPANDEDNODEID_STRING(" + str(node.id().ns) + ", " + node.id().s + ")"
  28. elif node.id().b != None:
  29. log(self, "NodeID Generation macro for bytestrings has not been implemented.")
  30. return ""
  31. elif node.id().g != None:
  32. log(self, "NodeID Generation macro for guids has not been implemented.")
  33. return ""
  34. else:
  35. return ""
  36. def getCreateNodeIDMacro(self, node):
  37. if node.id().i != None:
  38. return "UA_NODEID_NUMERIC(" + str(node.id().ns) + ", " + str(node.id().i) + ")"
  39. elif node.id().s != None:
  40. return "UA_NODEID_STRING(" + str(node.id().ns) + ", " + node.id().s + ")"
  41. elif node.id().b != None:
  42. log(self, "NodeID Generation macro for bytestrings has not been implemented.")
  43. return ""
  44. elif node.id().g != None:
  45. log(self, "NodeID Generation macro for guids has not been implemented.")
  46. return ""
  47. else:
  48. return ""
  49. def getCreateStandaloneReference(self, sourcenode, reference):
  50. # As reference from open62541 (we need to alter the attributes)
  51. # UA_Server_addReference(UA_Server *server, const UA_NodeId sourceId, const UA_NodeId refTypeId,
  52. # const UA_ExpandedNodeId targetId)
  53. code = []
  54. if reference.isForward():
  55. code.append("UA_Server_addReference(server, " + self.getCreateNodeIDMacro(sourcenode) + ", " + self.getCreateNodeIDMacro(reference.referenceType()) + ", "+self.getCreateExpandedNodeIDMacro(reference.target())+");")
  56. else:
  57. code.append("UA_Server_addReference(server, " + self.getCreateNodeIDMacro(reference.target()) + ", " + self.getCreateNodeIDMacro(reference.referenceType()) + ", "+self.getCreateExpandedNodeIDMacro(sourcenode)+");")
  58. return code
  59. def getCreateNode(self, node):
  60. nodetype = ""
  61. code = []
  62. code.append("// Node: " + str(node) + ", " + str(node.browseName()))
  63. if node.nodeClass() == NODE_CLASS_OBJECT:
  64. nodetype = "UA_ObjectNode"
  65. elif node.nodeClass() == NODE_CLASS_VARIABLE:
  66. nodetype = "UA_VariableNode"
  67. elif node.nodeClass() == NODE_CLASS_METHOD:
  68. nodetype = "UA_MethodNode"
  69. elif node.nodeClass() == NODE_CLASS_OBJECTTYPE:
  70. nodetype = "UA_ObjectTypeNode"
  71. elif node.nodeClass() == NODE_CLASS_REFERENCETYPE:
  72. nodetype = "UA_ReferenceTypeNode"
  73. elif node.nodeClass() == NODE_CLASS_VARIABLETYPE:
  74. nodetype = "UA_VariableTypeNode"
  75. elif node.nodeClass() == NODE_CLASS_DATATYPE:
  76. nodetype = "UA_DataTypeNode"
  77. elif node.nodeClass() == NODE_CLASS_VIEW:
  78. nodetype = "UA_ViewNode"
  79. elif node.nodeClass() == NODE_CLASS_METHODTYPE:
  80. nodetype = "UA_MethodTypeNode"
  81. else:
  82. nodetype = "UA_NodeTypeNotFoundorGeneric"
  83. code.append(nodetype + " *" + node.getCodePrintableID() + " = " + nodetype + "_new();")
  84. if not "browsename" in self.supressGenerationOfAttribute:
  85. code.append(node.getCodePrintableID() + "->browseName = UA_QUALIFIEDNAME_ALLOC(" + str(node.id().ns) + ", \"" + node.browseName() + "\");")
  86. if not "displayname" in self.supressGenerationOfAttribute:
  87. code.append(node.getCodePrintableID() + "->displayName = UA_LOCALIZEDTEXT_ALLOC(\"en_US\", \"" + node.displayName() + "\");")
  88. if not "description" in self.supressGenerationOfAttribute:
  89. code.append(node.getCodePrintableID() + "->description = UA_LOCALIZEDTEXT_ALLOC(\"en_US\", \"" + node.description() + "\");")
  90. if not "writemask" in self.supressGenerationOfAttribute:
  91. if node.__node_writeMask__ != 0:
  92. code.append(node.getCodePrintableID() + "->writeMask = (UA_Int32) " + str(node.__node_writeMask__) + ";")
  93. if not "userwritemask" in self.supressGenerationOfAttribute:
  94. if node.__node_userWriteMask__ != 0:
  95. code.append(node.getCodePrintableID() + "->userWriteMask = (UA_Int32) " + str(node.__node_userWriteMask__) + ";")
  96. #FIXME: Allocate descriptions, etc.
  97. if not "nodeid" in self.supressGenerationOfAttribute:
  98. if node.id().ns != 0:
  99. code.append(node.getCodePrintableID() + "->nodeId.namespaceIndex = " + str(node.id().ns) + ";")
  100. if node.id().i != None:
  101. code.append(node.getCodePrintableID() + "->nodeId.identifier.numeric = " + str(node.id().i) + ";")
  102. elif node.id().b != None:
  103. code.append(node.getCodePrintableID() + "->nodeId.identifierType = UA_NODEIDTYPE_BYTESTRING;")
  104. log(self, "ByteString IDs for nodes has not been implemented yet.", LOG_LEVEL_ERROR)
  105. return []
  106. elif node.id().g != None:
  107. #<jpfr> the string is sth like { .length = 111, .data = <ptr> }
  108. #<jpfr> there you _may_ alloc the <ptr> on the heap
  109. #<jpfr> for the guid, just set it to {.data1 = 111, .data2 = 2222, ....
  110. code.append(node.getCodePrintableID() + "->nodeId.identifierType = UA_NODEIDTYPE_GUID;")
  111. log(self, "GUIDs for nodes has not been implemented yet.", LOG_LEVEL_ERROR)
  112. return []
  113. elif node.id().s != None:
  114. code.append(node.getCodePrintableID() + "->nodeId.identifierType = UA_NODEIDTYPE_STRING;")
  115. code.append(node.getCodePrintableID() + "->nodeId.identifier.numeric = UA_STRING_ALLOC(\"" + str(node.id().i) + "\");")
  116. else:
  117. log(self, "Node ID is not numeric, bytestring, guid or string. I do not know how to create c code for that...", LOG_LEVEL_ERROR)
  118. return []
  119. return code