vinted-memcached 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (210) hide show
  1. checksums.yaml +7 -0
  2. data/BENCHMARKS +142 -0
  3. data/CHANGELOG +176 -0
  4. data/Gemfile +11 -0
  5. data/Gemfile.lock +45 -0
  6. data/LICENSE +184 -0
  7. data/Manifest +209 -0
  8. data/README.rdoc +124 -0
  9. data/Rakefile +134 -0
  10. data/TODO +1 -0
  11. data/ext/extconf-make.rb +25 -0
  12. data/ext/extconf.rb +78 -0
  13. data/ext/libmemcached-0.32/AUTHORS +7 -0
  14. data/ext/libmemcached-0.32/COPYING +32 -0
  15. data/ext/libmemcached-0.32/ChangeLog +303 -0
  16. data/ext/libmemcached-0.32/INSTALL +302 -0
  17. data/ext/libmemcached-0.32/Makefile.am +36 -0
  18. data/ext/libmemcached-0.32/Makefile.in +911 -0
  19. data/ext/libmemcached-0.32/NEWS +1 -0
  20. data/ext/libmemcached-0.32/README +33 -0
  21. data/ext/libmemcached-0.32/THANKS +14 -0
  22. data/ext/libmemcached-0.32/TODO +11 -0
  23. data/ext/libmemcached-0.32/aclocal.m4 +2108 -0
  24. data/ext/libmemcached-0.32/clients/Makefile.am +80 -0
  25. data/ext/libmemcached-0.32/clients/Makefile.in +773 -0
  26. data/ext/libmemcached-0.32/clients/client_options.h +32 -0
  27. data/ext/libmemcached-0.32/clients/execute.c +64 -0
  28. data/ext/libmemcached-0.32/clients/execute.h +5 -0
  29. data/ext/libmemcached-0.32/clients/generator.c +74 -0
  30. data/ext/libmemcached-0.32/clients/generator.h +20 -0
  31. data/ext/libmemcached-0.32/clients/memcat.c +178 -0
  32. data/ext/libmemcached-0.32/clients/memcp.c +251 -0
  33. data/ext/libmemcached-0.32/clients/memdump.c +170 -0
  34. data/ext/libmemcached-0.32/clients/memerror.c +80 -0
  35. data/ext/libmemcached-0.32/clients/memflush.c +143 -0
  36. data/ext/libmemcached-0.32/clients/memrm.c +160 -0
  37. data/ext/libmemcached-0.32/clients/memslap.c +441 -0
  38. data/ext/libmemcached-0.32/clients/memstat.c +326 -0
  39. data/ext/libmemcached-0.32/clients/utilities.c +207 -0
  40. data/ext/libmemcached-0.32/clients/utilities.h +41 -0
  41. data/ext/libmemcached-0.32/config/compile +143 -0
  42. data/ext/libmemcached-0.32/config/config.guess +1561 -0
  43. data/ext/libmemcached-0.32/config/config.rpath +666 -0
  44. data/ext/libmemcached-0.32/config/config.sub +1686 -0
  45. data/ext/libmemcached-0.32/config/depcomp +630 -0
  46. data/ext/libmemcached-0.32/config/install-sh +520 -0
  47. data/ext/libmemcached-0.32/config/ltmain.sh +9636 -0
  48. data/ext/libmemcached-0.32/config/missing +376 -0
  49. data/ext/libmemcached-0.32/config.h.in +254 -0
  50. data/ext/libmemcached-0.32/configure +23843 -0
  51. data/ext/libmemcached-0.32/configure.ac +120 -0
  52. data/ext/libmemcached-0.32/libmemcached/Makefile.am +111 -0
  53. data/ext/libmemcached-0.32/libmemcached/Makefile.in +1069 -0
  54. data/ext/libmemcached-0.32/libmemcached/byteorder.c +31 -0
  55. data/ext/libmemcached-0.32/libmemcached/common.h +189 -0
  56. data/ext/libmemcached-0.32/libmemcached/crc.c +86 -0
  57. data/ext/libmemcached-0.32/libmemcached/hsieh_hash.c +68 -0
  58. data/ext/libmemcached-0.32/libmemcached/jenkins_hash.c +213 -0
  59. data/ext/libmemcached-0.32/libmemcached/libmemcached.ver +1 -0
  60. data/ext/libmemcached-0.32/libmemcached/libmemcached_probes.d +30 -0
  61. data/ext/libmemcached-0.32/libmemcached/libmemcached_probes.h +82 -0
  62. data/ext/libmemcached-0.32/libmemcached/md5.c +354 -0
  63. data/ext/libmemcached-0.32/libmemcached/memcached/README.txt +7 -0
  64. data/ext/libmemcached-0.32/libmemcached/memcached/protocol_binary.h +385 -0
  65. data/ext/libmemcached-0.32/libmemcached/memcached.c +153 -0
  66. data/ext/libmemcached-0.32/libmemcached/memcached.h +305 -0
  67. data/ext/libmemcached-0.32/libmemcached/memcached.hpp +799 -0
  68. data/ext/libmemcached-0.32/libmemcached/memcached_allocators.c +72 -0
  69. data/ext/libmemcached-0.32/libmemcached/memcached_analyze.c +100 -0
  70. data/ext/libmemcached-0.32/libmemcached/memcached_auto.c +207 -0
  71. data/ext/libmemcached-0.32/libmemcached/memcached_behavior.c +290 -0
  72. data/ext/libmemcached-0.32/libmemcached/memcached_callback.c +175 -0
  73. data/ext/libmemcached-0.32/libmemcached/memcached_configure.h.in +23 -0
  74. data/ext/libmemcached-0.32/libmemcached/memcached_connect.c +371 -0
  75. data/ext/libmemcached-0.32/libmemcached/memcached_constants.h +146 -0
  76. data/ext/libmemcached-0.32/libmemcached/memcached_delete.c +0 -0
  77. data/ext/libmemcached-0.32/libmemcached/memcached_do.c +72 -0
  78. data/ext/libmemcached-0.32/libmemcached/memcached_dump.c +79 -0
  79. data/ext/libmemcached-0.32/libmemcached/memcached_exist.c +114 -0
  80. data/ext/libmemcached-0.32/libmemcached/memcached_exist.h +20 -0
  81. data/ext/libmemcached-0.32/libmemcached/memcached_fetch.c +102 -0
  82. data/ext/libmemcached-0.32/libmemcached/memcached_flush.c +89 -0
  83. data/ext/libmemcached-0.32/libmemcached/memcached_flush_buffers.c +23 -0
  84. data/ext/libmemcached-0.32/libmemcached/memcached_get.c +494 -0
  85. data/ext/libmemcached-0.32/libmemcached/memcached_get.h +87 -0
  86. data/ext/libmemcached-0.32/libmemcached/memcached_hash.c +252 -0
  87. data/ext/libmemcached-0.32/libmemcached/memcached_hosts.c +510 -0
  88. data/ext/libmemcached-0.32/libmemcached/memcached_internal.h +31 -0
  89. data/ext/libmemcached-0.32/libmemcached/memcached_io.c +594 -0
  90. data/ext/libmemcached-0.32/libmemcached/memcached_io.h +72 -0
  91. data/ext/libmemcached-0.32/libmemcached/memcached_key.c +28 -0
  92. data/ext/libmemcached-0.32/libmemcached/memcached_parse.c +74 -0
  93. data/ext/libmemcached-0.32/libmemcached/memcached_pool.h +38 -0
  94. data/ext/libmemcached-0.32/libmemcached/memcached_purge.c +76 -0
  95. data/ext/libmemcached-0.32/libmemcached/memcached_quit.c +75 -0
  96. data/ext/libmemcached-0.32/libmemcached/memcached_response.c +529 -0
  97. data/ext/libmemcached-0.32/libmemcached/memcached_result.c +57 -0
  98. data/ext/libmemcached-0.32/libmemcached/memcached_result.h +59 -0
  99. data/ext/libmemcached-0.32/libmemcached/memcached_sasl.c +225 -0
  100. data/ext/libmemcached-0.32/libmemcached/memcached_sasl.h +44 -0
  101. data/ext/libmemcached-0.32/libmemcached/memcached_server.c +159 -0
  102. data/ext/libmemcached-0.32/libmemcached/memcached_server.h +93 -0
  103. data/ext/libmemcached-0.32/libmemcached/memcached_stats.c +437 -0
  104. data/ext/libmemcached-0.32/libmemcached/memcached_storage.c +514 -0
  105. data/ext/libmemcached-0.32/libmemcached/memcached_storage.h +107 -0
  106. data/ext/libmemcached-0.32/libmemcached/memcached_strerror.c +92 -0
  107. data/ext/libmemcached-0.32/libmemcached/memcached_string.c +138 -0
  108. data/ext/libmemcached-0.32/libmemcached/memcached_string.h +53 -0
  109. data/ext/libmemcached-0.32/libmemcached/memcached_touch.c +60 -0
  110. data/ext/libmemcached-0.32/libmemcached/memcached_touch.h +31 -0
  111. data/ext/libmemcached-0.32/libmemcached/memcached_types.h +44 -0
  112. data/ext/libmemcached-0.32/libmemcached/memcached_util.h +15 -0
  113. data/ext/libmemcached-0.32/libmemcached/memcached_verbosity.c +36 -0
  114. data/ext/libmemcached-0.32/libmemcached/memcached_version.c +112 -0
  115. data/ext/libmemcached-0.32/libmemcached/memcached_watchpoint.h +38 -0
  116. data/ext/libmemcached-0.32/libmemcached/murmur_hash.c +76 -0
  117. data/ext/libmemcached-0.32/libmemcached/visibility.h +51 -0
  118. data/ext/libmemcached-0.32/libmemcachedutil/Makefile.am +11 -0
  119. data/ext/libmemcached-0.32/libmemcachedutil/Makefile.in +604 -0
  120. data/ext/libmemcached-0.32/libmemcachedutil/libmemcachedutil.ver +1 -0
  121. data/ext/libmemcached-0.32/libmemcachedutil/memcached_pool.c +170 -0
  122. data/ext/libmemcached-0.32/m4/ac_cxx_compile_stdcxx_0x.m4 +103 -0
  123. data/ext/libmemcached-0.32/m4/ac_cxx_header_stdcxx_98.m4 +67 -0
  124. data/ext/libmemcached-0.32/m4/acx_pthread.m4 +276 -0
  125. data/ext/libmemcached-0.32/m4/byteorder.m4 +40 -0
  126. data/ext/libmemcached-0.32/m4/deprecated.m4 +17 -0
  127. data/ext/libmemcached-0.32/m4/enable_utillib.m4 +16 -0
  128. data/ext/libmemcached-0.32/m4/extensions.m4 +94 -0
  129. data/ext/libmemcached-0.32/m4/hsieh.m4 +18 -0
  130. data/ext/libmemcached-0.32/m4/lib-prefix.m4 +221 -0
  131. data/ext/libmemcached-0.32/m4/libtool.m4 +7831 -0
  132. data/ext/libmemcached-0.32/m4/ltoptions.m4 +369 -0
  133. data/ext/libmemcached-0.32/m4/ltsugar.m4 +123 -0
  134. data/ext/libmemcached-0.32/m4/ltversion.m4 +23 -0
  135. data/ext/libmemcached-0.32/m4/lt~obsolete.m4 +98 -0
  136. data/ext/libmemcached-0.32/m4/memcached.m4 +30 -0
  137. data/ext/libmemcached-0.32/m4/pandora_64bit.m4 +55 -0
  138. data/ext/libmemcached-0.32/m4/pandora_canonical.m4 +151 -0
  139. data/ext/libmemcached-0.32/m4/pandora_check_compiler_version.m4 +37 -0
  140. data/ext/libmemcached-0.32/m4/pandora_check_cxx_standard.m4 +16 -0
  141. data/ext/libmemcached-0.32/m4/pandora_enable_dtrace.m4 +41 -0
  142. data/ext/libmemcached-0.32/m4/pandora_ensure_gcc_version.m4 +36 -0
  143. data/ext/libmemcached-0.32/m4/pandora_have_better_malloc.m4 +54 -0
  144. data/ext/libmemcached-0.32/m4/pandora_have_sasl.m4 +133 -0
  145. data/ext/libmemcached-0.32/m4/pandora_header_assert.m4 +23 -0
  146. data/ext/libmemcached-0.32/m4/pandora_libtool.m4 +15 -0
  147. data/ext/libmemcached-0.32/m4/pandora_optimize.m4 +79 -0
  148. data/ext/libmemcached-0.32/m4/pandora_shared_ptr.m4 +56 -0
  149. data/ext/libmemcached-0.32/m4/pandora_vc_build.m4 +32 -0
  150. data/ext/libmemcached-0.32/m4/pandora_warnings.m4 +262 -0
  151. data/ext/libmemcached-0.32/m4/pod2man.m4 +7 -0
  152. data/ext/libmemcached-0.32/m4/protocol_binary.m4 +23 -0
  153. data/ext/libmemcached-0.32/m4/setsockopt.m4 +57 -0
  154. data/ext/libmemcached-0.32/m4/visibility.m4 +52 -0
  155. data/ext/libmemcached-0.32/support/Makefile.am +4 -0
  156. data/ext/libmemcached-0.32/support/Makefile.in +487 -0
  157. data/ext/libmemcached-0.32/support/libmemcached-fc.spec.in +105 -0
  158. data/ext/libmemcached-0.32/support/libmemcached.pc.in +10 -0
  159. data/ext/libmemcached-0.32/support/libmemcached.spec +105 -0
  160. data/ext/libmemcached-0.32/support/libmemcached.spec.in +105 -0
  161. data/ext/libmemcached-0.32/support/set_benchmark.sh +5 -0
  162. data/ext/libmemcached-0.32/tests/Makefile.am +113 -0
  163. data/ext/libmemcached-0.32/tests/Makefile.in +762 -0
  164. data/ext/libmemcached-0.32/tests/atomsmasher.c +245 -0
  165. data/ext/libmemcached-0.32/tests/function.c +4904 -0
  166. data/ext/libmemcached-0.32/tests/ketama_test_cases.h +108 -0
  167. data/ext/libmemcached-0.32/tests/output.cmp +7 -0
  168. data/ext/libmemcached-0.32/tests/output.res +7 -0
  169. data/ext/libmemcached-0.32/tests/output2.res +46 -0
  170. data/ext/libmemcached-0.32/tests/plus.cpp +293 -0
  171. data/ext/libmemcached-0.32/tests/r/memcat.res +19 -0
  172. data/ext/libmemcached-0.32/tests/r/memcp.res +27 -0
  173. data/ext/libmemcached-0.32/tests/r/memrm.res +19 -0
  174. data/ext/libmemcached-0.32/tests/r/memslap.res +33 -0
  175. data/ext/libmemcached-0.32/tests/r/memstat.res +33 -0
  176. data/ext/libmemcached-0.32/tests/server.c +118 -0
  177. data/ext/libmemcached-0.32/tests/server.h +25 -0
  178. data/ext/libmemcached-0.32/tests/start.c +16 -0
  179. data/ext/libmemcached-0.32/tests/t/memcat.test +4 -0
  180. data/ext/libmemcached-0.32/tests/t/memcp.test +3 -0
  181. data/ext/libmemcached-0.32/tests/t/memrm.test +3 -0
  182. data/ext/libmemcached-0.32/tests/t/memslap.test +5 -0
  183. data/ext/libmemcached-0.32/tests/t/memstat.test +3 -0
  184. data/ext/libmemcached-0.32/tests/test.c +137 -0
  185. data/ext/libmemcached-0.32/tests/test.h +46 -0
  186. data/ext/libmemcached-0.32/tests/udp.c +76 -0
  187. data/ext/rlibmemcached.i +258 -0
  188. data/ext/rlibmemcached_wrap.c +13917 -0
  189. data/lib/memcached/auth.rb +16 -0
  190. data/lib/memcached/behaviors.rb +78 -0
  191. data/lib/memcached/exceptions.rb +84 -0
  192. data/lib/memcached/experimental.rb +48 -0
  193. data/lib/memcached/marshal_codec.rb +10 -0
  194. data/lib/memcached/memcached.rb +732 -0
  195. data/lib/memcached/rails.rb +250 -0
  196. data/lib/memcached.rb +33 -0
  197. data/memcached.gemspec +0 -0
  198. data/test/profile/benchmark.rb +280 -0
  199. data/test/profile/c_profiler.rb +14 -0
  200. data/test/profile/exercise.rb +185 -0
  201. data/test/profile/rb_profiler.rb +21 -0
  202. data/test/profile/valgrind.rb +10 -0
  203. data/test/setup.rb +30 -0
  204. data/test/teardown.rb +0 -0
  205. data/test/test_helper.rb +18 -0
  206. data/test/unit/binding_test.rb +8 -0
  207. data/test/unit/memcached_experimental_test.rb +272 -0
  208. data/test/unit/memcached_test.rb +1487 -0
  209. data/test/unit/rails_test.rb +330 -0
  210. metadata +336 -0
