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,248 @@
|
|
1
|
+
#ifndef TNT_OBJECT_H_INCLUDED
|
2
|
+
#define TNT_OBJECT_H_INCLUDED
|
3
|
+
|
4
|
+
/*
|
5
|
+
* Redistribution and use in source and binary forms, with or
|
6
|
+
* without modification, are permitted provided that the following
|
7
|
+
* conditions are met:
|
8
|
+
*
|
9
|
+
* 1. Redistributions of source code must retain the above
|
10
|
+
* copyright notice, this list of conditions and the
|
11
|
+
* following disclaimer.
|
12
|
+
*
|
13
|
+
* 2. Redistributions in binary form must reproduce the above
|
14
|
+
* copyright notice, this list of conditions and the following
|
15
|
+
* disclaimer in the documentation and/or other materials
|
16
|
+
* provided with the distribution.
|
17
|
+
*
|
18
|
+
* THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ``AS IS'' AND
|
19
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
20
|
+
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
21
|
+
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
22
|
+
* <COPYRIGHT HOLDER> OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
23
|
+
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
24
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
25
|
+
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
26
|
+
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
27
|
+
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
28
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
29
|
+
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
30
|
+
* SUCH DAMAGE.
|
31
|
+
*/
|
32
|
+
|
33
|
+
/**
|
34
|
+
* \file tnt_object.h
|
35
|
+
* \brief Object for manipulating msgpack objects
|
36
|
+
*/
|
37
|
+
|
38
|
+
#include <stdarg.h>
|
39
|
+
|
40
|
+
/**
|
41
|
+
* \brief for internal use
|
42
|
+
*/
|
43
|
+
struct tnt_sbo_stack {
|
44
|
+
size_t offset;
|
45
|
+
uint32_t size;
|
46
|
+
int8_t type;
|
47
|
+
};
|
48
|
+
|
49
|
+
/**
|
50
|
+
* \brief type of packing msgpack array/map
|
51
|
+
*
|
52
|
+
* - TNT_SBO_SIMPLE - without packing, demanding size to be specified
|
53
|
+
* - TNT_SBO_SPARSE - 5 bytes always allocated for map/array, size is ignored
|
54
|
+
* - TNT_SBO_PACKED - 1 byte is alloced for map/array, if needed more, then
|
55
|
+
* everything is moved to n bytes, when called
|
56
|
+
* "tnt_object_container_close"
|
57
|
+
*/
|
58
|
+
enum tnt_sbo_type {
|
59
|
+
TNT_SBO_SIMPLE = 0,
|
60
|
+
TNT_SBO_SPARSE,
|
61
|
+
TNT_SBO_PACKED,
|
62
|
+
};
|
63
|
+
|
64
|
+
struct tnt_sbuf_object {
|
65
|
+
struct tnt_sbo_stack *stack;
|
66
|
+
uint8_t stack_size;
|
67
|
+
uint8_t stack_alloc;
|
68
|
+
enum tnt_sbo_type type;
|
69
|
+
};
|
70
|
+
|
71
|
+
#define TNT_OBJ_CAST(SB) ((struct tnt_sbuf_object *)(SB)->subdata)
|
72
|
+
#define TNT_SOBJ_CAST(S) TNT_OBJ_CAST(TNT_SBUF_CAST(S))
|
73
|
+
|
74
|
+
/**
|
75
|
+
* \brief Set type of packing for objects
|
76
|
+
*
|
77
|
+
* Type must be set before first value was written
|
78
|
+
*
|
79
|
+
* \param s tnt_object instance
|
80
|
+
* \param type type of packing
|
81
|
+
*
|
82
|
+
* \returns status of operation
|
83
|
+
* \retval -1 (something was written before
|
84
|
+
* \retval 0 success
|
85
|
+
*/
|
86
|
+
int
|
87
|
+
tnt_object_type(struct tnt_stream *s, enum tnt_sbo_type type);
|
88
|
+
|
89
|
+
/**
|
90
|
+
* \brief create and initialize tnt_object
|
91
|
+
*
|
92
|
+
* tnt_object is used to create msgpack values: keys/tuples/args for
|
93
|
+
* passing them into tnt_request or tnt_<operation>
|
94
|
+
* if stream object is NULL, then new stream object will be created
|
95
|
+
*
|
96
|
+
* \param s object pointer
|
97
|
+
*
|
98
|
+
* \returns object pointer
|
99
|
+
* \retval NULL error
|
100
|
+
*/
|
101
|
+
struct tnt_stream *
|
102
|
+
tnt_object(struct tnt_stream *s);
|
103
|
+
|
104
|
+
/**
|
105
|
+
* \brief Add nil to a stream object
|
106
|
+
*/
|
107
|
+
ssize_t
|
108
|
+
tnt_object_add_nil(struct tnt_stream *s);
|
109
|
+
|
110
|
+
/**
|
111
|
+
* \brief Add integer to a stream object
|
112
|
+
*/
|
113
|
+
ssize_t
|
114
|
+
tnt_object_add_int(struct tnt_stream *s, int64_t value);
|
115
|
+
|
116
|
+
/**
|
117
|
+
* \brief Add unsigned integer to a stream object
|
118
|
+
*/
|
119
|
+
ssize_t
|
120
|
+
tnt_object_add_uint(struct tnt_stream *s, uint64_t value);
|
121
|
+
|
122
|
+
/**
|
123
|
+
* \brief Add string to a stream object
|
124
|
+
*/
|
125
|
+
ssize_t
|
126
|
+
tnt_object_add_str(struct tnt_stream *s, const char *str, uint32_t len);
|
127
|
+
|
128
|
+
/**
|
129
|
+
* \brief Add null terminated string to a stream object
|
130
|
+
*/
|
131
|
+
ssize_t
|
132
|
+
tnt_object_add_strz(struct tnt_stream *s, const char *strz);
|
133
|
+
|
134
|
+
/**
|
135
|
+
* \brief Add binary object to a stream object
|
136
|
+
*/
|
137
|
+
ssize_t
|
138
|
+
tnt_object_add_bin(struct tnt_stream *s, const void *bin, uint32_t len);
|
139
|
+
|
140
|
+
/**
|
141
|
+
* \brief Add boolean to a stream object
|
142
|
+
*/
|
143
|
+
ssize_t
|
144
|
+
tnt_object_add_bool(struct tnt_stream *s, char value);
|
145
|
+
|
146
|
+
/**
|
147
|
+
* \brief Add floating value to a stream object
|
148
|
+
*/
|
149
|
+
ssize_t
|
150
|
+
tnt_object_add_float(struct tnt_stream *s, float value);
|
151
|
+
|
152
|
+
/**
|
153
|
+
* \brief Add double precision floating value to a stream object
|
154
|
+
*/
|
155
|
+
ssize_t
|
156
|
+
tnt_object_add_double(struct tnt_stream *s, double value);
|
157
|
+
|
158
|
+
/**
|
159
|
+
* \brief Append array header to stream object
|
160
|
+
* \sa tnt_sbo_type
|
161
|
+
*/
|
162
|
+
ssize_t
|
163
|
+
tnt_object_add_array(struct tnt_stream *s, uint32_t size);
|
164
|
+
|
165
|
+
/**
|
166
|
+
* \brief Append map header to stream object
|
167
|
+
* \sa tnt_sbo_type
|
168
|
+
*/
|
169
|
+
ssize_t
|
170
|
+
tnt_object_add_map(struct tnt_stream *s, uint32_t size);
|
171
|
+
|
172
|
+
/**
|
173
|
+
* \brief Close array/map in case TNT_SBO_PACKED/TNT_SBO_SPARSE were used
|
174
|
+
* \sa tnt_sbo_type
|
175
|
+
*/
|
176
|
+
ssize_t
|
177
|
+
tnt_object_container_close(struct tnt_stream *s);
|
178
|
+
|
179
|
+
/**
|
180
|
+
* \brief create immutable tnt_object from given buffer
|
181
|
+
*/
|
182
|
+
struct tnt_stream *
|
183
|
+
tnt_object_as(struct tnt_stream *s, char *buf, size_t buf_len);
|
184
|
+
|
185
|
+
/**
|
186
|
+
* \brief verify that object is valid msgpack structure
|
187
|
+
* \param s object pointer
|
188
|
+
* \param type -1 on check without validating type, otherwise `enum mp_type`
|
189
|
+
*/
|
190
|
+
int
|
191
|
+
tnt_object_verify(struct tnt_stream *s, int8_t type);
|
192
|
+
|
193
|
+
/**
|
194
|
+
* \brief reset tnt_object to basic state
|
195
|
+
* this function doesn't deallocate memory, but instead it simply sets all
|
196
|
+
* pointers to beginning
|
197
|
+
*/
|
198
|
+
int
|
199
|
+
tnt_object_reset(struct tnt_stream *s);
|
200
|
+
|
201
|
+
/**
|
202
|
+
* \brief create tnt_object from format string/values (va_list variation)
|
203
|
+
*
|
204
|
+
* \code{.c}
|
205
|
+
* \*to get a msgpack array of two items: number 42 and map (0->"false, 2->"true")*\
|
206
|
+
* tnt_object_format(s, "[%d {%d%s%d%s}]", 42, 0, "false", 1, "true");
|
207
|
+
* \endcode
|
208
|
+
*
|
209
|
+
* \param s tnt_object instance
|
210
|
+
* \param fmt zero-end string, containing structure of resulting
|
211
|
+
* msgpack and types of next arguments.
|
212
|
+
* Format can contain '[' and ']' pairs, defining arrays,
|
213
|
+
* '{' and '}' pairs, defining maps, and format specifiers, described below:
|
214
|
+
* %d, %i - int
|
215
|
+
* %u - unsigned int
|
216
|
+
* %ld, %li - long
|
217
|
+
* %lu - unsigned long
|
218
|
+
* %lld, %lli - long long
|
219
|
+
* %llu - unsigned long long
|
220
|
+
* %hd, %hi - short
|
221
|
+
* %hu - unsigned short
|
222
|
+
* %hhd, %hhi - char (as number)
|
223
|
+
* %hhu - unsigned char (as number)
|
224
|
+
* %f - float
|
225
|
+
* %lf - double
|
226
|
+
* %b - bool
|
227
|
+
* %s - zero-end string
|
228
|
+
* %.*s - string with specified length
|
229
|
+
* %% is ignored
|
230
|
+
* %'smth else' assert and undefined behaviour
|
231
|
+
* NIL - a nil value
|
232
|
+
* all other symbols are ignored.
|
233
|
+
*
|
234
|
+
* \sa tnt_object_vformat
|
235
|
+
* \sa tnt_object_format
|
236
|
+
*/
|
237
|
+
ssize_t
|
238
|
+
tnt_object_format(struct tnt_stream *s, const char *fmt, ...);
|
239
|
+
|
240
|
+
/**
|
241
|
+
* \brief create tnt_object from format string/values
|
242
|
+
* \sa tnt_object_vformat
|
243
|
+
* \sa tnt_object_format
|
244
|
+
*/
|
245
|
+
ssize_t
|
246
|
+
tnt_object_vformat(struct tnt_stream *s, const char *fmt, va_list vl);
|
247
|
+
|
248
|
+
#endif /* TNT_OBJECT_H_INCLUDED */
|
@@ -0,0 +1,138 @@
|
|
1
|
+
#ifndef TNT_OPT_H_INCLUDED
|
2
|
+
#define TNT_OPT_H_INCLUDED
|
3
|
+
|
4
|
+
/*
|
5
|
+
* Redistribution and use in source and binary forms, with or
|
6
|
+
* without modification, are permitted provided that the following
|
7
|
+
* conditions are met:
|
8
|
+
*
|
9
|
+
* 1. Redistributions of source code must retain the above
|
10
|
+
* copyright notice, this list of conditions and the
|
11
|
+
* following disclaimer.
|
12
|
+
*
|
13
|
+
* 2. Redistributions in binary form must reproduce the above
|
14
|
+
* copyright notice, this list of conditions and the following
|
15
|
+
* disclaimer in the documentation and/or other materials
|
16
|
+
* provided with the distribution.
|
17
|
+
*
|
18
|
+
* THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ``AS IS'' AND
|
19
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
20
|
+
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
21
|
+
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
22
|
+
* <COPYRIGHT HOLDER> OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
23
|
+
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
24
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
25
|
+
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
26
|
+
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
27
|
+
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
28
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
29
|
+
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
30
|
+
* SUCH DAMAGE.
|
31
|
+
*/
|
32
|
+
|
33
|
+
#include <sys/time.h>
|
34
|
+
|
35
|
+
/**
|
36
|
+
* \file tnt_opt.h
|
37
|
+
* \brief Networking layer options
|
38
|
+
*/
|
39
|
+
|
40
|
+
struct tnt_iob;
|
41
|
+
|
42
|
+
/**
|
43
|
+
* \brief Callback type for read (instead of reading from socket)
|
44
|
+
*
|
45
|
+
* \param b context for read operation
|
46
|
+
* \param buf buf to read to
|
47
|
+
* \param len size to read
|
48
|
+
*
|
49
|
+
* \returns size that was read
|
50
|
+
* \retval -1 error, errno must be set
|
51
|
+
*/
|
52
|
+
typedef ssize_t (*recv_cb_t)(struct tnt_iob *b, void *buf, size_t len);
|
53
|
+
|
54
|
+
/**
|
55
|
+
* \brief Callback type for write (instead of writing into socket)
|
56
|
+
*
|
57
|
+
* \param b context for write operation
|
58
|
+
* \param buf buf to write
|
59
|
+
* \param len size to write
|
60
|
+
*
|
61
|
+
* \returns size that was written
|
62
|
+
* \retval -1 error, errno must be set
|
63
|
+
*/
|
64
|
+
typedef ssize_t (*send_cb_t)(struct tnt_iob *b, void *buf, size_t len);
|
65
|
+
|
66
|
+
/**
|
67
|
+
* \brief Callback type for write with iovec (instead of writing into socket)
|
68
|
+
*
|
69
|
+
* \param b context for write operation
|
70
|
+
* \param buf iovec to write
|
71
|
+
* \param len iovec len
|
72
|
+
*
|
73
|
+
* \returns size that was written
|
74
|
+
* \retval -1 error, errno must be set
|
75
|
+
*/
|
76
|
+
typedef ssize_t (*sendv_cb_t)(struct tnt_iob *b, const struct iovec *iov, int iov_count);
|
77
|
+
|
78
|
+
/**
|
79
|
+
* \brief Options for connection
|
80
|
+
*/
|
81
|
+
enum tnt_opt_type {
|
82
|
+
TNT_OPT_URI, /*!< Options for setting URI */
|
83
|
+
TNT_OPT_TMOUT_CONNECT, /*!< Option for setting timeout on connect */
|
84
|
+
TNT_OPT_TMOUT_RECV, /*!< Option for setting timeout on recv */
|
85
|
+
TNT_OPT_TMOUT_SEND, /*!< Option for setting timeout in send */
|
86
|
+
TNT_OPT_SEND_CB, /*!< callback, that's executed on send
|
87
|
+
* \sa send_cb_t
|
88
|
+
*/
|
89
|
+
TNT_OPT_SEND_CBV, /*!< callback, that's executed on send with iovector
|
90
|
+
* \sa sendv_cb_t
|
91
|
+
*/
|
92
|
+
TNT_OPT_SEND_CB_ARG, /*!< callback context for send */
|
93
|
+
TNT_OPT_SEND_BUF, /*!< Option for setting send buffer size */
|
94
|
+
TNT_OPT_RECV_CB, /*!< callback, that's executed on recv */
|
95
|
+
TNT_OPT_RECV_CB_ARG, /*!< callback context for recv
|
96
|
+
* \sa recv_cb_t
|
97
|
+
*/
|
98
|
+
TNT_OPT_RECV_BUF /*!< Option for setting recv buffer size */
|
99
|
+
};
|
100
|
+
|
101
|
+
/**
|
102
|
+
* \internal
|
103
|
+
* \brief structure, that is used for options
|
104
|
+
*/
|
105
|
+
struct tnt_opt {
|
106
|
+
const char *uristr;
|
107
|
+
struct uri *uri;
|
108
|
+
struct timeval tmout_connect;
|
109
|
+
struct timeval tmout_recv;
|
110
|
+
struct timeval tmout_send;
|
111
|
+
void *send_cb;
|
112
|
+
void *send_cbv;
|
113
|
+
void *send_cb_arg;
|
114
|
+
int send_buf;
|
115
|
+
void *recv_cb;
|
116
|
+
void *recv_cb_arg;
|
117
|
+
int recv_buf;
|
118
|
+
};
|
119
|
+
|
120
|
+
/**
|
121
|
+
* \internal
|
122
|
+
*/
|
123
|
+
int
|
124
|
+
tnt_opt_init(struct tnt_opt *opt);
|
125
|
+
|
126
|
+
/**
|
127
|
+
* \internal
|
128
|
+
*/
|
129
|
+
void
|
130
|
+
tnt_opt_free(struct tnt_opt *opt);
|
131
|
+
|
132
|
+
/**
|
133
|
+
* \internal
|
134
|
+
*/
|
135
|
+
int
|
136
|
+
tnt_opt_set(struct tnt_opt *opt, enum tnt_opt_type name, va_list args);
|
137
|
+
|
138
|
+
#endif /* TNT_OPT_H_INCLUDED */
|
@@ -0,0 +1,49 @@
|
|
1
|
+
#ifndef TNT_PING_H_INCLUDED
|
2
|
+
#define TNT_PING_H_INCLUDED
|
3
|
+
|
4
|
+
/*
|
5
|
+
* Redistribution and use in source and binary forms, with or
|
6
|
+
* without modification, are permitted provided that the following
|
7
|
+
* conditions are met:
|
8
|
+
*
|
9
|
+
* 1. Redistributions of source code must retain the above
|
10
|
+
* copyright notice, this list of conditions and the
|
11
|
+
* following disclaimer.
|
12
|
+
*
|
13
|
+
* 2. Redistributions in binary form must reproduce the above
|
14
|
+
* copyright notice, this list of conditions and the following
|
15
|
+
* disclaimer in the documentation and/or other materials
|
16
|
+
* provided with the distribution.
|
17
|
+
*
|
18
|
+
* THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ``AS IS'' AND
|
19
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
20
|
+
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
21
|
+
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
22
|
+
* <COPYRIGHT HOLDER> OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
23
|
+
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
24
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
25
|
+
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
26
|
+
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
27
|
+
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
28
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
29
|
+
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
30
|
+
* SUCH DAMAGE.
|
31
|
+
*/
|
32
|
+
|
33
|
+
/**
|
34
|
+
* \file tnt_ping.h
|
35
|
+
* \brief Ping request
|
36
|
+
*/
|
37
|
+
|
38
|
+
/**
|
39
|
+
* \brief Construct ping request and write it into stream
|
40
|
+
*
|
41
|
+
* \param s stream object to write request to
|
42
|
+
*
|
43
|
+
* \returns number of bytes written to stream
|
44
|
+
* \retval -1 oom
|
45
|
+
*/
|
46
|
+
ssize_t
|
47
|
+
tnt_ping(struct tnt_stream *s);
|
48
|
+
|
49
|
+
#endif /* TNT_PING_H_INCLUDED */
|