connection.hpp 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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-1.0/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[GEARMAN_NI_MAXHOST];
  73. char send_buffer[GEARMAN_SEND_BUFFER_SIZE];
  74. char recv_buffer[GEARMAN_RECV_BUFFER_SIZE];
  75. void free_private_packet();
  76. gearman_connection_st(gearman_universal_st &universal_arg,
  77. gearman_connection_options_t *options);
  78. ~gearman_connection_st();
  79. void set_host( const char *host, const in_port_t port);
  80. gearman_return_t send_packet(const gearman_packet_st&, const bool flush_buffer);
  81. size_t send_and_flush(const void *data, size_t data_size, gearman_return_t *ret_ptr);
  82. gearman_return_t flush();
  83. void close_socket();
  84. // Receive packet from a connection.
  85. gearman_packet_st *receiving(gearman_packet_st&,
  86. gearman_return_t& , const bool recv_data);
  87. // Receive packet data from a connection.
  88. size_t receiving(void *data, size_t data_size, gearman_return_t&);
  89. // Set events to be watched for a connection.
  90. void set_events(short events);
  91. // Set events that are ready for a connection. This is used with the
  92. // external event callbacks.
  93. void set_revents(short revents);
  94. void reset_addrinfo();
  95. gearman_return_t lookup();
  96. private:
  97. size_t recv_socket(void *data, size_t data_size, gearman_return_t&);
  98. gearman_return_t connect_poll();
  99. };
  100. /**
  101. * Initialize a connection structure. Always check the return value even if
  102. * passing in a pre-allocated structure. Some other initialization may have
  103. * failed.
  104. */
  105. GEARMAN_LOCAL
  106. gearman_connection_st *gearman_connection_create(gearman_universal_st &universal,
  107. gearman_connection_options_t *options);
  108. GEARMAN_LOCAL
  109. gearman_connection_st *gearman_connection_copy(gearman_universal_st& universal,
  110. const gearman_connection_st& from);
  111. /**
  112. * Create a connection structure with the given host and port.
  113. *
  114. * @param[in] gearman Structure previously initialized with gearman_create() or
  115. * gearman_clone().
  116. * @param[in] connection Caller allocated structure, or NULL to allocate one.
  117. * @param[in] host Host or IP address to connect to.
  118. * @param[in] port Port to connect to.
  119. * @return On success, a pointer to the (possibly allocated) structure. On
  120. * failure this will be NULL.
  121. */
  122. GEARMAN_LOCAL
  123. gearman_connection_st *gearman_connection_create_args(gearman_universal_st &universal,
  124. const char *host, in_port_t port);