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.
- checksums.yaml +7 -0
- data/README.md +84 -0
- data/ext/lwtarantool/conn.c +314 -0
- data/ext/lwtarantool/depend +23 -0
- data/ext/lwtarantool/errors.c +24 -0
- data/ext/lwtarantool/extconf.rb +8 -0
- data/ext/lwtarantool/lwtarantool.c +12 -0
- data/ext/lwtarantool/lwtarantool.h +38 -0
- data/ext/lwtarantool/request.c +124 -0
- data/ext/lwtarantool/vendor/msgpuck/CMakeLists.txt +73 -0
- data/ext/lwtarantool/vendor/msgpuck/hints.c +674 -0
- data/ext/lwtarantool/vendor/msgpuck/msgpuck.c +375 -0
- data/ext/lwtarantool/vendor/msgpuck/msgpuck.h +2195 -0
- data/ext/lwtarantool/vendor/msgpuck/test/CMakeLists.txt +25 -0
- data/ext/lwtarantool/vendor/msgpuck/test/msgpuck.c +1126 -0
- data/ext/lwtarantool/vendor/msgpuck/test/test.c +105 -0
- data/ext/lwtarantool/vendor/msgpuck/test/test.h +123 -0
- data/ext/lwtarantool/vendor/tarantool-c/CMakeLists.txt +89 -0
- data/ext/lwtarantool/vendor/tarantool-c/cmake/FindMsgPuck.cmake +18 -0
- data/ext/lwtarantool/vendor/tarantool-c/cmake/FindSphinx.cmake +10 -0
- data/ext/lwtarantool/vendor/tarantool-c/doc/CMakeLists.txt +15 -0
- data/ext/lwtarantool/vendor/tarantool-c/doc/source/example.c +340 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/CMakeLists.txt +6 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tarantool.h +67 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_auth.h +72 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_buf.h +88 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_call.h +83 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_delete.h +52 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_execute.h +24 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_insert.h +62 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_io.h +67 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_iob.h +62 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_iter.h +301 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_mem.h +102 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_net.h +242 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_object.h +248 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_opt.h +138 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_ping.h +49 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_proto.h +295 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_reply.h +204 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_request.h +377 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_schema.h +165 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_select.h +59 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_stream.h +79 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_update.h +226 -0
- data/ext/lwtarantool/vendor/tarantool-c/include/tp.h +1998 -0
- data/ext/lwtarantool/vendor/tarantool-c/test/CMakeLists.txt +36 -0
- data/ext/lwtarantool/vendor/tarantool-c/test/common.c +233 -0
- data/ext/lwtarantool/vendor/tarantool-c/test/common.h +28 -0
- data/ext/lwtarantool/vendor/tarantool-c/test/plain_test.c +152 -0
- data/ext/lwtarantool/vendor/tarantool-c/test/tarantool_call.c +57 -0
- data/ext/lwtarantool/vendor/tarantool-c/test/tarantool_disconnect.c +31 -0
- data/ext/lwtarantool/vendor/tarantool-c/test/tarantool_tcp.c +840 -0
- data/ext/lwtarantool/vendor/tarantool-c/test/tarantool_unix.c +384 -0
- data/ext/lwtarantool/vendor/tarantool-c/test/test.c +72 -0
- data/ext/lwtarantool/vendor/tarantool-c/test/test.h +94 -0
- data/ext/lwtarantool/vendor/tarantool-c/test/tnt_assoc.c +6 -0
- data/ext/lwtarantool/vendor/tarantool-c/test/tnt_assoc.h +67 -0
- data/ext/lwtarantool/vendor/tarantool-c/third_party/PMurHash.c +317 -0
- data/ext/lwtarantool/vendor/tarantool-c/third_party/PMurHash.h +68 -0
- data/ext/lwtarantool/vendor/tarantool-c/third_party/base64.c +300 -0
- data/ext/lwtarantool/vendor/tarantool-c/third_party/base64.h +91 -0
- data/ext/lwtarantool/vendor/tarantool-c/third_party/mhash.h +589 -0
- data/ext/lwtarantool/vendor/tarantool-c/third_party/sha1.c +219 -0
- data/ext/lwtarantool/vendor/tarantool-c/third_party/sha1.h +24 -0
- data/ext/lwtarantool/vendor/tarantool-c/third_party/uri.c +6528 -0
- data/ext/lwtarantool/vendor/tarantool-c/third_party/uri.h +81 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/CMakeLists.txt +83 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/pmatomic.h +494 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_assoc.c +9 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_assoc.h +172 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_auth.c +118 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_buf.c +171 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_call.c +79 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_delete.c +52 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_execute.c +60 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_insert.c +60 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_io.c +520 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_iob.c +75 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_iter.c +293 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_mem.c +82 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_net.c +336 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_object.c +476 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_opt.c +117 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_ping.c +38 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_proto_internal.h +43 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_reply.c +300 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_request.c +336 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_schema.c +334 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_select.c +58 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_stream.c +71 -0
- data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_update.c +247 -0
- data/ext/lwtarantool/vendor/tarantool-c/tntrpl/CMakeLists.txt +69 -0
- data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_dir.c +173 -0
- data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_dir.h +58 -0
- data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_log.c +329 -0
- data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_log.h +119 -0
- data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_rpl.c +189 -0
- data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_rpl.h +47 -0
- data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_snapshot.c +163 -0
- data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_snapshot.h +50 -0
- data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_xlog.c +163 -0
- data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_xlog.h +50 -0
- data/lib/lwtarantool/connection.rb +84 -0
- data/lib/lwtarantool/request.rb +58 -0
- data/lib/lwtarantool.rb +23 -0
- metadata +164 -0
@@ -0,0 +1,293 @@
|
|
1
|
+
|
2
|
+
/*
|
3
|
+
* Redistribution and use in source and binary forms, with or
|
4
|
+
* without modification, are permitted provided that the following
|
5
|
+
* conditions are met:
|
6
|
+
*
|
7
|
+
* 1. Redistributions of source code must retain the above
|
8
|
+
* copyright notice, this list of conditions and the
|
9
|
+
* following disclaimer.
|
10
|
+
*
|
11
|
+
* 2. Redistributions in binary form must reproduce the above
|
12
|
+
* copyright notice, this list of conditions and the following
|
13
|
+
* disclaimer in the documentation and/or other materials
|
14
|
+
* provided with the distribution.
|
15
|
+
*
|
16
|
+
* THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ``AS IS'' AND
|
17
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
18
|
+
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
19
|
+
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
20
|
+
* <COPYRIGHT HOLDER> OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
21
|
+
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
22
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
23
|
+
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
24
|
+
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
25
|
+
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
26
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
27
|
+
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
28
|
+
* SUCH DAMAGE.
|
29
|
+
*/
|
30
|
+
|
31
|
+
#include <stdlib.h>
|
32
|
+
#include <stdint.h>
|
33
|
+
#include <string.h>
|
34
|
+
|
35
|
+
#include <msgpuck.h>
|
36
|
+
|
37
|
+
#include <tarantool/tnt_mem.h>
|
38
|
+
#include <tarantool/tnt_proto.h>
|
39
|
+
#include <tarantool/tnt_reply.h>
|
40
|
+
#include <tarantool/tnt_stream.h>
|
41
|
+
#include <tarantool/tnt_buf.h>
|
42
|
+
#include <tarantool/tnt_iter.h>
|
43
|
+
|
44
|
+
static struct tnt_iter *tnt_iter_init(struct tnt_iter *i) {
|
45
|
+
int alloc = (i == NULL);
|
46
|
+
if (alloc) {
|
47
|
+
i = tnt_mem_alloc(sizeof(struct tnt_iter));
|
48
|
+
if (i == NULL)
|
49
|
+
return NULL;
|
50
|
+
}
|
51
|
+
memset(i, 0, sizeof(struct tnt_iter));
|
52
|
+
i->status = TNT_ITER_OK;
|
53
|
+
i->alloc = alloc;
|
54
|
+
return i;
|
55
|
+
}
|
56
|
+
|
57
|
+
static int tnt_iter_array_next(struct tnt_iter *i) {
|
58
|
+
struct tnt_iter_array *itr = TNT_IARRAY(i);
|
59
|
+
itr->cur_index++;
|
60
|
+
if ((uint32_t)itr->cur_index >= itr->elem_count) {
|
61
|
+
i->status = TNT_ITER_FAIL;
|
62
|
+
return 0;
|
63
|
+
}
|
64
|
+
if (itr->cur_index == 0)
|
65
|
+
itr->elem = itr->first_elem;
|
66
|
+
else
|
67
|
+
itr->elem = itr->elem_end;
|
68
|
+
itr->elem_end = itr->elem;
|
69
|
+
mp_next(&itr->elem_end);
|
70
|
+
return 1;
|
71
|
+
}
|
72
|
+
|
73
|
+
static void tnt_iter_array_rewind(struct tnt_iter *i) {
|
74
|
+
struct tnt_iter_array *itr = TNT_IARRAY(i);
|
75
|
+
itr->cur_index = -1;
|
76
|
+
itr->elem = NULL;
|
77
|
+
itr->elem_end = NULL;
|
78
|
+
i->status = TNT_ITER_OK;
|
79
|
+
}
|
80
|
+
|
81
|
+
struct tnt_iter *
|
82
|
+
tnt_iter_array_object(struct tnt_iter *i, struct tnt_stream *data)
|
83
|
+
{
|
84
|
+
return tnt_iter_array(i, TNT_SBUF_DATA(data), TNT_SBUF_SIZE(data));
|
85
|
+
}
|
86
|
+
|
87
|
+
struct tnt_iter *
|
88
|
+
tnt_iter_array(struct tnt_iter *i, const char *data, size_t size)
|
89
|
+
{
|
90
|
+
const char *tmp_data = data;
|
91
|
+
if (mp_check(&tmp_data, data + size) != 0)
|
92
|
+
return NULL;
|
93
|
+
if (!data || !size || mp_typeof(*data) != MP_ARRAY)
|
94
|
+
return NULL;
|
95
|
+
i = tnt_iter_init(i);
|
96
|
+
if (i == NULL)
|
97
|
+
return NULL;
|
98
|
+
i->type = TNT_ITER_ARRAY;
|
99
|
+
i->next = tnt_iter_array_next;
|
100
|
+
i->rewind = tnt_iter_array_rewind;
|
101
|
+
i->free = NULL;
|
102
|
+
struct tnt_iter_array *itr = TNT_IARRAY(i);
|
103
|
+
itr->data = data;
|
104
|
+
itr->first_elem = data;
|
105
|
+
itr->elem_count = mp_decode_array(&itr->first_elem);
|
106
|
+
itr->cur_index = -1;
|
107
|
+
return i;
|
108
|
+
}
|
109
|
+
|
110
|
+
|
111
|
+
static int tnt_iter_map_next(struct tnt_iter *i) {
|
112
|
+
struct tnt_iter_map *itr = TNT_IMAP(i);
|
113
|
+
itr->cur_index++;
|
114
|
+
if ((uint32_t)itr->cur_index >= itr->pair_count) {
|
115
|
+
i->status = TNT_ITER_FAIL;
|
116
|
+
return 0;
|
117
|
+
}
|
118
|
+
if (itr->cur_index == 0)
|
119
|
+
itr->key = itr->first_key;
|
120
|
+
else
|
121
|
+
itr->key = itr->value_end;
|
122
|
+
itr->key_end = itr->key;
|
123
|
+
mp_next(&itr->key_end);
|
124
|
+
itr->value = itr->key_end;
|
125
|
+
itr->value_end = itr->value;
|
126
|
+
mp_next(&itr->value_end);
|
127
|
+
return 1;
|
128
|
+
|
129
|
+
}
|
130
|
+
|
131
|
+
static void tnt_iter_map_rewind(struct tnt_iter *i) {
|
132
|
+
struct tnt_iter_map *itr = TNT_IMAP(i);
|
133
|
+
itr->cur_index = -1;
|
134
|
+
itr->key = NULL;
|
135
|
+
itr->key_end = NULL;
|
136
|
+
itr->value = NULL;
|
137
|
+
itr->value_end = NULL;
|
138
|
+
i->status = TNT_ITER_OK;
|
139
|
+
}
|
140
|
+
|
141
|
+
struct tnt_iter *
|
142
|
+
tnt_iter_map_object(struct tnt_iter *i, struct tnt_stream *data)
|
143
|
+
{
|
144
|
+
return tnt_iter_map(i, TNT_SBUF_DATA(data), TNT_SBUF_SIZE(data));
|
145
|
+
}
|
146
|
+
|
147
|
+
struct tnt_iter *
|
148
|
+
tnt_iter_map(struct tnt_iter *i, const char *data, size_t size)
|
149
|
+
{
|
150
|
+
const char *tmp_data = data;
|
151
|
+
if (mp_check(&tmp_data, data + size) != 0)
|
152
|
+
return NULL;
|
153
|
+
if (!data || !size || mp_typeof(*data) != MP_MAP)
|
154
|
+
return NULL;
|
155
|
+
i = tnt_iter_init(i);
|
156
|
+
if (i == NULL)
|
157
|
+
return NULL;
|
158
|
+
i->type = TNT_ITER_MAP;
|
159
|
+
i->next = tnt_iter_map_next;
|
160
|
+
i->rewind = tnt_iter_map_rewind;
|
161
|
+
i->free = NULL;
|
162
|
+
struct tnt_iter_map *itr = TNT_IMAP(i);
|
163
|
+
itr->data = data;
|
164
|
+
itr->first_key = data;
|
165
|
+
itr->pair_count = mp_decode_map(&itr->first_key);
|
166
|
+
itr->cur_index = -1;
|
167
|
+
return i;
|
168
|
+
}
|
169
|
+
|
170
|
+
static int tnt_iter_reply_next(struct tnt_iter *i) {
|
171
|
+
struct tnt_iter_reply *ir = TNT_IREPLY(i);
|
172
|
+
tnt_reply_free(&ir->r);
|
173
|
+
tnt_reply_init(&ir->r);
|
174
|
+
int rc = ir->s->read_reply(ir->s, &ir->r);
|
175
|
+
if (rc == -1) {
|
176
|
+
i->status = TNT_ITER_FAIL;
|
177
|
+
return 0;
|
178
|
+
}
|
179
|
+
return (rc == 1 /* finish */ ) ? 0 : 1;
|
180
|
+
}
|
181
|
+
|
182
|
+
static void tnt_iter_reply_free(struct tnt_iter *i) {
|
183
|
+
struct tnt_iter_reply *ir = TNT_IREPLY(i);
|
184
|
+
tnt_reply_free(&ir->r);
|
185
|
+
}
|
186
|
+
|
187
|
+
struct tnt_iter *tnt_iter_reply(struct tnt_iter *i, struct tnt_stream *s) {
|
188
|
+
i = tnt_iter_init(i);
|
189
|
+
if (i == NULL)
|
190
|
+
return NULL;
|
191
|
+
i->type = TNT_ITER_REPLY;
|
192
|
+
i->next = tnt_iter_reply_next;
|
193
|
+
i->rewind = NULL;
|
194
|
+
i->free = tnt_iter_reply_free;
|
195
|
+
struct tnt_iter_reply *ir = TNT_IREPLY(i);
|
196
|
+
ir->s = s;
|
197
|
+
tnt_reply_init(&ir->r);
|
198
|
+
return i;
|
199
|
+
}
|
200
|
+
|
201
|
+
/*static int tnt_iter_request_next(struct tnt_iter *i) {
|
202
|
+
struct tnt_iter_request *ir = TNT_IREQUEST(i);
|
203
|
+
tnt_request_free(&ir->r);
|
204
|
+
tnt_request_init(&ir->r);
|
205
|
+
int rc = ir->s->read_request(ir->s, &ir->r);
|
206
|
+
if (rc == -1) {
|
207
|
+
i->status = TNT_ITER_FAIL;
|
208
|
+
return 0;
|
209
|
+
}
|
210
|
+
return (rc == 1) ? 0 : 1;
|
211
|
+
}
|
212
|
+
|
213
|
+
static void tnt_iter_request_free(struct tnt_iter *i) {
|
214
|
+
struct tnt_iter_request *ir = TNT_IREQUEST(i);
|
215
|
+
tnt_request_free(&ir->r);
|
216
|
+
}*/
|
217
|
+
|
218
|
+
/*struct tnt_iter *tnt_iter_request(struct tnt_iter *i, struct tnt_stream *s) {
|
219
|
+
i = tnt_iter_init(i);
|
220
|
+
if (i == NULL)
|
221
|
+
return NULL;
|
222
|
+
i->type = TNT_ITER_REQUEST;
|
223
|
+
i->next = tnt_iter_request_next;
|
224
|
+
i->rewind = NULL;
|
225
|
+
i->free = tnt_iter_request_free;
|
226
|
+
struct tnt_iter_request *ir = TNT_IREQUEST(i);
|
227
|
+
ir->s = s;
|
228
|
+
tnt_request_init(&ir->r);
|
229
|
+
return i;
|
230
|
+
}
|
231
|
+
|
232
|
+
static int tnt_iter_storage_next(struct tnt_iter *i) {
|
233
|
+
struct tnt_iter_storage *is = TNT_ISTORAGE(i);
|
234
|
+
tnt_tuple_free(&is->t);
|
235
|
+
tnt_tuple_init(&is->t);
|
236
|
+
|
237
|
+
int rc = is->s->read_tuple(is->s, &is->t);
|
238
|
+
if (rc == -1) {
|
239
|
+
i->status = TNT_ITER_FAIL;
|
240
|
+
return 0;
|
241
|
+
}
|
242
|
+
return (rc == 1) ? 0 : 1;
|
243
|
+
}
|
244
|
+
|
245
|
+
static void tnt_iter_storage_free(struct tnt_iter *i) {
|
246
|
+
struct tnt_iter_storage *is = TNT_ISTORAGE(i);
|
247
|
+
tnt_tuple_free(&is->t);
|
248
|
+
}*/
|
249
|
+
|
250
|
+
/*
|
251
|
+
* tnt_iter_storage()
|
252
|
+
*
|
253
|
+
* initialize tuple storage iterator;
|
254
|
+
* create and initialize storage iterator;
|
255
|
+
*
|
256
|
+
* i - tuple storage iterator pointer, maybe NULL
|
257
|
+
* s - stream pointer
|
258
|
+
*
|
259
|
+
* if stream iterator pointer is NULL, then new stream
|
260
|
+
* iterator will be created.
|
261
|
+
*
|
262
|
+
* return stream iterator pointer, or NULL on error.
|
263
|
+
*/
|
264
|
+
/*struct tnt_iter *tnt_iter_storage(struct tnt_iter *i, struct tnt_stream *s) {
|
265
|
+
i = tnt_iter_init(i);
|
266
|
+
if (i == NULL)
|
267
|
+
return NULL;
|
268
|
+
i->type = TNT_ITER_STORAGE;
|
269
|
+
i->next = tnt_iter_storage_next;
|
270
|
+
i->rewind = NULL;
|
271
|
+
i->free = tnt_iter_storage_free;
|
272
|
+
struct tnt_iter_storage *is = TNT_ISTORAGE(i);
|
273
|
+
is->s = s;
|
274
|
+
tnt_tuple_init(&is->t);
|
275
|
+
return i;
|
276
|
+
}*/
|
277
|
+
|
278
|
+
void tnt_iter_free(struct tnt_iter *i) {
|
279
|
+
if (i->free)
|
280
|
+
i->free(i);
|
281
|
+
if (i->alloc)
|
282
|
+
tnt_mem_free(i);
|
283
|
+
}
|
284
|
+
|
285
|
+
int tnt_next(struct tnt_iter *i) {
|
286
|
+
return i->next(i);
|
287
|
+
}
|
288
|
+
|
289
|
+
void tnt_rewind(struct tnt_iter *i) {
|
290
|
+
i->status = TNT_ITER_OK;
|
291
|
+
if (i->rewind)
|
292
|
+
i->rewind(i);
|
293
|
+
}
|
@@ -0,0 +1,82 @@
|
|
1
|
+
|
2
|
+
/*
|
3
|
+
* Redistribution and use in source and binary forms, with or
|
4
|
+
* without modification, are permitted provided that the following
|
5
|
+
* conditions are met:
|
6
|
+
*
|
7
|
+
* 1. Redistributions of source code must retain the above
|
8
|
+
* copyright notice, this list of conditions and the
|
9
|
+
* following disclaimer.
|
10
|
+
*
|
11
|
+
* 2. Redistributions in binary form must reproduce the above
|
12
|
+
* copyright notice, this list of conditions and the following
|
13
|
+
* disclaimer in the documentation and/or other materials
|
14
|
+
* provided with the distribution.
|
15
|
+
*
|
16
|
+
* THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ``AS IS'' AND
|
17
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
18
|
+
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
19
|
+
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
20
|
+
* <COPYRIGHT HOLDER> OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
21
|
+
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
22
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
23
|
+
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
24
|
+
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
25
|
+
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
26
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
27
|
+
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
28
|
+
* SUCH DAMAGE.
|
29
|
+
*/
|
30
|
+
|
31
|
+
#include <stdlib.h>
|
32
|
+
#include <stdio.h>
|
33
|
+
#include <string.h>
|
34
|
+
|
35
|
+
#include <tarantool/tnt_mem.h>
|
36
|
+
|
37
|
+
static void *custom_realloc(void *ptr, size_t size) {
|
38
|
+
if (!ptr) {
|
39
|
+
if (!size)
|
40
|
+
return NULL;
|
41
|
+
return calloc(1, size);
|
42
|
+
}
|
43
|
+
if (size)
|
44
|
+
return realloc(ptr, size);
|
45
|
+
free(ptr);
|
46
|
+
return NULL;
|
47
|
+
}
|
48
|
+
|
49
|
+
/*
|
50
|
+
static void *(*_tnt_realloc)(void *ptr, size_t size) =
|
51
|
+
(void *(*)(void*, size_t))realloc;
|
52
|
+
*/
|
53
|
+
|
54
|
+
static void *(*_tnt_realloc)(void *ptr, size_t size) = custom_realloc;
|
55
|
+
|
56
|
+
void *tnt_mem_init(tnt_allocator_t alloc) {
|
57
|
+
void *ptr = _tnt_realloc;
|
58
|
+
if (alloc)
|
59
|
+
_tnt_realloc = alloc;
|
60
|
+
return ptr;
|
61
|
+
}
|
62
|
+
|
63
|
+
void *tnt_mem_alloc(size_t size) {
|
64
|
+
return _tnt_realloc(NULL, size);
|
65
|
+
}
|
66
|
+
|
67
|
+
void *tnt_mem_realloc(void *ptr, size_t size) {
|
68
|
+
return _tnt_realloc(ptr, size);
|
69
|
+
}
|
70
|
+
|
71
|
+
char *tnt_mem_dup(char *sz) {
|
72
|
+
size_t len = strlen(sz);
|
73
|
+
char *szp = tnt_mem_alloc(len + 1);
|
74
|
+
if (szp == NULL)
|
75
|
+
return NULL;
|
76
|
+
memcpy(szp, sz, len + 1);
|
77
|
+
return szp;
|
78
|
+
}
|
79
|
+
|
80
|
+
void tnt_mem_free(void *ptr) {
|
81
|
+
_tnt_realloc(ptr, 0);
|
82
|
+
}
|
@@ -0,0 +1,336 @@
|
|
1
|
+
|
2
|
+
/*
|
3
|
+
* Redistribution and use in source and binary forms, with or
|
4
|
+
* without modification, are permitted provided that the following
|
5
|
+
* conditions are met:
|
6
|
+
*
|
7
|
+
* 1. Redistributions of source code must retain the above
|
8
|
+
* copyright notice, this list of conditions and the
|
9
|
+
* following disclaimer.
|
10
|
+
*
|
11
|
+
* 2. Redistributions in binary form must reproduce the above
|
12
|
+
* copyright notice, this list of conditions and the following
|
13
|
+
* disclaimer in the documentation and/or other materials
|
14
|
+
* provided with the distribution.
|
15
|
+
*
|
16
|
+
* THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ``AS IS'' AND
|
17
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
18
|
+
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
19
|
+
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
20
|
+
* <COPYRIGHT HOLDER> OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
21
|
+
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
22
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
23
|
+
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
24
|
+
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
25
|
+
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
26
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
27
|
+
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
28
|
+
* SUCH DAMAGE.
|
29
|
+
*/
|
30
|
+
|
31
|
+
#include <stdio.h>
|
32
|
+
#include <stdlib.h>
|
33
|
+
#include <stdarg.h>
|
34
|
+
#include <string.h>
|
35
|
+
#include <stdint.h>
|
36
|
+
#include <stdbool.h>
|
37
|
+
|
38
|
+
#include <sys/uio.h>
|
39
|
+
|
40
|
+
#include <uri.h>
|
41
|
+
|
42
|
+
#include <tarantool/tnt_proto.h>
|
43
|
+
#include <tarantool/tnt_reply.h>
|
44
|
+
#include <tarantool/tnt_stream.h>
|
45
|
+
#include <tarantool/tnt_object.h>
|
46
|
+
#include <tarantool/tnt_mem.h>
|
47
|
+
#include <tarantool/tnt_schema.h>
|
48
|
+
#include <tarantool/tnt_select.h>
|
49
|
+
#include <tarantool/tnt_iter.h>
|
50
|
+
#include <tarantool/tnt_auth.h>
|
51
|
+
|
52
|
+
#include <tarantool/tnt_net.h>
|
53
|
+
#include <tarantool/tnt_io.h>
|
54
|
+
|
55
|
+
#include "pmatomic.h"
|
56
|
+
|
57
|
+
static void tnt_net_free(struct tnt_stream *s) {
|
58
|
+
struct tnt_stream_net *sn = TNT_SNET_CAST(s);
|
59
|
+
tnt_io_close(sn);
|
60
|
+
tnt_mem_free(sn->greeting);
|
61
|
+
tnt_iob_free(&sn->sbuf);
|
62
|
+
tnt_iob_free(&sn->rbuf);
|
63
|
+
tnt_opt_free(&sn->opt);
|
64
|
+
tnt_schema_free(sn->schema);
|
65
|
+
tnt_mem_free(sn->schema);
|
66
|
+
tnt_mem_free(s->data);
|
67
|
+
s->data = NULL;
|
68
|
+
}
|
69
|
+
|
70
|
+
static ssize_t
|
71
|
+
tnt_net_read(struct tnt_stream *s, char *buf, size_t size) {
|
72
|
+
struct tnt_stream_net *sn = TNT_SNET_CAST(s);
|
73
|
+
/* read doesn't touches wrcnt */
|
74
|
+
return tnt_io_recv(sn, buf, size);
|
75
|
+
}
|
76
|
+
|
77
|
+
static ssize_t
|
78
|
+
tnt_net_write(struct tnt_stream *s, const char *buf, size_t size) {
|
79
|
+
struct tnt_stream_net *sn = TNT_SNET_CAST(s);
|
80
|
+
ssize_t rc = tnt_io_send(sn, buf, size);
|
81
|
+
if (rc != -1)
|
82
|
+
pm_atomic_fetch_add(&s->wrcnt, 1);
|
83
|
+
return rc;
|
84
|
+
}
|
85
|
+
|
86
|
+
static ssize_t
|
87
|
+
tnt_net_writev(struct tnt_stream *s, struct iovec *iov, int count) {
|
88
|
+
struct tnt_stream_net *sn = TNT_SNET_CAST(s);
|
89
|
+
ssize_t rc = tnt_io_sendv(sn, iov, count);
|
90
|
+
if (rc != -1)
|
91
|
+
pm_atomic_fetch_add(&s->wrcnt, 1);
|
92
|
+
return rc;
|
93
|
+
}
|
94
|
+
|
95
|
+
static ssize_t
|
96
|
+
tnt_net_recv_cb(struct tnt_stream *s, char *buf, ssize_t size) {
|
97
|
+
struct tnt_stream_net *sn = TNT_SNET_CAST(s);
|
98
|
+
return tnt_io_recv(sn, buf, size);
|
99
|
+
}
|
100
|
+
|
101
|
+
static int
|
102
|
+
tnt_net_reply(struct tnt_stream *s, struct tnt_reply *r) {
|
103
|
+
if (pm_atomic_load(&s->wrcnt) == 0)
|
104
|
+
return 1;
|
105
|
+
pm_atomic_fetch_sub(&s->wrcnt, 1);
|
106
|
+
return tnt_reply_from(r, (tnt_reply_t)tnt_net_recv_cb, s);
|
107
|
+
}
|
108
|
+
|
109
|
+
struct tnt_stream *tnt_net(struct tnt_stream *s) {
|
110
|
+
s = tnt_stream_init(s);
|
111
|
+
if (s == NULL)
|
112
|
+
return NULL;
|
113
|
+
/* allocating stream data */
|
114
|
+
s->data = tnt_mem_alloc(sizeof(struct tnt_stream_net));
|
115
|
+
if (s->data == NULL) {
|
116
|
+
tnt_stream_free(s);
|
117
|
+
return NULL;
|
118
|
+
}
|
119
|
+
memset(s->data, 0, sizeof(struct tnt_stream_net));
|
120
|
+
/* initializing interfaces */
|
121
|
+
s->read = tnt_net_read;
|
122
|
+
s->read_reply = tnt_net_reply;
|
123
|
+
s->write = tnt_net_write;
|
124
|
+
s->writev = tnt_net_writev;
|
125
|
+
s->free = tnt_net_free;
|
126
|
+
/* initializing internal data */
|
127
|
+
struct tnt_stream_net *sn = TNT_SNET_CAST(s);
|
128
|
+
sn->fd = -1;
|
129
|
+
sn->greeting = tnt_mem_alloc(TNT_GREETING_SIZE);
|
130
|
+
if (sn->greeting == NULL) {
|
131
|
+
tnt_stream_free(s);
|
132
|
+
}
|
133
|
+
if (tnt_opt_init(&sn->opt) == -1) {
|
134
|
+
tnt_stream_free(s);
|
135
|
+
}
|
136
|
+
return s;
|
137
|
+
}
|
138
|
+
|
139
|
+
int tnt_set(struct tnt_stream *s, int opt, ...) {
|
140
|
+
struct tnt_stream_net *sn = TNT_SNET_CAST(s);
|
141
|
+
va_list args;
|
142
|
+
va_start(args, opt);
|
143
|
+
sn->error = tnt_opt_set(&sn->opt, opt, args);
|
144
|
+
va_end(args);
|
145
|
+
return (sn->error == TNT_EOK) ? 0 : -1;
|
146
|
+
}
|
147
|
+
|
148
|
+
int tnt_init(struct tnt_stream *s) {
|
149
|
+
struct tnt_stream_net *sn = TNT_SNET_CAST(s);
|
150
|
+
if ((sn->schema = tnt_schema_new(NULL)) == NULL) {
|
151
|
+
sn->error = TNT_EMEMORY;
|
152
|
+
return -1;
|
153
|
+
}
|
154
|
+
if (tnt_iob_init(&sn->sbuf, sn->opt.send_buf, sn->opt.send_cb,
|
155
|
+
sn->opt.send_cbv, sn->opt.send_cb_arg) == -1) {
|
156
|
+
sn->error = TNT_EMEMORY;
|
157
|
+
return -1;
|
158
|
+
}
|
159
|
+
if (tnt_iob_init(&sn->rbuf, sn->opt.recv_buf, sn->opt.recv_cb, NULL,
|
160
|
+
sn->opt.recv_cb_arg) == -1) {
|
161
|
+
sn->error = TNT_EMEMORY;
|
162
|
+
return -1;
|
163
|
+
}
|
164
|
+
sn->inited = 1;
|
165
|
+
return 0;
|
166
|
+
}
|
167
|
+
|
168
|
+
int tnt_reload_schema(struct tnt_stream *s)
|
169
|
+
{
|
170
|
+
struct tnt_stream_net *sn = TNT_SNET_CAST(s);
|
171
|
+
if (!sn->connected || pm_atomic_load(&s->wrcnt) != 0)
|
172
|
+
return -1;
|
173
|
+
uint64_t oldsync = tnt_stream_reqid(s, 127);
|
174
|
+
tnt_get_space(s);
|
175
|
+
tnt_get_index(s);
|
176
|
+
tnt_stream_reqid(s, oldsync);
|
177
|
+
tnt_flush(s);
|
178
|
+
struct tnt_iter it; tnt_iter_reply(&it, s);
|
179
|
+
struct tnt_reply bkp; tnt_reply_init(&bkp);
|
180
|
+
int sloaded = 0;
|
181
|
+
while (tnt_next(&it)) {
|
182
|
+
struct tnt_reply *r = TNT_IREPLY_PTR(&it);
|
183
|
+
switch (r->sync) {
|
184
|
+
case(127):
|
185
|
+
if (r->error)
|
186
|
+
goto error;
|
187
|
+
tnt_schema_add_spaces(sn->schema, r);
|
188
|
+
sloaded += 1;
|
189
|
+
break;
|
190
|
+
case(128):
|
191
|
+
if (r->error)
|
192
|
+
goto error;
|
193
|
+
if (!(sloaded & 1)) {
|
194
|
+
memcpy(&bkp, r, sizeof(struct tnt_reply));
|
195
|
+
r->buf = NULL;
|
196
|
+
break;
|
197
|
+
}
|
198
|
+
sloaded += 2;
|
199
|
+
tnt_schema_add_indexes(sn->schema, r);
|
200
|
+
break;
|
201
|
+
default:
|
202
|
+
goto error;
|
203
|
+
}
|
204
|
+
}
|
205
|
+
if (bkp.buf) {
|
206
|
+
tnt_schema_add_indexes(sn->schema, &bkp);
|
207
|
+
sloaded += 2;
|
208
|
+
tnt_reply_free(&bkp);
|
209
|
+
}
|
210
|
+
if (sloaded != 3) goto error;
|
211
|
+
|
212
|
+
tnt_iter_free(&it);
|
213
|
+
return 0;
|
214
|
+
error:
|
215
|
+
tnt_iter_free(&it);
|
216
|
+
return -1;
|
217
|
+
}
|
218
|
+
|
219
|
+
static int
|
220
|
+
tnt_authenticate(struct tnt_stream *s)
|
221
|
+
{
|
222
|
+
struct tnt_stream_net *sn = TNT_SNET_CAST(s);
|
223
|
+
if (!sn->connected || pm_atomic_load(&s->wrcnt) != 0)
|
224
|
+
return -1;
|
225
|
+
struct uri *uri = sn->opt.uri;
|
226
|
+
tnt_auth(s, uri->login, uri->login_len, uri->password,
|
227
|
+
uri->password_len);
|
228
|
+
tnt_flush(s);
|
229
|
+
struct tnt_reply rep;
|
230
|
+
tnt_reply_init(&rep);
|
231
|
+
if (s->read_reply(s, &rep) == -1)
|
232
|
+
return -1;
|
233
|
+
if (rep.error != NULL) {
|
234
|
+
if (TNT_REPLY_ERR(&rep) == TNT_ER_PASSWORD_MISMATCH)
|
235
|
+
sn->error = TNT_ELOGIN;
|
236
|
+
return -1;
|
237
|
+
}
|
238
|
+
tnt_reply_free(&rep);
|
239
|
+
tnt_reload_schema(s);
|
240
|
+
return 0;
|
241
|
+
}
|
242
|
+
|
243
|
+
int tnt_connect(struct tnt_stream *s)
|
244
|
+
{
|
245
|
+
struct tnt_stream_net *sn = TNT_SNET_CAST(s);
|
246
|
+
if (!sn->inited) tnt_init(s);
|
247
|
+
if (sn->connected)
|
248
|
+
tnt_close(s);
|
249
|
+
sn->error = tnt_io_connect(sn);
|
250
|
+
if (sn->error != TNT_EOK)
|
251
|
+
return -1;
|
252
|
+
if (s->read(s, sn->greeting, TNT_GREETING_SIZE) == -1 ||
|
253
|
+
sn->error != TNT_EOK)
|
254
|
+
return -1;
|
255
|
+
if (sn->opt.uri->login && sn->opt.uri->password)
|
256
|
+
if (tnt_authenticate(s) == -1)
|
257
|
+
return -1;
|
258
|
+
return 0;
|
259
|
+
}
|
260
|
+
|
261
|
+
void tnt_close(struct tnt_stream *s) {
|
262
|
+
struct tnt_stream_net *sn = TNT_SNET_CAST(s);
|
263
|
+
tnt_iob_clear(&sn->sbuf);
|
264
|
+
tnt_iob_clear(&sn->rbuf);
|
265
|
+
tnt_io_close(sn);
|
266
|
+
s->wrcnt = 0;
|
267
|
+
s->reqid = 0;
|
268
|
+
}
|
269
|
+
|
270
|
+
ssize_t tnt_flush(struct tnt_stream *s) {
|
271
|
+
struct tnt_stream_net *sn = TNT_SNET_CAST(s);
|
272
|
+
return tnt_io_flush(sn);
|
273
|
+
}
|
274
|
+
|
275
|
+
int tnt_fd(struct tnt_stream *s) {
|
276
|
+
struct tnt_stream_net *sn = TNT_SNET_CAST(s);
|
277
|
+
return sn->fd;
|
278
|
+
}
|
279
|
+
|
280
|
+
enum tnt_error tnt_error(struct tnt_stream *s) {
|
281
|
+
struct tnt_stream_net *sn = TNT_SNET_CAST(s);
|
282
|
+
return sn->error;
|
283
|
+
}
|
284
|
+
|
285
|
+
/* must be in sync with enum tnt_error */
|
286
|
+
|
287
|
+
struct tnt_error_desc {
|
288
|
+
enum tnt_error type;
|
289
|
+
char *desc;
|
290
|
+
};
|
291
|
+
|
292
|
+
static struct tnt_error_desc tnt_error_list[] =
|
293
|
+
{
|
294
|
+
{ TNT_EOK, "ok" },
|
295
|
+
{ TNT_EFAIL, "fail" },
|
296
|
+
{ TNT_EMEMORY, "memory allocation failed" },
|
297
|
+
{ TNT_ESYSTEM, "system error" },
|
298
|
+
{ TNT_EBIG, "buffer is too big" },
|
299
|
+
{ TNT_ESIZE, "bad buffer size" },
|
300
|
+
{ TNT_ERESOLVE, "gethostbyname(2) failed" },
|
301
|
+
{ TNT_ETMOUT, "operation timeout" },
|
302
|
+
{ TNT_EBADVAL, "bad argument" },
|
303
|
+
{ TNT_ELOGIN, "failed to login" },
|
304
|
+
{ TNT_LAST, NULL }
|
305
|
+
};
|
306
|
+
|
307
|
+
char *tnt_strerror(struct tnt_stream *s)
|
308
|
+
{
|
309
|
+
struct tnt_stream_net *sn = TNT_SNET_CAST(s);
|
310
|
+
if (sn->error == TNT_ESYSTEM) {
|
311
|
+
static char msg[256];
|
312
|
+
snprintf(msg, sizeof(msg), "%s (errno: %d)",
|
313
|
+
strerror(sn->errno_), sn->errno_);
|
314
|
+
return msg;
|
315
|
+
}
|
316
|
+
return tnt_error_list[(int)sn->error].desc;
|
317
|
+
}
|
318
|
+
|
319
|
+
int tnt_errno(struct tnt_stream *s) {
|
320
|
+
struct tnt_stream_net *sn = TNT_SNET_CAST(s);
|
321
|
+
return sn->errno_;
|
322
|
+
}
|
323
|
+
|
324
|
+
int tnt_get_spaceno(struct tnt_stream *s, const char *space,
|
325
|
+
size_t space_len)
|
326
|
+
{
|
327
|
+
struct tnt_schema *sch = (TNT_SNET_CAST(s))->schema;
|
328
|
+
return tnt_schema_stosid(sch, space, space_len);
|
329
|
+
}
|
330
|
+
|
331
|
+
int tnt_get_indexno(struct tnt_stream *s, int spaceno, const char *index,
|
332
|
+
size_t index_len)
|
333
|
+
{
|
334
|
+
struct tnt_schema *sch = TNT_SNET_CAST(s)->schema;
|
335
|
+
return tnt_schema_stoiid(sch, spaceno, index, index_len);
|
336
|
+
}
|