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,91 @@
1
+ #ifndef BASE64_H
2
+ #define BASE64_H
3
+ /*
4
+ * Redistribution and use in source and binary forms, with or
5
+ * without modification, are permitted provided that the following
6
+ * conditions are met:
7
+ *
8
+ * 1. Redistributions of source code must retain the above
9
+ * copyright notice, this list of conditions and the
10
+ * following disclaimer.
11
+ *
12
+ * 2. Redistributions in binary form must reproduce the above
13
+ * copyright notice, this list of conditions and the following
14
+ * disclaimer in the documentation and/or other materials
15
+ * provided with the distribution.
16
+ *
17
+ * THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ``AS IS'' AND
18
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
21
+ * <COPYRIGHT HOLDER> OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
22
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
25
+ * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26
+ * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
28
+ * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29
+ * SUCH DAMAGE.
30
+ */
31
+ /*
32
+ * This is part of the libb64 project, and has been placed in the
33
+ * public domain. For details, see
34
+ * http://sourceforge.net/projects/libb64
35
+ */
36
+ #ifdef __cplusplus
37
+ extern "C" {
38
+ #endif
39
+
40
+ #define BASE64_CHARS_PER_LINE 72
41
+
42
+ static inline int
43
+ base64_bufsize(int binsize)
44
+ {
45
+ int datasize = binsize * 4/3 + 4;
46
+ int newlines = ((datasize + BASE64_CHARS_PER_LINE - 1)/
47
+ BASE64_CHARS_PER_LINE);
48
+ return datasize + newlines;
49
+ }
50
+
51
+ /**
52
+ * Encode a binary stream into BASE64 text.
53
+ *
54
+ * @pre the buffer size is at least 4/3 of the stream
55
+ * size + stream_size/72 (newlines) + 4
56
+ *
57
+ * @param[in] in_bin the binary input stream to decode
58
+ * @param[in] in_len size of the input
59
+ * @param[out] out_base64 output buffer for the encoded data
60
+ * @param[in] out_len buffer size, must be at least
61
+ * 4/3 of the input size
62
+ *
63
+ * @return the size of encoded output
64
+ */
65
+
66
+ int
67
+ base64_encode(const char *in_bin, int in_len,
68
+ char *out_base64, int out_len);
69
+
70
+ /**
71
+ * Decode a BASE64 text into a binary
72
+ *
73
+ * @param[in] in_base64 the BASE64 stream to decode
74
+ * @param[in] in_len size of the input
75
+ * @param[out] out_bin output buffer size
76
+ * @param[in] out_len buffer size
77
+ *
78
+ * @pre the output buffer size must be at least
79
+ * 3/4 + 1 of the size of the input
80
+ *
81
+ * @return the size of decoded output
82
+ */
83
+
84
+ int base64_decode(const char *in_base64, int in_len,
85
+ char *out_bin, int out_len);
86
+
87
+ #ifdef __cplusplus
88
+ } /* extern "C" */
89
+ #endif
90
+ #endif /* BASE64_H */
91
+
@@ -0,0 +1,589 @@
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
+ /* The MIT License
30
+
31
+ Copyright (c) 2008, by Attractive Chaos <attractivechaos@aol.co.uk>
32
+
33
+ Permission is hereby granted, free of charge, to any person obtaining
34
+ a copy of this software and associated documentation files (the
35
+ "Software"), to deal in the Software without restriction, including
36
+ without limitation the rights to use, copy, modify, merge, publish,
37
+ distribute, sublicense, and/or sell copies of the Software, and to
38
+ permit persons to whom the Software is furnished to do so, subject to
39
+ the following conditions:
40
+
41
+ The above copyright notice and this permission notice shall be
42
+ included in all copies or substantial portions of the Software.
43
+
44
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
45
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
46
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
47
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
48
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
49
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
50
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
51
+ SOFTWARE.
52
+ */
53
+
54
+ #ifndef MH_INCREMENTAL_RESIZE
55
+ #define MH_INCREMENTAL_RESIZE 1
56
+ #endif
57
+
58
+ #include <stdlib.h>
59
+ #include <stdint.h>
60
+ #include <math.h>
61
+ #include <string.h>
62
+
63
+ #define mh_cat(a, b) mh##a##_##b
64
+ #define mh_ecat(a, b) mh_cat(a, b)
65
+ #define _mh(x) mh_ecat(mh_name, x)
66
+
67
+ #define mh_unlikely(x) __builtin_expect((x),0)
68
+
69
+ #ifndef MH_CALLOC
70
+ #define MH_CALLOC calloc
71
+ #endif /* MH_CALLOC */
72
+
73
+ #ifndef MH_FREE
74
+ #define MH_FREE free
75
+ #endif /* MH_FREE */
76
+
77
+ #ifndef MH_TYPEDEFS
78
+ #define MH_TYPEDEFS 1
79
+ typedef uint32_t mh_int_t;
80
+ #endif /* MH_TYPEDEFS */
81
+
82
+ #ifndef __ac_HASH_PRIME_SIZE
83
+ #define __ac_HASH_PRIME_SIZE 31
84
+ static const mh_int_t __ac_prime_list[__ac_HASH_PRIME_SIZE] = {
85
+ 3ul, 11ul, 23ul, 53ul,
86
+ 97ul, 193ul, 389ul, 769ul,
87
+ 1543ul, 3079ul, 6151ul, 12289ul,
88
+ 24593ul, 49157ul, 98317ul, 196613ul,
89
+ 393241ul, 786433ul, 1572869ul, 3145739ul,
90
+ 6291469ul, 12582917ul, 25165843ul, 50331653ul,
91
+ 100663319ul, 201326611ul, 402653189ul, 805306457ul,
92
+ 1610612741ul, 3221225473ul, 4294967291ul
93
+ };
94
+ #endif /* __ac_HASH_PRIME_SIZE */
95
+
96
+ #ifndef MH_HEADER
97
+ #define MH_HEADER
98
+
99
+ struct _mh(t) {
100
+ mh_node_t *p;
101
+ mh_int_t *b;
102
+ mh_int_t n_buckets;
103
+ mh_int_t n_dirty;
104
+ mh_int_t size;
105
+ mh_int_t upper_bound;
106
+ mh_int_t prime;
107
+
108
+ mh_int_t resize_cnt;
109
+ mh_int_t resize_position;
110
+ mh_int_t batch;
111
+ struct _mh(t) *shadow;
112
+ };
113
+
114
+ #define mh_exist(h, i) ({ h->b[i >> 4] & (1 << (i % 16)); })
115
+ #define mh_dirty(h, i) ({ h->b[i >> 4] & (1 << (i % 16 + 16)); })
116
+
117
+ #define mh_setfree(h, i) ({ h->b[i >> 4] &= ~(1 << (i % 16)); })
118
+ #define mh_setexist(h, i) ({ h->b[i >> 4] |= (1 << (i % 16)); })
119
+ #define mh_setdirty(h, i) ({ h->b[i >> 4] |= (1 << (i % 16 + 16)); })
120
+
121
+ #define mh_node(h, i) ((const mh_node_t *) &((h)->p[(i)]))
122
+ #define mh_size(h) ({ (h)->size; })
123
+ #define mh_capacity(h) ({ (h)->n_buckets; })
124
+ #define mh_begin(h) ({ 0; })
125
+ #define mh_end(h) ({ (h)->n_buckets; })
126
+
127
+ #define mh_first(h) ({ \
128
+ mh_int_t i; \
129
+ for (i = 0; i < mh_end(h); i++) { \
130
+ if (mh_exist(h, i)) \
131
+ break; \
132
+ } \
133
+ i; \
134
+ })
135
+
136
+ #define mh_next(h, i) ({ \
137
+ mh_int_t n = i; \
138
+ if (n < mh_end(h)) { \
139
+ for (n = i + 1; n < mh_end(h); n++) { \
140
+ if (mh_exist(h, n)) \
141
+ break; \
142
+ } \
143
+ } \
144
+ n; \
145
+ })
146
+
147
+ #define mh_foreach(h, i) \
148
+ for (i = mh_first(h); i < mh_end(h); i = mh_next(h, i))
149
+
150
+ #define MH_DENSITY 0.7
151
+
152
+ struct _mh(t) * _mh(new)();
153
+ void _mh(clear)(struct _mh(t) *h);
154
+ void _mh(delete)(struct _mh(t) *h);
155
+ void _mh(resize)(struct _mh(t) *h, mh_arg_t arg);
156
+ int _mh(start_resize)(struct _mh(t) *h, mh_int_t buckets, mh_int_t batch,
157
+ mh_arg_t arg);
158
+ void _mh(reserve)(struct _mh(t) *h, mh_int_t size,
159
+ mh_arg_t arg);
160
+ void __attribute__((noinline)) _mh(del_resize)(struct _mh(t) *h, mh_int_t x,
161
+ mh_arg_t arg);
162
+ size_t _mh(memsize)(struct _mh(t) *h);
163
+ void _mh(dump)(struct _mh(t) *h);
164
+
165
+ #define put_slot(h, node, arg) \
166
+ _mh(put_slot)(h, node, arg)
167
+
168
+ static inline mh_node_t *
169
+ _mh(node)(struct _mh(t) *h, mh_int_t x)
170
+ {
171
+ return (mh_node_t *) &(h->p[x]);
172
+ }
173
+
174
+
175
+ static inline mh_int_t
176
+ _mh(next_slot)(mh_int_t slot, mh_int_t inc, mh_int_t size)
177
+ {
178
+ slot += inc;
179
+ return slot >= size ? slot - size : slot;
180
+ }
181
+
182
+ #if defined(mh_hash_key) && defined(mh_eq_key)
183
+ /**
184
+ * If it is necessary to search by something different
185
+ * than a hash node, define mh_hash_key and mh_eq_key
186
+ * and use mh_find().
187
+ */
188
+ static inline mh_int_t
189
+ _mh(find)(struct _mh(t) *h, mh_key_t key, mh_arg_t arg)
190
+ {
191
+ (void) arg;
192
+
193
+ mh_int_t k = mh_hash_key(key, arg);
194
+ mh_int_t i = k % h->n_buckets;
195
+ mh_int_t inc = 1 + k % (h->n_buckets - 1);
196
+ for (;;) {
197
+ if ((mh_exist(h, i) && mh_eq_key(key, mh_node(h, i), arg)))
198
+ return i;
199
+
200
+ if (!mh_dirty(h, i))
201
+ return h->n_buckets;
202
+
203
+ i = _mh(next_slot)(i, inc, h->n_buckets);
204
+ }
205
+ }
206
+ #endif
207
+
208
+ static inline mh_int_t
209
+ _mh(get)(struct _mh(t) *h, const mh_node_t *node,
210
+ mh_arg_t arg)
211
+ {
212
+ (void) arg;
213
+
214
+ mh_int_t k = mh_hash(node, arg);
215
+ mh_int_t i = k % h->n_buckets;
216
+ mh_int_t inc = 1 + k % (h->n_buckets - 1);
217
+ for (;;) {
218
+ if ((mh_exist(h, i) && mh_eq(node, mh_node(h, i), arg)))
219
+ return i;
220
+
221
+ if (!mh_dirty(h, i))
222
+ return h->n_buckets;
223
+
224
+ i = _mh(next_slot)(i, inc, h->n_buckets);
225
+ }
226
+ }
227
+
228
+ static inline mh_int_t
229
+ _mh(random)(struct _mh(t) *h, mh_int_t rnd)
230
+ {
231
+ mh_int_t i = 0;
232
+ for (i = 0; i < mh_size(h); i++, rnd++) {
233
+ rnd %= h->n_buckets;
234
+ if (mh_exist(h, rnd))
235
+ return rnd;
236
+ }
237
+
238
+ return h->n_buckets;
239
+ }
240
+
241
+ static inline mh_int_t
242
+ _mh(put_slot)(struct _mh(t) *h, const mh_node_t *node,
243
+ mh_arg_t arg)
244
+ {
245
+ (void) arg;
246
+
247
+ mh_int_t k = mh_hash(node, arg); /* hash key */
248
+ mh_int_t i = k % h->n_buckets; /* offset in the hash table. */
249
+ mh_int_t inc = 1 + k % (h->n_buckets - 1); /* overflow chain increment. */
250
+
251
+ /* Skip through all collisions. */
252
+ while (mh_exist(h, i)) {
253
+ if (mh_eq(node, mh_node(h, i), arg))
254
+ return i; /* Found a duplicate. */
255
+ /*
256
+ * Mark this link as part of a collision chain. The
257
+ * chain always ends with a non-marked link.
258
+ * Note: the collision chain for this key may share
259
+ * links with collision chains of other keys.
260
+ */
261
+ mh_setdirty(h, i);
262
+ i = _mh(next_slot)(i, inc, h->n_buckets);
263
+ }
264
+ /*
265
+ * Found an unused, but possibly dirty slot. Use it.
266
+ * However, if this is a dirty slot, first check that
267
+ * there are no duplicates down the collision chain. The
268
+ * current link can also be from a collision chain of some
269
+ * other key, but this is can't be established, so check
270
+ * anyway.
271
+ */
272
+ mh_int_t save_i = i;
273
+ while (mh_dirty(h, i)) {
274
+ i = _mh(next_slot)(i, inc, h->n_buckets);
275
+
276
+ if (mh_exist(h, i) && mh_eq(mh_node(h, i), node, arg))
277
+ return i; /* Found a duplicate. */
278
+ }
279
+ /* Reached the end of the collision chain: no duplicates. */
280
+ return save_i;
281
+ }
282
+
283
+ /**
284
+ * Find a node in the hash and replace it with a new value.
285
+ * Save the old node in ret pointer, if it is provided.
286
+ * If the old node didn't exist, just insert the new node.
287
+ *
288
+ * @retval != mh_end() pos of the new node, ret is either NULL
289
+ * or copy of the old node
290
+ * @retval mh_end() out of memory, ret is unchanged.
291
+ */
292
+ static inline mh_int_t
293
+ _mh(put)(struct _mh(t) *h, const mh_node_t *node, mh_node_t **ret,
294
+ mh_arg_t arg)
295
+ {
296
+ mh_int_t x = mh_end(h);
297
+ int exist;
298
+ if (h->size == h->n_buckets)
299
+ /* no one free elements in the hash table */
300
+ goto put_done;
301
+
302
+ #if MH_INCREMENTAL_RESIZE
303
+ if (mh_unlikely(h->resize_position > 0))
304
+ _mh(resize)(h, arg);
305
+ else if (mh_unlikely(h->n_dirty >= h->upper_bound)) {
306
+ if (_mh(start_resize)(h, h->n_buckets + 1, 0, arg))
307
+ goto put_done;
308
+ }
309
+ if (h->resize_position)
310
+ _mh(put)(h->shadow, node, NULL, arg);
311
+ #else
312
+ if (mh_unlikely(h->n_dirty >= h->upper_bound)) {
313
+ if (_mh(start_resize)(h, h->n_buckets + 1, h->size,
314
+ arg))
315
+ goto put_done;
316
+ }
317
+ #endif
318
+
319
+ x = put_slot(h, node, arg);
320
+ exist = mh_exist(h, x);
321
+
322
+ if (!exist) {
323
+ /* add new */
324
+ mh_setexist(h, x);
325
+ h->size++;
326
+ if (!mh_dirty(h, x))
327
+ h->n_dirty++;
328
+
329
+ memcpy(&(h->p[x]), node, sizeof(mh_node_t));
330
+ if (ret)
331
+ *ret = NULL;
332
+ } else {
333
+ if (ret)
334
+ memcpy(*ret, &(h->p[x]), sizeof(mh_node_t));
335
+ /* replace old */
336
+ memcpy(&(h->p[x]), node, sizeof(mh_node_t));
337
+ }
338
+
339
+ put_done:
340
+ return x;
341
+ }
342
+
343
+ static inline void
344
+ _mh(del)(struct _mh(t) *h, mh_int_t x,
345
+ mh_arg_t arg)
346
+ {
347
+ if (x != h->n_buckets && mh_exist(h, x)) {
348
+ mh_setfree(h, x);
349
+ h->size--;
350
+ if (!mh_dirty(h, x))
351
+ h->n_dirty--;
352
+ #if MH_INCREMENTAL_RESIZE
353
+ if (mh_unlikely(h->resize_position))
354
+ _mh(del_resize)(h, x, arg);
355
+ #endif
356
+ }
357
+ }
358
+ #endif
359
+
360
+ static inline void
361
+ _mh(remove)(struct _mh(t) *h, const mh_node_t *node,
362
+ mh_arg_t arg)
363
+ {
364
+ mh_int_t k = _mh(get)(h, node, arg);
365
+ if (k != mh_end(h))
366
+ _mh(del)(h, k, arg);
367
+ }
368
+
369
+ #ifdef MH_SOURCE
370
+
371
+ void __attribute__((noinline))
372
+ _mh(del_resize)(struct _mh(t) *h, mh_int_t x,
373
+ mh_arg_t arg)
374
+ {
375
+ struct _mh(t) *s = h->shadow;
376
+ uint32_t y = _mh(get)(s, (const mh_node_t *) &(h->p[x]),
377
+ arg);
378
+ _mh(del)(s, y, arg);
379
+ _mh(resize)(h, arg);
380
+ }
381
+
382
+ struct _mh(t) *
383
+ _mh(new)()
384
+ {
385
+ struct _mh(t) *h = (struct _mh(t) *) MH_CALLOC(1, sizeof(*h));
386
+ if (!h) return NULL;
387
+ memset(h, 0, sizeof(struct _mh(t)));
388
+ h->shadow = (struct _mh(t) *) MH_CALLOC(1, sizeof(*h));
389
+ if (!h->shadow) goto error;
390
+ h->prime = 0;
391
+ h->n_buckets = __ac_prime_list[h->prime];
392
+ h->p = (mh_node_t *) MH_CALLOC(h->n_buckets, sizeof(mh_node_t));
393
+ if (!h->p) goto error;
394
+ h->b = (mh_int_t *) MH_CALLOC(h->n_buckets / 16 + 1, sizeof(mh_int_t));
395
+ if (!h->b) goto error;
396
+ h->upper_bound = h->n_buckets * MH_DENSITY;
397
+ return h;
398
+ error:
399
+ _mh(delete)(h);
400
+ return NULL;
401
+ }
402
+
403
+ void
404
+ _mh(clear)(struct _mh(t) *h)
405
+ {
406
+ MH_FREE(h->p);
407
+ h->prime = 0;
408
+ h->n_buckets = __ac_prime_list[h->prime];
409
+ h->p = (mh_node_t *) MH_CALLOC(h->n_buckets, sizeof(mh_node_t));
410
+ h->upper_bound = h->n_buckets * MH_DENSITY;
411
+ }
412
+
413
+ void
414
+ _mh(delete)(struct _mh(t) *h)
415
+ {
416
+ MH_FREE(h->shadow);
417
+ MH_FREE(h->b);
418
+ MH_FREE(h->p);
419
+ MH_FREE(h);
420
+ }
421
+
422
+ /** Calculate hash size. */
423
+ size_t
424
+ _mh(memsize)(struct _mh(t) *h)
425
+ {
426
+ size_t sz = 2 * sizeof(struct _mh(t));
427
+
428
+ sz += h->n_buckets * sizeof(mh_node_t);
429
+ sz += (h->n_buckets / 16 + 1) * sizeof(mh_int_t);
430
+ if (h->resize_position) {
431
+ h = h->shadow;
432
+ sz += h->n_buckets * sizeof(mh_node_t);
433
+ sz += (h->n_buckets / 16 + 1) * sizeof(mh_int_t);
434
+ }
435
+ return sz;
436
+ }
437
+
438
+ void
439
+ _mh(resize)(struct _mh(t) *h,
440
+ mh_arg_t arg)
441
+ {
442
+ struct _mh(t) *s = h->shadow;
443
+ #if MH_INCREMENTAL_RESIZE
444
+ mh_int_t batch = h->batch;
445
+ #endif
446
+ mh_int_t i = 0;
447
+ for (i = h->resize_position; i < h->n_buckets; i++) {
448
+ #if MH_INCREMENTAL_RESIZE
449
+ if (batch-- == 0) {
450
+ h->resize_position = i;
451
+ return;
452
+ }
453
+ #endif
454
+ if (!mh_exist(h, i))
455
+ continue;
456
+ mh_int_t n = put_slot(s, mh_node(h, i), arg);
457
+ s->p[n] = h->p[i];
458
+ mh_setexist(s, n);
459
+ s->n_dirty++;
460
+ }
461
+ MH_FREE(h->p);
462
+ MH_FREE(h->b);
463
+ s->size = h->size;
464
+ memcpy(h, s, sizeof(*h));
465
+ h->resize_cnt++;
466
+ }
467
+
468
+ int
469
+ _mh(start_resize)(struct _mh(t) *h, mh_int_t buckets, mh_int_t batch,
470
+ mh_arg_t arg)
471
+ {
472
+ if (h->resize_position) {
473
+ /* resize has already been started */
474
+ return 0;
475
+ }
476
+ if (buckets < h->n_buckets) {
477
+ /* hash size is already greater than requested */
478
+ return 0;
479
+ }
480
+ while (h->prime < __ac_HASH_PRIME_SIZE) {
481
+ if (__ac_prime_list[h->prime] >= buckets)
482
+ break;
483
+ h->prime += 1;
484
+ }
485
+
486
+ h->batch = batch > 0 ? batch : h->n_buckets / (256 * 1024);
487
+ if (h->batch < 256) {
488
+ /*
489
+ * Minimal batch must be greater or equal to
490
+ * 1 / (1 - f), where f is upper bound percent
491
+ * = MH_DENSITY
492
+ */
493
+ h->batch = 256;
494
+ }
495
+
496
+ struct _mh(t) *s = h->shadow;
497
+ memcpy(s, h, sizeof(*h));
498
+ s->resize_position = 0;
499
+ s->n_buckets = __ac_prime_list[h->prime];
500
+ s->upper_bound = s->n_buckets * MH_DENSITY;
501
+ s->n_dirty = 0;
502
+ s->p = (mh_node_t *) MH_CALLOC(s->n_buckets, sizeof(mh_node_t));
503
+ if (s->p == NULL)
504
+ return -1;
505
+ s->b = (mh_int_t *) MH_CALLOC(s->n_buckets / 16 + 1, sizeof(mh_int_t));
506
+ if (s->b == NULL) {
507
+ MH_FREE(s->p);
508
+ s->p = NULL;
509
+ return -1;
510
+ }
511
+ _mh(resize)(h, arg);
512
+
513
+ return 0;
514
+ }
515
+
516
+ void
517
+ _mh(reserve)(struct _mh(t) *h, mh_int_t size,
518
+ mh_arg_t arg)
519
+ {
520
+ _mh(start_resize)(h, size/MH_DENSITY, h->size, arg);
521
+ }
522
+
523
+ #ifndef mh_stat
524
+ #define mh_stat(buf, h) ({ \
525
+ tbuf_printf(buf, " n_buckets: %" PRIu32 CRLF \
526
+ " n_dirty: %" PRIu32 CRLF \
527
+ " size: %" PRIu32 CRLF \
528
+ " resize_cnt: %" PRIu32 CRLF \
529
+ " resize_position: %" PRIu32 CRLF, \
530
+ h->n_buckets, \
531
+ h->n_dirty, \
532
+ h->size, \
533
+ h->resize_cnt, \
534
+ h->resize_position); \
535
+ })
536
+ #endif
537
+
538
+ #ifdef MH_DEBUG
539
+ void
540
+ _mh(dump)(struct _mh(t) *h)
541
+ {
542
+ printf("slots:\n");
543
+ int k = 0, i = 0;
544
+ for(i = 0; i < h->n_buckets; i++) {
545
+ if (mh_dirty(h, i) || mh_exist(h, i)) {
546
+ printf(" [%i] ", i);
547
+ if (mh_exist(h, i)) {
548
+ /* TODO(roman): fix this printf */
549
+ printf(" -> %p", h->p[i]);
550
+ k++;
551
+ }
552
+ if (mh_dirty(h, i))
553
+ printf(" dirty");
554
+ printf("\n");
555
+ }
556
+ }
557
+ printf("end(%i)\n", k);
558
+ }
559
+ #endif
560
+
561
+ #endif
562
+
563
+ #if defined(MH_SOURCE) || defined(MH_UNDEF)
564
+ #undef MH_CALLOC
565
+ #undef MH_FREE
566
+ #undef MH_HEADER
567
+ #undef mh_node_t
568
+ #undef mh_arg_t
569
+ #undef mh_key_t
570
+ #undef mh_name
571
+ #undef mh_hash
572
+ #undef mh_hash_key
573
+ #undef mh_eq
574
+ #undef mh_eq_key
575
+ #undef mh_node
576
+ #undef mh_dirty
577
+ #undef mh_place
578
+ #undef mh_setdirty
579
+ #undef mh_setexist
580
+ #undef mh_setvalue
581
+ #undef mh_unlikely
582
+ #undef slot
583
+ #undef slot_and_dirty
584
+ #undef MH_DENSITY
585
+ #endif
586
+
587
+ #undef mh_cat
588
+ #undef mh_ecat
589
+ #undef _mh