@@ -0,0 +1,385 @@
1
+ /*
2
+ * Copyright (c) <2008>, Sun Microsystems, Inc.
3
+ * All rights reserved.
4
+ *
5
+ * Redistribution and use in source and binary forms, with or without
6
+ * modification, are permitted provided that the following conditions are met:
7
+ * * Redistributions of source code must retain the above copyright
8
+ * notice, this list of conditions and the following disclaimer.
9
+ * * Redistributions in binary form must reproduce the above copyright
10
+ * notice, this list of conditions and the following disclaimer in the
11
+ * documentation and/or other materials provided with the distribution.
12
+ * * Neither the name of the nor the
13
+ * names of its contributors may be used to endorse or promote products
14
+ * derived from this software without specific prior written permission.
15
+ *
16
+ * THIS SOFTWARE IS PROVIDED BY SUN MICROSYSTEMS, INC. ``AS IS'' AND ANY
17
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19
+ * DISCLAIMED. IN NO EVENT SHALL SUN MICROSYSTEMS, INC. BE LIABLE FOR ANY
20
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
+ */
27
+ /*
28
+ * Summary: Constants used by to implement the binary protocol.
29
+ *
30
+ * Copy: See Copyright for the status of this software.
31
+ *
32
+ * Author: Trond Norbye <trond.norbye@sun.com>
33
+ */
34
+
35
+ #ifndef PROTOCOL_BINARY_H
36
+ #define PROTOCOL_BINARY_H
37
+
38
+ #include <stdint.h>
39
+
40
+ /**
41
+ * This file contains definitions of the constants and packet formats
42
+ * defined in the binary specification. Please note that you _MUST_ remember
43
+ * to convert each multibyte field to / from network byte order to / from
44
+ * host order.
45
+ */
46
+ #ifdef __cplusplus
47
+ extern "C"
48
+ {
49
+ #endif
50
+
51
+ /**
52
+ * Definition of the legal "magic" values used in a packet.
53
+ * See section 3.1 Magic byte
54
+ */
55
+ typedef enum {
56
+ PROTOCOL_BINARY_REQ = 0x80,
57
+ PROTOCOL_BINARY_RES = 0x81
58
+ } protocol_binary_magic;
59
+
60
+ /**
61
+ * Definition of the valid response status numbers.
62
+ * See section 3.2 Response Status
63
+ */
64
+ typedef enum {
65
+ PROTOCOL_BINARY_RESPONSE_SUCCESS = 0x00,
66
+ PROTOCOL_BINARY_RESPONSE_KEY_ENOENT = 0x01,
67
+ PROTOCOL_BINARY_RESPONSE_KEY_EEXISTS = 0x02,
68
+ PROTOCOL_BINARY_RESPONSE_E2BIG = 0x03,
69
+ PROTOCOL_BINARY_RESPONSE_EINVAL = 0x04,
70
+ PROTOCOL_BINARY_RESPONSE_NOT_STORED = 0x05,
71
+ PROTOCOL_BINARY_RESPONSE_AUTH_ERROR = 0x20,
72
+ PROTOCOL_BINARY_RESPONSE_AUTH_CONTINUE = 0x21,
73
+ PROTOCOL_BINARY_RESPONSE_UNKNOWN_COMMAND = 0x81,
74
+ PROTOCOL_BINARY_RESPONSE_ENOMEM = 0x82
75
+ } protocol_binary_response_status;
76
+
77
+ /**
78
+ * Defintion of the different command opcodes.
79
+ * See section 3.3 Command Opcodes
80
+ */
81
+ typedef enum {
82
+ PROTOCOL_BINARY_CMD_GET = 0x00,
83
+ PROTOCOL_BINARY_CMD_SET = 0x01,
84
+ PROTOCOL_BINARY_CMD_ADD = 0x02,
85
+ PROTOCOL_BINARY_CMD_REPLACE = 0x03,
86
+ PROTOCOL_BINARY_CMD_DELETE = 0x04,
87
+ PROTOCOL_BINARY_CMD_INCREMENT = 0x05,
88
+ PROTOCOL_BINARY_CMD_DECREMENT = 0x06,
89
+ PROTOCOL_BINARY_CMD_QUIT = 0x07,
90
+ PROTOCOL_BINARY_CMD_FLUSH = 0x08,
91
+ PROTOCOL_BINARY_CMD_GETQ = 0x09,
92
+ PROTOCOL_BINARY_CMD_NOOP = 0x0a,
93
+ PROTOCOL_BINARY_CMD_VERSION = 0x0b,
94
+ PROTOCOL_BINARY_CMD_GETK = 0x0c,
95
+ PROTOCOL_BINARY_CMD_GETKQ = 0x0d,
96
+ PROTOCOL_BINARY_CMD_APPEND = 0x0e,
97
+ PROTOCOL_BINARY_CMD_PREPEND = 0x0f,
98
+ PROTOCOL_BINARY_CMD_STAT = 0x10,
99
+ PROTOCOL_BINARY_CMD_SETQ = 0x11,
100
+ PROTOCOL_BINARY_CMD_ADDQ = 0x12,
101
+ PROTOCOL_BINARY_CMD_REPLACEQ = 0x13,
102
+ PROTOCOL_BINARY_CMD_DELETEQ = 0x14,
103
+ PROTOCOL_BINARY_CMD_INCREMENTQ = 0x15,
104
+ PROTOCOL_BINARY_CMD_DECREMENTQ = 0x16,
105
+ PROTOCOL_BINARY_CMD_QUITQ = 0x17,
106
+ PROTOCOL_BINARY_CMD_FLUSHQ = 0x18,
107
+ PROTOCOL_BINARY_CMD_APPENDQ = 0x19,
108
+ PROTOCOL_BINARY_CMD_PREPENDQ = 0x1a,
109
+ PROTOCOL_BINARY_CMD_TOUCH = 0x1c,
110
+ PROTOCOL_BINARY_CMD_SASL_LIST_MECHS = 0x20,
111
+ PROTOCOL_BINARY_CMD_SASL_AUTH = 0x21,
112
+ PROTOCOL_BINARY_CMD_SASL_STEP = 0x22
113
+ } protocol_binary_command;
114
+
115
+ /**
116
+ * Definition of the data types in the packet
117
+ * See section 3.4 Data Types
118
+ */
119
+ typedef enum {
120
+ PROTOCOL_BINARY_RAW_BYTES = 0x00
121
+ } protocol_binary_datatypes;
122
+
123
+ /**
124
+ * Definition of the header structure for a request packet.
125
+ * See section 2
126
+ */
127
+ typedef union {
128
+ struct {
129
+ uint8_t magic;
130
+ uint8_t opcode;
131
+ uint16_t keylen;
132
+ uint8_t extlen;
133
+ uint8_t datatype;
134
+ uint16_t reserved;
135
+ uint32_t bodylen;
136
+ uint32_t opaque;
137
+ uint64_t cas;
138
+ } request;
139
+ uint8_t bytes[24];
140
+ } protocol_binary_request_header;
141
+
142
+ /**
143
+ * Definition of the header structure for a response packet.
144
+ * See section 2
145
+ */
146
+ typedef union {
147
+ struct {
148
+ uint8_t magic;
149
+ uint8_t opcode;
150
+ uint16_t keylen;
151
+ uint8_t extlen;
152
+ uint8_t datatype;
153
+ uint16_t status;
154
+ uint32_t bodylen;
155
+ uint32_t opaque;
156
+ uint64_t cas;
157
+ } response;
158
+ uint8_t bytes[24];
159
+ } protocol_binary_response_header;
160
+
161
+ /**
162
+ * Definition of a request-packet containing no extras
163
+ */
164
+ typedef union {
165
+ struct {
166
+ protocol_binary_request_header header;
167
+ } message;
168
+ uint8_t bytes[sizeof(protocol_binary_request_header)];
169
+ } protocol_binary_request_no_extras;
170
+
171
+ /**
172
+ * Definition of a response-packet containing no extras
173
+ */
174
+ typedef union {
175
+ struct {
176
+ protocol_binary_response_header header;
177
+ } message;
178
+ uint8_t bytes[sizeof(protocol_binary_response_header)];
179
+ } protocol_binary_response_no_extras;
180
+
181
+ /**
182
+ * Definition of the packet used by the get, getq, getk and getkq command.
183
+ * See section 4
184
+ */
185
+ typedef protocol_binary_request_no_extras protocol_binary_request_get;
186
+ typedef protocol_binary_request_no_extras protocol_binary_request_getq;
187
+ typedef protocol_binary_request_no_extras protocol_binary_request_getk;
188
+ typedef protocol_binary_request_no_extras protocol_binary_request_getkq;
189
+
190
+ /**
191
+ * Definition of the packet returned from a successful get, getq, getk and
192
+ * getkq.
193
+ * See section 4
194
+ */
195
+ typedef union {
196
+ struct {
197
+ protocol_binary_response_header header;
198
+ struct {
199
+ uint32_t flags;
200
+ } body;
201
+ } message;
202
+ uint8_t bytes[sizeof(protocol_binary_response_header) + 4];
203
+ } protocol_binary_response_get;
204
+
205
+ typedef protocol_binary_response_get protocol_binary_response_getq;
206
+ typedef protocol_binary_response_get protocol_binary_response_getk;
207
+ typedef protocol_binary_response_get protocol_binary_response_getkq;
208
+
209
+ /**
210
+ * Definition of the packet used by the touch command.
211
+ */
212
+ typedef union {
213
+ struct {
214
+ protocol_binary_request_header header;
215
+ struct {
216
+ uint32_t expiration;
217
+ } body;
218
+ } message;
219
+ uint8_t bytes[sizeof(protocol_binary_request_header) + 4];
220
+ } protocol_binary_request_touch;
221
+
222
+ /**
223
+ * Definition of the packet returned from the touch command
224
+ */
225
+ typedef protocol_binary_response_no_extras protocol_binary_response_touch;
226
+
227
+ /**
228
+ * Definition of the packet used by the delete command
229
+ * See section 4
230
+ */
231
+ typedef protocol_binary_request_no_extras protocol_binary_request_delete;
232
+
233
+ /**
234
+ * Definition of the packet returned by the delete command
235
+ * See section 4
236
+ */
237
+ typedef protocol_binary_response_no_extras protocol_binary_response_delete;
238
+
239
+ /**
240
+ * Definition of the packet used by the flush command
241
+ * See section 4
242
+ * Please note that the expiration field is optional, so remember to see
243
+ * check the header.bodysize to see if it is present.
244
+ */
245
+ typedef union {
246
+ struct {
247
+ protocol_binary_request_header header;
248
+ struct {
249
+ uint32_t expiration;
250
+ } body;
251
+ } message;
252
+ uint8_t bytes[sizeof(protocol_binary_request_header) + 4];
253
+ } protocol_binary_request_flush;
254
+
255
+ /**
256
+ * Definition of the packet returned by the flush command
257
+ * See section 4
258
+ */
259
+ typedef protocol_binary_response_no_extras protocol_binary_response_flush;
260
+
261
+ /**
262
+ * Definition of the packet used by set, add and replace
263
+ * See section 4
264
+ */
265
+ typedef union {
266
+ struct {
267
+ protocol_binary_request_header header;
268
+ struct {
269
+ uint32_t flags;
270
+ uint32_t expiration;
271
+ } body;
272
+ } message;
273
+ uint8_t bytes[sizeof(protocol_binary_request_header) + 8];
274
+ } protocol_binary_request_set;
275
+ typedef protocol_binary_request_set protocol_binary_request_add;
276
+ typedef protocol_binary_request_set protocol_binary_request_replace;
277
+
278
+ /**
279
+ * Definition of the packet returned by set, add and replace
280
+ * See section 4
281
+ */
282
+ typedef protocol_binary_response_no_extras protocol_binary_response_set;
283
+ typedef protocol_binary_response_no_extras protocol_binary_response_add;
284
+ typedef protocol_binary_response_no_extras protocol_binary_response_replace;
285
+
286
+ /**
287
+ * Definition of the noop packet
288
+ * See section 4
289
+ */
290
+ typedef protocol_binary_request_no_extras protocol_binary_request_noop;
291
+
292
+ /**
293
+ * Definition of the packet returned by the noop command
294
+ * See section 4
295
+ */
296
+ typedef protocol_binary_response_no_extras protocol_binary_response_noop;
297
+
298
+ /**
299
+ * Definition of the structure used by the increment and decrement
300
+ * command.
301
+ * See section 4
302
+ */
303
+ typedef union {
304
+ struct {
305
+ protocol_binary_request_header header;
306
+ struct {
307
+ uint64_t delta;
308
+ uint64_t initial;
309
+ uint32_t expiration;
310
+ } body;
311
+ } message;
312
+ uint8_t bytes[sizeof(protocol_binary_request_header) + 20];
313
+ } protocol_binary_request_incr;
314
+ typedef protocol_binary_request_incr protocol_binary_request_decr;
315
+
316
+ /**
317
+ * Definition of the response from an incr or decr command
318
+ * command.
319
+ * See section 4
320
+ */
321
+ typedef union {
322
+ struct {
323
+ protocol_binary_response_header header;
324
+ struct {
325
+ uint64_t value;
326
+ } body;
327
+ } message;
328
+ uint8_t bytes[sizeof(protocol_binary_response_header) + 8];
329
+ } protocol_binary_response_incr;
330
+ typedef protocol_binary_response_incr protocol_binary_response_decr;
331
+
332
+ /**
333
+ * Definition of the quit
334
+ * See section 4
335
+ */
336
+ typedef protocol_binary_request_no_extras protocol_binary_request_quit;
337
+
338
+ /**
339
+ * Definition of the packet returned by the quit command
340
+ * See section 4
341
+ */
342
+ typedef protocol_binary_response_no_extras protocol_binary_response_quit;
343
+
344
+ /**
345
+ * Definition of the packet used by append and prepend command
346
+ * See section 4
347
+ */
348
+ typedef protocol_binary_request_no_extras protocol_binary_request_append;
349
+ typedef protocol_binary_request_no_extras protocol_binary_request_prepend;
350
+
351
+ /**
352
+ * Definition of the packet returned from a successful append or prepend
353
+ * See section 4
354
+ */
355
+ typedef protocol_binary_response_no_extras protocol_binary_response_append;
356
+ typedef protocol_binary_response_no_extras protocol_binary_response_prepend;
357
+
358
+ /**
359
+ * Definition of the packet used by the version command
360
+ * See section 4
361
+ */
362
+ typedef protocol_binary_request_no_extras protocol_binary_request_version;
363
+
364
+ /**
365
+ * Definition of the packet returned from a successful version command
366
+ * See section 4
367
+ */
368
+ typedef protocol_binary_response_no_extras protocol_binary_response_version;
369
+
370
+
371
+ /**
372
+ * Definition of the packet used by the stats command.
373
+ * See section 4
374
+ */
375
+ typedef protocol_binary_request_no_extras protocol_binary_request_stats;
376
+
377
+ /**
378
+ * Definition of the packet returned from a successful stats command
379
+ * See section 4
380
+ */
381
+ typedef protocol_binary_response_no_extras protocol_binary_response_stats;
382
+ #ifdef __cplusplus
383
+ }
384
+ #endif
385
+ #endif /* PROTOCOL_BINARY_H */
@@ -0,0 +1,153 @@
1
+ /*
2
+ Memcached library
3
+ */
4
+ #include "common.h"
5
+
6
+ memcached_st *memcached_create(memcached_st *ptr)
7
+ {
8
+ memcached_result_st *result_ptr;
9
+
10
+ if (ptr == NULL)
11
+ {
12
+ ptr= (memcached_st *)calloc(1, sizeof(memcached_st));
13
+
14
+ if (!ptr)
15
+ return NULL; /* MEMCACHED_MEMORY_ALLOCATION_FAILURE */
16
+
17
+ ptr->is_allocated= true;
18
+ }
19
+ else
20
+ {
21
+ memset(ptr, 0, sizeof(memcached_st));
22
+ }
23
+
24
+ memcached_set_memory_allocators(ptr, NULL, NULL, NULL, NULL);
25
+
26
+ result_ptr= memcached_result_create(ptr, &ptr->result);
27
+ WATCHPOINT_ASSERT(result_ptr);
28
+ ptr->poll_timeout= MEMCACHED_DEFAULT_TIMEOUT;
29
+ ptr->connect_timeout= MEMCACHED_DEFAULT_TIMEOUT;
30
+ ptr->retry_timeout= 0;
31
+ ptr->distribution= MEMCACHED_DISTRIBUTION_MODULA;
32
+
33
+ /* TODO, Document why we picked these defaults */
34
+ ptr->io_msg_watermark= 500;
35
+ ptr->io_bytes_watermark= 65 * 1024;
36
+
37
+ return ptr;
38
+ }
39
+
40
+ void memcached_free(memcached_st *ptr)
41
+ {
42
+ /* If we have anything open, lets close it now */
43
+ memcached_quit(ptr);
44
+ server_list_free(ptr, ptr->hosts);
45
+ memcached_result_free(&ptr->result);
46
+
47
+ if (ptr->on_cleanup)
48
+ ptr->on_cleanup(ptr);
49
+
50
+ if (ptr->continuum)
51
+ ptr->call_free(ptr, ptr->continuum);
52
+
53
+ if (ptr->live_host_indices)
54
+ ptr->call_free(ptr, ptr->live_host_indices);
55
+
56
+ if (ptr->is_allocated)
57
+ ptr->call_free(ptr, ptr);
58
+ else
59
+ memset(ptr, 0, sizeof(memcached_st));
60
+ }
61
+
62
+ /*
63
+ clone is the destination, while source is the structure to clone.
64
+ If source is NULL the call is the same as if a memcached_create() was
65
+ called.
66
+ */
67
+ memcached_st *memcached_clone(memcached_st *clone, memcached_st *source)
68
+ {
69
+ memcached_return rc= MEMCACHED_SUCCESS;
70
+ memcached_st *new_clone;
71
+
72
+ if (source == NULL)
73
+ return memcached_create(clone);
74
+
75
+ if (clone && clone->is_allocated)
76
+ {
77
+ return NULL;
78
+ }
79
+
80
+ new_clone= memcached_create(clone);
81
+
82
+ if (new_clone == NULL)
83
+ return NULL;
84
+
85
+ new_clone->flags= source->flags;
86
+ new_clone->send_size= source->send_size;
87
+ new_clone->recv_size= source->recv_size;
88
+ new_clone->poll_timeout= source->poll_timeout;
89
+ new_clone->poll_max_retries = source->poll_max_retries;
90
+ new_clone->connect_timeout= source->connect_timeout;
91
+ new_clone->retry_timeout= source->retry_timeout;
92
+ new_clone->distribution= source->distribution;
93
+ new_clone->hash= source->hash;
94
+ new_clone->hash_continuum= source->hash_continuum;
95
+ new_clone->user_data= source->user_data;
96
+
97
+ new_clone->snd_timeout= source->snd_timeout;
98
+ new_clone->rcv_timeout= source->rcv_timeout;
99
+
100
+ new_clone->on_clone= source->on_clone;
101
+ new_clone->on_cleanup= source->on_cleanup;
102
+ new_clone->call_free= source->call_free;
103
+ new_clone->call_malloc= source->call_malloc;
104
+ new_clone->call_realloc= source->call_realloc;
105
+ new_clone->call_calloc= source->call_calloc;
106
+ new_clone->get_key_failure= source->get_key_failure;
107
+ new_clone->delete_trigger= source->delete_trigger;
108
+ new_clone->server_failure_limit= source->server_failure_limit;
109
+ new_clone->io_msg_watermark= source->io_msg_watermark;
110
+ new_clone->io_bytes_watermark= source->io_bytes_watermark;
111
+ new_clone->io_key_prefetch= source->io_key_prefetch;
112
+
113
+ if (source->hosts)
114
+ rc= memcached_server_push(new_clone, source->hosts);
115
+
116
+ if (rc != MEMCACHED_SUCCESS)
117
+ {
118
+ memcached_free(new_clone);
119
+
120
+ return NULL;
121
+ }
122
+
123
+
124
+ if (source->prefix_key[0] != 0)
125
+ {
126
+ strcpy(new_clone->prefix_key, source->prefix_key);
127
+ new_clone->prefix_key_length= source->prefix_key_length;
128
+ }
129
+
130
+ rc= run_distribution(new_clone);
131
+ if (rc != MEMCACHED_SUCCESS)
132
+ {
133
+ memcached_free(new_clone);
134
+
135
+ return NULL;
136
+ }
137
+
138
+ if (source->on_clone)
139
+ source->on_clone(source, new_clone);
140
+
141
+ return new_clone;
142
+ }
143
+ void *memcached_get_user_data(memcached_st *ptr)
144
+ {
145
+ return ptr->user_data;
146
+ }
147
+
148
+ void *memcached_set_user_data(memcached_st *ptr, void *data)
149
+ {
150
+ void *ret= ptr->user_data;
151
+ ptr->user_data= data;
152
+ return ret;
153
+ }