lwtarantool 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +84 -0
  3. data/ext/lwtarantool/conn.c +314 -0
  4. data/ext/lwtarantool/depend +23 -0
  5. data/ext/lwtarantool/errors.c +24 -0
  6. data/ext/lwtarantool/extconf.rb +8 -0
  7. data/ext/lwtarantool/lwtarantool.c +12 -0
  8. data/ext/lwtarantool/lwtarantool.h +38 -0
  9. data/ext/lwtarantool/request.c +124 -0
  10. data/ext/lwtarantool/vendor/msgpuck/CMakeLists.txt +73 -0
  11. data/ext/lwtarantool/vendor/msgpuck/hints.c +674 -0
  12. data/ext/lwtarantool/vendor/msgpuck/msgpuck.c +375 -0
  13. data/ext/lwtarantool/vendor/msgpuck/msgpuck.h +2195 -0
  14. data/ext/lwtarantool/vendor/msgpuck/test/CMakeLists.txt +25 -0
  15. data/ext/lwtarantool/vendor/msgpuck/test/msgpuck.c +1126 -0
  16. data/ext/lwtarantool/vendor/msgpuck/test/test.c +105 -0
  17. data/ext/lwtarantool/vendor/msgpuck/test/test.h +123 -0
  18. data/ext/lwtarantool/vendor/tarantool-c/CMakeLists.txt +89 -0
  19. data/ext/lwtarantool/vendor/tarantool-c/cmake/FindMsgPuck.cmake +18 -0
  20. data/ext/lwtarantool/vendor/tarantool-c/cmake/FindSphinx.cmake +10 -0
  21. data/ext/lwtarantool/vendor/tarantool-c/doc/CMakeLists.txt +15 -0
  22. data/ext/lwtarantool/vendor/tarantool-c/doc/source/example.c +340 -0
  23. data/ext/lwtarantool/vendor/tarantool-c/include/CMakeLists.txt +6 -0
  24. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tarantool.h +67 -0
  25. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_auth.h +72 -0
  26. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_buf.h +88 -0
  27. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_call.h +83 -0
  28. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_delete.h +52 -0
  29. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_execute.h +24 -0
  30. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_insert.h +62 -0
  31. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_io.h +67 -0
  32. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_iob.h +62 -0
  33. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_iter.h +301 -0
  34. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_mem.h +102 -0
  35. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_net.h +242 -0
  36. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_object.h +248 -0
  37. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_opt.h +138 -0
  38. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_ping.h +49 -0
  39. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_proto.h +295 -0
  40. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_reply.h +204 -0
  41. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_request.h +377 -0
  42. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_schema.h +165 -0
  43. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_select.h +59 -0
  44. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_stream.h +79 -0
  45. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_update.h +226 -0
  46. data/ext/lwtarantool/vendor/tarantool-c/include/tp.h +1998 -0
  47. data/ext/lwtarantool/vendor/tarantool-c/test/CMakeLists.txt +36 -0
  48. data/ext/lwtarantool/vendor/tarantool-c/test/common.c +233 -0
  49. data/ext/lwtarantool/vendor/tarantool-c/test/common.h +28 -0
  50. data/ext/lwtarantool/vendor/tarantool-c/test/plain_test.c +152 -0
  51. data/ext/lwtarantool/vendor/tarantool-c/test/tarantool_call.c +57 -0
  52. data/ext/lwtarantool/vendor/tarantool-c/test/tarantool_disconnect.c +31 -0
  53. data/ext/lwtarantool/vendor/tarantool-c/test/tarantool_tcp.c +840 -0
  54. data/ext/lwtarantool/vendor/tarantool-c/test/tarantool_unix.c +384 -0
  55. data/ext/lwtarantool/vendor/tarantool-c/test/test.c +72 -0
  56. data/ext/lwtarantool/vendor/tarantool-c/test/test.h +94 -0
  57. data/ext/lwtarantool/vendor/tarantool-c/test/tnt_assoc.c +6 -0
  58. data/ext/lwtarantool/vendor/tarantool-c/test/tnt_assoc.h +67 -0
  59. data/ext/lwtarantool/vendor/tarantool-c/third_party/PMurHash.c +317 -0
  60. data/ext/lwtarantool/vendor/tarantool-c/third_party/PMurHash.h +68 -0
  61. data/ext/lwtarantool/vendor/tarantool-c/third_party/base64.c +300 -0
  62. data/ext/lwtarantool/vendor/tarantool-c/third_party/base64.h +91 -0
  63. data/ext/lwtarantool/vendor/tarantool-c/third_party/mhash.h +589 -0
  64. data/ext/lwtarantool/vendor/tarantool-c/third_party/sha1.c +219 -0
  65. data/ext/lwtarantool/vendor/tarantool-c/third_party/sha1.h +24 -0
  66. data/ext/lwtarantool/vendor/tarantool-c/third_party/uri.c +6528 -0
  67. data/ext/lwtarantool/vendor/tarantool-c/third_party/uri.h +81 -0
  68. data/ext/lwtarantool/vendor/tarantool-c/tnt/CMakeLists.txt +83 -0
  69. data/ext/lwtarantool/vendor/tarantool-c/tnt/pmatomic.h +494 -0
  70. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_assoc.c +9 -0
  71. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_assoc.h +172 -0
  72. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_auth.c +118 -0
  73. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_buf.c +171 -0
  74. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_call.c +79 -0
  75. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_delete.c +52 -0
  76. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_execute.c +60 -0
  77. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_insert.c +60 -0
  78. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_io.c +520 -0
  79. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_iob.c +75 -0
  80. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_iter.c +293 -0
  81. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_mem.c +82 -0
  82. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_net.c +336 -0
  83. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_object.c +476 -0
  84. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_opt.c +117 -0
  85. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_ping.c +38 -0
  86. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_proto_internal.h +43 -0
  87. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_reply.c +300 -0
  88. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_request.c +336 -0
  89. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_schema.c +334 -0
  90. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_select.c +58 -0
  91. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_stream.c +71 -0
  92. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_update.c +247 -0
  93. data/ext/lwtarantool/vendor/tarantool-c/tntrpl/CMakeLists.txt +69 -0
  94. data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_dir.c +173 -0
  95. data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_dir.h +58 -0
  96. data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_log.c +329 -0
  97. data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_log.h +119 -0
  98. data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_rpl.c +189 -0
  99. data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_rpl.h +47 -0
  100. data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_snapshot.c +163 -0
  101. data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_snapshot.h +50 -0
  102. data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_xlog.c +163 -0
  103. data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_xlog.h +50 -0
  104. data/lib/lwtarantool/connection.rb +84 -0
  105. data/lib/lwtarantool/request.rb +58 -0
  106. data/lib/lwtarantool.rb +23 -0
  107. metadata +164 -0
