connection.hpp 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
  2. *
  3. * Gearmand client and server library.
  4. *
  5. * Copyright (C) 2011 Data Differential, http://datadifferential.com/
  6. * Copyright (C) 2008 Brian Aker, Eric Day
  7. * All rights reserved.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions are
  11. * met:
  12. *
  13. * * Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. *
  16. * * Redistributions in binary form must reproduce the above
  17. * copyright notice, this list of conditions and the following disclaimer
  18. * in the documentation and/or other materials provided with the
  19. * distribution.
  20. *
  21. * * The names of its contributors may not be used to endorse or
  22. * promote products derived from this software without specific prior
  23. * written permission.
  24. *
  25. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  26. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  27. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  28. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  29. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  30. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  31. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  32. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  33. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  34. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  35. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  36. *
  37. */
  38. #pragma once
  39. #include <libgearman/connection.h>
  40. struct gearman_connection_st
  41. {
  42. struct {
  43. bool ready;
  44. bool packet_in_use;
  45. } options;
  46. enum gearman_con_universal_t state;
  47. enum gearman_con_send_t send_state;
  48. enum gearman_con_recv_t recv_state;
  49. in_port_t port;
  50. short events;
  51. short revents;
  52. int fd;
  53. int cached_errno;
  54. uint32_t created_id;
  55. uint32_t created_id_next;
  56. size_t send_buffer_size;
  57. size_t send_data_size;
  58. size_t send_data_offset;
  59. size_t recv_buffer_size;
  60. size_t recv_data_size;
  61. size_t recv_data_offset;
  62. gearman_universal_st &universal;
  63. gearman_connection_st *next;
  64. gearman_connection_st *prev;
  65. void *context;
  66. struct addrinfo *addrinfo;
  67. struct addrinfo *addrinfo_next;
  68. char *send_buffer_ptr;
  69. gearman_packet_st *recv_packet;
  70. char *recv_buffer_ptr;
  71. gearman_packet_st _packet;
  72. char host[NI_MAXHOST];
  73. char send_buffer[GEARMAN_SEND_BUFFER_SIZE];
  74. char recv_buffer[GEARMAN_RECV_BUFFER_SIZE];
  75. gearman_connection_st(gearman_universal_st &universal_arg,
  76. gearman_connection_options_t *options);
  77. ~gearman_connection_st();
  78. void set_host( const char *host, const in_port_t port);
  79. gearman_return_t send(const gearman_packet_st&, const bool flush_buffer);
  80. size_t send_and_flush(const void *data, size_t data_size, gearman_return_t *ret_ptr);
  81. gearman_return_t flush();
  82. void close();
  83. // Receive packet from a connection.
  84. gearman_packet_st *receiving(gearman_packet_st&,
  85. gearman_return_t& , const bool recv_data);
  86. // Receive packet data from a connection.
  87. size_t receiving(void *data, size_t data_size, gearman_return_t&);
  88. // Set events to be watched for a connection.
  89. void set_events(short events);
  90. // Set events that are ready for a connection. This is used with the
  91. // external event callbacks.
  92. void set_revents(short revents);
  93. void reset_addrinfo();
  94. private:
  95. size_t recv(void *data, size_t data_size, gearman_return_t&);
  96. };
  97. /**
  98. * Initialize a connection structure. Always check the return value even if
  99. * passing in a pre-allocated structure. Some other initialization may have
  100. * failed.
  101. */
  102. GEARMAN_LOCAL
  103. gearman_connection_st *gearman_connection_create(gearman_universal_st &universal,
  104. gearman_connection_options_t *options);
  105. GEARMAN_LOCAL
  106. gearman_connection_st *gearman_connection_copy(gearman_universal_st& universal,
  107. const gearman_connection_st& from);
  108. /**
  109. * Create a connection structure with the given host and port.
  110. *
  111. * @param[in] gearman Structure previously initialized with gearman_create() or
  112. * gearman_clone().
  113. * @param[in] connection Caller allocated structure, or NULL to allocate one.
  114. * @param[in] host Host or IP address to connect to.
  115. * @param[in] port Port to connect to.
  116. * @return On success, a pointer to the (possibly allocated) structure. On
  117. * failure this will be NULL.
  118. */
  119. GEARMAN_LOCAL
  120. gearman_connection_st *gearman_connection_create_args(gearman_universal_st &universal,
  121. const char *host, in_port_t port);