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,334 @@
1
+ #include <stdio.h>
2
+ #include <string.h>
3
+ #include <stddef.h>
4
+ #include <inttypes.h>
5
+ #include <assert.h>
6
+ #include <stdint.h>
7
+
8
+ #include <msgpuck.h>
9
+
10
+ #include <tarantool/tnt_reply.h>
11
+ #include <tarantool/tnt_stream.h>
12
+ #include <tarantool/tnt_buf.h>
13
+ #include <tarantool/tnt_object.h>
14
+ #include <tarantool/tnt_proto.h>
15
+ #include <tarantool/tnt_schema.h>
16
+ #include <tarantool/tnt_mem.h>
17
+ #include <tarantool/tnt_select.h>
18
+
19
+ #include "tnt_assoc.h"
20
+
21
+ static inline void
22
+ tnt_schema_ival_free(struct tnt_schema_ival *val) {
23
+ if (val) tnt_mem_free((void *)val->name);
24
+ tnt_mem_free(val);
25
+ }
26
+
27
+ static inline void
28
+ tnt_schema_index_free(struct mh_assoc_t *schema) {
29
+ mh_int_t pos = 0;
30
+ mh_int_t index_slot = 0;
31
+ mh_foreach(schema, pos) {
32
+ struct tnt_schema_ival *ival =
33
+ (*mh_assoc_node(schema, pos))->data;
34
+ struct assoc_val *av1 = NULL, *av2 = NULL;
35
+ do {
36
+ struct assoc_key key_number = {
37
+ (void *)&(ival->number),
38
+ sizeof(uint32_t)
39
+ };
40
+ index_slot = mh_assoc_find(schema, &key_number, NULL);
41
+ if (index_slot == mh_end(schema))
42
+ break;
43
+ av1 = *mh_assoc_node(schema, index_slot);
44
+ mh_assoc_del(schema, index_slot, NULL);
45
+ } while (0);
46
+ do {
47
+ struct assoc_key key_string = {
48
+ ival->name,
49
+ ival->name_len
50
+ };
51
+ index_slot = mh_assoc_find(schema, &key_string, NULL);
52
+ if (index_slot == mh_end(schema))
53
+ break;
54
+ av2 = *mh_assoc_node(schema, index_slot);
55
+ mh_assoc_del(schema, index_slot, NULL);
56
+ } while (0);
57
+ tnt_schema_ival_free(ival);
58
+ if (av1) tnt_mem_free((void *)av1);
59
+ if (av2) tnt_mem_free((void *)av2);
60
+ }
61
+ }
62
+
63
+ static inline void
64
+ tnt_schema_sval_free(struct tnt_schema_sval *val) {
65
+ if (val) {
66
+ tnt_mem_free(val->name);
67
+ if (val->index) {
68
+ tnt_schema_index_free(val->index);
69
+ mh_assoc_delete(val->index);
70
+ }
71
+ }
72
+ tnt_mem_free(val);
73
+ }
74
+
75
+ static inline void
76
+ tnt_schema_space_free(struct mh_assoc_t *schema) {
77
+ mh_int_t pos = 0;
78
+ mh_int_t space_slot = 0;
79
+ mh_foreach(schema, pos) {
80
+ struct tnt_schema_sval *sval = NULL;
81
+ sval = (*mh_assoc_node(schema, pos))->data;
82
+ struct assoc_val *av1 = NULL, *av2 = NULL;
83
+ do {
84
+ struct assoc_key key_number = {
85
+ (void *)&(sval->number),
86
+ sizeof(uint32_t)
87
+ };
88
+ space_slot = mh_assoc_find(schema, &key_number, NULL);
89
+ if (space_slot == mh_end(schema))
90
+ break;
91
+ av1 = *mh_assoc_node(schema, space_slot);
92
+ mh_assoc_del(schema, space_slot, NULL);
93
+ } while (0);
94
+ do {
95
+ struct assoc_key key_string = {
96
+ sval->name,
97
+ sval->name_len
98
+ };
99
+ space_slot = mh_assoc_find(schema, &key_string, NULL);
100
+ if (space_slot == mh_end(schema))
101
+ break;
102
+ av2 = *mh_assoc_node(schema, space_slot);
103
+ mh_assoc_del(schema, space_slot, NULL);
104
+ } while (0);
105
+ tnt_schema_sval_free(sval);
106
+ if (av1) tnt_mem_free((void *)av1);
107
+ if (av2) tnt_mem_free((void *)av2);
108
+ }
109
+ }
110
+
111
+ static inline int
112
+ tnt_schema_add_space(struct mh_assoc_t *schema, const char **data)
113
+ {
114
+ struct tnt_schema_sval *space = NULL;
115
+ struct assoc_val *space_string = NULL, *space_number = NULL;
116
+ const char *tuple = *data;
117
+ if (mp_typeof(*tuple) != MP_ARRAY)
118
+ goto error;
119
+ uint32_t tuple_len = mp_decode_array(&tuple); (void )tuple_len;
120
+ space = tnt_mem_alloc(sizeof(struct tnt_schema_sval));
121
+ if (!space)
122
+ goto error;
123
+ memset(space, 0, sizeof(struct tnt_schema_sval));
124
+ if (mp_typeof(*tuple) != MP_UINT)
125
+ goto error;
126
+ space->number = mp_decode_uint(&tuple);
127
+ mp_next(&tuple); /* skip owner id */
128
+ if (mp_typeof(*tuple) != MP_STR)
129
+ goto error;
130
+ const char *name_tmp = mp_decode_str(&tuple, &space->name_len);
131
+ space->name = tnt_mem_alloc(space->name_len);
132
+ if (!space->name)
133
+ goto error;
134
+ memcpy(space->name, name_tmp, space->name_len);
135
+
136
+ space->index = mh_assoc_new();
137
+ if (!space->index)
138
+ goto error;
139
+ space_string = tnt_mem_alloc(sizeof(struct assoc_val));
140
+ if (!space_string)
141
+ goto error;
142
+ space_string->key.id = space->name;
143
+ space_string->key.id_len = space->name_len;
144
+ space_string->data = space;
145
+ space_number = tnt_mem_alloc(sizeof(struct assoc_val));
146
+ if (!space_number)
147
+ goto error;
148
+ space_number->key.id = (void *)&(space->number);
149
+ space_number->key.id_len = sizeof(space->number);
150
+ space_number->data = space;
151
+ mh_assoc_put(schema, (const struct assoc_val **)&space_string,
152
+ NULL, NULL);
153
+ mh_assoc_put(schema, (const struct assoc_val **)&space_number,
154
+ NULL, NULL);
155
+ mp_next(data);
156
+ return 0;
157
+ error:
158
+ mp_next(data);
159
+ tnt_schema_sval_free(space);
160
+ if (space_string) tnt_mem_free(space_string);
161
+ if (space_number) tnt_mem_free(space_number);
162
+ return -1;
163
+ }
164
+
165
+ int tnt_schema_add_spaces(struct tnt_schema *schema_obj, struct tnt_reply *r) {
166
+ struct mh_assoc_t *schema = schema_obj->space_hash;
167
+ const char *tuple = r->data;
168
+ if (mp_check(&tuple, tuple + (r->data_end - r->data)))
169
+ return -1;
170
+ tuple = r->data;
171
+ if (mp_typeof(*tuple) != MP_ARRAY)
172
+ return -1;
173
+ uint32_t space_count = mp_decode_array(&tuple);
174
+ while (space_count-- > 0) {
175
+ if (tnt_schema_add_space(schema, &tuple))
176
+ return -1;
177
+ }
178
+ return 0;
179
+ }
180
+
181
+ static inline int
182
+ tnt_schema_add_index(struct mh_assoc_t *schema, const char **data) {
183
+ const struct tnt_schema_sval *space = NULL;
184
+ struct tnt_schema_ival *index = NULL;
185
+ struct assoc_val *index_number = NULL, *index_string = NULL;
186
+ const char *tuple = *data;
187
+ if (mp_typeof(*tuple) != MP_ARRAY)
188
+ goto error;
189
+ int64_t tuple_len = mp_decode_array(&tuple); (void )tuple_len;
190
+ uint32_t space_number = mp_decode_uint(&tuple);
191
+ if (mp_typeof(*tuple) != MP_UINT)
192
+ goto error;
193
+ struct assoc_key space_key = {
194
+ (void *)&(space_number),
195
+ sizeof(uint32_t)
196
+ };
197
+ mh_int_t space_slot = mh_assoc_find(schema, &space_key, NULL);
198
+ if (space_slot == mh_end(schema))
199
+ return -1;
200
+ space = (*mh_assoc_node(schema, space_slot))->data;
201
+ index = tnt_mem_alloc(sizeof(struct tnt_schema_ival));
202
+ if (!index)
203
+ goto error;
204
+ memset(index, 0, sizeof(struct tnt_schema_ival));
205
+ if (mp_typeof(*tuple) != MP_UINT)
206
+ goto error;
207
+ index->number = mp_decode_uint(&tuple);
208
+ if (mp_typeof(*tuple) != MP_STR)
209
+ goto error;
210
+ const char *name_tmp = mp_decode_str(&tuple, &index->name_len);
211
+ index->name = tnt_mem_alloc(index->name_len);
212
+ if (!index->name)
213
+ goto error;
214
+ memcpy((void *)index->name, name_tmp, index->name_len);
215
+
216
+ index_string = tnt_mem_alloc(sizeof(struct assoc_val));
217
+ if (!index_string) goto error;
218
+ index_string->key.id = index->name;
219
+ index_string->key.id_len = index->name_len;
220
+ index_string->data = index;
221
+ index_number = tnt_mem_alloc(sizeof(struct assoc_val));
222
+ if (!index_number) goto error;
223
+ index_number->key.id = (void *)&(index->number);
224
+ index_number->key.id_len = sizeof(uint32_t);
225
+ index_number->data = index;
226
+ mh_assoc_put(space->index, (const struct assoc_val **)&index_string,
227
+ NULL, NULL);
228
+ mh_assoc_put(space->index, (const struct assoc_val **)&index_number,
229
+ NULL, NULL);
230
+ mp_next(data);
231
+ return 0;
232
+ error:
233
+ mp_next(data);
234
+ if (index_string) tnt_mem_free(index_string);
235
+ if (index_number) tnt_mem_free(index_number);
236
+ tnt_schema_ival_free(index);
237
+ return -1;
238
+ }
239
+
240
+ int tnt_schema_add_indexes(struct tnt_schema *schema_obj, struct tnt_reply *r) {
241
+ struct mh_assoc_t *schema = schema_obj->space_hash;
242
+ const char *tuple = r->data;
243
+ if (mp_check(&tuple, tuple + (r->data_end - r->data)))
244
+ return -1;
245
+ tuple = r->data;
246
+ if (mp_typeof(*tuple) != MP_ARRAY)
247
+ return -1;
248
+ uint32_t space_count = mp_decode_array(&tuple);
249
+ while (space_count-- > 0) {
250
+ if (tnt_schema_add_index(schema, &tuple))
251
+ return -1;
252
+ }
253
+ return 0;
254
+ }
255
+
256
+ int32_t tnt_schema_stosid(struct tnt_schema *schema_obj, const char *name,
257
+ uint32_t name_len) {
258
+ struct mh_assoc_t *schema = schema_obj->space_hash;
259
+ struct assoc_key space_key = {name, name_len};
260
+ mh_int_t space_slot = mh_assoc_find(schema, &space_key, NULL);
261
+ if (space_slot == mh_end(schema))
262
+ return -1;
263
+ const struct tnt_schema_sval *space =
264
+ (*mh_assoc_node(schema, space_slot))->data;
265
+ return space->number;
266
+ }
267
+
268
+ int32_t tnt_schema_stoiid(struct tnt_schema *schema_obj, uint32_t sid,
269
+ const char *name, uint32_t name_len) {
270
+ struct mh_assoc_t *schema = schema_obj->space_hash;
271
+ struct assoc_key space_key = {(void *)&sid, sizeof(uint32_t)};
272
+ mh_int_t space_slot = mh_assoc_find(schema, &space_key, NULL);
273
+ if (space_slot == mh_end(schema))
274
+ return -1;
275
+ const struct tnt_schema_sval *space =
276
+ (*mh_assoc_node(schema, space_slot))->data;
277
+ struct assoc_key index_key = {name, name_len};
278
+ mh_int_t index_slot = mh_assoc_find(space->index, &index_key, NULL);
279
+ if (index_slot == mh_end(space->index))
280
+ return -1;
281
+ const struct tnt_schema_ival *index =
282
+ (*mh_assoc_node(space->index, index_slot))->data;
283
+ return index->number;
284
+ }
285
+
286
+ struct tnt_schema *tnt_schema_new(struct tnt_schema *s) {
287
+ int alloc = (s == NULL);
288
+ if (!s) {
289
+ s = tnt_mem_alloc(sizeof(struct tnt_schema));
290
+ if (!s) return NULL;
291
+ }
292
+ s->space_hash = mh_assoc_new();
293
+ s->alloc = alloc;
294
+ return s;
295
+ }
296
+
297
+ void tnt_schema_flush(struct tnt_schema *obj) {
298
+ tnt_schema_space_free(obj->space_hash);
299
+ }
300
+
301
+ void tnt_schema_free(struct tnt_schema *obj) {
302
+ if (obj == NULL)
303
+ return;
304
+ tnt_schema_space_free(obj->space_hash);
305
+ mh_assoc_delete(obj->space_hash);
306
+ }
307
+
308
+ ssize_t
309
+ tnt_get_space(struct tnt_stream *s)
310
+ {
311
+ struct tnt_stream *obj = tnt_object(NULL);
312
+ if (obj == NULL)
313
+ return -1;
314
+
315
+ tnt_object_add_array(obj, 0);
316
+ ssize_t retval = tnt_select(s, tnt_vsp_space, tnt_vin_name,
317
+ UINT32_MAX, 0, TNT_ITER_ALL, obj);
318
+ tnt_stream_free(obj);
319
+ return retval;
320
+ }
321
+
322
+ ssize_t
323
+ tnt_get_index(struct tnt_stream *s)
324
+ {
325
+ struct tnt_stream *obj = tnt_object(NULL);
326
+ if (obj == NULL)
327
+ return -1;
328
+
329
+ tnt_object_add_array(obj, 0);
330
+ ssize_t retval = tnt_select(s, tnt_vsp_index, tnt_vin_name,
331
+ UINT32_MAX, 0, TNT_ITER_ALL, obj);
332
+ tnt_stream_free(obj);
333
+ return retval;
334
+ }
@@ -0,0 +1,58 @@
1
+ #include <stddef.h>
2
+ #include <stdint.h>
3
+ #include <limits.h>
4
+ #include <string.h>
5
+ #include <stdbool.h>
6
+ #include <sys/types.h>
7
+
8
+ #include <msgpuck.h>
9
+
10
+ #include <tarantool/tnt_reply.h>
11
+ #include <tarantool/tnt_stream.h>
12
+ #include <tarantool/tnt_buf.h>
13
+ #include <tarantool/tnt_object.h>
14
+ #include <tarantool/tnt_select.h>
15
+
16
+ #include "tnt_proto_internal.h"
17
+
18
+ ssize_t
19
+ tnt_select(struct tnt_stream *s, uint32_t space, uint32_t index,
20
+ uint32_t limit, uint32_t offset, uint8_t iterator,
21
+ struct tnt_stream *key)
22
+ {
23
+ if (tnt_object_verify(key, MP_ARRAY))
24
+ return -1;
25
+ struct tnt_iheader hdr;
26
+ struct iovec v[4]; int v_sz = 4;
27
+ char *data = NULL;
28
+ encode_header(&hdr, TNT_OP_SELECT, s->reqid++);
29
+ v[1].iov_base = (void *)hdr.header;
30
+ v[1].iov_len = hdr.end - hdr.header;
31
+ char body[64]; data = body;
32
+
33
+ data = mp_encode_map(data, 6);
34
+ data = mp_encode_uint(data, TNT_SPACE);
35
+ data = mp_encode_uint(data, space);
36
+ data = mp_encode_uint(data, TNT_INDEX);
37
+ data = mp_encode_uint(data, index);
38
+ data = mp_encode_uint(data, TNT_LIMIT);
39
+ data = mp_encode_uint(data, limit);
40
+ data = mp_encode_uint(data, TNT_OFFSET);
41
+ data = mp_encode_uint(data, offset);
42
+ data = mp_encode_uint(data, TNT_ITERATOR);
43
+ data = mp_encode_uint(data, iterator);
44
+ data = mp_encode_uint(data, TNT_KEY);
45
+ v[2].iov_base = body;
46
+ v[2].iov_len = data - body;
47
+ v[3].iov_base = TNT_SBUF_DATA(key);
48
+ v[3].iov_len = TNT_SBUF_SIZE(key);
49
+
50
+ size_t package_len = 0;
51
+ for (int i = 1; i < v_sz; ++i)
52
+ package_len += v[i].iov_len;
53
+ char len_prefix[9];
54
+ char *len_end = mp_encode_luint32(len_prefix, package_len);
55
+ v[0].iov_base = len_prefix;
56
+ v[0].iov_len = len_end - len_prefix;
57
+ return s->writev(s, v, v_sz);
58
+ }
@@ -0,0 +1,71 @@
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 <sys/types.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
+
42
+ uint32_t
43
+ tnt_stream_reqid(struct tnt_stream *s, uint32_t reqid)
44
+ {
45
+ uint32_t old = s->reqid;
46
+ s->reqid = reqid;
47
+ return old;
48
+ }
49
+
50
+ struct tnt_stream*
51
+ tnt_stream_init(struct tnt_stream *s)
52
+ {
53
+ int alloc = (s == NULL);
54
+ if (alloc) {
55
+ s = tnt_mem_alloc(sizeof(struct tnt_stream));
56
+ if (s == NULL)
57
+ return NULL;
58
+ }
59
+ memset(s, 0, sizeof(struct tnt_stream));
60
+ s->alloc = alloc;
61
+ return s;
62
+ }
63
+
64
+ void tnt_stream_free(struct tnt_stream *s) {
65
+ if (s == NULL)
66
+ return;
67
+ if (s->free)
68
+ s->free(s);
69
+ if (s->alloc)
70
+ tnt_mem_free(s);
71
+ }
@@ -0,0 +1,247 @@
1
+ #include <stddef.h>
2
+ #include <stdint.h>
3
+ #include <limits.h>
4
+ #include <string.h>
5
+ #include <stdbool.h>
6
+
7
+ #include <sys/types.h>
8
+
9
+ #include <tarantool/tnt_mem.h>
10
+ #include <tarantool/tnt_reply.h>
11
+ #include <tarantool/tnt_stream.h>
12
+ #include <tarantool/tnt_buf.h>
13
+ #include <tarantool/tnt_object.h>
14
+ #include <tarantool/tnt_update.h>
15
+
16
+ #include "tnt_proto_internal.h"
17
+
18
+ ssize_t
19
+ tnt_update(struct tnt_stream *s, uint32_t space, uint32_t index,
20
+ struct tnt_stream *key, struct tnt_stream *ops)
21
+ {
22
+ if (tnt_object_verify(key, MP_ARRAY))
23
+ return -1;
24
+ if (tnt_object_verify(ops, MP_ARRAY))
25
+ return -1;
26
+ struct tnt_iheader hdr;
27
+ struct iovec v[6]; int v_sz = 6;
28
+ char *data = NULL, *body_start = NULL;
29
+ encode_header(&hdr, TNT_OP_UPDATE, s->reqid++);
30
+ v[1].iov_base = (void *)hdr.header;
31
+ v[1].iov_len = hdr.end - hdr.header;
32
+ char body[64]; body_start = body; data = body;
33
+
34
+ data = mp_encode_map(data, 4);
35
+ data = mp_encode_uint(data, TNT_SPACE);
36
+ data = mp_encode_uint(data, space);
37
+ data = mp_encode_uint(data, TNT_INDEX);
38
+ data = mp_encode_uint(data, index);
39
+ data = mp_encode_uint(data, TNT_KEY);
40
+ v[2].iov_base = (void *)body_start;
41
+ v[2].iov_len = data - body_start;
42
+ body_start = data;
43
+ v[3].iov_base = TNT_SBUF_DATA(key);
44
+ v[3].iov_len = TNT_SBUF_SIZE(key);
45
+ data = mp_encode_uint(data, TNT_TUPLE);
46
+ v[4].iov_base = (void *)body_start;
47
+ v[4].iov_len = data - body_start;
48
+ body_start = data;
49
+ v[5].iov_base = TNT_SBUF_DATA(ops);
50
+ v[5].iov_len = TNT_SBUF_SIZE(ops);
51
+
52
+ size_t package_len = 0;
53
+ for (int i = 1; i < v_sz; ++i)
54
+ package_len += v[i].iov_len;
55
+ char len_prefix[9];
56
+ char *len_end = mp_encode_luint32(len_prefix, package_len);
57
+ v[0].iov_base = len_prefix;
58
+ v[0].iov_len = len_end - len_prefix;
59
+ return s->writev(s, v, v_sz);
60
+ }
61
+
62
+ ssize_t
63
+ tnt_upsert(struct tnt_stream *s, uint32_t space,
64
+ struct tnt_stream *tuple, struct tnt_stream *ops)
65
+ {
66
+ if (tnt_object_verify(tuple, MP_ARRAY))
67
+ return -1;
68
+ if (tnt_object_verify(ops, MP_ARRAY))
69
+ return -1;
70
+ struct tnt_iheader hdr;
71
+ struct iovec v[6]; int v_sz = 6;
72
+ char *data = NULL, *body_start = NULL;
73
+ encode_header(&hdr, TNT_OP_UPSERT, s->reqid++);
74
+ v[1].iov_base = (void *)hdr.header;
75
+ v[1].iov_len = hdr.end - hdr.header;
76
+ char body[64]; body_start = body; data = body;
77
+
78
+ data = mp_encode_map(data, 3);
79
+ data = mp_encode_uint(data, TNT_SPACE);
80
+ data = mp_encode_uint(data, space);
81
+ data = mp_encode_uint(data, TNT_TUPLE);
82
+ v[2].iov_base = (void *)body_start;
83
+ v[2].iov_len = data - body_start;
84
+ body_start = data;
85
+ v[3].iov_base = TNT_SBUF_DATA(tuple);
86
+ v[3].iov_len = TNT_SBUF_SIZE(tuple);
87
+ data = mp_encode_uint(data, TNT_OPS);
88
+ v[4].iov_base = (void *)body_start;
89
+ v[4].iov_len = data - body_start;
90
+ body_start = data;
91
+ v[5].iov_base = TNT_SBUF_DATA(ops);
92
+ v[5].iov_len = TNT_SBUF_SIZE(ops);
93
+
94
+ size_t package_len = 0;
95
+ for (int i = 1; i < v_sz; ++i)
96
+ package_len += v[i].iov_len;
97
+ char len_prefix[9];
98
+ char *len_end = mp_encode_luint32(len_prefix, package_len);
99
+ v[0].iov_base = len_prefix;
100
+ v[0].iov_len = len_end - len_prefix;
101
+ return s->writev(s, v, v_sz);
102
+ }
103
+
104
+ static ssize_t tnt_update_op_len(char op) {
105
+ switch (op) {
106
+ case (TNT_UOP_ADDITION):
107
+ case (TNT_UOP_SUBSTRACT):
108
+ case (TNT_UOP_AND):
109
+ case (TNT_UOP_XOR):
110
+ case (TNT_UOP_OR):
111
+ case (TNT_UOP_DELETE):
112
+ case (TNT_UOP_INSERT):
113
+ case (TNT_UOP_ASSIGN):
114
+ return 3;
115
+ case (TNT_UOP_SPLICE):
116
+ return 5;
117
+ default:
118
+ return -1;
119
+ }
120
+ }
121
+
122
+ struct tnt_stream *tnt_update_container(struct tnt_stream *ops) {
123
+ ops = tnt_object(ops);
124
+ if (!ops) return NULL;
125
+ tnt_object_type(ops, TNT_SBO_SPARSE);
126
+ if (tnt_object_add_array(ops, 0) == -1) {
127
+ tnt_stream_free(ops);
128
+ return NULL;
129
+ }
130
+ return ops;
131
+ }
132
+
133
+ int tnt_update_container_close(struct tnt_stream *ops) {
134
+ struct tnt_sbuf_object *opob = TNT_SOBJ_CAST(ops);
135
+ opob->stack->size = ops->wrcnt - 1;
136
+ tnt_object_container_close(ops);
137
+ return 0;
138
+ }
139
+
140
+ int tnt_update_container_reset(struct tnt_stream *ops) {
141
+ tnt_object_reset(ops);
142
+ tnt_object_type(ops, TNT_SBO_SPARSE);
143
+ if (tnt_object_add_array(ops, 0) == -1) {
144
+ tnt_stream_free(ops);
145
+ return -1;
146
+ }
147
+ return 0;
148
+ }
149
+
150
+ static ssize_t
151
+ tnt_update_op(struct tnt_stream *ops, char op, uint32_t fieldno,
152
+ const char *opdata, size_t opdata_len) {
153
+ struct iovec v[2]; size_t v_sz = 2;
154
+ char body[64], *data; data = body;
155
+ data = mp_encode_array(data, tnt_update_op_len(op));
156
+ data = mp_encode_str(data, &op, 1);
157
+ data = mp_encode_uint(data, fieldno);
158
+ v[0].iov_base = body;
159
+ v[0].iov_len = data - body;
160
+ v[1].iov_base = (void *)opdata;
161
+ v[1].iov_len = opdata_len;
162
+
163
+ return ops->writev(ops, v, v_sz);
164
+ }
165
+
166
+ ssize_t
167
+ tnt_update_bit(struct tnt_stream *ops, uint32_t fieldno, char op,
168
+ uint64_t value) {
169
+ if (op != '&' && op != '^' && op != '|') return -1;
170
+ char body[10], *data; data = body;
171
+ data = mp_encode_uint(data, value);
172
+ return tnt_update_op(ops, op, fieldno, body, data - body);
173
+ }
174
+
175
+ ssize_t
176
+ tnt_update_arith_int(struct tnt_stream *ops, uint32_t fieldno, char op,
177
+ int64_t value) {
178
+ if (op != '+' && op != '-') return -1;
179
+ char body[10], *data; data = body;
180
+ if (value >= 0)
181
+ data = mp_encode_uint(data, value);
182
+ else
183
+ data = mp_encode_int(data, value);
184
+ return tnt_update_op(ops, op, fieldno, body, data - body);
185
+ }
186
+
187
+ ssize_t
188
+ tnt_update_arith_float(struct tnt_stream *ops, uint32_t fieldno, char op,
189
+ float value) {
190
+ if (op != '+' && op != '-') return -1;
191
+ char body[10], *data; data = body;
192
+ data = mp_encode_float(data, value);
193
+ return tnt_update_op(ops, op, fieldno, body, data - body);
194
+ }
195
+
196
+ ssize_t
197
+ tnt_update_arith_double(struct tnt_stream *ops, uint32_t fieldno, char op,
198
+ double value) {
199
+ if (op != '+' && op != '-') return -1;
200
+ char body[10], *data; data = body;
201
+ data = mp_encode_double(data, value);
202
+ return tnt_update_op(ops, op, fieldno, body, data - body);
203
+ }
204
+
205
+ ssize_t
206
+ tnt_update_delete(struct tnt_stream *ops, uint32_t fieldno,
207
+ uint32_t fieldcount) {
208
+ char body[10], *data; data = body;
209
+ data = mp_encode_uint(data, fieldcount);
210
+ return tnt_update_op(ops, '#', fieldno, body, data - body);
211
+ }
212
+
213
+ ssize_t
214
+ tnt_update_insert(struct tnt_stream *ops, uint32_t fieldno,
215
+ struct tnt_stream *val) {
216
+ if (tnt_object_verify(val, -1))
217
+ return -1;
218
+ return tnt_update_op(ops, '!', fieldno, TNT_SBUF_DATA(val),
219
+ TNT_SBUF_SIZE(val));
220
+ }
221
+
222
+ ssize_t
223
+ tnt_update_assign(struct tnt_stream *ops, uint32_t fieldno,
224
+ struct tnt_stream *val) {
225
+ if (tnt_object_verify(val, -1))
226
+ return -1;
227
+ return tnt_update_op(ops, '=', fieldno, TNT_SBUF_DATA(val),
228
+ TNT_SBUF_SIZE(val));
229
+ }
230
+
231
+ ssize_t
232
+ tnt_update_splice(struct tnt_stream *ops, uint32_t fieldno,
233
+ uint32_t position, uint32_t offset,
234
+ const char *buffer, size_t buffer_len) {
235
+ size_t buf_size = mp_sizeof_uint(position) +
236
+ mp_sizeof_uint(offset) +
237
+ mp_sizeof_str(buffer_len);
238
+ char *buf = tnt_mem_alloc(buf_size), *data = NULL;
239
+ if (!buf) return -1;
240
+ data = buf;
241
+ data = mp_encode_uint(data, position);
242
+ data = mp_encode_uint(data, offset);
243
+ data = mp_encode_str(data, buffer, buffer_len);
244
+ ssize_t retval = tnt_update_op(ops, ':', fieldno, buf, buf_size);
245
+ tnt_mem_free(buf);
246
+ return retval;
247
+ }