@@ -0,0 +1,317 @@
1
+ /*-----------------------------------------------------------------------------
2
+ * MurmurHash3 was written by Austin Appleby, and is placed in the public
3
+ * domain.
4
+ *
5
+ * This implementation was written by Shane Day, and is also public domain.
6
+ *
7
+ * This is a portable ANSI C implementation of MurmurHash3_x86_32 (Murmur3A)
8
+ * with support for progressive processing.
9
+ */
10
+
11
+ /*-----------------------------------------------------------------------------
12
+
13
+ If you want to understand the MurmurHash algorithm you would be much better
14
+ off reading the original source. Just point your browser at:
15
+ http://code.google.com/p/smhasher/source/browse/trunk/MurmurHash3.cpp
16
+
17
+
18
+ What this version provides?
19
+
20
+ 1. Progressive data feeding. Useful when the entire payload to be hashed
21
+ does not fit in memory or when the data is streamed through the application.
22
+ Also useful when hashing a number of strings with a common prefix. A partial
23
+ hash of a prefix string can be generated and reused for each suffix string.
24
+
25
+ 2. Portability. Plain old C so that it should compile on any old compiler.
26
+ Both CPU endian and access-alignment neutral, but avoiding inefficient code
27
+ when possible depending on CPU capabilities.
28
+
29
+ 3. Drop in. I personally like nice self contained public domain code, making it
30
+ easy to pilfer without loads of refactoring to work properly in the existing
31
+ application code & makefile structure and mucking around with licence files.
32
+ Just copy PMurHash.h and PMurHash.c and you're ready to go.
33
+
34
+
35
+ How does it work?
36
+
37
+ We can only process entire 32 bit chunks of input, except for the very end
38
+ that may be shorter. So along with the partial hash we need to give back to
39
+ the caller a carry containing up to 3 bytes that we were unable to process.
40
+ This carry also needs to record the number of bytes the carry holds. I use
41
+ the low 2 bits as a count (0..3) and the carry bytes are shifted into the
42
+ high byte in stream order.
43
+
44
+ To handle endianess I simply use a macro that reads a uint32_t and define
45
+ that macro to be a direct read on little endian machines, a read and swap
46
+ on big endian machines, or a byte-by-byte read if the endianess is unknown.
47
+
48
+ -----------------------------------------------------------------------------*/
49
+
50
+
51
+ #include "PMurHash.h"
52
+
53
+ /* I used ugly type names in the header to avoid potential conflicts with
54
+ * application or system typedefs & defines. Since I'm not including any more
55
+ * headers below here I can rename these so that the code reads like C99 */
56
+ #undef uint32_t
57
+ #define uint32_t MH_UINT32
58
+ #undef uint8_t
59
+ #define uint8_t MH_UINT8
60
+
61
+ /* MSVC warnings we choose to ignore */
62
+ #if defined(_MSC_VER)
63
+ #pragma warning(disable: 4127) /* conditional expression is constant */
64
+ #endif
65
+
66
+ /*-----------------------------------------------------------------------------
67
+ * Endianess, misalignment capabilities and util macros
68
+ *
69
+ * The following 3 macros are defined in this section. The other macros defined
70
+ * are only needed to help derive these 3.
71
+ *
72
+ * READ_UINT32(x) Read a little endian unsigned 32-bit int
73
+ * UNALIGNED_SAFE Defined if READ_UINT32 works on non-word boundaries
74
+ * ROTL32(x,r) Rotate x left by r bits
75
+ */
76
+
77
+ /* Convention is to define __BYTE_ORDER == to one of these values */
78
+ #if !defined(__BIG_ENDIAN)
79
+ #define __BIG_ENDIAN 4321
80
+ #endif
81
+ #if !defined(__LITTLE_ENDIAN)
82
+ #define __LITTLE_ENDIAN 1234
83
+ #endif
84
+
85
+ /* I386 */
86
+ #if defined(_M_IX86) || defined(__i386__) || defined(__i386) || defined(i386)
87
+ #define __BYTE_ORDER __LITTLE_ENDIAN
88
+ #define UNALIGNED_SAFE
89
+ #endif
90
+
91
+ /* gcc 'may' define __LITTLE_ENDIAN__ or __BIG_ENDIAN__ to 1 (Note the trailing __),
92
+ * or even _LITTLE_ENDIAN or _BIG_ENDIAN (Note the single _ prefix) */
93
+ #if !defined(__BYTE_ORDER)
94
+ #if defined(__LITTLE_ENDIAN__) && __LITTLE_ENDIAN__==1 || defined(_LITTLE_ENDIAN) && _LITTLE_ENDIAN==1
95
+ #define __BYTE_ORDER __LITTLE_ENDIAN
96
+ #elif defined(__BIG_ENDIAN__) && __BIG_ENDIAN__==1 || defined(_BIG_ENDIAN) && _BIG_ENDIAN==1
97
+ #define __BYTE_ORDER __BIG_ENDIAN
98
+ #endif
99
+ #endif
100
+
101
+ /* gcc (usually) defines xEL/EB macros for ARM and MIPS endianess */
102
+ #if !defined(__BYTE_ORDER)
103
+ #if defined(__ARMEL__) || defined(__MIPSEL__)
104
+ #define __BYTE_ORDER __LITTLE_ENDIAN
105
+ #endif
106
+ #if defined(__ARMEB__) || defined(__MIPSEB__)
107
+ #define __BYTE_ORDER __BIG_ENDIAN
108
+ #endif
109
+ #endif
110
+
111
+ /* Now find best way we can to READ_UINT32 */
112
+ #if __BYTE_ORDER==__LITTLE_ENDIAN
113
+ /* CPU endian matches murmurhash algorithm, so read 32-bit word directly */
114
+ #define READ_UINT32(ptr) (*((uint32_t*)(ptr)))
115
+ #elif __BYTE_ORDER==__BIG_ENDIAN
116
+ /* TODO: Add additional cases below where a compiler provided bswap32 is available */
117
+ #if defined(__GNUC__) && (__GNUC__>4 || (__GNUC__==4 && __GNUC_MINOR__>=3))
118
+ #define READ_UINT32(ptr) (__builtin_bswap32(*((uint32_t*)(ptr))))
119
+ #else
120
+ /* Without a known fast bswap32 we're just as well off doing this */
121
+ #define READ_UINT32(ptr) (ptr[0]|ptr[1]<<8|ptr[2]<<16|ptr[3]<<24)
122
+ #define UNALIGNED_SAFE
123
+ #endif
124
+ #else
125
+ /* Unknown endianess so last resort is to read individual bytes */
126
+ #define READ_UINT32(ptr) (ptr[0]|ptr[1]<<8|ptr[2]<<16|ptr[3]<<24)
127
+
128
+ /* Since we're not doing word-reads we can skip the messing about with realignment */
129
+ #define UNALIGNED_SAFE
130
+ #endif
131
+
132
+ /* Find best way to ROTL32 */
133
+ #if defined(_MSC_VER)
134
+ #include <stdlib.h> /* Microsoft put _rotl declaration in here */
135
+ #define ROTL32(x,r) _rotl(x,r)
136
+ #else
137
+ /* gcc recognises this code and generates a rotate instruction for CPUs with one */
138
+ #define ROTL32(x,r) (((uint32_t)x << r) | ((uint32_t)x >> (32 - r)))
139
+ #endif
140
+
141
+
142
+ /*-----------------------------------------------------------------------------
143
+ * Core murmurhash algorithm macros */
144
+
145
+ #define C1 (0xcc9e2d51)
146
+ #define C2 (0x1b873593)
147
+
148
+ /* This is the main processing body of the algorithm. It operates
149
+ * on each full 32-bits of input. */
150
+ #define DOBLOCK(h1, k1) do{ \
151
+ k1 *= C1; \
152
+ k1 = ROTL32(k1,15); \
153
+ k1 *= C2; \
154
+ \
155
+ h1 ^= k1; \
156
+ h1 = ROTL32(h1,13); \
157
+ h1 = h1*5+0xe6546b64; \
158
+ }while(0)
159
+
160
+
161
+ /* Append unaligned bytes to carry, forcing hash churn if we have 4 bytes */
162
+ /* cnt=bytes to process, h1=name of h1 var, c=carry, n=bytes in c, ptr/len=payload */
163
+ #define DOBYTES(cnt, h1, c, n, ptr, len) do{ \
164
+ int _i = cnt; \
165
+ while(_i--) { \
166
+ c = c>>8 | *ptr++<<24; \
167
+ n++; len--; \
168
+ if(n==4) { \
169
+ DOBLOCK(h1, c); \
170
+ n = 0; \
171
+ } \
172
+ } }while(0)
173
+
174
+ /*---------------------------------------------------------------------------*/
175
+
176
+ /* Main hashing function. Initialise carry to 0 and h1 to 0 or an initial seed
177
+ * if wanted. Both ph1 and pcarry are required arguments. */
178
+ void PMurHash32_Process(uint32_t *ph1, uint32_t *pcarry, const void *key, int len)
179
+ {
180
+ uint32_t h1 = *ph1;
181
+ uint32_t c = *pcarry;
182
+
183
+ const uint8_t *ptr = (uint8_t*)key;
184
+ const uint8_t *end;
185
+
186
+ /* Extract carry count from low 2 bits of c value */
187
+ int n = c & 3;
188
+
189
+ #if defined(UNALIGNED_SAFE)
190
+ /* This CPU handles unaligned word access */
191
+
192
+ /* Consume any carry bytes */
193
+ int i = (4-n) & 3;
194
+ if(i && i <= len) {
195
+ DOBYTES(i, h1, c, n, ptr, len);
196
+ }
197
+
198
+ /* Process 32-bit chunks */
199
+ end = ptr + len/4*4;
200
+ for( ; ptr < end ; ptr+=4) {
201
+ uint32_t k1 = READ_UINT32(ptr);
202
+ DOBLOCK(h1, k1);
203
+ }
204
+
205
+ #else /*UNALIGNED_SAFE*/
206
+ /* This CPU does not handle unaligned word access */
207
+
208
+ /* Consume enough so that the next data byte is word aligned */
209
+ int i = -(long)ptr & 3;
210
+ if(i && i <= len) {
211
+ DOBYTES(i, h1, c, n, ptr, len);
212
+ }
213
+
214
+ /* We're now aligned. Process in aligned blocks. Specialise for each possible carry count */
215
+ end = ptr + len/4*4;
216
+ switch(n) { /* how many bytes in c */
217
+ case 0: /* c=[----] w=[3210] b=[3210]=w c'=[----] */
218
+ for( ; ptr < end ; ptr+=4) {
219
+ uint32_t k1 = READ_UINT32(ptr);
220
+ DOBLOCK(h1, k1);
221
+ }
222
+ break;
223
+ case 1: /* c=[0---] w=[4321] b=[3210]=c>>24|w<<8 c'=[4---] */
224
+ for( ; ptr < end ; ptr+=4) {
225
+ uint32_t k1 = c>>24;
226
+ c = READ_UINT32(ptr);
227
+ k1 |= c<<8;
228
+ DOBLOCK(h1, k1);
229
+ }
230
+ break;
231
+ case 2: /* c=[10--] w=[5432] b=[3210]=c>>16|w<<16 c'=[54--] */
232
+ for( ; ptr < end ; ptr+=4) {
233
+ uint32_t k1 = c>>16;
234
+ c = READ_UINT32(ptr);
235
+ k1 |= c<<16;
236
+ DOBLOCK(h1, k1);
237
+ }
238
+ break;
239
+ case 3: /* c=[210-] w=[6543] b=[3210]=c>>8|w<<24 c'=[654-] */
240
+ for( ; ptr < end ; ptr+=4) {
241
+ uint32_t k1 = c>>8;
242
+ c = READ_UINT32(ptr);
243
+ k1 |= c<<24;
244
+ DOBLOCK(h1, k1);
245
+ }
246
+ }
247
+ #endif /*UNALIGNED_SAFE*/
248
+
249
+ /* Advance over whole 32-bit chunks, possibly leaving 1..3 bytes */
250
+ len -= len/4*4;
251
+
252
+ /* Append any remaining bytes into carry */
253
+ DOBYTES(len, h1, c, n, ptr, len);
254
+
255
+ /* Copy out new running hash and carry */
256
+ *ph1 = h1;
257
+ *pcarry = (c & ~0xff) | n;
258
+ }
259
+
260
+ /*---------------------------------------------------------------------------*/
261
+
262
+ /* Finalize a hash. To match the original Murmur3A the total_length must be provided */
263
+ uint32_t PMurHash32_Result(uint32_t h, uint32_t carry, uint32_t total_length)
264
+ {
265
+ uint32_t k1;
266
+ int n = carry & 3;
267
+ if(n) {
268
+ k1 = carry >> (4-n)*8;
269
+ k1 *= C1; k1 = ROTL32(k1,15); k1 *= C2; h ^= k1;
270
+ }
271
+ h ^= total_length;
272
+
273
+ /* fmix */
274
+ h ^= h >> 16;
275
+ h *= 0x85ebca6b;
276
+ h ^= h >> 13;
277
+ h *= 0xc2b2ae35;
278
+ h ^= h >> 16;
279
+
280
+ return h;
281
+ }
282
+
283
+ /*---------------------------------------------------------------------------*/
284
+
285
+ /* Murmur3A compatable all-at-once */
286
+ uint32_t PMurHash32(uint32_t seed, const void *key, int len)
287
+ {
288
+ uint32_t h1=seed, carry=0;
289
+ PMurHash32_Process(&h1, &carry, key, len);
290
+ return PMurHash32_Result(h1, carry, len);
291
+ }
292
+
293
+ /*---------------------------------------------------------------------------*/
294
+
295
+ /* Provide an API suitable for smhasher */
296
+ void PMurHash32_test(const void *key, int len, uint32_t seed, void *out)
297
+ {
298
+ uint32_t h1=seed, carry=0;
299
+ const uint8_t *ptr = (uint8_t*)key;
300
+ const uint8_t *end = ptr + len;
301
+
302
+ #if 0 /* Exercise the progressive processing */
303
+ while(ptr < end) {
304
+ //const uint8_t *mid = ptr + rand()%(end-ptr)+1;
305
+ const uint8_t *mid = ptr + (rand()&0xF);
306
+ mid = mid<end?mid:end;
307
+ PMurHash32_Process(&h1, &carry, ptr, mid-ptr);
308
+ ptr = mid;
309
+ }
310
+ #else
311
+ PMurHash32_Process(&h1, &carry, ptr, (int)(end-ptr));
312
+ #endif
313
+ h1 = PMurHash32_Result(h1, carry, len);
314
+ *(uint32_t*)out = h1;
315
+ }
316
+
317
+ /*---------------------------------------------------------------------------*/
@@ -0,0 +1,68 @@
1
+ #ifndef THIRD_PARTY_PMURHASH_H_
2
+ #define THIRD_PARTY_PMURHASH_H_
3
+ /*-----------------------------------------------------------------------------
4
+ * MurmurHash3 was written by Austin Appleby, and is placed in the public
5
+ * domain.
6
+ *
7
+ * This implementation was written by Shane Day, and is also public domain.
8
+ *
9
+ * This is a portable ANSI C implementation of MurmurHash3_x86_32 (Murmur3A)
10
+ * with support for progressive processing.
11
+ */
12
+
13
+ /* ------------------------------------------------------------------------- */
14
+ /* Determine what native type to use for uint32_t */
15
+
16
+ /* We can't use the name 'uint32_t' here because it will conflict with
17
+ * any version provided by the system headers or application. */
18
+
19
+ /* First look for special cases */
20
+ #if defined(_MSC_VER)
21
+ #define MH_UINT32 unsigned long
22
+ #endif
23
+
24
+ /* If the compiler says it's C99 then take its word for it */
25
+ #if !defined(MH_UINT32) && ( \
26
+ defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L )
27
+ #include <stdint.h>
28
+ #define MH_UINT32 uint32_t
29
+ #endif
30
+
31
+ /* Otherwise try testing against max value macros from limit.h */
32
+ #if !defined(MH_UINT32)
33
+ #include <limits.h>
34
+ #if (USHRT_MAX == 0xffffffffUL)
35
+ #define MH_UINT32 unsigned short
36
+ #elif (UINT_MAX == 0xffffffffUL)
37
+ #define MH_UINT32 unsigned int
38
+ #elif (ULONG_MAX == 0xffffffffUL)
39
+ #define MH_UINT32 unsigned long
40
+ #endif
41
+ #endif
42
+
43
+ #if !defined(MH_UINT32)
44
+ #error Unable to determine type name for unsigned 32-bit int
45
+ #endif
46
+
47
+ /* I'm yet to work on a platform where 'unsigned char' is not 8 bits */
48
+ #define MH_UINT8 unsigned char
49
+
50
+
51
+ /* ------------------------------------------------------------------------- */
52
+ /* Prototypes */
53
+
54
+ #ifdef __cplusplus
55
+ extern "C" {
56
+ #endif
57
+
58
+ void PMurHash32_Process(MH_UINT32 *ph1, MH_UINT32 *pcarry, const void *key, int len);
59
+ MH_UINT32 PMurHash32_Result(MH_UINT32 h1, MH_UINT32 carry, MH_UINT32 total_length);
60
+ MH_UINT32 PMurHash32(MH_UINT32 seed, const void *key, int len);
61
+
62
+ void PMurHash32_test(const void *key, int len, MH_UINT32 seed, void *out);
63
+
64
+ #ifdef __cplusplus
65
+ }
66
+ #endif
67
+
68
+ #endif
@@ -0,0 +1,300 @@
1
+ /*
2
+ * Redistribution and use in source and binary forms, with or
3
+ * without modification, are permitted provided that the following
4
+ * conditions are met:
5
+ *
6
+ * 1. Redistributions of source code must retain the above
7
+ * copyright notice, this list of conditions and the
8
+ * following disclaimer.
9
+ *
10
+ * 2. Redistributions in binary form must reproduce the above
11
+ * copyright notice, this list of conditions and the following
12
+ * disclaimer in the documentation and/or other materials
13
+ * provided with the distribution.
14
+ *
15
+ * THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ``AS IS'' AND
16
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
17
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
18
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
19
+ * <COPYRIGHT HOLDER> OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
20
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
23
+ * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
24
+ * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
26
+ * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27
+ * SUCH DAMAGE.
28
+ */
29
+ #include "base64.h"
30
+ /*
31
+ * This is part of the libb64 project, and has been placed in the
32
+ * public domain. For details, see
33
+ * http://sourceforge.net/projects/libb64
34
+ */
35
+
36
+ /* {{{ encode */
37
+
38
+ enum base64_encodestep { step_A, step_B, step_C };
39
+
40
+ struct base64_encodestate {
41
+ enum base64_encodestep step;
42
+ char result;
43
+ int stepcount;
44
+ };
45
+
46
+ static inline void
47
+ base64_encodestate_init(struct base64_encodestate *state)
48
+ {
49
+ state->step = step_A;
50
+ state->result = 0;
51
+ state->stepcount = 0;
52
+ }
53
+
54
+ static inline char
55
+ base64_encode_value(char value)
56
+ {
57
+ static const char encoding[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
58
+ unsigned codepos = (unsigned) value;
59
+ if (codepos > sizeof(encoding) - 1)
60
+ return '=';
61
+ return encoding[codepos];
62
+ }
63
+
64
+ static int
65
+ base64_encode_block(const char *in_bin, int in_len,
66
+ char *out_base64, int out_len,
67
+ struct base64_encodestate *state)
68
+ {
69
+ const char *const in_end = in_bin + in_len;
70
+ const char *in_pos = in_bin;
71
+ char *out_pos = out_base64;
72
+ char *out_end = out_base64 + out_len;
73
+ char result;
74
+ char fragment;
75
+
76
+ result = state->result;
77
+
78
+ switch (state->step)
79
+ {
80
+ while (1)
81
+ {
82
+ case step_A:
83
+ if (in_pos == in_end || out_pos >= out_end) {
84
+ state->result = result;
85
+ state->step = step_A;
86
+ return out_pos - out_base64;
87
+ }
88
+ fragment = *in_pos++;
89
+ result = (fragment & 0x0fc) >> 2;
90
+ *out_pos++ = base64_encode_value(result);
91
+ result = (fragment & 0x003) << 4;
92
+ case step_B:
93
+ if (in_pos == in_end || out_pos >= out_end) {
94
+ state->result = result;
95
+ state->step = step_B;
96
+ return out_pos - out_base64;
97
+ }
98
+ fragment = *in_pos++;
99
+ result |= (fragment & 0x0f0) >> 4;
100
+ *out_pos++ = base64_encode_value(result);
101
+ result = (fragment & 0x00f) << 2;
102
+ case step_C:
103
+ if (in_pos == in_end || out_pos + 2 >= out_end) {
104
+ state->result = result;
105
+ state->step = step_C;
106
+ return out_pos - out_base64;
107
+ }
108
+ fragment = *in_pos++;
109
+ result |= (fragment & 0x0c0) >> 6;
110
+ *out_pos++ = base64_encode_value(result);
111
+ result = (fragment & 0x03f) >> 0;
112
+ *out_pos++ = base64_encode_value(result);
113
+
114
+ /*
115
+ * Each full step (A->B->C) yields
116
+ * 4 characters.
117
+ */
118
+ if (++state->stepcount * 4 == BASE64_CHARS_PER_LINE) {
119
+ if (out_pos >= out_end)
120
+ return out_pos - out_base64;
121
+ *out_pos++ = '\n';
122
+ state->stepcount = 0;
123
+ }
124
+ }
125
+ }
126
+ /* control should not reach here */
127
+ return out_pos - out_base64;
128
+ }
129
+
130
+ static int
131
+ base64_encode_blockend(char *out_base64, int out_len,
132
+ struct base64_encodestate *state)
133
+ {
134
+ char *out_pos = out_base64;
135
+ char *out_end = out_base64 + out_len;
136
+
137
+ switch (state->step) {
138
+ case step_B:
139
+ if (out_pos + 2 >= out_end)
140
+ return out_pos - out_base64;
141
+ *out_pos++ = base64_encode_value(state->result);
142
+ *out_pos++ = '=';
143
+ *out_pos++ = '=';
144
+ break;
145
+ case step_C:
146
+ if (out_pos + 1 >= out_end)
147
+ return out_pos - out_base64;
148
+ *out_pos++ = base64_encode_value(state->result);
149
+ *out_pos++ = '=';
150
+ break;
151
+ case step_A:
152
+ break;
153
+ }
154
+ if (out_pos >= out_end)
155
+ return out_pos - out_base64;
156
+ #if 0
157
+ /* Sometimes the output is useful without a newline. */
158
+ *out_pos++ = '\n';
159
+ if (out_pos >= out_end)
160
+ return out_pos - out_base64;
161
+ #endif
162
+ *out_pos = '\0';
163
+ return out_pos - out_base64;
164
+ }
165
+
166
+ int
167
+ base64_encode(const char *in_bin, int in_len,
168
+ char *out_base64, int out_len)
169
+ {
170
+ struct base64_encodestate state;
171
+ base64_encodestate_init(&state);
172
+ int res = base64_encode_block(in_bin, in_len, out_base64,
173
+ out_len, &state);
174
+ return res + base64_encode_blockend(out_base64 + res, out_len - res,
175
+ &state);
176
+ }
177
+
178
+ /* }}} */
179
+
180
+ /* {{{ decode */
181
+
182
+ enum base64_decodestep { step_a, step_b, step_c, step_d };
183
+
184
+ struct base64_decodestate
185
+ {
186
+ enum base64_decodestep step;
187
+ char result;
188
+ };
189
+
190
+ static char
191
+ base64_decode_value(char value)
192
+ {
193
+ static const char decoding[] = {
194
+ 62, -1, -1, -1, 63, 52, 53, 54, 55, 56, 57, 58,
195
+ 59, 60, 61, -1, -1, -1, -2, -1, -1, -1, 0, 1,
196
+ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
197
+ 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
198
+ -1, -1, -1, -1, -1, -1, 26, 27, 28, 29, 30, 31,
199
+ 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
200
+ 44, 45, 46, 47, 48, 49, 50, 51
201
+ };
202
+ static const char decoding_size = sizeof(decoding);
203
+ int codepos = (signed char) value;
204
+ codepos -= 43;
205
+ if (codepos < 0 || codepos > decoding_size)
206
+ return -1;
207
+ return decoding[codepos];
208
+ }
209
+
210
+ static inline void
211
+ base64_decodestate_init(struct base64_decodestate *state)
212
+ {
213
+ state->step = step_a;
214
+ state->result = 0;
215
+ }
216
+
217
+ static int
218
+ base64_decode_block(const char *in_base64, int in_len,
219
+ char *out_bin, int out_len,
220
+ struct base64_decodestate *state)
221
+ {
222
+ const char *in_pos = in_base64;
223
+ const char *in_end = in_base64 + in_len;
224
+ char *out_pos = out_bin;
225
+ char *out_end = out_bin + out_len;
226
+ char fragment;
227
+
228
+ *out_pos = state->result;
229
+
230
+ switch (state->step)
231
+ {
232
+ while (1)
233
+ {
234
+ case step_a:
235
+ do {
236
+ if (in_pos == in_end || out_pos >= out_end)
237
+ {
238
+ state->step = step_a;
239
+ state->result = *out_pos;
240
+ return out_pos - out_bin;
241
+ }
242
+ fragment = base64_decode_value(*in_pos++);
243
+ } while (fragment < 0);
244
+ *out_pos = (fragment & 0x03f) << 2;
245
+ case step_b:
246
+ do {
247
+ if (in_pos == in_end || out_pos >= out_end)
248
+ {
249
+ state->step = step_b;
250
+ state->result = *out_pos;
251
+ return out_pos - out_bin;
252
+ }
253
+ fragment = base64_decode_value(*in_pos++);
254
+ } while (fragment < 0);
255
+ *out_pos++ |= (fragment & 0x030) >> 4;
256
+ if (out_pos < out_end)
257
+ *out_pos = (fragment & 0x00f) << 4;
258
+ case step_c:
259
+ do {
260
+ if (in_pos == in_end || out_pos >= out_end)
261
+ {
262
+ state->step = step_c;
263
+ state->result = *out_pos;
264
+ return out_pos - out_bin;
265
+ }
266
+ fragment = base64_decode_value(*in_pos++);
267
+ } while (fragment < 0);
268
+ *out_pos++ |= (fragment & 0x03c) >> 2;
269
+ if (out_pos < out_end)
270
+ *out_pos = (fragment & 0x003) << 6;
271
+ case step_d:
272
+ do {
273
+ if (in_pos == in_end || out_pos >= out_end)
274
+ {
275
+ state->step = step_d;
276
+ state->result = *out_pos;
277
+ return out_pos - out_bin;
278
+ }
279
+ fragment = base64_decode_value(*in_pos++);
280
+ } while (fragment < 0);
281
+ *out_pos++ |= (fragment & 0x03f);
282
+ }
283
+ }
284
+ /* control should not reach here */
285
+ return out_pos - out_bin;
286
+ }
287
+
288
+
289
+
290
+ int
291
+ base64_decode(const char *in_base64, int in_len,
292
+ char *out_bin, int out_len)
293
+ {
294
+ struct base64_decodestate state;
295
+ base64_decodestate_init(&state);
296
+ return base64_decode_block(in_base64, in_len,
297
+ out_bin, out_len, &state);
298
+ }
299
+
300
+ /* }}} */