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,476 @@
1
+ #include <stddef.h>
2
+ #include <stdint.h>
3
+ #include <string.h>
4
+ #include <stdbool.h>
5
+
6
+ #include <msgpuck.h>
7
+
8
+ #include <tarantool/tnt_reply.h>
9
+ #include <tarantool/tnt_stream.h>
10
+ #include <tarantool/tnt_buf.h>
11
+ #include <tarantool/tnt_object.h>
12
+ #include <tarantool/tnt_mem.h>
13
+
14
+ static void
15
+ tnt_sbuf_object_free(struct tnt_stream *s)
16
+ {
17
+ struct tnt_sbuf_object *sbo = TNT_SOBJ_CAST(s);
18
+ if (sbo->stack) tnt_mem_free(sbo->stack);
19
+ sbo->stack = NULL;
20
+ tnt_mem_free(sbo);
21
+ }
22
+
23
+ int
24
+ tnt_object_type(struct tnt_stream *s, enum tnt_sbo_type type)
25
+ {
26
+ if (s->wrcnt > 0) return -1;
27
+ TNT_SOBJ_CAST(s)->type = type;
28
+ return 0;
29
+ };
30
+
31
+ static int
32
+ tnt_sbuf_object_grow_stack(struct tnt_sbuf_object *sbo)
33
+ {
34
+ if (sbo->stack_alloc == 128) return -1;
35
+ uint8_t new_stack_alloc = 2 * sbo->stack_alloc;
36
+ struct tnt_sbo_stack *stack = tnt_mem_alloc(new_stack_alloc * sizeof(
37
+ struct tnt_sbo_stack));
38
+ if (!stack) return -1;
39
+ sbo->stack_alloc = new_stack_alloc;
40
+ sbo->stack = stack;
41
+ return 0;
42
+ }
43
+
44
+ static char *
45
+ tnt_sbuf_object_resize(struct tnt_stream *s, size_t size) {
46
+ struct tnt_stream_buf *sb = TNT_SBUF_CAST(s);
47
+ if (sb->size + size > sb->alloc) {
48
+ size_t newsize = 2 * (sb->alloc);
49
+ if (newsize < sb->size + size)
50
+ newsize = sb->size + size;
51
+ char *nd = tnt_mem_realloc(sb->data, newsize);
52
+ if (nd == NULL) {
53
+ tnt_mem_free(sb->data);
54
+ return NULL;
55
+ }
56
+ sb->data = nd;
57
+ sb->alloc = newsize;
58
+ }
59
+ return sb->data + sb->size;
60
+ }
61
+
62
+ struct tnt_stream *
63
+ tnt_object(struct tnt_stream *s)
64
+ {
65
+ if ((s = tnt_buf(s)) == NULL)
66
+ goto error;
67
+
68
+ struct tnt_stream_buf *sb = TNT_SBUF_CAST(s);
69
+ sb->resize = tnt_sbuf_object_resize;
70
+ sb->free = tnt_sbuf_object_free;
71
+
72
+ struct tnt_sbuf_object *sbo = tnt_mem_alloc(sizeof(struct tnt_sbuf_object));
73
+ if (sbo == NULL)
74
+ goto error;
75
+ sb->subdata = sbo;
76
+ sbo->stack_size = 0;
77
+ sbo->stack_alloc = 8;
78
+ sbo->stack = tnt_mem_alloc(sbo->stack_alloc *
79
+ sizeof(struct tnt_sbo_stack));
80
+ if (sbo->stack == NULL)
81
+ goto error;
82
+ tnt_object_type(s, TNT_SBO_SIMPLE);
83
+
84
+ return s;
85
+ error:
86
+ tnt_stream_free(s);
87
+ return NULL;
88
+ }
89
+
90
+ ssize_t
91
+ tnt_object_add_nil (struct tnt_stream *s)
92
+ {
93
+ struct tnt_sbuf_object *sbo = TNT_SOBJ_CAST(s);
94
+ if (sbo->stack_size > 0)
95
+ sbo->stack[sbo->stack_size - 1].size += 1;
96
+ char data[2]; char *end = mp_encode_nil(data);
97
+ return s->write(s, data, end - data);
98
+ }
99
+
100
+ ssize_t
101
+ tnt_object_add_uint(struct tnt_stream *s, uint64_t value)
102
+ {
103
+ struct tnt_sbuf_object *sbo = TNT_SOBJ_CAST(s);
104
+ if (sbo->stack_size > 0)
105
+ sbo->stack[sbo->stack_size - 1].size += 1;
106
+ char data[10], *end;
107
+ end = mp_encode_uint(data, value);
108
+ return s->write(s, data, end - data);
109
+ }
110
+
111
+ ssize_t
112
+ tnt_object_add_int (struct tnt_stream *s, int64_t value)
113
+ {
114
+ struct tnt_sbuf_object *sbo = TNT_SOBJ_CAST(s);
115
+ if (sbo->stack_size > 0)
116
+ sbo->stack[sbo->stack_size - 1].size += 1;
117
+ char data[10], *end;
118
+ if (value < 0)
119
+ end = mp_encode_int(data, value);
120
+ else
121
+ end = mp_encode_uint(data, value);
122
+ return s->write(s, data, end - data);
123
+ }
124
+
125
+ ssize_t
126
+ tnt_object_add_str (struct tnt_stream *s, const char *str, uint32_t len)
127
+ {
128
+ struct tnt_sbuf_object *sbo = TNT_SOBJ_CAST(s);
129
+ if (sbo->stack_size > 0)
130
+ sbo->stack[sbo->stack_size - 1].size += 1;
131
+ struct iovec v[2]; int v_sz = 2;
132
+ char data[6], *end;
133
+ end = mp_encode_strl(data, len);
134
+ v[0].iov_base = data;
135
+ v[0].iov_len = end - data;
136
+ v[1].iov_base = (void *)str;
137
+ v[1].iov_len = len;
138
+ return s->writev(s, v, v_sz);
139
+ }
140
+
141
+ ssize_t
142
+ tnt_object_add_strz (struct tnt_stream *s, const char *strz)
143
+ {
144
+ uint32_t len = strlen(strz);
145
+ return tnt_object_add_str(s, strz, len);
146
+ }
147
+
148
+ ssize_t
149
+ tnt_object_add_bin (struct tnt_stream *s, const void *bin, uint32_t len)
150
+ {
151
+ struct tnt_sbuf_object *sbo = TNT_SOBJ_CAST(s);
152
+ if (sbo->stack_size > 0)
153
+ sbo->stack[sbo->stack_size - 1].size += 1;
154
+ struct iovec v[2]; int v_sz = 2;
155
+ char data[6], *end;
156
+ end = mp_encode_binl(data, len);
157
+ v[0].iov_base = data;
158
+ v[0].iov_len = end - data;
159
+ v[1].iov_base = (void *)bin;
160
+ v[1].iov_len = len;
161
+ return s->writev(s, v, v_sz);
162
+ }
163
+
164
+ ssize_t
165
+ tnt_object_add_bool (struct tnt_stream *s, char value)
166
+ {
167
+ struct tnt_sbuf_object *sbo = TNT_SOBJ_CAST(s);
168
+ if (sbo->stack_size > 0)
169
+ sbo->stack[sbo->stack_size - 1].size += 1;
170
+ char data[2], *end;
171
+ end = mp_encode_bool(data, value != 0);
172
+ return s->write(s, data, end - data);
173
+ }
174
+
175
+ ssize_t
176
+ tnt_object_add_float (struct tnt_stream *s, float value)
177
+ {
178
+ struct tnt_sbuf_object *sbo = TNT_SOBJ_CAST(s);
179
+ if (sbo->stack_size > 0)
180
+ sbo->stack[sbo->stack_size - 1].size += 1;
181
+ char data[6], *end;
182
+ end = mp_encode_float(data, value);
183
+ return s->write(s, data, end - data);
184
+ }
185
+
186
+ ssize_t
187
+ tnt_object_add_double (struct tnt_stream *s, double value)
188
+ {
189
+ struct tnt_sbuf_object *sbo = TNT_SOBJ_CAST(s);
190
+ if (sbo->stack_size > 0)
191
+ sbo->stack[sbo->stack_size - 1].size += 1;
192
+ char data[10], *end;
193
+ end = mp_encode_double(data, value);
194
+ return s->write(s, data, end - data);
195
+ }
196
+
197
+ static char *
198
+ mp_encode_array32(char *data, uint32_t size)
199
+ {
200
+ data = mp_store_u8(data, 0xdd);
201
+ return mp_store_u32(data, size);
202
+ }
203
+
204
+ ssize_t
205
+ tnt_object_add_array (struct tnt_stream *s, uint32_t size)
206
+ {
207
+ struct tnt_sbuf_object *sbo = TNT_SOBJ_CAST(s);
208
+ if (sbo->stack_size > 0)
209
+ sbo->stack[sbo->stack_size - 1].size += 1;
210
+ char data[6], *end;
211
+ struct tnt_stream_buf *sb = TNT_SBUF_CAST(s);
212
+ if (sbo->stack_size == sbo->stack_alloc)
213
+ if (tnt_sbuf_object_grow_stack(sbo) == -1)
214
+ return -1;
215
+ sbo->stack[sbo->stack_size].size = 0;
216
+ sbo->stack[sbo->stack_size].offset = sb->size;
217
+ sbo->stack[sbo->stack_size].type = MP_ARRAY;
218
+ sbo->stack_size += 1;
219
+ if (TNT_SOBJ_CAST(s)->type == TNT_SBO_SIMPLE) {
220
+ end = mp_encode_array(data, size);
221
+ } else if (TNT_SOBJ_CAST(s)->type == TNT_SBO_SPARSE) {
222
+ end = mp_encode_array32(data, 0);
223
+ } else if (TNT_SOBJ_CAST(s)->type == TNT_SBO_PACKED) {
224
+ end = mp_encode_array(data, 0);
225
+ } else {
226
+ return -1;
227
+ }
228
+ ssize_t rv = s->write(s, data, end - data);
229
+ return rv;
230
+ }
231
+
232
+ static char *
233
+ mp_encode_map32(char *data, uint32_t size)
234
+ {
235
+ data = mp_store_u8(data, 0xdf);
236
+ return mp_store_u32(data, size);
237
+ }
238
+
239
+ ssize_t
240
+ tnt_object_add_map (struct tnt_stream *s, uint32_t size)
241
+ {
242
+ struct tnt_sbuf_object *sbo = TNT_SOBJ_CAST(s);
243
+ if (sbo->stack_size > 0)
244
+ sbo->stack[sbo->stack_size - 1].size += 1;
245
+ char data[6], *end;
246
+ struct tnt_stream_buf *sb = TNT_SBUF_CAST(s);
247
+ if (sbo->stack_size == sbo->stack_alloc)
248
+ if (tnt_sbuf_object_grow_stack(sbo) == -1)
249
+ return -1;
250
+ sbo->stack[sbo->stack_size].size = 0;
251
+ sbo->stack[sbo->stack_size].offset = sb->size;
252
+ sbo->stack[sbo->stack_size].type = MP_MAP;
253
+ sbo->stack_size += 1;
254
+ if (TNT_SOBJ_CAST(s)->type == TNT_SBO_SIMPLE) {
255
+ end = mp_encode_map(data, size);
256
+ } else if (TNT_SOBJ_CAST(s)->type == TNT_SBO_SPARSE) {
257
+ end = mp_encode_map32(data, 0);
258
+ } else if (TNT_SOBJ_CAST(s)->type == TNT_SBO_PACKED) {
259
+ end = mp_encode_map(data, 0);
260
+ } else {
261
+ return -1;
262
+ }
263
+ ssize_t rv = s->write(s, data, end - data);
264
+ return rv;
265
+ }
266
+
267
+ ssize_t
268
+ tnt_object_container_close (struct tnt_stream *s)
269
+ {
270
+ struct tnt_stream_buf *sb = TNT_SBUF_CAST(s);
271
+ struct tnt_sbuf_object *sbo = TNT_SOBJ_CAST(s);
272
+ if (sbo->stack_size == 0) return -1;
273
+ size_t size = sbo->stack[sbo->stack_size - 1].size;
274
+ enum mp_type type = sbo->stack[sbo->stack_size - 1].type;
275
+ size_t offset = sbo->stack[sbo->stack_size - 1].offset;
276
+ if (type == MP_MAP && size % 2) return -1;
277
+ sbo->stack_size -= 1;
278
+ char *lenp = sb->data + offset;
279
+ if (sbo->type == TNT_SBO_SIMPLE) {
280
+ return 0;
281
+ } else if (sbo->type == TNT_SBO_SPARSE) {
282
+ if (type == MP_MAP)
283
+ mp_encode_map32(lenp, size/2);
284
+ else
285
+ mp_encode_array32(lenp, size);
286
+ return 0;
287
+ } else if (sbo->type == TNT_SBO_PACKED) {
288
+ size_t sz = 0;
289
+ if (type == MP_MAP)
290
+ sz = mp_sizeof_map(size/2);
291
+ else
292
+ sz = mp_sizeof_array(size);
293
+ if (sz > 1) {
294
+ if (!sb->resize(s, sz - 1))
295
+ return -1;
296
+ lenp = sb->data + offset;
297
+ memmove(lenp + sz, lenp + 1, sb->size - offset - 1);
298
+ }
299
+ if (type == MP_MAP) {
300
+ mp_encode_map(sb->data + offset, size/2);
301
+ } else {
302
+ mp_encode_array(sb->data + offset, size);
303
+ }
304
+ sb->size += (sz - 1);
305
+ return 0;
306
+ }
307
+ return -1;
308
+ }
309
+
310
+ int tnt_object_verify(struct tnt_stream *obj, int8_t type)
311
+ {
312
+ const char *pos = TNT_SBUF_DATA(obj);
313
+ const char *end = pos + TNT_SBUF_SIZE(obj);
314
+ if (type >= 0 && mp_typeof(*pos) != (uint8_t) type) return -1;
315
+ if (mp_check(&pos, end)) return -1;
316
+ if (pos < end) return -1;
317
+ return 0;
318
+ }
319
+
320
+ ssize_t tnt_object_vformat(struct tnt_stream *s, const char *fmt, va_list vl)
321
+ {
322
+ if (tnt_object_type(s, TNT_SBO_PACKED) == -1)
323
+ return -1;
324
+ ssize_t result = 0, rv = 0;
325
+
326
+ for (const char *f = fmt; *f; f++) {
327
+ if (f[0] == '[') {
328
+ if ((rv = tnt_object_add_array(s, 0)) == -1)
329
+ return -1;
330
+ result += rv;
331
+ } else if (f[0] == '{') {
332
+ if ((rv = tnt_object_add_map(s, 0)) == -1)
333
+ return -1;
334
+ result += rv;
335
+ } else if (f[0] == ']' || f[0] == '}') {
336
+ if ((rv = tnt_object_container_close(s)) == -1)
337
+ return -1;
338
+ result += rv;
339
+ } else if (f[0] == '%') {
340
+ f++;
341
+ assert(f[0]);
342
+ int64_t int_value = 0;
343
+ int int_status = 0; /* 1 - signed, 2 - unsigned */
344
+
345
+ if (f[0] == 'd' || f[0] == 'i') {
346
+ int_value = va_arg(vl, int);
347
+ int_status = 1;
348
+ } else if (f[0] == 'u') {
349
+ int_value = va_arg(vl, unsigned int);
350
+ int_status = 2;
351
+ } else if (f[0] == 's') {
352
+ const char *str = va_arg(vl, const char *);
353
+ uint32_t len = (uint32_t)strlen(str);
354
+ if ((rv = tnt_object_add_str(s, str, len)) == -1)
355
+ return -1;
356
+ result += rv;
357
+ } else if (f[0] == '.' && f[1] == '*' && f[2] == 's') {
358
+ uint32_t len = va_arg(vl, uint32_t);
359
+ const char *str = va_arg(vl, const char *);
360
+ if ((rv = tnt_object_add_str(s, str, len)) == -1)
361
+ return -1;
362
+ result += rv;
363
+ f += 2;
364
+ } else if (f[0] == 'f') {
365
+ float v = (float)va_arg(vl, double);
366
+ if ((rv = tnt_object_add_float(s, v)) == -1)
367
+ return -1;
368
+ result += rv;
369
+ } else if (f[0] == 'l' && f[1] == 'f') {
370
+ double v = va_arg(vl, double);
371
+ if ((rv = tnt_object_add_double(s, v)) == -1)
372
+ return -1;
373
+ result += rv;
374
+ f++;
375
+ } else if (f[0] == 'b') {
376
+ bool v = (bool)va_arg(vl, int);
377
+ if ((rv = tnt_object_add_bool(s, v)) == -1)
378
+ return -1;
379
+ result += rv;
380
+ } else if (f[0] == 'l'
381
+ && (f[1] == 'd' || f[1] == 'i')) {
382
+ int_value = va_arg(vl, long);
383
+ int_status = 1;
384
+ f++;
385
+ } else if (f[0] == 'l' && f[1] == 'u') {
386
+ int_value = va_arg(vl, unsigned long);
387
+ int_status = 2;
388
+ f++;
389
+ } else if (f[0] == 'l' && f[1] == 'l'
390
+ && (f[2] == 'd' || f[2] == 'i')) {
391
+ int_value = va_arg(vl, long long);
392
+ int_status = 1;
393
+ f += 2;
394
+ } else if (f[0] == 'l' && f[1] == 'l' && f[2] == 'u') {
395
+ int_value = va_arg(vl, unsigned long long);
396
+ int_status = 2;
397
+ f += 2;
398
+ } else if (f[0] == 'h'
399
+ && (f[1] == 'd' || f[1] == 'i')) {
400
+ int_value = va_arg(vl, int);
401
+ int_status = 1;
402
+ f++;
403
+ } else if (f[0] == 'h' && f[1] == 'u') {
404
+ int_value = va_arg(vl, unsigned int);
405
+ int_status = 2;
406
+ f++;
407
+ } else if (f[0] == 'h' && f[1] == 'h'
408
+ && (f[2] == 'd' || f[2] == 'i')) {
409
+ int_value = va_arg(vl, int);
410
+ int_status = 1;
411
+ f += 2;
412
+ } else if (f[0] == 'h' && f[1] == 'h' && f[2] == 'u') {
413
+ int_value = va_arg(vl, unsigned int);
414
+ int_status = 2;
415
+ f += 2;
416
+ } else if (f[0] != '%') {
417
+ /* unexpected format specifier */
418
+ assert(false);
419
+ }
420
+
421
+ if (int_status) {
422
+ if ((rv = tnt_object_add_int(s, int_value)) == -1)
423
+ return -1;
424
+ result += rv;
425
+ }
426
+ } else if (f[0] == 'N' && f[1] == 'I' && f[2] == 'L') {
427
+ if ((rv = tnt_object_add_nil(s)) == -1)
428
+ return -1;
429
+ result += rv;
430
+ f += 2;
431
+ }
432
+ }
433
+ return result;
434
+ }
435
+
436
+ ssize_t tnt_object_format(struct tnt_stream *s, const char *fmt, ...)
437
+ {
438
+ va_list args;
439
+ va_start(args, fmt);
440
+ ssize_t res = tnt_object_vformat(s, fmt, args);
441
+ va_end(args);
442
+ return res;
443
+ }
444
+
445
+ struct tnt_stream *tnt_object_as(struct tnt_stream *s, char *buf,
446
+ size_t buf_len)
447
+ {
448
+ if (s == NULL) {
449
+ s = tnt_object(s);
450
+ if (s == NULL)
451
+ return NULL;
452
+ }
453
+ struct tnt_stream_buf *sb = TNT_SBUF_CAST(s);
454
+
455
+ sb->data = buf;
456
+ sb->size = buf_len;
457
+ sb->alloc = buf_len;
458
+ sb->as = 1;
459
+
460
+ return s;
461
+ }
462
+
463
+ int tnt_object_reset(struct tnt_stream *s)
464
+ {
465
+ struct tnt_stream_buf *sb = TNT_SBUF_CAST(s);
466
+ struct tnt_sbuf_object *sbo = TNT_SOBJ_CAST(s);
467
+
468
+ s->reqid = 0;
469
+ s->wrcnt = 0;
470
+ sb->size = 0;
471
+ sb->rdoff = 0;
472
+ sbo->stack_size = 0;
473
+ sbo->type = TNT_SBO_SIMPLE;
474
+
475
+ return 0;
476
+ }
@@ -0,0 +1,117 @@
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
+
30
+ #include <stdlib.h>
31
+ #include <stdarg.h>
32
+ #include <stdio.h>
33
+ #include <string.h>
34
+ #include <stdbool.h>
35
+
36
+ #include <sys/uio.h>
37
+
38
+ #include <sys/types.h>
39
+ #include <sys/time.h>
40
+
41
+ #include <uri.h>
42
+
43
+ #include <tarantool/tnt_mem.h>
44
+ #include <tarantool/tnt_net.h>
45
+
46
+ int
47
+ tnt_opt_init(struct tnt_opt *opt)
48
+ {
49
+ memset(opt, 0, sizeof(struct tnt_opt));
50
+ opt->recv_buf = 16384;
51
+ opt->send_buf = 16384;
52
+ opt->tmout_connect.tv_sec = 16;
53
+ opt->tmout_connect.tv_usec = 0;
54
+ opt->uri = tnt_mem_alloc(sizeof(struct uri));
55
+ if (!opt->uri) return -1;
56
+ return 0;
57
+ }
58
+
59
+ void
60
+ tnt_opt_free(struct tnt_opt *opt)
61
+ {
62
+ if (opt->uristr)
63
+ tnt_mem_free((void *)opt->uristr);
64
+ tnt_mem_free((void *)opt->uri);
65
+ }
66
+
67
+ int
68
+ tnt_opt_set(struct tnt_opt *opt, enum tnt_opt_type name, va_list args)
69
+ {
70
+ struct timeval *tvp;
71
+ switch (name) {
72
+ case TNT_OPT_URI:
73
+ if (opt->uristr) tnt_mem_free((void *)opt->uristr);
74
+ opt->uristr = tnt_mem_dup(va_arg(args, char*));
75
+ if (opt->uristr == NULL)
76
+ return TNT_EMEMORY;
77
+ if (uri_parse(opt->uri, opt->uristr) == -1)
78
+ return TNT_EFAIL;
79
+ break;
80
+ case TNT_OPT_TMOUT_CONNECT:
81
+ tvp = va_arg(args, struct timeval*);
82
+ memcpy(&opt->tmout_connect, tvp, sizeof(struct timeval));
83
+ break;
84
+ case TNT_OPT_TMOUT_RECV:
85
+ tvp = va_arg(args, struct timeval*);
86
+ memcpy(&opt->tmout_recv, tvp, sizeof(struct timeval));
87
+ break;
88
+ case TNT_OPT_TMOUT_SEND:
89
+ tvp = va_arg(args, struct timeval*);
90
+ memcpy(&opt->tmout_send, tvp, sizeof(struct timeval));
91
+ break;
92
+ case TNT_OPT_SEND_CB:
93
+ opt->send_cb = va_arg(args, void*);
94
+ break;
95
+ case TNT_OPT_SEND_CBV:
96
+ opt->send_cbv = va_arg(args, void*);
97
+ break;
98
+ case TNT_OPT_SEND_CB_ARG:
99
+ opt->send_cb_arg = va_arg(args, void*);
100
+ break;
101
+ case TNT_OPT_SEND_BUF:
102
+ opt->send_buf = va_arg(args, int);
103
+ break;
104
+ case TNT_OPT_RECV_CB:
105
+ opt->recv_cb = va_arg(args, void*);
106
+ break;
107
+ case TNT_OPT_RECV_CB_ARG:
108
+ opt->recv_cb_arg = va_arg(args, void*);
109
+ break;
110
+ case TNT_OPT_RECV_BUF:
111
+ opt->recv_buf = va_arg(args, int);
112
+ break;
113
+ default:
114
+ return TNT_EFAIL;
115
+ }
116
+ return TNT_EOK;
117
+ }
@@ -0,0 +1,38 @@
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_reply.h>
10
+ #include <tarantool/tnt_stream.h>
11
+ #include <tarantool/tnt_ping.h>
12
+
13
+ #include "tnt_proto_internal.h"
14
+
15
+ ssize_t
16
+ tnt_ping(struct tnt_stream *s)
17
+ {
18
+ struct tnt_iheader hdr;
19
+ struct iovec v[3]; int v_sz = 3;
20
+ char *data = NULL;
21
+ encode_header(&hdr, TNT_OP_PING, s->reqid++);
22
+ v[1].iov_base = (void *)hdr.header;
23
+ v[1].iov_len = hdr.end - hdr.header;
24
+ char body[2]; data = body;
25
+
26
+ data = mp_encode_map(data, 0);
27
+ v[2].iov_base = body;
28
+ v[2].iov_len = data - body;
29
+
30
+ size_t package_len = 0;
31
+ for (int i = 1; i < v_sz; ++i)
32
+ package_len += v[i].iov_len;
33
+ char len_prefix[9];
34
+ char *len_end = mp_encode_luint32(len_prefix, package_len);
35
+ v[0].iov_base = len_prefix;
36
+ v[0].iov_len = len_end - len_prefix;
37
+ return s->writev(s, v, v_sz);
38
+ }
@@ -0,0 +1,43 @@
1
+ #include <msgpuck.h>
2
+
3
+ #include <tarantool/tnt_proto.h>
4
+
5
+ struct tnt_iheader {
6
+ char header[25];
7
+ char *end;
8
+ };
9
+
10
+ static inline bool
11
+ is_call(enum tnt_request_t op) {
12
+ return (op == TNT_OP_CALL || op == TNT_OP_CALL_16);
13
+ }
14
+
15
+ static inline int
16
+ encode_header(struct tnt_iheader *hdr, uint32_t code, uint64_t sync)
17
+ {
18
+ memset(hdr, 0, sizeof(struct tnt_iheader));
19
+ char *h = mp_encode_map(hdr->header, 2);
20
+ h = mp_encode_uint(h, TNT_CODE);
21
+ h = mp_encode_uint(h, code);
22
+ h = mp_encode_uint(h, TNT_SYNC);
23
+ h = mp_encode_uint(h, sync);
24
+ hdr->end = h;
25
+ return 0;
26
+ }
27
+
28
+ static inline size_t
29
+ mp_sizeof_luint32(uint64_t num) {
30
+ if (num <= UINT32_MAX)
31
+ return 1 + sizeof(uint32_t);
32
+ return 1 + sizeof(uint64_t);
33
+ }
34
+
35
+ static inline char *
36
+ mp_encode_luint32(char *data, uint64_t num) {
37
+ if (num <= UINT32_MAX) {
38
+ data = mp_store_u8(data, 0xce);
39
+ return mp_store_u32(data, num);
40
+ }
41
+ data = mp_store_u8(data, 0xcf);
42
+ return mp_store_u64(data, num);
43
+ }