ua_nodestore.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. #ifndef UA_NODESTORE_H_
  2. #define UA_NODESTORE_H_
  3. #include "ua_types_generated.h"
  4. #include "ua_nodes.h"
  5. /**
  6. * @ingroup server
  7. *
  8. * @defgroup nodestore NodeStore
  9. *
  10. * @brief Stores the nodes in the address space. Internally, it is based on a
  11. * hash-map that maps nodes to their nodeid.
  12. *
  13. * Nodes need to be allocated on the heap before adding them to the nodestore
  14. * with. When adding, the node is copied to a new (managed) location in the
  15. * nodestore and the original memory is freed. The nodes in the nodestore are
  16. * immutable. To change the content of a node, it needs to be replaced as a
  17. * whole.
  18. *
  19. * Every node you _get from the nodestore needs to be _released when it is no
  20. * longer needed. In the background, reference counting is used to know if
  21. * somebody still uses the node in multi-threaded environments.
  22. *
  23. * @{
  24. */
  25. struct UA_NodeStore;
  26. typedef struct UA_NodeStore UA_NodeStore;
  27. /** Create a new namespace */
  28. UA_NodeStore * UA_NodeStore_new(void);
  29. /** Delete the namespace and all nodes in it */
  30. void UA_NodeStore_delete(UA_NodeStore *ns);
  31. /**
  32. * Inserts a new node into the namespace. If the nodeid is zero, then a fresh
  33. * numeric nodeid from namespace 1 is assigned. The memory of the original node
  34. * is freed and the content is moved to a managed (immutable) node. If inserted
  35. * is not NULL, then a pointer to the managed node is returned (and must be
  36. * released).
  37. */
  38. UA_StatusCode UA_NodeStore_insert(UA_NodeStore *ns, UA_Node *node, const UA_Node **inserted);
  39. /**
  40. * Replace an existing node in the nodestore. If the node was already replaced,
  41. * UA_STATUSCODE_BADINTERNALERROR is returned. If inserted is not NULL, a
  42. * pointer to the managed (immutable) node is returned.
  43. */
  44. UA_StatusCode UA_NodeStore_replace(UA_NodeStore *ns, const UA_Node *oldNode, UA_Node *node, const UA_Node **inserted);
  45. /**
  46. * Remove a node from the namespace. Always succeeds, even if the node was not
  47. * found.
  48. */
  49. UA_StatusCode UA_NodeStore_remove(UA_NodeStore *ns, const UA_NodeId *nodeid);
  50. /**
  51. * Retrieve a node (read-only) from the namespace. Nodes are immutable. They
  52. * can only be replaced. After the Node is no longer used, the locked entry
  53. * needs to be released.
  54. */
  55. const UA_Node * UA_NodeStore_get(const UA_NodeStore *ns, const UA_NodeId *nodeid);
  56. /**
  57. * Release a managed node. Do never insert a node that isn't stored in a
  58. * namespace.
  59. */
  60. void UA_NodeStore_release(const UA_Node *managed);
  61. /**
  62. * A function that can be evaluated on all entries in a namespace via
  63. * UA_NodeStore_iterate. Note that the visitor is read-only on the nodes.
  64. */
  65. typedef void (*UA_NodeStore_nodeVisitor)(const UA_Node *node);
  66. /** Iterate over all nodes in a namespace. */
  67. void UA_NodeStore_iterate(const UA_NodeStore *ns, UA_NodeStore_nodeVisitor visitor);
  68. /** @} */
  69. #endif /* UA_NODESTORE_H_ */