connection.hpp 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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 allocated;
  44. bool ready;
  45. bool packet_in_use;
  46. bool external_fd;
  47. bool ignore_lost_connection;
  48. bool close_after_flush;
  49. } options;
  50. enum gearman_con_universal_t state;
  51. enum gearman_con_send_t send_state;
  52. enum gearman_con_recv_t recv_state;
  53. in_port_t port;
  54. short events;
  55. short revents;
  56. int fd;
  57. uint32_t created_id;
  58. uint32_t created_id_next;
  59. size_t send_buffer_size;
  60. size_t send_data_size;
  61. size_t send_data_offset;
  62. size_t recv_buffer_size;
  63. size_t recv_data_size;
  64. size_t recv_data_offset;
  65. gearman_universal_st *universal;
  66. gearman_connection_st *next;
  67. gearman_connection_st *prev;
  68. void *context;
  69. struct addrinfo *addrinfo;
  70. struct addrinfo *addrinfo_next;
  71. char *send_buffer_ptr;
  72. gearman_packet_st *recv_packet;
  73. char *recv_buffer_ptr;
  74. gearman_packet_st packet;
  75. char host[NI_MAXHOST];
  76. char send_buffer[GEARMAN_SEND_BUFFER_SIZE];
  77. char recv_buffer[GEARMAN_RECV_BUFFER_SIZE];
  78. };
  79. /**
  80. * Initialize a connection structure. Always check the return value even if
  81. * passing in a pre-allocated structure. Some other initialization may have
  82. * failed.
  83. */
  84. GEARMAN_LOCAL
  85. gearman_connection_st *gearman_connection_create(gearman_universal_st &universal,
  86. gearman_connection_st *connection,
  87. gearman_connection_options_t *options);
  88. GEARMAN_LOCAL
  89. gearman_connection_st *gearman_connection_clone(gearman_universal_st& universal, gearman_connection_st *src,
  90. const gearman_connection_st *from);
  91. /**
  92. * Create a connection structure with the given host and port.
  93. *
  94. * @param[in] gearman Structure previously initialized with gearman_create() or
  95. * gearman_clone().
  96. * @param[in] connection Caller allocated structure, or NULL to allocate one.
  97. * @param[in] host Host or IP address to connect to.
  98. * @param[in] port Port to connect to.
  99. * @return On success, a pointer to the (possibly allocated) structure. On
  100. * failure this will be NULL.
  101. */
  102. GEARMAN_LOCAL
  103. gearman_connection_st *gearman_connection_create_args(gearman_universal_st &universal,
  104. gearman_connection_st *connection,
  105. const char *host, in_port_t port);