ua_stack_session.h 3.9 KB

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