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,36 @@
|
|
1
|
+
set(common_files test.c
|
2
|
+
common.c
|
3
|
+
tnt_assoc.c)
|
4
|
+
|
5
|
+
project(tarantool-test-tcp)
|
6
|
+
add_executable(tarantool-test-tcp
|
7
|
+
tarantool_tcp.c
|
8
|
+
${common_files})
|
9
|
+
set_target_properties(tarantool-test-tcp PROPERTIES OUTPUT_NAME "tarantool-tcp")
|
10
|
+
target_link_libraries(tarantool-test-tcp tnt)
|
11
|
+
|
12
|
+
project(tarantool-test-unix)
|
13
|
+
add_executable(tarantool-test-unix
|
14
|
+
tarantool_unix.c
|
15
|
+
${common_files})
|
16
|
+
set_target_properties(tarantool-test-unix PROPERTIES OUTPUT_NAME "tarantool-unix")
|
17
|
+
target_link_libraries(tarantool-test-unix tnt)
|
18
|
+
|
19
|
+
project(tarantool-test-disconnect)
|
20
|
+
add_executable(tarantool-test-disconnect
|
21
|
+
tarantool_disconnect.c
|
22
|
+
${common_files})
|
23
|
+
set_target_properties(tarantool-test-disconnect PROPERTIES OUTPUT_NAME "tarantool-disconnect")
|
24
|
+
target_link_libraries(tarantool-test-disconnect tnt)
|
25
|
+
|
26
|
+
project(tarantool-test-call)
|
27
|
+
add_executable(tarantool-test-call
|
28
|
+
tarantool_call.c
|
29
|
+
${common_files})
|
30
|
+
set_target_properties(tarantool-test-call PROPERTIES OUTPUT_NAME "tarantool-call")
|
31
|
+
target_link_libraries(tarantool-test-call tnt)
|
32
|
+
|
33
|
+
add_custom_target(test
|
34
|
+
COMMAND ${PROJECT_SOURCE_DIR}/test-run.py -j -1
|
35
|
+
--builddir=${PROJECT_BINARY_DIR}
|
36
|
+
--vardir=${PROJECT_BINARY_DIR}/test/var)
|
@@ -0,0 +1,233 @@
|
|
1
|
+
#include <stdio.h>
|
2
|
+
#include <stdint.h>
|
3
|
+
#include <stddef.h>
|
4
|
+
|
5
|
+
#include <msgpuck.h>
|
6
|
+
|
7
|
+
#include <tarantool/tarantool.h>
|
8
|
+
#include <tarantool/tnt_net.h>
|
9
|
+
|
10
|
+
#include "common.h"
|
11
|
+
#include "tnt_assoc.h"
|
12
|
+
|
13
|
+
void
|
14
|
+
hex_dump (const char *desc, const char *addr, size_t len) {
|
15
|
+
size_t i;
|
16
|
+
unsigned char buff[17];
|
17
|
+
unsigned char *pc = (unsigned char*)addr;
|
18
|
+
|
19
|
+
if (desc != NULL)
|
20
|
+
printf ("%s:\n", desc);
|
21
|
+
for (i = 0; i < len; i++) {
|
22
|
+
if ((i % 16) == 0) {
|
23
|
+
if (i != 0) printf (" %s\n", buff);
|
24
|
+
printf (" %04x ", (unsigned int)i);
|
25
|
+
}
|
26
|
+
printf (" %02x", pc[i]);
|
27
|
+
if ((pc[i] < 0x20) || (pc[i] > 0x7e))
|
28
|
+
buff[i % 16] = '.';
|
29
|
+
else
|
30
|
+
buff[i % 16] = pc[i];
|
31
|
+
buff[(i % 16) + 1] = '\0';
|
32
|
+
}
|
33
|
+
while ((i % 16) != 0) {
|
34
|
+
printf (" ");
|
35
|
+
i++;
|
36
|
+
}
|
37
|
+
printf (" %s\n", buff);
|
38
|
+
}
|
39
|
+
|
40
|
+
void
|
41
|
+
hex_dump_c (const char *addr, size_t len) {
|
42
|
+
const char *addr_end = addr + len;
|
43
|
+
size_t n = 0;
|
44
|
+
while (addr < addr_end) {
|
45
|
+
if (n == 0) { printf("\""); n = 14; }
|
46
|
+
printf("\\x%02x", *(unsigned char *)addr);
|
47
|
+
addr += 1; n -= 1;
|
48
|
+
if (n == 0) { printf("\"\n"); }
|
49
|
+
}
|
50
|
+
if (n != 0) { printf("\"\n"); }
|
51
|
+
}
|
52
|
+
|
53
|
+
static inline void
|
54
|
+
mp_dump_hex (const char *addr, size_t len) {
|
55
|
+
const char *addr_end = addr + len;
|
56
|
+
printf("\"");
|
57
|
+
while (addr < addr_end) printf("\\x%02x", *(unsigned char *)addr++);
|
58
|
+
printf("\"");
|
59
|
+
}
|
60
|
+
|
61
|
+
void
|
62
|
+
mp_dump (const char *addr, size_t len) {
|
63
|
+
printf("mp_dump_begin\n ");
|
64
|
+
const char *addr_end = addr + len;
|
65
|
+
struct mp_dump_stack stack[128];
|
66
|
+
memset(stack, 0, sizeof(struct mp_dump_stack) * 128);
|
67
|
+
size_t stack_size = 0;
|
68
|
+
char begin = 1;
|
69
|
+
while (addr < addr_end) {
|
70
|
+
if (begin) {
|
71
|
+
begin = 0;
|
72
|
+
} else {
|
73
|
+
if (stack_size > 0) {
|
74
|
+
while (stack_size > 0 && stack[stack_size - 1].lft == 0) {
|
75
|
+
switch (stack[stack_size - 1].type) {
|
76
|
+
case (MP_ARRAY):
|
77
|
+
printf("]");
|
78
|
+
break;
|
79
|
+
case (MP_MAP):
|
80
|
+
printf("}");
|
81
|
+
break;
|
82
|
+
default:
|
83
|
+
printf("???");
|
84
|
+
}
|
85
|
+
stack_size -= 1;
|
86
|
+
}
|
87
|
+
if (stack_size > 0 && stack[stack_size - 1].type == MP_MAP) {
|
88
|
+
if (stack[stack_size - 1].lft % 2) {
|
89
|
+
printf(":");
|
90
|
+
} else if (!stack[stack_size - 1].start_flag) {
|
91
|
+
printf(",");
|
92
|
+
}
|
93
|
+
if (!stack[stack_size - 1].start_flag)
|
94
|
+
printf(" ");
|
95
|
+
stack[stack_size - 1].start_flag = 0;
|
96
|
+
stack[stack_size - 1].lft -= 1;
|
97
|
+
}
|
98
|
+
}
|
99
|
+
if (!stack_size) {
|
100
|
+
printf("\n ");
|
101
|
+
}
|
102
|
+
}
|
103
|
+
switch (mp_typeof(*addr)) {
|
104
|
+
case (MP_NIL):
|
105
|
+
printf("nil");
|
106
|
+
mp_decode_nil(&addr);
|
107
|
+
break;
|
108
|
+
case (MP_UINT):
|
109
|
+
printf("%zd", mp_decode_uint(&addr));
|
110
|
+
break;
|
111
|
+
case (MP_INT):
|
112
|
+
printf("%zd", mp_decode_int(&addr));
|
113
|
+
break;
|
114
|
+
case (MP_STR): {
|
115
|
+
uint32_t str_len = 0;
|
116
|
+
const char *str = mp_decode_str(&addr, &str_len);
|
117
|
+
printf("\"%.*s\"", str_len, str);
|
118
|
+
break;
|
119
|
+
}
|
120
|
+
case (MP_BIN): {
|
121
|
+
uint32_t bin_len = 0;
|
122
|
+
const char *bin = mp_decode_bin(&addr, &bin_len);
|
123
|
+
mp_dump_hex(bin, bin_len);
|
124
|
+
break;
|
125
|
+
}
|
126
|
+
case (MP_ARRAY):
|
127
|
+
stack[stack_size++] = (struct mp_dump_stack){
|
128
|
+
.type = MP_ARRAY,
|
129
|
+
.start_flag = 1,
|
130
|
+
.lft = mp_decode_array(&addr)
|
131
|
+
};
|
132
|
+
printf("[");
|
133
|
+
break;
|
134
|
+
case (MP_MAP):
|
135
|
+
stack[stack_size++] = (struct mp_dump_stack){
|
136
|
+
.type = MP_MAP,
|
137
|
+
.start_flag = 1,
|
138
|
+
.lft = mp_decode_map(&addr) * 2
|
139
|
+
};
|
140
|
+
printf("{");
|
141
|
+
break;
|
142
|
+
case (MP_BOOL):
|
143
|
+
if (mp_decode_bool(&addr)) {
|
144
|
+
printf ("true");
|
145
|
+
} else {
|
146
|
+
printf ("false");
|
147
|
+
}
|
148
|
+
break;
|
149
|
+
case (MP_FLOAT):
|
150
|
+
printf("%f", mp_decode_float(&addr));
|
151
|
+
break;
|
152
|
+
case (MP_DOUBLE):
|
153
|
+
printf("%f", mp_decode_double(&addr));
|
154
|
+
break;
|
155
|
+
case (MP_EXT):
|
156
|
+
printf("ext");
|
157
|
+
mp_next(&addr);
|
158
|
+
break;
|
159
|
+
default:
|
160
|
+
printf("whattheheck");
|
161
|
+
mp_next(&addr);
|
162
|
+
}
|
163
|
+
}
|
164
|
+
while (stack_size > 0 && stack[stack_size - 1].lft == 0) {
|
165
|
+
switch (stack[stack_size - 1].type) {
|
166
|
+
case (MP_ARRAY):
|
167
|
+
printf("]");
|
168
|
+
break;
|
169
|
+
case (MP_MAP):
|
170
|
+
printf("}");
|
171
|
+
break;
|
172
|
+
default:
|
173
|
+
printf("???");
|
174
|
+
}
|
175
|
+
stack_size -= 1;
|
176
|
+
}
|
177
|
+
printf("\n");
|
178
|
+
}
|
179
|
+
|
180
|
+
int
|
181
|
+
check_bbytes(const char *buf, size_t buf_size, const char *bb, size_t bb_size) {
|
182
|
+
if (bb == NULL) goto error;
|
183
|
+
if (buf_size != bb_size) goto error;
|
184
|
+
if (memcmp(buf, bb, bb_size)) goto error;
|
185
|
+
return 0;
|
186
|
+
error:
|
187
|
+
if (bb) {
|
188
|
+
hex_dump("expected", bb, bb_size);
|
189
|
+
mp_dump(bb, bb_size);
|
190
|
+
}
|
191
|
+
hex_dump("got", (const char *)buf, buf_size);
|
192
|
+
mp_dump(buf, buf_size);
|
193
|
+
hex_dump_c((const char *)buf, buf_size);
|
194
|
+
return -1;
|
195
|
+
}
|
196
|
+
|
197
|
+
int
|
198
|
+
check_rbytes(struct tnt_reply *s, const char *bb, size_t bb_size) {
|
199
|
+
return check_bbytes(s->buf, s->buf_size, bb, bb_size);
|
200
|
+
}
|
201
|
+
|
202
|
+
int
|
203
|
+
check_sbytes(struct tnt_stream *s, const char *bb, size_t bb_size) {
|
204
|
+
return check_bbytes(TNT_SBUF_DATA(s), TNT_SBUF_SIZE(s), bb, bb_size);
|
205
|
+
}
|
206
|
+
|
207
|
+
int
|
208
|
+
check_nbytes(struct tnt_stream *s, const char *bb, size_t bb_size) {
|
209
|
+
struct tnt_stream_net *sn = TNT_SNET_CAST(s);
|
210
|
+
return check_bbytes(sn->sbuf.buf, sn->sbuf.off, bb, bb_size);
|
211
|
+
}
|
212
|
+
|
213
|
+
int dump_schema_index(struct tnt_schema_sval *sval) {
|
214
|
+
mh_int_t ipos = 0;
|
215
|
+
mh_foreach(sval->index, ipos) {
|
216
|
+
struct tnt_schema_ival *ival = NULL;
|
217
|
+
ival = (*mh_assoc_node(sval->index, ipos))->data;
|
218
|
+
printf(" %d: %s\n", ival->number, ival->name);
|
219
|
+
}
|
220
|
+
return 0;
|
221
|
+
}
|
222
|
+
|
223
|
+
int dump_schema(struct tnt_stream *s) {
|
224
|
+
struct mh_assoc_t *schema = (TNT_SNET_CAST(s)->schema)->space_hash;
|
225
|
+
mh_int_t spos = 0;
|
226
|
+
mh_foreach(schema, spos) {
|
227
|
+
struct tnt_schema_sval *sval = NULL;
|
228
|
+
sval = (*mh_assoc_node(schema, spos))->data;
|
229
|
+
printf(" %d: %s\n", sval->number, sval->name);
|
230
|
+
(void )dump_schema_index(sval);
|
231
|
+
}
|
232
|
+
return 0;
|
233
|
+
}
|
@@ -0,0 +1,28 @@
|
|
1
|
+
#ifndef _TEST_COMMON_H_
|
2
|
+
#define _TEST_COMMON_H_
|
3
|
+
|
4
|
+
#include <msgpuck.h>
|
5
|
+
|
6
|
+
struct mp_dump_stack {
|
7
|
+
enum mp_type type;
|
8
|
+
char start_flag;
|
9
|
+
size_t lft;
|
10
|
+
};
|
11
|
+
|
12
|
+
void hex_dump (const char *desc, const char *addr, size_t len);
|
13
|
+
void hex_dump_c (const char *addr, size_t len);
|
14
|
+
|
15
|
+
void mp_dump (const char *addr, size_t len);
|
16
|
+
|
17
|
+
int check_bbytes(const char *buf, size_t buf_size,
|
18
|
+
const char *bb, size_t bb_size);
|
19
|
+
|
20
|
+
int check_rbytes(struct tnt_reply *s,
|
21
|
+
const char *bb, size_t bb_size);
|
22
|
+
int check_sbytes(struct tnt_stream *s,
|
23
|
+
const char *bb, size_t bb_size);
|
24
|
+
int check_nbytes(struct tnt_stream *s,
|
25
|
+
const char *bb, size_t bb_size);
|
26
|
+
int dump_schema(struct tnt_stream *s);
|
27
|
+
|
28
|
+
#endif /* _TEST_COMMON_H_ */
|
@@ -0,0 +1,152 @@
|
|
1
|
+
#include <string.h>
|
2
|
+
#include <stddef.h>
|
3
|
+
#include <stdint.h>
|
4
|
+
#include <stdbool.h>
|
5
|
+
#include <string.h>
|
6
|
+
#include <assert.h>
|
7
|
+
#include <stdio.h>
|
8
|
+
|
9
|
+
#include <sys/uio.h>
|
10
|
+
|
11
|
+
#include <msgpuck/msgpuck.h>
|
12
|
+
|
13
|
+
#include <tarantool/tnt_net.h>
|
14
|
+
|
15
|
+
void hexDump (char *desc, void *addr, int len) {
|
16
|
+
int i;
|
17
|
+
unsigned char buff[17];
|
18
|
+
unsigned char *pc = (unsigned char*)addr;
|
19
|
+
|
20
|
+
if (desc != NULL)
|
21
|
+
printf ("%s:\n", desc);
|
22
|
+
for (i = 0; i < len; i++) {
|
23
|
+
if ((i % 16) == 0) {
|
24
|
+
if (i != 0) printf (" %s\n", buff);
|
25
|
+
printf (" %04x ", i);
|
26
|
+
}
|
27
|
+
printf (" %02x", pc[i]);
|
28
|
+
if ((pc[i] < 0x20) || (pc[i] > 0x7e))
|
29
|
+
buff[i % 16] = '.';
|
30
|
+
else
|
31
|
+
buff[i % 16] = pc[i];
|
32
|
+
buff[(i % 16) + 1] = '\0';
|
33
|
+
}
|
34
|
+
while ((i % 16) != 0) {
|
35
|
+
printf (" ");
|
36
|
+
i++;
|
37
|
+
}
|
38
|
+
printf (" %s\n", buff);
|
39
|
+
}
|
40
|
+
|
41
|
+
int main() {
|
42
|
+
struct tnt_stream *s = tnt_net(NULL);
|
43
|
+
struct tnt_reply r; tnt_reply_init(&r);
|
44
|
+
assert(tnt_set(s, TNT_OPT_URI, "myamlya:1234@/tmp/taran_tool.sock\0") != -1);
|
45
|
+
assert(tnt_connect(s) != -1);
|
46
|
+
assert(tnt_authenticate(s) != -1);
|
47
|
+
assert(tnt_reload_schema(s) != -1);
|
48
|
+
struct tnt_stream *empty = tnt_object(NULL);
|
49
|
+
tnt_object_add_array(empty, 0);
|
50
|
+
|
51
|
+
int rc = tnt_call_16(s, "fiber.time", 10, empty);
|
52
|
+
rc += tnt_eval(s, "fiber.time", 10, empty);
|
53
|
+
hexDump("fiber_time (call+eval)", TNT_SNET_CAST(s)->sbuf.buf, rc);
|
54
|
+
rc = tnt_flush(s);
|
55
|
+
printf("%d\n", rc);
|
56
|
+
printf("%d\n", s->read_reply(s, &r));
|
57
|
+
hexDump("response call", (void *)r.buf, r.buf_size); tnt_reply_free(&r);
|
58
|
+
printf("%d\n", s->read_reply(s, &r));
|
59
|
+
hexDump("response eval", (void *)r.buf, r.buf_size); tnt_reply_free(&r);
|
60
|
+
|
61
|
+
struct tnt_stream *arr = tnt_object(NULL);
|
62
|
+
tnt_object_add_array(arr, 3);
|
63
|
+
tnt_object_add_int(arr, 1);
|
64
|
+
tnt_object_add_int(arr, 2);
|
65
|
+
tnt_object_add_int(arr, 3);
|
66
|
+
|
67
|
+
rc = tnt_insert(s, 512, arr);
|
68
|
+
rc += tnt_replace(s, 512, arr);
|
69
|
+
hexDump("insert+replace [1,2,3]", TNT_SNET_CAST(s)->sbuf.buf, rc);
|
70
|
+
rc = tnt_flush(s);
|
71
|
+
printf("%d\n", rc);
|
72
|
+
printf("%d\n", s->read_reply(s, &r));
|
73
|
+
hexDump("response insert", (void *)r.buf, r.buf_size); tnt_reply_free(&r);
|
74
|
+
printf("%d\n", s->read_reply(s, &r));
|
75
|
+
hexDump("response replace", (void *)r.buf, r.buf_size); tnt_reply_free(&r);
|
76
|
+
|
77
|
+
rc = tnt_ping(s);
|
78
|
+
hexDump("ping", TNT_SNET_CAST(s)->sbuf.buf, rc);
|
79
|
+
rc = tnt_flush(s);
|
80
|
+
printf("%d\n", rc);
|
81
|
+
printf("%d\n", s->read_reply(s, &r));
|
82
|
+
hexDump("response ping", (void *)r.buf, r.buf_size); tnt_reply_free(&r);
|
83
|
+
|
84
|
+
struct tnt_stream *key = tnt_object(NULL);
|
85
|
+
tnt_object_add_array(key, 1);
|
86
|
+
tnt_object_add_int(key, 1);
|
87
|
+
|
88
|
+
rc = tnt_select(s, 512, 0, UINT32_MAX, 0, 0, key);
|
89
|
+
hexDump("select [1]", TNT_SNET_CAST(s)->sbuf.buf, rc);
|
90
|
+
rc = tnt_flush(s);
|
91
|
+
printf("%d\n", rc);
|
92
|
+
printf("%d\n", s->read_reply(s, &r));
|
93
|
+
hexDump("response select", (void *)r.buf, r.buf_size); tnt_reply_free(&r);
|
94
|
+
|
95
|
+
rc = tnt_delete(s, 512, 0, key);
|
96
|
+
hexDump("delete [1]", TNT_SNET_CAST(s)->sbuf.buf, rc);
|
97
|
+
rc = tnt_flush(s);
|
98
|
+
printf("%d\n", rc);
|
99
|
+
printf("%d\n", s->read_reply(s, &r));
|
100
|
+
hexDump("response delete", (void *)r.buf, r.buf_size); tnt_reply_free(&r);
|
101
|
+
|
102
|
+
rc = tnt_auth(s, "myamlya", 7, "1234", 4);
|
103
|
+
rc += tnt_deauth(s);
|
104
|
+
rc += tnt_auth(s, "guest", 5, NULL, 0);
|
105
|
+
hexDump("auth No1", TNT_SNET_CAST(s)->sbuf.buf, rc);
|
106
|
+
rc = tnt_flush(s);
|
107
|
+
printf("%d\n", rc);
|
108
|
+
printf("%d\n", s->read_reply(s, &r));
|
109
|
+
hexDump("response auth", (void *)r.buf, r.buf_size); tnt_reply_free(&r);
|
110
|
+
printf("%d\n", s->read_reply(s, &r));
|
111
|
+
hexDump("response deauth", (void *)r.buf, r.buf_size); tnt_reply_free(&r);
|
112
|
+
printf("%d\n", s->read_reply(s, &r));
|
113
|
+
hexDump("response auth deauth", (void *)r.buf, r.buf_size); tnt_reply_free(&r);
|
114
|
+
|
115
|
+
tnt_stream_free(arr);
|
116
|
+
arr = tnt_object(NULL);
|
117
|
+
tnt_object_add_array(arr, 8);
|
118
|
+
tnt_object_add_int(arr, 1);
|
119
|
+
tnt_object_add_int(arr, 2);
|
120
|
+
tnt_object_add_float(arr, 3.0);
|
121
|
+
tnt_object_add_double(arr, 4.0);
|
122
|
+
tnt_object_add_int(arr, 31);
|
123
|
+
tnt_object_add_int(arr, 6);
|
124
|
+
tnt_object_add_strz(arr, "hello, brian");
|
125
|
+
tnt_object_add_int(arr, 1111);
|
126
|
+
hexDump("arr", TNT_SBUF_DATA(arr), TNT_SBUF_SIZE(arr));
|
127
|
+
|
128
|
+
rc = tnt_replace(s, 512, arr);
|
129
|
+
hexDump("replace [1, 2, 3.0F, 4.0D, 5, 6, \"hello, brian\", 1111]", TNT_SNET_CAST(s)->sbuf.buf, rc);
|
130
|
+
rc = tnt_flush(s);
|
131
|
+
printf("%d\n", rc);
|
132
|
+
printf("%d\n", s->read_reply(s, &r));
|
133
|
+
hexDump("response replace", (void *)r.buf, r.buf_size); tnt_reply_free(&r);
|
134
|
+
|
135
|
+
struct tnt_stream *ops = tnt_buf(NULL);
|
136
|
+
assert(tnt_update_arith_int(ops, 1, '+', 10) != -1);
|
137
|
+
assert(tnt_update_arith_float(ops, 2, '+', 3.2) != -1);
|
138
|
+
assert(tnt_update_arith_double(ops, 3, '+', 7.8) != -1);
|
139
|
+
assert(tnt_update_bit(ops, 4, '&', 0x10001) != -1);
|
140
|
+
assert(tnt_update_assign(ops, 8, arr) != -1);
|
141
|
+
assert(tnt_update_splice(ops, 6, 7, 5, "master", 6) != -1);
|
142
|
+
assert(tnt_update_insert(ops, 8, arr) != -1);
|
143
|
+
|
144
|
+
rc = tnt_update(s, 512, 0, key, ops);
|
145
|
+
hexDump("update", TNT_SNET_CAST(s)->sbuf.buf, rc);
|
146
|
+
rc = tnt_flush(s);
|
147
|
+
printf("%d\n", rc);
|
148
|
+
printf("%d\n", s->read_reply(s, &r));
|
149
|
+
hexDump("response update", (void *)r.buf, r.buf_size); tnt_reply_free(&r);
|
150
|
+
|
151
|
+
return 0;
|
152
|
+
}
|
@@ -0,0 +1,57 @@
|
|
1
|
+
#include <stdlib.h>
|
2
|
+
#include <stdio.h>
|
3
|
+
#include <unistd.h>
|
4
|
+
|
5
|
+
#include <tarantool/tarantool.h>
|
6
|
+
#include <tarantool/tnt_net.h>
|
7
|
+
#include <tarantool/tnt_opt.h>
|
8
|
+
|
9
|
+
#include "common.h"
|
10
|
+
|
11
|
+
int64_t CallTarantoolFunction(struct tnt_stream* stream, const char* name,
|
12
|
+
const char* format, ...)
|
13
|
+
{
|
14
|
+
struct tnt_request* request = tnt_request_call_16(NULL);
|
15
|
+
struct tnt_stream* arguments = tnt_object(NULL);
|
16
|
+
|
17
|
+
va_list list;
|
18
|
+
va_start(list, format);
|
19
|
+
tnt_object_vformat(arguments, format, list);
|
20
|
+
va_end(list);
|
21
|
+
|
22
|
+
tnt_request_set_funcz(request, name);
|
23
|
+
tnt_request_set_tuple(request, arguments);
|
24
|
+
|
25
|
+
int64_t result = tnt_request_compile(stream, request);
|
26
|
+
|
27
|
+
tnt_stream_free(arguments);
|
28
|
+
tnt_request_free(request);
|
29
|
+
tnt_flush(stream);
|
30
|
+
|
31
|
+
return result;
|
32
|
+
}
|
33
|
+
|
34
|
+
int main() {
|
35
|
+
const char * uri = "localhost:3301";
|
36
|
+
struct tnt_stream * tnt = tnt_net(NULL); // Allocating stream
|
37
|
+
tnt_set(tnt, TNT_OPT_URI, uri); // Setting URI
|
38
|
+
tnt_set(tnt, TNT_OPT_SEND_BUF, 0); // Disable buffering for send
|
39
|
+
tnt_set(tnt, TNT_OPT_RECV_BUF, 0); // Disable buffering for recv
|
40
|
+
tnt_connect(tnt);
|
41
|
+
CallTarantoolFunction(tnt, "test_1","[{%s%d%s%s%s%u%s%d%s%d%s%u%s%u%s%llu%s%u}]",
|
42
|
+
"kind", 110,
|
43
|
+
"name", "FastForward",
|
44
|
+
"number", 2621,
|
45
|
+
"slot", 0,
|
46
|
+
"flavor", 7,
|
47
|
+
"source", 2321040,
|
48
|
+
"destination", 2321,
|
49
|
+
"tag", 0,
|
50
|
+
"network", 2501);
|
51
|
+
struct tnt_reply *reply = tnt_reply_init(NULL); // Initialize reply
|
52
|
+
tnt->read_reply(tnt, reply); // Read reply from server
|
53
|
+
|
54
|
+
check_rbytes(reply, NULL, 0);
|
55
|
+
|
56
|
+
tnt_reply_free(reply); // Free reply
|
57
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
#include <stdlib.h>
|
2
|
+
#include <stdio.h>
|
3
|
+
#include <unistd.h>
|
4
|
+
|
5
|
+
#include <tarantool/tarantool.h>
|
6
|
+
#include <tarantool/tnt_net.h>
|
7
|
+
#include <tarantool/tnt_opt.h>
|
8
|
+
|
9
|
+
int main() {
|
10
|
+
const char * uri = "localhost:3301";
|
11
|
+
struct tnt_stream * tnt = tnt_net(NULL); // Allocating stream
|
12
|
+
tnt_set(tnt, TNT_OPT_URI, uri); // Setting URI
|
13
|
+
tnt_set(tnt, TNT_OPT_SEND_BUF, 0); // Disable buffering for send
|
14
|
+
tnt_set(tnt, TNT_OPT_RECV_BUF, 0); // Disable buffering for recv
|
15
|
+
tnt_connect(tnt);
|
16
|
+
|
17
|
+
while (1) {
|
18
|
+
if (tnt_error(tnt) != TNT_EOK) {
|
19
|
+
printf("disconnected %s\n", tnt_strerror(tnt));
|
20
|
+
tnt_connect(tnt);
|
21
|
+
}
|
22
|
+
printf("next_request\n");
|
23
|
+
tnt_ping(tnt); // Send ping request
|
24
|
+
struct tnt_reply * reply = tnt_reply_init(NULL); // Initialize reply
|
25
|
+
tnt->read_reply(tnt, reply); // Read reply from server
|
26
|
+
tnt_reply_free(reply); // Free reply
|
27
|
+
usleep(1000000);
|
28
|
+
}
|
29
|
+
|
30
|
+
tnt_stream_free(tnt); // Close connection and free stream object
|
31
|
+
}
|