packet.h 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. * All rights reserved.
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions are
  10. * met:
  11. *
  12. * * Redistributions of source code must retain the above copyright
  13. * notice, this list of conditions and the following disclaimer.
  14. *
  15. * * Redistributions in binary form must reproduce the above
  16. * copyright notice, this list of conditions and the following disclaimer
  17. * in the documentation and/or other materials provided with the
  18. * distribution.
  19. *
  20. * * The names of its contributors may not be used to endorse or
  21. * promote products derived from this software without specific prior
  22. * written permission.
  23. *
  24. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  25. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  26. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  27. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  28. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  29. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  30. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  31. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  32. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  33. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  34. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  35. *
  36. */
  37. #pragma once
  38. #include <libgearman-1.0/protocol.h>
  39. #include "libgearman/magic.h"
  40. /**
  41. * @ingroup gearman_packet
  42. */
  43. struct gearmand_packet_st
  44. {
  45. struct Options {
  46. bool complete;
  47. bool free_data;
  48. Options() :
  49. complete{false},
  50. free_data{false}
  51. { }
  52. } options;
  53. enum gearman_magic_t magic;
  54. enum gearman_command_t command;
  55. uint8_t argc;
  56. size_t args_size;
  57. size_t data_size;
  58. struct gearmand_packet_st *next;
  59. struct gearmand_packet_st *prev;
  60. char *args;
  61. const char *data;
  62. char *arg[GEARMAND_MAX_COMMAND_ARGS];
  63. size_t arg_size[GEARMAND_MAX_COMMAND_ARGS];
  64. char args_buffer[GEARMAND_ARGS_BUFFER_SIZE];
  65. gearmand_packet_st():
  66. magic{GEARMAN_MAGIC_TEXT},
  67. command{GEARMAN_COMMAND_TEXT},
  68. argc{0},
  69. args_size{0},
  70. data_size{0},
  71. next{nullptr},
  72. prev{nullptr},
  73. args{nullptr},
  74. data{nullptr},
  75. arg{},
  76. arg_size{},
  77. args_buffer{}
  78. {
  79. }
  80. void reset(enum gearman_magic_t, gearman_command_t);
  81. };
  82. struct gearman_server_packet_st
  83. {
  84. gearmand_packet_st packet;
  85. gearman_server_packet_st *next;
  86. gearman_server_packet_st():
  87. next(nullptr)
  88. {
  89. }
  90. };