ua_connection.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*
  2. * Copyright (C) 2014-2016 the contributors as stated in the AUTHORS file
  3. *
  4. * This file is part of open62541. open62541 is free software: you can
  5. * redistribute it and/or modify it under the terms of the GNU Lesser General
  6. * Public License, version 3 (as published by the Free Software Foundation) with
  7. * a static linking exception as stated in the LICENSE file provided with
  8. * open62541.
  9. *
  10. * open62541 is distributed in the hope that it will be useful, but WITHOUT ANY
  11. * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. * A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
  13. * details.
  14. */
  15. #ifndef UA_CONNECTION_H_
  16. #define UA_CONNECTION_H_
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. #include "ua_types.h"
  21. /* Forward declarations */
  22. struct UA_Connection;
  23. typedef struct UA_Connection UA_Connection;
  24. struct UA_SecureChannel;
  25. typedef struct UA_SecureChannel UA_SecureChannel;
  26. /**
  27. * Networking
  28. * ----------
  29. * Client-server connection is represented by a `UA_Connection` structure. In
  30. * order to allow for different operating systems and connection types. For
  31. * this, `UA_Connection` stores a pointer to user-defined data and
  32. * function-pointers to interact with the underlying networking implementation.
  33. *
  34. * An example networklayer for TCP communication is contained in the plugins
  35. * folder. The networklayer forwards messages with `UA_Connection` structures to
  36. * the main open62541 library. The library can then return messages vie TCP
  37. * without being aware of the underlying transport technology.
  38. *
  39. * Connection Config
  40. * ================= */
  41. typedef struct UA_ConnectionConfig {
  42. UA_UInt32 protocolVersion;
  43. UA_UInt32 sendBufferSize;
  44. UA_UInt32 recvBufferSize;
  45. UA_UInt32 maxMessageSize;
  46. UA_UInt32 maxChunkCount;
  47. } UA_ConnectionConfig;
  48. extern const UA_EXPORT UA_ConnectionConfig UA_ConnectionConfig_standard;
  49. /**
  50. * Connection Structure
  51. * ==================== */
  52. typedef enum UA_ConnectionState {
  53. UA_CONNECTION_OPENING, /* The socket is open, but the HEL/ACK handshake
  54. is not done */
  55. UA_CONNECTION_ESTABLISHED, /* The socket is open and the connection
  56. configured */
  57. UA_CONNECTION_CLOSED, /* The socket has been closed and the connection
  58. will be deleted */
  59. } UA_ConnectionState;
  60. struct UA_Connection {
  61. UA_ConnectionState state;
  62. UA_ConnectionConfig localConf;
  63. UA_ConnectionConfig remoteConf;
  64. UA_SecureChannel *channel; /* The securechannel that is attached to
  65. this connection */
  66. UA_Int32 sockfd; /* Most connectivity solutions run on
  67. sockets. Having the socket id here
  68. simplifies the design. */
  69. void *handle; /* A pointer to the networklayer */
  70. UA_ByteString incompleteMessage; /* A half-received message (TCP is a
  71. streaming protocol) is stored here */
  72. /* Get a buffer for sending */
  73. UA_StatusCode (*getSendBuffer)(UA_Connection *connection, size_t length,
  74. UA_ByteString *buf);
  75. /* Release the send buffer manually */
  76. void (*releaseSendBuffer)(UA_Connection *connection, UA_ByteString *buf);
  77. /* Sends a message over the connection. The message buffer is always freed,
  78. * even if sending fails.
  79. *
  80. * @param connection The connection
  81. * @param buf The message buffer
  82. * @return Returns an error code or UA_STATUSCODE_GOOD. */
  83. UA_StatusCode (*send)(UA_Connection *connection, UA_ByteString *buf);
  84. /* Receive a message from the remote connection
  85. *
  86. * @param connection The connection
  87. * @param response The response string. It is allocated by the connection
  88. * and needs to be freed with connection->releaseBuffer
  89. * @param timeout Timeout of the recv operation in milliseconds
  90. * @return Returns UA_STATUSCODE_BADCOMMUNICATIONERROR if the recv operation
  91. * can be repeated, UA_STATUSCODE_GOOD if it succeeded and
  92. * UA_STATUSCODE_BADCONNECTIONCLOSED if the connection was
  93. * closed. */
  94. UA_StatusCode (*recv)(UA_Connection *connection, UA_ByteString *response, UA_UInt32 timeout);
  95. /* Release the buffer of a received message */
  96. void (*releaseRecvBuffer)(UA_Connection *connection, UA_ByteString *buf);
  97. /* Close the connection */
  98. void (*close)(UA_Connection *connection);
  99. };
  100. void UA_EXPORT UA_Connection_init(UA_Connection *connection);
  101. void UA_EXPORT UA_Connection_deleteMembers(UA_Connection *connection);
  102. #ifdef __cplusplus
  103. } // extern "C"
  104. #endif
  105. #endif /* UA_CONNECTION_H_ */