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,119 @@
|
|
1
|
+
#ifndef TNT_LOG_H_INCLUDED
|
2
|
+
#define TNT_LOG_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
|
+
#define TNT_LOG_MAGIC_XLOG "XLOG\n"
|
34
|
+
#define TNT_LOG_MAGIC_SNAP "SNAP\n"
|
35
|
+
#define TNT_LOG_VERSION "0.11\n"
|
36
|
+
|
37
|
+
enum tnt_log_error {
|
38
|
+
TNT_LOG_EOK,
|
39
|
+
TNT_LOG_EFAIL,
|
40
|
+
TNT_LOG_EMEMORY,
|
41
|
+
TNT_LOG_ETYPE,
|
42
|
+
TNT_LOG_EVERSION,
|
43
|
+
TNT_LOG_ECORRUPT,
|
44
|
+
TNT_LOG_ESYSTEM,
|
45
|
+
TNT_LOG_LAST
|
46
|
+
};
|
47
|
+
|
48
|
+
struct tnt_log_header_v11 {
|
49
|
+
uint32_t crc32_hdr;
|
50
|
+
uint64_t lsn;
|
51
|
+
double tm;
|
52
|
+
uint32_t len;
|
53
|
+
uint32_t crc32_data;
|
54
|
+
} __attribute__((packed));
|
55
|
+
|
56
|
+
struct tnt_log_row_v11 {
|
57
|
+
uint16_t tag;
|
58
|
+
uint64_t cookie;
|
59
|
+
uint16_t op;
|
60
|
+
} __attribute__((packed));
|
61
|
+
|
62
|
+
struct tnt_log_row_snap_v11 {
|
63
|
+
uint16_t tag;
|
64
|
+
uint64_t cookie;
|
65
|
+
uint32_t space;
|
66
|
+
uint32_t tuple_size;
|
67
|
+
uint32_t data_size;
|
68
|
+
} __attribute__((packed));
|
69
|
+
|
70
|
+
enum tnt_log_type {
|
71
|
+
TNT_LOG_NONE,
|
72
|
+
TNT_LOG_XLOG,
|
73
|
+
TNT_LOG_SNAPSHOT
|
74
|
+
};
|
75
|
+
|
76
|
+
union tnt_log_value {
|
77
|
+
struct tnt_request r;
|
78
|
+
struct tnt_tuple t;
|
79
|
+
};
|
80
|
+
|
81
|
+
struct tnt_log_row {
|
82
|
+
struct tnt_log_header_v11 hdr;
|
83
|
+
struct tnt_log_row_v11 row;
|
84
|
+
struct tnt_log_row_snap_v11 row_snap;
|
85
|
+
union tnt_log_value *value;
|
86
|
+
};
|
87
|
+
|
88
|
+
struct tnt_log {
|
89
|
+
enum tnt_log_type type;
|
90
|
+
FILE *fd;
|
91
|
+
off_t current_offset;
|
92
|
+
off_t offset;
|
93
|
+
int (*read)(struct tnt_log *l, char **buf, uint32_t *size);
|
94
|
+
int (*process)(struct tnt_log *l, char *buf, uint32_t size,
|
95
|
+
union tnt_log_value *value);
|
96
|
+
struct tnt_log_row current;
|
97
|
+
union tnt_log_value current_value;
|
98
|
+
enum tnt_log_error error;
|
99
|
+
int errno_;
|
100
|
+
};
|
101
|
+
|
102
|
+
extern const uint32_t tnt_log_marker_v11;
|
103
|
+
extern const uint32_t tnt_log_marker_eof_v11;
|
104
|
+
|
105
|
+
enum tnt_log_type tnt_log_guess(char *file);
|
106
|
+
|
107
|
+
enum tnt_log_error
|
108
|
+
tnt_log_open(struct tnt_log *l, char *file, enum tnt_log_type type);
|
109
|
+
int tnt_log_seek(struct tnt_log *l, off_t offset);
|
110
|
+
void tnt_log_close(struct tnt_log *l);
|
111
|
+
|
112
|
+
struct tnt_log_row *tnt_log_next(struct tnt_log *l);
|
113
|
+
struct tnt_log_row *tnt_log_next_to(struct tnt_log *l, union tnt_log_value *value);
|
114
|
+
|
115
|
+
enum tnt_log_error tnt_log_error(struct tnt_log *l);
|
116
|
+
char *tnt_log_strerror(struct tnt_log *l);
|
117
|
+
int tnt_log_errno(struct tnt_log *l);
|
118
|
+
|
119
|
+
#endif /* TNT_LOG_H_INCLUDED */
|
@@ -0,0 +1,189 @@
|
|
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 <stdio.h>
|
33
|
+
#include <stdarg.h>
|
34
|
+
#include <string.h>
|
35
|
+
|
36
|
+
#include <unistd.h>
|
37
|
+
#include <fcntl.h>
|
38
|
+
#include <errno.h>
|
39
|
+
|
40
|
+
#include <tarantool.h>
|
41
|
+
#include <tnt_net.h>
|
42
|
+
#include <tnt_io.h>
|
43
|
+
#include <tnt_log.h>
|
44
|
+
#include <tnt_rpl.h>
|
45
|
+
|
46
|
+
static const uint32_t tnt_rpl_version = 11;
|
47
|
+
|
48
|
+
static void tnt_rpl_free(struct tnt_stream *s) {
|
49
|
+
struct tnt_stream_rpl *sr = TNT_RPL_CAST(s);
|
50
|
+
if (sr->net) {
|
51
|
+
/* network stream should not be free'd here */
|
52
|
+
sr->net = NULL;
|
53
|
+
}
|
54
|
+
tnt_mem_free(s->data);
|
55
|
+
}
|
56
|
+
|
57
|
+
static ssize_t
|
58
|
+
tnt_rpl_recv_cb(struct tnt_stream *s, char *buf, ssize_t size) {
|
59
|
+
struct tnt_stream_net *sn = TNT_SNET_CAST(s);
|
60
|
+
return tnt_io_recv(sn, buf, size);
|
61
|
+
}
|
62
|
+
|
63
|
+
static int
|
64
|
+
tnt_rpl_request(struct tnt_stream *s, struct tnt_request *r)
|
65
|
+
{
|
66
|
+
struct tnt_stream_rpl *sr = TNT_RPL_CAST(s);
|
67
|
+
struct tnt_stream_net *sn = TNT_SNET_CAST(sr->net);
|
68
|
+
/* fetching header */
|
69
|
+
if (tnt_io_recv(sn, (char*)&sr->hdr, sizeof(sr->hdr)) == -1)
|
70
|
+
return -1;
|
71
|
+
/* fetching row header */
|
72
|
+
if (tnt_io_recv(sn, (char*)&sr->row, sizeof(sr->row)) == -1)
|
73
|
+
return -1;
|
74
|
+
/* preparing pseudo iproto header */
|
75
|
+
struct tnt_header hdr_iproto;
|
76
|
+
hdr_iproto.type = sr->row.op;
|
77
|
+
hdr_iproto.len = sr->hdr.len - sizeof(struct tnt_log_row_v11);
|
78
|
+
hdr_iproto.reqid = 0;
|
79
|
+
/* deserializing operation */
|
80
|
+
if (tnt_request_from(r, (tnt_request_t)tnt_rpl_recv_cb,
|
81
|
+
sr->net,
|
82
|
+
&hdr_iproto) == -1)
|
83
|
+
return -1;
|
84
|
+
return 0;
|
85
|
+
}
|
86
|
+
|
87
|
+
/*
|
88
|
+
* tnt_rpl()
|
89
|
+
*
|
90
|
+
* create and initialize replication stream;
|
91
|
+
*
|
92
|
+
* s - stream pointer, maybe NULL
|
93
|
+
*
|
94
|
+
* if stream pointer is NULL, then new stream will be created.
|
95
|
+
*
|
96
|
+
* returns stream pointer, or NULL on error.
|
97
|
+
*/
|
98
|
+
struct tnt_stream *tnt_rpl(struct tnt_stream *s)
|
99
|
+
{
|
100
|
+
int allocated = s == NULL;
|
101
|
+
s = tnt_stream_init(s);
|
102
|
+
if (s == NULL)
|
103
|
+
return NULL;
|
104
|
+
/* allocating stream data */
|
105
|
+
s->data = tnt_mem_alloc(sizeof(struct tnt_stream_rpl));
|
106
|
+
if (s->data == NULL)
|
107
|
+
goto error;
|
108
|
+
memset(s->data, 0, sizeof(struct tnt_stream_rpl));
|
109
|
+
/* initializing interfaces */
|
110
|
+
s->read = NULL;
|
111
|
+
s->read_request = tnt_rpl_request;
|
112
|
+
s->read_reply = NULL;
|
113
|
+
s->read_tuple = NULL;
|
114
|
+
s->write = NULL;
|
115
|
+
s->writev = NULL;
|
116
|
+
s->free = tnt_rpl_free;
|
117
|
+
/* initializing internal data */
|
118
|
+
struct tnt_stream_rpl *sr = TNT_RPL_CAST(s);
|
119
|
+
sr->net = NULL;
|
120
|
+
return s;
|
121
|
+
error:
|
122
|
+
if (s->data) {
|
123
|
+
tnt_mem_free(s->data);
|
124
|
+
s->data = NULL;
|
125
|
+
}
|
126
|
+
if (allocated)
|
127
|
+
tnt_stream_free(s);
|
128
|
+
return NULL;
|
129
|
+
}
|
130
|
+
|
131
|
+
/*
|
132
|
+
* tnt_rpl_open()
|
133
|
+
*
|
134
|
+
* connect to a server and initialize handshake;
|
135
|
+
*
|
136
|
+
* s - replication stream pointer
|
137
|
+
* lsn - start lsn
|
138
|
+
*
|
139
|
+
* network stream must be properly initialized before
|
140
|
+
* this function called (see ttnt_rpl_net, tnt_set).
|
141
|
+
*
|
142
|
+
* returns 0 on success, or -1 on error.
|
143
|
+
*/
|
144
|
+
int tnt_rpl_open(struct tnt_stream *s, uint64_t lsn)
|
145
|
+
{
|
146
|
+
struct tnt_stream_rpl *sr = TNT_RPL_CAST(s);
|
147
|
+
/* intializing connection */
|
148
|
+
if (tnt_init(sr->net) == -1)
|
149
|
+
return -1;
|
150
|
+
if (tnt_connect(sr->net) == -1)
|
151
|
+
return -1;
|
152
|
+
/* sending initial lsn */
|
153
|
+
struct tnt_stream_net *sn = TNT_SNET_CAST(sr->net);
|
154
|
+
if (tnt_io_send_raw(sn, (char*)&lsn, sizeof(lsn), 1) == -1)
|
155
|
+
return -1;
|
156
|
+
/* reading and checking version */
|
157
|
+
uint32_t version = 0;
|
158
|
+
if (tnt_io_recv_raw(sn, (char*)&version, sizeof(version), 1) == -1)
|
159
|
+
return -1;
|
160
|
+
if (version != tnt_rpl_version)
|
161
|
+
return -1;
|
162
|
+
return 0;
|
163
|
+
}
|
164
|
+
|
165
|
+
/*
|
166
|
+
* tnt_rpl_close()
|
167
|
+
*
|
168
|
+
* close a connection;
|
169
|
+
*
|
170
|
+
* s - replication stream pointer
|
171
|
+
*
|
172
|
+
* returns 0 on success, or -1 on error.
|
173
|
+
*/
|
174
|
+
void tnt_rpl_close(struct tnt_stream *s) {
|
175
|
+
struct tnt_stream_rpl *sr = TNT_RPL_CAST(s);
|
176
|
+
if (sr->net)
|
177
|
+
tnt_close(s);
|
178
|
+
}
|
179
|
+
|
180
|
+
/*
|
181
|
+
* tnt_rpl_attach()
|
182
|
+
*
|
183
|
+
* attach network stream (tnt_stream_net object);
|
184
|
+
*
|
185
|
+
* s - replication stream pointer
|
186
|
+
*/
|
187
|
+
void tnt_rpl_attach(struct tnt_stream *s, struct tnt_stream *net) {
|
188
|
+
TNT_RPL_CAST(s)->net = net;
|
189
|
+
}
|
@@ -0,0 +1,47 @@
|
|
1
|
+
#ifndef TNT_RPL_H_INCLUDED
|
2
|
+
#define TNT_RPL_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
|
+
struct tnt_stream_rpl {
|
34
|
+
struct tnt_log_header_v11 hdr;
|
35
|
+
struct tnt_log_row_v11 row;
|
36
|
+
struct tnt_stream *net;
|
37
|
+
};
|
38
|
+
|
39
|
+
#define TNT_RPL_CAST(S) ((struct tnt_stream_rpl*)(S)->data)
|
40
|
+
|
41
|
+
struct tnt_stream *tnt_rpl(struct tnt_stream *s);
|
42
|
+
void tnt_rpl_attach(struct tnt_stream *s, struct tnt_stream *net);
|
43
|
+
|
44
|
+
int tnt_rpl_open(struct tnt_stream *s, uint64_t lsn);
|
45
|
+
void tnt_rpl_close(struct tnt_stream *s);
|
46
|
+
|
47
|
+
#endif /* TNT_XLOG_H_INCLUDED */
|
@@ -0,0 +1,163 @@
|
|
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 <stdio.h>
|
33
|
+
#include <stdarg.h>
|
34
|
+
#include <string.h>
|
35
|
+
|
36
|
+
#include <unistd.h>
|
37
|
+
#include <fcntl.h>
|
38
|
+
#include <errno.h>
|
39
|
+
|
40
|
+
#include <third_party/crc32.h>
|
41
|
+
|
42
|
+
#include <tarantool.h>
|
43
|
+
#include <tnt_log.h>
|
44
|
+
#include <tnt_snapshot.h>
|
45
|
+
|
46
|
+
static void tnt_snapshot_free(struct tnt_stream *s) {
|
47
|
+
struct tnt_stream_snapshot *ss = TNT_SSNAPSHOT_CAST(s);
|
48
|
+
tnt_log_close(&ss->log);
|
49
|
+
tnt_mem_free(s->data);
|
50
|
+
s->data = NULL;
|
51
|
+
}
|
52
|
+
|
53
|
+
static int
|
54
|
+
tnt_snapshot_read_tuple(struct tnt_stream *s, struct tnt_tuple *t)
|
55
|
+
{
|
56
|
+
struct tnt_stream_snapshot *ss = TNT_SSNAPSHOT_CAST(s);
|
57
|
+
|
58
|
+
struct tnt_log_row *row =
|
59
|
+
tnt_log_next_to(&ss->log, (union tnt_log_value*)t);
|
60
|
+
|
61
|
+
if (row == NULL && tnt_log_error(&ss->log) == TNT_LOG_EOK)
|
62
|
+
return 1;
|
63
|
+
|
64
|
+
return (row) ? 0: -1;
|
65
|
+
}
|
66
|
+
|
67
|
+
/*
|
68
|
+
* tnt_snapshot()
|
69
|
+
*
|
70
|
+
* create and initialize snapshot stream;
|
71
|
+
*
|
72
|
+
* s - stream pointer, maybe NULL
|
73
|
+
*
|
74
|
+
* if stream pointer is NULL, then new stream will be created.
|
75
|
+
*
|
76
|
+
* returns stream pointer, or NULL on error.
|
77
|
+
*/
|
78
|
+
struct tnt_stream *tnt_snapshot(struct tnt_stream *s)
|
79
|
+
{
|
80
|
+
int allocated = s == NULL;
|
81
|
+
s = tnt_stream_init(s);
|
82
|
+
if (s == NULL)
|
83
|
+
return NULL;
|
84
|
+
/* allocating stream data */
|
85
|
+
s->data = tnt_mem_alloc(sizeof(struct tnt_stream_snapshot));
|
86
|
+
if (s->data == NULL) {
|
87
|
+
if (allocated)
|
88
|
+
tnt_stream_free(s);
|
89
|
+
return NULL;
|
90
|
+
}
|
91
|
+
memset(s->data, 0, sizeof(struct tnt_stream_snapshot));
|
92
|
+
/* initializing interfaces */
|
93
|
+
s->read = NULL;
|
94
|
+
s->read_request = NULL;
|
95
|
+
s->read_reply = NULL;
|
96
|
+
s->read_tuple = tnt_snapshot_read_tuple;
|
97
|
+
s->write = NULL;
|
98
|
+
s->writev = NULL;
|
99
|
+
s->free = tnt_snapshot_free;
|
100
|
+
/* initializing internal data */
|
101
|
+
return s;
|
102
|
+
}
|
103
|
+
|
104
|
+
/*
|
105
|
+
* tnt_snapshot_open()
|
106
|
+
*
|
107
|
+
* open snapshot file and associate it with stream;
|
108
|
+
*
|
109
|
+
* s - snapshot stream pointer
|
110
|
+
*
|
111
|
+
* returns 0 on success, or -1 on error.
|
112
|
+
*/
|
113
|
+
int tnt_snapshot_open(struct tnt_stream *s, char *file) {
|
114
|
+
struct tnt_stream_snapshot *ss = TNT_SSNAPSHOT_CAST(s);
|
115
|
+
return tnt_log_open(&ss->log, file, TNT_LOG_SNAPSHOT);
|
116
|
+
}
|
117
|
+
|
118
|
+
/*
|
119
|
+
* tnt_snapshot_close()
|
120
|
+
*
|
121
|
+
* close snapshot stream;
|
122
|
+
*
|
123
|
+
* s - snapshot stream pointer
|
124
|
+
*
|
125
|
+
* returns 0 on success, or -1 on error.
|
126
|
+
*/
|
127
|
+
void tnt_snapshot_close(struct tnt_stream *s) {
|
128
|
+
struct tnt_stream_snapshot *ss = TNT_SSNAPSHOT_CAST(s);
|
129
|
+
tnt_log_close(&ss->log);
|
130
|
+
}
|
131
|
+
|
132
|
+
/*
|
133
|
+
* tnt_snapshot_error()
|
134
|
+
*
|
135
|
+
* get stream error status;
|
136
|
+
*
|
137
|
+
* s - snapshot stream pointer
|
138
|
+
*/
|
139
|
+
enum tnt_log_error tnt_snapshot_error(struct tnt_stream *s) {
|
140
|
+
return TNT_SSNAPSHOT_CAST(s)->log.error;
|
141
|
+
}
|
142
|
+
|
143
|
+
/*
|
144
|
+
* tnt_snapshot_strerror()
|
145
|
+
*
|
146
|
+
* get stream error status description string;
|
147
|
+
*
|
148
|
+
* s - snapshot stream pointer
|
149
|
+
*/
|
150
|
+
char *tnt_snapshot_strerror(struct tnt_stream *s) {
|
151
|
+
return tnt_log_strerror(&TNT_SSNAPSHOT_CAST(s)->log);
|
152
|
+
}
|
153
|
+
|
154
|
+
/*
|
155
|
+
* tnt_snapshot_errno()
|
156
|
+
*
|
157
|
+
* get saved errno;
|
158
|
+
*
|
159
|
+
* s - snapshot stream pointer
|
160
|
+
*/
|
161
|
+
int tnt_snapshot_errno(struct tnt_stream *s) {
|
162
|
+
return TNT_SSNAPSHOT_CAST(s)->log.errno_;
|
163
|
+
}
|
@@ -0,0 +1,50 @@
|
|
1
|
+
#ifndef TNT_SNAPSHOT_H_INCLUDED
|
2
|
+
#define TNT_SNAPSHOT_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 <tarantool/tnt_log.h>
|
34
|
+
|
35
|
+
struct tnt_stream_snapshot {
|
36
|
+
struct tnt_log log;
|
37
|
+
};
|
38
|
+
|
39
|
+
#define TNT_SSNAPSHOT_CAST(S) ((struct tnt_stream_snapshot*)(S)->data)
|
40
|
+
|
41
|
+
struct tnt_stream *tnt_snapshot(struct tnt_stream *s);
|
42
|
+
|
43
|
+
int tnt_snapshot_open(struct tnt_stream *s, char *file);
|
44
|
+
void tnt_snapshot_close(struct tnt_stream *s);
|
45
|
+
|
46
|
+
enum tnt_log_error tnt_snapshot_error(struct tnt_stream *s);
|
47
|
+
char *tnt_snapshot_strerror(struct tnt_stream *s);
|
48
|
+
int tnt_snapshot_errno(struct tnt_stream *s);
|
49
|
+
|
50
|
+
#endif /* TNT_SNAPSHOT_H_INCLUDED */
|