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,67 @@
|
|
1
|
+
#ifndef TNT_H_INCLUDED
|
2
|
+
#define TNT_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 tarantool.h
|
35
|
+
* \brief base header to include
|
36
|
+
*/
|
37
|
+
|
38
|
+
#ifdef __cplusplus
|
39
|
+
extern "C" {
|
40
|
+
#endif
|
41
|
+
|
42
|
+
#include <stdint.h>
|
43
|
+
#include <stdarg.h>
|
44
|
+
|
45
|
+
#include <tarantool/tnt_mem.h>
|
46
|
+
#include <tarantool/tnt_proto.h>
|
47
|
+
#include <tarantool/tnt_reply.h>
|
48
|
+
#include <tarantool/tnt_stream.h>
|
49
|
+
#include <tarantool/tnt_buf.h>
|
50
|
+
#include <tarantool/tnt_object.h>
|
51
|
+
#include <tarantool/tnt_iter.h>
|
52
|
+
#include <tarantool/tnt_call.h>
|
53
|
+
#include <tarantool/tnt_execute.h>
|
54
|
+
#include <tarantool/tnt_ping.h>
|
55
|
+
#include <tarantool/tnt_insert.h>
|
56
|
+
#include <tarantool/tnt_delete.h>
|
57
|
+
#include <tarantool/tnt_auth.h>
|
58
|
+
#include <tarantool/tnt_select.h>
|
59
|
+
#include <tarantool/tnt_update.h>
|
60
|
+
#include <tarantool/tnt_schema.h>
|
61
|
+
#include <tarantool/tnt_request.h>
|
62
|
+
|
63
|
+
#ifdef __cplusplus
|
64
|
+
} /* extern "C" */
|
65
|
+
#endif
|
66
|
+
|
67
|
+
#endif /* TNT_H_INCLUDED */
|
@@ -0,0 +1,72 @@
|
|
1
|
+
#ifndef TNT_AUTH_H_INCLUDED
|
2
|
+
#define TNT_AUTH_H_INCLUDED
|
3
|
+
/*
|
4
|
+
* Redistribution and use in source and binary forms, with or
|
5
|
+
* without modification, are permitted provided that the following
|
6
|
+
* conditions are met:
|
7
|
+
*
|
8
|
+
* 1. Redistributions of source code must retain the above
|
9
|
+
* copyright notice, this list of conditions and the
|
10
|
+
* following disclaimer.
|
11
|
+
*
|
12
|
+
* 2. Redistributions in binary form must reproduce the above
|
13
|
+
* copyright notice, this list of conditions and the following
|
14
|
+
* disclaimer in the documentation and/or other materials
|
15
|
+
* provided with the distribution.
|
16
|
+
*
|
17
|
+
* THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ``AS IS'' AND
|
18
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
19
|
+
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
20
|
+
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
21
|
+
* <COPYRIGHT HOLDER> OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
22
|
+
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
23
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
24
|
+
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
25
|
+
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
26
|
+
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
27
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
28
|
+
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
29
|
+
* SUCH DAMAGE.
|
30
|
+
*/
|
31
|
+
|
32
|
+
/**
|
33
|
+
* \file tnt_auth.h
|
34
|
+
* \brief aithentication request
|
35
|
+
*/
|
36
|
+
|
37
|
+
/**
|
38
|
+
* \brief Write authentication request to stream
|
39
|
+
*
|
40
|
+
* if user == NULL or user == "guest" then it'll be deauth
|
41
|
+
*
|
42
|
+
* \param s stream instance
|
43
|
+
* \param user user name
|
44
|
+
* \param ulen user name length
|
45
|
+
* \param pass password
|
46
|
+
* \param plen password length
|
47
|
+
*
|
48
|
+
* \retval number of bytes written to stream
|
49
|
+
*/
|
50
|
+
ssize_t
|
51
|
+
tnt_auth(struct tnt_stream *s, const char *user, int ulen, const char *pass,
|
52
|
+
int plen);
|
53
|
+
|
54
|
+
/**
|
55
|
+
* \brief tnt_auth version with providing base64 encoded salt from tarantool
|
56
|
+
*/
|
57
|
+
ssize_t
|
58
|
+
tnt_auth_raw(struct tnt_stream *s, const char *user, int ulen,
|
59
|
+
const char *pass, int plen, const char *base64_salt);
|
60
|
+
/**
|
61
|
+
* \brief Write deauth request to stream
|
62
|
+
*
|
63
|
+
* shortcut for tnt_auth(s, NULL, 0, NULL, 0)
|
64
|
+
*
|
65
|
+
* \param s stream instance
|
66
|
+
*
|
67
|
+
* \retval number of bytes written to stream
|
68
|
+
*/
|
69
|
+
ssize_t
|
70
|
+
tnt_deauth(struct tnt_stream *s);
|
71
|
+
|
72
|
+
#endif /* TNT_AUTH_H_INCLUDED */
|
@@ -0,0 +1,88 @@
|
|
1
|
+
#ifndef TNT_BUF_H_INCLUDED
|
2
|
+
#define TNT_BUF_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_buf.h
|
35
|
+
* \brief basic buffer structure
|
36
|
+
*/
|
37
|
+
|
38
|
+
/*!
|
39
|
+
* Type for resize function
|
40
|
+
*/
|
41
|
+
typedef char *(*tnt_buf_resize_t)(struct tnt_stream *, size_t);
|
42
|
+
|
43
|
+
/*!
|
44
|
+
* Stream buffer substructure
|
45
|
+
*/
|
46
|
+
struct tnt_stream_buf {
|
47
|
+
char *data; /*!< buffer data */
|
48
|
+
size_t size; /*!< buffer used */
|
49
|
+
size_t alloc; /*!< current buffer size */
|
50
|
+
size_t rdoff; /*!< read offset */
|
51
|
+
char *(*resize)(struct tnt_stream *, size_t); /*!< resize function */
|
52
|
+
void (*free)(struct tnt_stream *); /*!< custom free function */
|
53
|
+
void *subdata; /*!< subclass */
|
54
|
+
int as; /*!< constructed from user's string */
|
55
|
+
};
|
56
|
+
|
57
|
+
/* buffer stream accessors */
|
58
|
+
|
59
|
+
/*!
|
60
|
+
* \brief cast tnt_stream to tnt_stream_buf structure
|
61
|
+
*/
|
62
|
+
#define TNT_SBUF_CAST(S) ((struct tnt_stream_buf *)(S)->data)
|
63
|
+
/*!
|
64
|
+
* \brief get data field from tnt_stream_buf
|
65
|
+
*/
|
66
|
+
#define TNT_SBUF_DATA(S) TNT_SBUF_CAST(S)->data
|
67
|
+
/*!
|
68
|
+
* \brief get size field from tnt_stream_buf
|
69
|
+
*/
|
70
|
+
#define TNT_SBUF_SIZE(S) TNT_SBUF_CAST(S)->size
|
71
|
+
|
72
|
+
/**
|
73
|
+
* \brief Allocate and init stream buffer object
|
74
|
+
*
|
75
|
+
* if stream pointer is NULL, then new stream will be created.
|
76
|
+
*
|
77
|
+
* \param s pointer to allocated stream buffer
|
78
|
+
*
|
79
|
+
* \returns pointer to newly allocated sbuf object
|
80
|
+
* \retval NULL memory allocation failure
|
81
|
+
*/
|
82
|
+
struct tnt_stream *
|
83
|
+
tnt_buf(struct tnt_stream *s);
|
84
|
+
|
85
|
+
struct tnt_stream *
|
86
|
+
tnt_buf_as(struct tnt_stream *s, char *buf, size_t buf_len);
|
87
|
+
|
88
|
+
#endif /* TNT_BUF_H_INCLUDED */
|
@@ -0,0 +1,83 @@
|
|
1
|
+
#ifndef TNT_CALL_H_INCLUDED
|
2
|
+
#define TNT_CALL_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_call.h
|
35
|
+
* \brief Call request
|
36
|
+
*/
|
37
|
+
|
38
|
+
/**
|
39
|
+
* \brief Construct call request and write it into stream
|
40
|
+
*
|
41
|
+
* \param s stream object to write request to
|
42
|
+
* \param proc procedure to call
|
43
|
+
* \param plen procedure length
|
44
|
+
* \param args tnt_object instance with messagepack array with args to call
|
45
|
+
* procedure with
|
46
|
+
*
|
47
|
+
* \retval number of bytes written to stream
|
48
|
+
*/
|
49
|
+
ssize_t
|
50
|
+
tnt_call(struct tnt_stream *s, const char *proc, size_t plen,
|
51
|
+
struct tnt_stream *args);
|
52
|
+
|
53
|
+
/**
|
54
|
+
* \brief Construct call request and write it into stream
|
55
|
+
* Version for Tarantool 1.6
|
56
|
+
*
|
57
|
+
* \param s stream object to write request to
|
58
|
+
* \param proc procedure to call
|
59
|
+
* \param plen procedure length
|
60
|
+
* \param args tnt_object instance with messagepack array with args to call
|
61
|
+
* procedure with
|
62
|
+
*
|
63
|
+
* \retval number of bytes written to stream
|
64
|
+
*/
|
65
|
+
ssize_t
|
66
|
+
tnt_call_16(struct tnt_stream *s, const char *proc, size_t proc_len,
|
67
|
+
struct tnt_stream *args);
|
68
|
+
/**
|
69
|
+
* \brief Construct eval request and write it into stream
|
70
|
+
*
|
71
|
+
* \param s stream object to write request to
|
72
|
+
* \param expr expression to evaluate
|
73
|
+
* \param elen expression length
|
74
|
+
* \param args tnt_object instance with messagepack array with args to eval
|
75
|
+
* expression with
|
76
|
+
*
|
77
|
+
* \retval number of bytes written to stream
|
78
|
+
*/
|
79
|
+
ssize_t
|
80
|
+
tnt_eval(struct tnt_stream *s, const char *expr, size_t elen,
|
81
|
+
struct tnt_stream *args);
|
82
|
+
|
83
|
+
#endif /* TNT_CALL_H_INCLUDED */
|
@@ -0,0 +1,52 @@
|
|
1
|
+
#ifndef TNT_DELETE_H_INCLUDED
|
2
|
+
#define TNT_DELETE_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_delete.h
|
35
|
+
* \brief Delete request
|
36
|
+
*/
|
37
|
+
|
38
|
+
/**
|
39
|
+
* \brief Write delete request to stream
|
40
|
+
*
|
41
|
+
* \param s stream instance
|
42
|
+
* \param space space number to delete object from
|
43
|
+
* \param index index to search key in
|
44
|
+
* \param key key to delete tuple with
|
45
|
+
*
|
46
|
+
* \retval number of bytes written to stream
|
47
|
+
*/
|
48
|
+
ssize_t
|
49
|
+
tnt_delete(struct tnt_stream *s, uint32_t space, uint32_t index,
|
50
|
+
struct tnt_stream *key);
|
51
|
+
|
52
|
+
#endif /* TNT_DELETE_H_INCLUDED */
|
@@ -0,0 +1,24 @@
|
|
1
|
+
#ifndef TNT_EXECUTE_H_INCLUDED
|
2
|
+
#define TNT_EXECUTE_H_INCLUDED
|
3
|
+
|
4
|
+
/**
|
5
|
+
* \file tnt_execute.h
|
6
|
+
* \brief SQL execution request
|
7
|
+
*/
|
8
|
+
|
9
|
+
/**
|
10
|
+
* \brief Construct SQL request and write it into stream
|
11
|
+
*
|
12
|
+
* \param s stream object to write request to
|
13
|
+
* \param expr SQL query string
|
14
|
+
* \param elen query length
|
15
|
+
* \param args tnt_object instance with messagepack array with params
|
16
|
+
* to bind to the request
|
17
|
+
*
|
18
|
+
* \retval number of bytes written to stream
|
19
|
+
*/
|
20
|
+
ssize_t
|
21
|
+
tnt_execute(struct tnt_stream *s, const char *expr, size_t elen,
|
22
|
+
struct tnt_stream *params);
|
23
|
+
|
24
|
+
#endif /* TNT_EXECUTE_H_INCLUDED */
|
@@ -0,0 +1,62 @@
|
|
1
|
+
#ifndef TNT_INSERT_H_INCLUDED
|
2
|
+
#define TNT_INSERT_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_insert.h
|
35
|
+
* \brief Insert/Replace request
|
36
|
+
*/
|
37
|
+
|
38
|
+
/**
|
39
|
+
* \brief Construct insert request and write it into stream
|
40
|
+
*
|
41
|
+
* \param s stream object to write request to
|
42
|
+
* \param space space no to insert tuple into
|
43
|
+
* \param tuple (tnt_object instance) msgpack array with tuple to insert to
|
44
|
+
*
|
45
|
+
* \retval number of bytes written to stream
|
46
|
+
*/
|
47
|
+
ssize_t
|
48
|
+
tnt_insert(struct tnt_stream *s, uint32_t space, struct tnt_stream *tuple);
|
49
|
+
|
50
|
+
/**
|
51
|
+
* \brief Construct replace request and write it into stream
|
52
|
+
*
|
53
|
+
* \param s stream object to write request to
|
54
|
+
* \param space space no to replace tuple into
|
55
|
+
* \param tuple (tnt_object instance) msgpack array with tuple to replace to
|
56
|
+
*
|
57
|
+
* \retval number of bytes written to stream
|
58
|
+
*/
|
59
|
+
ssize_t
|
60
|
+
tnt_replace(struct tnt_stream *s, uint32_t space, struct tnt_stream *tuple);
|
61
|
+
|
62
|
+
#endif /* TNT_INSERT_H_INCLUDED */
|
@@ -0,0 +1,67 @@
|
|
1
|
+
#ifndef TNT_IO_H_INCLUDED
|
2
|
+
#define TNT_IO_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/uio.h>
|
34
|
+
#include <tarantool/tnt_net.h>
|
35
|
+
|
36
|
+
/**
|
37
|
+
* \internal
|
38
|
+
* \file tnt_io.h
|
39
|
+
* \brief Basic network layer io
|
40
|
+
*/
|
41
|
+
|
42
|
+
enum tnt_error
|
43
|
+
tnt_io_connect(struct tnt_stream_net *s);
|
44
|
+
void
|
45
|
+
tnt_io_close(struct tnt_stream_net *s);
|
46
|
+
|
47
|
+
ssize_t
|
48
|
+
tnt_io_flush(struct tnt_stream_net *s);
|
49
|
+
|
50
|
+
ssize_t
|
51
|
+
tnt_io_send_raw(struct tnt_stream_net *s, const char *buf,
|
52
|
+
size_t size, int all);
|
53
|
+
ssize_t
|
54
|
+
tnt_io_sendv_raw(struct tnt_stream_net *s, struct iovec *iov,
|
55
|
+
int count, int all);
|
56
|
+
ssize_t
|
57
|
+
tnt_io_recv_raw(struct tnt_stream_net *s, char *buf, size_t size, int all);
|
58
|
+
|
59
|
+
ssize_t
|
60
|
+
tnt_io_send(struct tnt_stream_net *s, const char *buf, size_t size);
|
61
|
+
ssize_t
|
62
|
+
tnt_io_sendv(struct tnt_stream_net *s, struct iovec *iov, int count);
|
63
|
+
ssize_t
|
64
|
+
tnt_io_recv(struct tnt_stream_net *s, char *buf, size_t size);
|
65
|
+
|
66
|
+
int getiovmax();
|
67
|
+
#endif /* TNT_IO_H_INCLUDED */
|
@@ -0,0 +1,62 @@
|
|
1
|
+
#ifndef TNT_IOB_H_INCLUDED
|
2
|
+
#define TNT_IOB_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
|
+
* \internal
|
35
|
+
* \file tnt_iob.h
|
36
|
+
* \brief Basic network layer static sized buffer
|
37
|
+
*/
|
38
|
+
|
39
|
+
typedef ssize_t (*tnt_iob_tx_t)(void *ptr, const char *buf, size_t size);
|
40
|
+
typedef ssize_t (*tnt_iob_txv_t)(void *ptr, struct iovec *iov, int count);
|
41
|
+
|
42
|
+
struct tnt_iob {
|
43
|
+
char *buf;
|
44
|
+
size_t off;
|
45
|
+
size_t top;
|
46
|
+
size_t size;
|
47
|
+
tnt_iob_tx_t tx;
|
48
|
+
tnt_iob_txv_t txv;
|
49
|
+
void *ptr;
|
50
|
+
};
|
51
|
+
|
52
|
+
int
|
53
|
+
tnt_iob_init(struct tnt_iob *iob, size_t size, tnt_iob_tx_t tx,
|
54
|
+
tnt_iob_txv_t txv, void *ptr);
|
55
|
+
|
56
|
+
void
|
57
|
+
tnt_iob_clear(struct tnt_iob *iob);
|
58
|
+
|
59
|
+
void
|
60
|
+
tnt_iob_free(struct tnt_iob *iob);
|
61
|
+
|
62
|
+
#endif /* TNT_IOB_H_INCLUDED */
|