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,172 @@
1
+ #if defined(__cplusplus)
2
+ extern "C" {
3
+ #endif /* defined(__cplusplus) */
4
+
5
+ struct assoc_key {
6
+ const char *id;
7
+ uint32_t id_len;
8
+ };
9
+
10
+ struct assoc_val {
11
+ struct assoc_key key;
12
+ void *data;
13
+ };
14
+
15
+ static inline int
16
+ mh_cmp_eq(
17
+ const struct assoc_val **lval,
18
+ const struct assoc_val **rval,
19
+ void *arg) {
20
+ (void )arg;
21
+ if ((*lval)->key.id_len != (*rval)->key.id_len) return 0;
22
+ return !memcmp((*lval)->key.id, (*rval)->key.id, (*rval)->key.id_len);
23
+ }
24
+
25
+ static inline int
26
+ mh_cmp_key_eq(
27
+ const struct assoc_key *key,
28
+ const struct assoc_val **val,
29
+ void *arg) {
30
+ (void )arg;
31
+ if (key->id_len != (*val)->key.id_len) return 0;
32
+ return !memcmp(key->id, (*val)->key.id, key->id_len);
33
+ }
34
+
35
+ static inline void *
36
+ tnt_mem_calloc(size_t count, size_t size) {
37
+ size_t sz = count * size;
38
+ void *alloc = tnt_mem_alloc(sz);
39
+ if (!alloc) return 0;
40
+ memset(alloc, 0, sz);
41
+ return alloc;
42
+
43
+ }
44
+
45
+ #define mh_arg_t void *
46
+
47
+ #define mh_eq(a, b, arg) mh_cmp_eq(a, b, arg)
48
+ #define mh_eq_key(a, b, arg) mh_cmp_key_eq(a, b, arg)
49
+ #define mh_hash(x, arg) PMurHash32(MUR_SEED, (*x)->key.id, (*x)->key.id_len)
50
+ #define mh_hash_key(x, arg) PMurHash32(MUR_SEED, (x)->id, (x)->id_len);
51
+
52
+ /* type for hash value */
53
+ #define mh_node_t struct assoc_val *
54
+ /* type for hash key */
55
+ #define mh_key_t const struct assoc_key *
56
+
57
+ #define MH_CALLOC(x, y) tnt_mem_calloc((x), (y))
58
+ #define MH_FREE(x) tnt_mem_free((x))
59
+
60
+ #define mh_name _assoc
61
+ #define MUR_SEED 13
62
+ #include <PMurHash.h>
63
+ #include <mhash.h>
64
+
65
+ /*!
66
+ * \file tnt_assoc.h
67
+ */
68
+
69
+ /*! \struct mh_assoc_t */
70
+
71
+ /*! \fn void mh_assoc_clear(struct mh_assoc_t *h)
72
+ * \brief Clear an associate array
73
+ * \param h associate array
74
+ */
75
+
76
+ /*! \fn void mh_assoc_delete(struct mh_assoc_t *h)
77
+ * \brief Free an associate array
78
+ * \param h associate array
79
+ */
80
+
81
+ /*! \fn void mh_assoc_reserve(struct mh_assoc_t *h, uint32_t size, void *arg)
82
+ * \brief Reserve place for elements
83
+ * \param h associate array
84
+ * \param size count of elements
85
+ * \param arg context for (eq/hash functions) (must be NULL)
86
+ */
87
+
88
+ /*! \fn mh_node_t *mh_assoc_node(struct mh_assoc_t *h, uint32_t x)
89
+ * \brief Access value in specified slot
90
+ * \param h associate array
91
+ * \param x slot number
92
+ * \retval value in slot
93
+ */
94
+
95
+ /*! \fn uint32_t mh_assoc_find(struct mh_assoc_t *h, mh_key_t key, void *arg)
96
+ * \brief Search for element by key
97
+ * \param h associate array
98
+ * \param key key to search for
99
+ * \param arg context for (eq/hash functions) (must be NULL)
100
+ *
101
+ * \retval != mh_end() slot number, where element is contained
102
+ * \retval mh_end() not found
103
+ *
104
+ * See also: \see mh_assoc_get or \see mh_assoc_find
105
+ */
106
+
107
+ /*! \fn uint32_t mh_assoc_get(struct mh_assoc_t *h, mh_node_t *node, void *arg)
108
+ * \brief Search for element by value
109
+ * \param h associate array
110
+ * \param node node to search for
111
+ * \param arg context for (eq/hash functions) (must be NULL)
112
+ *
113
+ * \retval != mh_end() slot number, where element is contained
114
+ * \retval mh_end() not found
115
+ *
116
+ * See also: \see mh_assoc_get or \see mh_assoc_find
117
+ */
118
+
119
+ /*! \fn uint32_t mh_assoc_random(struct mh_assoc_t *h, uint32_t rnd)
120
+ * \brief get random slot with existing element
121
+ * \param h associate array
122
+ * \param rnd random number
123
+ *
124
+ * \retval != mh_end() pos of the random node
125
+ * \retval mh_end() last one
126
+ */
127
+
128
+ /*! \fn uint32_t mh_assoc_put(struct mh_assoc_t *h, const mh_node_t *node,
129
+ * mh_node_t **ret, void *arg)
130
+ * \brief put element into hash
131
+ * \param h[in] associate array
132
+ * \param node[in] node to insert
133
+ * \param ret[out] node, that's replaced
134
+ * \param arg[in] context for (eq/hash functions) (must be NULL)
135
+ *
136
+ * Find a node in the hash and replace it with a new value.
137
+ * Save the old node in ret pointer, if it is provided.
138
+ * If the old node didn't exist, just insert the new node.
139
+ *
140
+ * \retval != mh_end() pos of the new node, ret is either NULL
141
+ * or copy of the old node
142
+ * \retval mh_end() out of memory, ret is unchanged.
143
+ */
144
+
145
+ /*! \fn void mh_assoc_del(struct mh_assoc_t *h, uint32_t x, void *arg)
146
+ * \brief delete element from specified slot
147
+ * \param h associate array
148
+ * \param x slot to delete element from
149
+ * \param arg context for (eq/hash functions) (must be NULL)
150
+ */
151
+
152
+ /*! \fn void mh_assoc_remove(struct mh_assoc_t *h, mh_node_t node, void *arg)
153
+ * \brief delete specified element from assoc hash
154
+ * \param h associate array
155
+ * \param node node to delete
156
+ * \param arg context for (eq/hash functions) (must be NULL)
157
+ */
158
+
159
+ /*! \fn struct mh_assoc_t *mh_assoc_new()
160
+ * \brief allocate and initialize new associate array
161
+ * \retval !NULL new associate array
162
+ * \retval NULL memory allocation error
163
+ */
164
+
165
+ /*! \def mh_first(hash) */
166
+ /*! \def mh_next(hash) */
167
+ /*! \def mh_end(hash) */
168
+ /*! \def mh_foreach(hash, iter) */
169
+
170
+ #if defined(__cplusplus)
171
+ }
172
+ #endif /* defined(__cplusplus) */
@@ -0,0 +1,118 @@
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 <tarantool/tnt_net.h>
14
+
15
+ #include <sha1.h>
16
+ #include <base64.h>
17
+
18
+ #include "tnt_proto_internal.h"
19
+
20
+ static inline void
21
+ tnt_xor(unsigned char *to, const unsigned char *left,
22
+ const unsigned char *right, uint32_t len)
23
+ {
24
+ const uint8_t *end = to + len;
25
+ while (to < end)
26
+ *to++= *left++ ^ *right++;
27
+ }
28
+ static inline void
29
+ tnt_scramble_prepare(void *out, const void *salt, const void *pass, int plen)
30
+ {
31
+ unsigned char hash1[TNT_SCRAMBLE_SIZE];
32
+ unsigned char hash2[TNT_SCRAMBLE_SIZE];
33
+ SHA1_CTX ctx;
34
+
35
+ SHA1Init(&ctx);
36
+ SHA1Update(&ctx, (const unsigned char *) pass, plen);
37
+ SHA1Final(hash1, &ctx);
38
+
39
+ SHA1Init(&ctx);
40
+ SHA1Update(&ctx, hash1, TNT_SCRAMBLE_SIZE);
41
+ SHA1Final(hash2, &ctx);
42
+
43
+ SHA1Init(&ctx);
44
+ SHA1Update(&ctx, (const unsigned char *) salt, TNT_SCRAMBLE_SIZE);
45
+ SHA1Update(&ctx, hash2, TNT_SCRAMBLE_SIZE);
46
+ SHA1Final((unsigned char *) out, &ctx);
47
+
48
+ tnt_xor((unsigned char *) out, hash1, (const unsigned char *) out,
49
+ TNT_SCRAMBLE_SIZE);
50
+ }
51
+
52
+
53
+ ssize_t
54
+ tnt_auth_raw(struct tnt_stream *s, const char *user, int ulen,
55
+ const char *pass, int plen, const char *base64_salt)
56
+ {
57
+ struct tnt_iheader hdr;
58
+ struct iovec v[6]; int v_sz = 5;
59
+ char *data = NULL, *body_start = NULL;
60
+ int guest = !user || (ulen == 5 && !strncmp(user, "guest", 5));
61
+ if (guest) {
62
+ user = "guest";
63
+ ulen = 5;
64
+ }
65
+ encode_header(&hdr, TNT_OP_AUTH, s->reqid++);
66
+ v[1].iov_base = (void *)hdr.header;
67
+ v[1].iov_len = hdr.end - hdr.header;
68
+ char body[64]; data = body; body_start = data;
69
+
70
+ data = mp_encode_map(data, 2);
71
+ data = mp_encode_uint(data, TNT_USERNAME);
72
+ data = mp_encode_strl(data, ulen);
73
+ v[2].iov_base = body_start;
74
+ v[2].iov_len = data - body_start;
75
+ v[3].iov_base = (void *)user;
76
+ v[3].iov_len = ulen;
77
+ body_start = data;
78
+ data = mp_encode_uint(data, TNT_TUPLE);
79
+ char salt[64], scramble[TNT_SCRAMBLE_SIZE];
80
+ if (!guest) {
81
+ data = mp_encode_array(data, 2);
82
+ data = mp_encode_str(data, "chap-sha1", strlen("chap-sha1"));
83
+ data = mp_encode_strl(data, TNT_SCRAMBLE_SIZE);
84
+ base64_decode(base64_salt, TNT_SALT_SIZE, salt, 64);
85
+ tnt_scramble_prepare(scramble, salt, pass, plen);
86
+ v[5].iov_base = scramble;
87
+ v[5].iov_len = TNT_SCRAMBLE_SIZE;
88
+ v_sz++;
89
+ } else {
90
+ data = mp_encode_array(data, 0);
91
+ }
92
+ v[4].iov_base = body_start;
93
+ v[4].iov_len = data - body_start;
94
+
95
+ size_t package_len = 0;
96
+ for (int i = 1; i < v_sz; ++i) {
97
+ package_len += v[i].iov_len;
98
+ }
99
+ char len_prefix[9];
100
+ char *len_end = mp_encode_luint32(len_prefix, package_len);
101
+ v[0].iov_base = len_prefix;
102
+ v[0].iov_len = len_end - len_prefix;
103
+ return s->writev(s, v, v_sz);
104
+ }
105
+
106
+ ssize_t
107
+ tnt_auth(struct tnt_stream *s, const char *user, int ulen,
108
+ const char *pass, int plen)
109
+ {
110
+ return tnt_auth_raw(s, user, ulen, pass, plen,
111
+ TNT_SNET_CAST(s)->greeting + TNT_VERSION_SIZE);
112
+ }
113
+
114
+ ssize_t
115
+ tnt_deauth(struct tnt_stream *s)
116
+ {
117
+ return tnt_auth(s, NULL, 0, NULL, 0);
118
+ }
@@ -0,0 +1,171 @@
1
+
2
+ /*
3
+ * Redistribution and use in source and binary forms, with or
4
+ * without modification, are permitted provided that the following
5
+ * conditions are met:
6
+ *
7
+ * 1. Redistributions of source code must retain the above
8
+ * copyright notice, this list of conditions and the
9
+ * following disclaimer.
10
+ *
11
+ * 2. Redistributions in binary form must reproduce the above
12
+ * copyright notice, this list of conditions and the following
13
+ * disclaimer in the documentation and/or other materials
14
+ * provided with the distribution.
15
+ *
16
+ * THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ``AS IS'' AND
17
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
20
+ * <COPYRIGHT HOLDER> OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
21
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
24
+ * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25
+ * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
27
+ * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28
+ * SUCH DAMAGE.
29
+ */
30
+
31
+ #include <stdlib.h>
32
+ #include <stdint.h>
33
+ #include <string.h>
34
+ #include <sys/types.h>
35
+ #include <tarantool/tnt_mem.h>
36
+ #include <tarantool/tnt_proto.h>
37
+ #include <tarantool/tnt_reply.h>
38
+ #include <tarantool/tnt_stream.h>
39
+ #include <tarantool/tnt_buf.h>
40
+
41
+ static void tnt_buf_free(struct tnt_stream *s) {
42
+ struct tnt_stream_buf *sb = TNT_SBUF_CAST(s);
43
+ if (!sb->as && sb->data)
44
+ tnt_mem_free(sb->data);
45
+ if (sb->free)
46
+ sb->free(s);
47
+ tnt_mem_free(s->data);
48
+ s->data = NULL;
49
+ }
50
+
51
+ static ssize_t
52
+ tnt_buf_read(struct tnt_stream *s, char *buf, size_t size) {
53
+ struct tnt_stream_buf *sb = TNT_SBUF_CAST(s);
54
+ if (sb->data == NULL)
55
+ return 0;
56
+ if (sb->size == sb->rdoff)
57
+ return 0;
58
+ size_t avail = sb->size - sb->rdoff;
59
+ if (size > avail)
60
+ size = avail;
61
+ memcpy(sb->data + sb->rdoff, buf, size);
62
+ sb->rdoff += size;
63
+ return size;
64
+ }
65
+
66
+ static char* tnt_buf_resize(struct tnt_stream *s, size_t size) {
67
+ struct tnt_stream_buf *sb = TNT_SBUF_CAST(s);
68
+ size_t off = sb->size;
69
+ size_t nsize = off + size;
70
+ char *nd = tnt_mem_realloc(sb->data, nsize);
71
+ if (nd == NULL) {
72
+ tnt_mem_free(sb->data);
73
+ return NULL;
74
+ }
75
+ sb->data = nd;
76
+ sb->alloc = nsize;
77
+ return sb->data + off;
78
+ }
79
+
80
+ static ssize_t
81
+ tnt_buf_write(struct tnt_stream *s, const char *buf, size_t size) {
82
+ if (TNT_SBUF_CAST(s)->as == 1) return -1;
83
+ char *p = TNT_SBUF_CAST(s)->resize(s, size);
84
+ if (p == NULL)
85
+ return -1;
86
+ memcpy(p, buf, size);
87
+ TNT_SBUF_CAST(s)->size += size;
88
+ s->wrcnt++;
89
+ return size;
90
+ }
91
+
92
+ static ssize_t
93
+ tnt_buf_writev(struct tnt_stream *s, struct iovec *iov, int count) {
94
+ if (TNT_SBUF_CAST(s)->as == 1) return -1;
95
+ size_t size = 0;
96
+ int i;
97
+ for (i = 0 ; i < count ; i++)
98
+ size += iov[i].iov_len;
99
+ char *p = TNT_SBUF_CAST(s)->resize(s, size);
100
+ if (p == NULL)
101
+ return -1;
102
+ for (i = 0 ; i < count ; i++) {
103
+ memcpy(p, iov[i].iov_base, iov[i].iov_len);
104
+ p += iov[i].iov_len;
105
+ }
106
+ TNT_SBUF_CAST(s)->size += size;
107
+ s->wrcnt++;
108
+ return size;
109
+ }
110
+
111
+ static int
112
+ tnt_buf_reply(struct tnt_stream *s, struct tnt_reply *r) {
113
+ struct tnt_stream_buf *sb = TNT_SBUF_CAST(s);
114
+ if (sb->data == NULL)
115
+ return -1;
116
+ if (sb->size == sb->rdoff)
117
+ return 1;
118
+ size_t off = 0;
119
+ int rc = tnt_reply(r, sb->data + sb->rdoff, sb->size - sb->rdoff, &off);
120
+ if (rc == 0)
121
+ sb->rdoff += off;
122
+ return rc;
123
+ }
124
+
125
+ struct tnt_stream *tnt_buf(struct tnt_stream *s) {
126
+ int allocated = s == NULL;
127
+ s = tnt_stream_init(s);
128
+ if (s == NULL)
129
+ return NULL;
130
+ /* allocating stream data */
131
+ s->data = tnt_mem_alloc(sizeof(struct tnt_stream_buf));
132
+ if (s->data == NULL) {
133
+ if (allocated)
134
+ tnt_stream_free(s);
135
+ return NULL;
136
+ }
137
+ /* initializing interfaces */
138
+ s->read = tnt_buf_read;
139
+ s->read_reply = tnt_buf_reply;
140
+ s->write = tnt_buf_write;
141
+ s->writev = tnt_buf_writev;
142
+ s->free = tnt_buf_free;
143
+ /* initializing internal data */
144
+ struct tnt_stream_buf *sb = TNT_SBUF_CAST(s);
145
+ sb->rdoff = 0;
146
+ sb->size = 0;
147
+ sb->alloc = 0;
148
+ sb->data = NULL;
149
+ sb->resize = tnt_buf_resize;
150
+ sb->free = NULL;
151
+ sb->subdata = NULL;
152
+ sb->as = 0;
153
+ return s;
154
+ }
155
+
156
+ struct tnt_stream *tnt_buf_as(struct tnt_stream *s, char *buf, size_t buf_len)
157
+ {
158
+ if (s == NULL) {
159
+ s = tnt_buf(s);
160
+ if (s == NULL)
161
+ return NULL;
162
+ }
163
+ struct tnt_stream_buf *sb = TNT_SBUF_CAST(s);
164
+
165
+ sb->data = buf;
166
+ sb->size = buf_len;
167
+ sb->alloc = buf_len;
168
+ sb->as = 1;
169
+
170
+ return s;
171
+ }
@@ -0,0 +1,79 @@
1
+ #include <assert.h>
2
+ #include <stddef.h>
3
+ #include <stdint.h>
4
+ #include <limits.h>
5
+ #include <string.h>
6
+ #include <stdbool.h>
7
+ #include <sys/types.h>
8
+
9
+ #include <msgpuck.h>
10
+
11
+ #include <tarantool/tnt_reply.h>
12
+ #include <tarantool/tnt_stream.h>
13
+ #include <tarantool/tnt_buf.h>
14
+ #include <tarantool/tnt_object.h>
15
+ #include <tarantool/tnt_call.h>
16
+
17
+ #include "tnt_proto_internal.h"
18
+
19
+ static ssize_t
20
+ tnt_rpc_base(struct tnt_stream *s, const char *proc, size_t proc_len,
21
+ struct tnt_stream *args, enum tnt_request_t op)
22
+ {
23
+ if (!proc || proc_len == 0)
24
+ return -1;
25
+ if (tnt_object_verify(args, MP_ARRAY))
26
+ return -1;
27
+ uint32_t fld = (is_call(op) ? TNT_FUNCTION : TNT_EXPRESSION);
28
+ struct tnt_iheader hdr;
29
+ struct iovec v[6]; int v_sz = 6;
30
+ char *data = NULL, *body_start = NULL;
31
+ encode_header(&hdr, op, s->reqid++);
32
+ v[1].iov_base = (void *)hdr.header;
33
+ v[1].iov_len = hdr.end - hdr.header;
34
+ char body[64]; body_start = body; data = body;
35
+
36
+ data = mp_encode_map(data, 2);
37
+ data = mp_encode_uint(data, fld);
38
+ data = mp_encode_strl(data, proc_len);
39
+ v[2].iov_base = body_start;
40
+ v[2].iov_len = data - body_start;
41
+ v[3].iov_base = (void *)proc;
42
+ v[3].iov_len = proc_len;
43
+ body_start = data;
44
+ data = mp_encode_uint(data, TNT_TUPLE);
45
+ v[4].iov_base = body_start;
46
+ v[4].iov_len = data - body_start;
47
+ v[5].iov_base = TNT_SBUF_DATA(args);
48
+ v[5].iov_len = TNT_SBUF_SIZE(args);
49
+
50
+ size_t package_len = 0;
51
+ for (int i = 1; i < v_sz; ++i)
52
+ package_len += v[i].iov_len;
53
+ char len_prefix[9];
54
+ char *len_end = mp_encode_luint32(len_prefix, package_len);
55
+ v[0].iov_base = len_prefix;
56
+ v[0].iov_len = len_end - len_prefix;
57
+ return s->writev(s, v, v_sz);
58
+ }
59
+
60
+ ssize_t
61
+ tnt_call(struct tnt_stream *s, const char *proc, size_t proc_len,
62
+ struct tnt_stream *args)
63
+ {
64
+ return tnt_rpc_base(s, proc, proc_len, args, TNT_OP_CALL);
65
+ }
66
+
67
+ ssize_t
68
+ tnt_call_16(struct tnt_stream *s, const char *proc, size_t proc_len,
69
+ struct tnt_stream *args)
70
+ {
71
+ return tnt_rpc_base(s, proc, proc_len, args, TNT_OP_CALL_16);
72
+ }
73
+
74
+ ssize_t
75
+ tnt_eval(struct tnt_stream *s, const char *proc, size_t proc_len,
76
+ struct tnt_stream *args)
77
+ {
78
+ return tnt_rpc_base(s, proc, proc_len, args, TNT_OP_EVAL);
79
+ }
@@ -0,0 +1,52 @@
1
+ #include <assert.h>
2
+ #include <stddef.h>
3
+ #include <stdint.h>
4
+ #include <limits.h>
5
+ #include <string.h>
6
+ #include <stdbool.h>
7
+
8
+ #include <msgpuck.h>
9
+ #include <sys/types.h>
10
+
11
+ #include <tarantool/tnt_reply.h>
12
+ #include <tarantool/tnt_stream.h>
13
+ #include <tarantool/tnt_buf.h>
14
+ #include <tarantool/tnt_object.h>
15
+ #include <tarantool/tnt_delete.h>
16
+
17
+ #include "tnt_proto_internal.h"
18
+
19
+ ssize_t
20
+ tnt_delete(struct tnt_stream *s, uint32_t space, uint32_t index,
21
+ struct tnt_stream *key)
22
+ {
23
+ if (tnt_object_verify(key, MP_ARRAY))
24
+ return -1;
25
+ struct tnt_iheader hdr;
26
+ struct iovec v[4]; int v_sz = 4;
27
+ char *data = NULL;
28
+ encode_header(&hdr, TNT_OP_DELETE, s->reqid++);
29
+ v[1].iov_base = (void *)hdr.header;
30
+ v[1].iov_len = hdr.end - hdr.header;
31
+ char body[64]; data = body;
32
+
33
+ data = mp_encode_map(data, 3);
34
+ data = mp_encode_uint(data, TNT_SPACE);
35
+ data = mp_encode_uint(data, space);
36
+ data = mp_encode_uint(data, TNT_INDEX);
37
+ data = mp_encode_uint(data, index);
38
+ data = mp_encode_uint(data, TNT_KEY);
39
+ v[2].iov_base = body;
40
+ v[2].iov_len = data - body;
41
+ v[3].iov_base = TNT_SBUF_DATA(key);
42
+ v[3].iov_len = TNT_SBUF_SIZE(key);
43
+
44
+ size_t package_len = 0;
45
+ for (int i = 1; i < v_sz; ++i)
46
+ package_len += v[i].iov_len;
47
+ char len_prefix[9];
48
+ char *len_end = mp_encode_luint32(len_prefix, package_len);
49
+ v[0].iov_base = len_prefix;
50
+ v[0].iov_len = len_end - len_prefix;
51
+ return s->writev(s, v, v_sz);
52
+ }
@@ -0,0 +1,60 @@
1
+ #include <assert.h>
2
+ #include <stddef.h>
3
+ #include <stdint.h>
4
+ #include <limits.h>
5
+ #include <string.h>
6
+ #include <stdbool.h>
7
+ #include <sys/types.h>
8
+
9
+ #include <msgpuck.h>
10
+
11
+ #include <tarantool/tnt_reply.h>
12
+ #include <tarantool/tnt_stream.h>
13
+ #include <tarantool/tnt_buf.h>
14
+ #include <tarantool/tnt_object.h>
15
+ #include <tarantool/tnt_execute.h>
16
+
17
+ #include "tnt_proto_internal.h"
18
+
19
+ ssize_t
20
+ tnt_execute(struct tnt_stream *s, const char *expr, size_t elen,
21
+ struct tnt_stream *params)
22
+ {
23
+ if (!expr || elen == 0)
24
+ return -1;
25
+ if (tnt_object_verify(params, MP_ARRAY))
26
+ return -1;
27
+ struct tnt_iheader hdr;
28
+ struct iovec v[6];
29
+ int v_sz = 6;
30
+ char *data = NULL, *body_start = NULL;
31
+ encode_header(&hdr, TNT_OP_EXECUTE, s->reqid++);
32
+ v[1].iov_base = (void *) hdr.header;
33
+ v[1].iov_len = hdr.end - hdr.header;
34
+ char body[64];
35
+ body_start = body;
36
+ data = body;
37
+
38
+ data = mp_encode_map(data, 2);
39
+ data = mp_encode_uint(data, TNT_SQL_TEXT);
40
+ data = mp_encode_strl(data, elen);
41
+ v[2].iov_base = body_start;
42
+ v[2].iov_len = data - body_start;
43
+ v[3].iov_base = (void *) expr;
44
+ v[3].iov_len = elen;
45
+ body_start = data;
46
+ data = mp_encode_uint(data, TNT_SQL_BIND);
47
+ v[4].iov_base = body_start;
48
+ v[4].iov_len = data - body_start;
49
+ v[5].iov_base = TNT_SBUF_DATA(params);
50
+ v[5].iov_len = TNT_SBUF_SIZE(params);
51
+
52
+ size_t package_len = 0;
53
+ for (int i = 1; i < v_sz; ++i)
54
+ package_len += v[i].iov_len;
55
+ char len_prefix[9];
56
+ char *len_end = mp_encode_luint32(len_prefix, package_len);
57
+ v[0].iov_base = len_prefix;
58
+ v[0].iov_len = len_end - len_prefix;
59
+ return s->writev(s, v, v_sz);
60
+ }
@@ -0,0 +1,60 @@
1
+ #include <stddef.h>
2
+ #include <stdint.h>
3
+ #include <limits.h>
4
+ #include <string.h>
5
+ #include <stdbool.h>
6
+
7
+ #include <msgpuck.h>
8
+
9
+ #include <tarantool/tnt_reply.h>
10
+ #include <tarantool/tnt_stream.h>
11
+ #include <tarantool/tnt_buf.h>
12
+ #include <tarantool/tnt_object.h>
13
+ #include <tarantool/tnt_insert.h>
14
+
15
+ #include "tnt_proto_internal.h"
16
+
17
+ static ssize_t
18
+ tnt_store_base(struct tnt_stream *s, uint32_t space, struct tnt_stream *tuple,
19
+ enum tnt_request_t op)
20
+ {
21
+ if (tnt_object_verify(tuple, MP_ARRAY))
22
+ return -1;
23
+ struct tnt_iheader hdr;
24
+ struct iovec v[4]; int v_sz = 4;
25
+ char *data = NULL;
26
+ encode_header(&hdr, op, s->reqid++);
27
+ v[1].iov_base = (void *)hdr.header;
28
+ v[1].iov_len = hdr.end - hdr.header;
29
+ char body[64]; data = body;
30
+
31
+ data = mp_encode_map(data, 2);
32
+ data = mp_encode_uint(data, TNT_SPACE);
33
+ data = mp_encode_uint(data, space);
34
+ data = mp_encode_uint(data, TNT_TUPLE);
35
+ v[2].iov_base = body;
36
+ v[2].iov_len = data - body;
37
+ v[3].iov_base = TNT_SBUF_DATA(tuple);
38
+ v[3].iov_len = TNT_SBUF_SIZE(tuple);
39
+
40
+ size_t package_len = 0;
41
+ for (int i = 1; i < v_sz; ++i)
42
+ package_len += v[i].iov_len;
43
+ char len_prefix[9];
44
+ char *len_end = mp_encode_luint32(len_prefix, package_len);
45
+ v[0].iov_base = len_prefix;
46
+ v[0].iov_len = len_end - len_prefix;
47
+ return s->writev(s, v, v_sz);
48
+ }
49
+
50
+ ssize_t
51
+ tnt_insert(struct tnt_stream *s, uint32_t space, struct tnt_stream *tuple)
52
+ {
53
+ return tnt_store_base(s, space, tuple, TNT_OP_INSERT);
54
+ }
55
+
56
+ ssize_t
57
+ tnt_replace(struct tnt_stream *s, uint32_t space, struct tnt_stream *tuple)
58
+ {
59
+ return tnt_store_base(s, space, tuple, TNT_OP_REPLACE);
60
+ }