ua_session.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. #ifndef UA_SESSION_H_
  2. #define UA_SESSION_H_
  3. #include "ua_channel.h"
  4. struct UA_Session;
  5. typedef struct UA_Session UA_Session;
  6. typedef UA_Int32(*UA_Session_idProvider)(UA_NodeId *newSessionId);
  7. /**
  8. * @brief creates a session object
  9. * @param newSession
  10. * @return error code
  11. */
  12. UA_Int32 UA_Session_new(UA_Session **newSession);
  13. /**
  14. * @brief inits a session object
  15. * @param session
  16. * @param sessionName
  17. * @param requestedSessionTimeout
  18. * @param maxRequestMessageSize
  19. * @param maxResponseMessageSize
  20. * @param idProvider
  21. * @param timeout
  22. * @return error code
  23. */
  24. UA_Int32 UA_Session_init(UA_Session *session, UA_String *sessionName, UA_Double requestedSessionTimeout,
  25. UA_UInt32 maxRequestMessageSize,
  26. UA_UInt32 maxResponseMessageSize,
  27. UA_Session_idProvider idProvider,
  28. UA_Int64 timeout);
  29. UA_Int32 UA_Session_delete(UA_Session *session);
  30. /**
  31. * @brief compares two session objects
  32. * @param session1
  33. * @param session2
  34. * @return UA_TRUE if it is the same session, UA_FALSE else
  35. */
  36. UA_Boolean UA_Session_compare(UA_Session *session1, UA_Session *session2);
  37. /**
  38. * @brief compares two sessions by their authentication token
  39. * @param session
  40. * @param token
  41. * @return UA_EQUAL if the session token matches the session UA_NOT_EQUAL
  42. */
  43. UA_Boolean UA_Session_compareByToken(UA_Session *session, UA_NodeId *token);
  44. /**
  45. * @brief compares two sessions by their session id
  46. * @param session
  47. * @param sessionId
  48. * @return UA_EQUAL if the session identifier matches the session UA_NOT_EQUAL
  49. */
  50. UA_Boolean UA_Session_compareById(UA_Session *session, UA_NodeId *sessionId);
  51. /**
  52. * @brief binds a channel to a session
  53. * @param session
  54. * @param channel
  55. * @return error code
  56. */
  57. UA_Int32 UA_Session_bind(UA_Session *session, SL_Channel *channel);
  58. /**
  59. * @brief checks if the given channel is related to the session
  60. * @param session
  61. * @param channel
  62. * @return UA_TRUE if there is a relation between session and given channel
  63. */
  64. UA_Boolean UA_Session_verifyChannel(UA_Session *session, SL_Channel *channel);
  65. /**
  66. * @brief If any activity on a session happens, the timeout must be extended
  67. * @param session
  68. * @return error code
  69. */
  70. UA_Int32 UA_Session_updateLifetime(UA_Session *session);
  71. /**
  72. * @brief Gets the session identifier (UA_NodeId)
  73. * @param session session from which the identifier should be returned
  74. * @param sessionId return value
  75. * @return error code
  76. */
  77. UA_Int32 UA_Session_getId(UA_Session *session, UA_NodeId *sessionId);
  78. /**
  79. * @brief Gets the session authentication token
  80. * @param session session from which the token should be returned
  81. * @param authenticationToken return value
  82. * @return error code
  83. */
  84. UA_Int32 UA_Session_getToken(UA_Session *session, UA_NodeId *authenticationToken);
  85. /**
  86. * @brief Gets the channel on which the session is currently running
  87. * @param session session from which the channel should be returned
  88. * @param channel return value
  89. * @return
  90. */
  91. UA_Int32 UA_Session_getChannel(UA_Session *session, SL_Channel **channel);
  92. /**
  93. * @brief Gets the sessions pending lifetime (calculated from the timeout which was set)
  94. * @param session session from which the lifetime should be returned
  95. * @param pendingLifetime return value
  96. * @return error code
  97. */
  98. UA_Int32 UA_Session_getPendingLifetime(UA_Session *session,UA_Double *pendingLifetime);
  99. /**
  100. * @brief Gets the pointer to the application
  101. * @param session session from which the application pointer should be returned
  102. * @param application return value
  103. * @return error code
  104. */
  105. UA_Int32 UA_Session_getApplicationPointer(UA_Session *session, Application** application);
  106. /**
  107. * @brief Sets the application pointer to the application
  108. * @param session session of which the application pointer should be set
  109. * @param application return value
  110. * @return error code
  111. */
  112. UA_Int32 UA_Session_setApplicationPointer(UA_Session *session, Application* application);
  113. #endif /* UA_SESSION_H_ */