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,105 @@
1
+ /*
2
+ * Copyright (C) 2010-2016 Tarantool AUTHORS:
3
+ * please see AUTHORS file in tarantool/tarantool repository.
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 "test.h"
34
+
35
+ #include <stdio.h>
36
+ #include <stdarg.h>
37
+
38
+ enum { MAX_LEVELS = 10 };
39
+ static int tests_done[MAX_LEVELS];
40
+ static int tests_failed[MAX_LEVELS];
41
+ static int plan_test[MAX_LEVELS];
42
+ static int level = -1;
43
+
44
+ void
45
+ __space(FILE *stream)
46
+ {
47
+ for (int i = 0 ; i < level; i++) {
48
+ fprintf(stream, " ");
49
+ }
50
+ }
51
+
52
+ void
53
+ plan(int count)
54
+ {
55
+ ++level;
56
+ plan_test[level] = count;
57
+ tests_done[level] = 0;
58
+ tests_failed[level] = 0;
59
+
60
+ __space(stdout);
61
+ printf("%d..%d\n", 1, plan_test[level]);
62
+ }
63
+
64
+ int
65
+ check_plan(void)
66
+ {
67
+ int r = 0;
68
+ if (tests_done[level] != plan_test[level]) {
69
+ __space(stderr);
70
+ fprintf(stderr,
71
+ "# Looks like you planned %d tests but ran %d.\n",
72
+ plan_test[level], tests_done[level]);
73
+ r = -1;
74
+ }
75
+
76
+ if (tests_failed[level]) {
77
+ __space(stderr);
78
+ fprintf(stderr,
79
+ "# Looks like you failed %d test of %d run.\n",
80
+ tests_failed[level], tests_done[level]);
81
+ r = tests_failed[level];
82
+ }
83
+ --level;
84
+ if (level >= 0) {
85
+ is(r, 0, "subtests");
86
+ }
87
+ return r;
88
+ }
89
+
90
+ int
91
+ __ok(int condition, const char *fmt, ...)
92
+ {
93
+ va_list ap;
94
+
95
+ __space(stdout);
96
+ printf("%s %d - ", condition ? "ok" : "not ok", ++tests_done[level]);
97
+ if (!condition)
98
+ tests_failed[level]++;
99
+ va_start(ap, fmt);
100
+ vprintf(fmt, ap);
101
+ printf("\n");
102
+ va_end(ap);
103
+ return condition;
104
+ }
105
+
@@ -0,0 +1,123 @@
1
+ /*
2
+ * Copyright (C) 2010-2016 Tarantool AUTHORS:
3
+ * please see AUTHORS file in tarantool/tarantool repository.
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
+ #ifndef TEST_H_INCLUDED
34
+ #define TEST_H_INCLUDED
35
+
36
+ #include <stdio.h>
37
+
38
+ /**
39
+ @brief example
40
+
41
+ @code
42
+ #include "test.h"
43
+
44
+ int main(void) {
45
+ plan(3); // count of test You planned to check
46
+ ok(1, "Test name 1");
47
+ is(4, 2 * 2, "2 * 2 == 4");
48
+ isnt(5, 2 * 2, "2 * 2 != 5);
49
+ return check_plan(); // print resume
50
+ }
51
+ @endcode
52
+
53
+
54
+ */
55
+
56
+ /* private function, use ok(...) instead */
57
+ int __ok(int condition, const char *fmt, ...);
58
+
59
+ /* private function, use note(...) or diag(...) instead */
60
+ void __space(FILE *stream);
61
+
62
+ #define msg(stream, ...) ({ __space(stream); fprintf(stream, "# "); \
63
+ fprintf(stream, __VA_ARGS__); fprintf(stream, "\n"); })
64
+
65
+ #define note(...) msg(stdout, __VA_ARGS__)
66
+ #define diag(...) msg(stderr, __VA_ARGS__)
67
+
68
+ /**
69
+ @brief set and print plan
70
+ @param count
71
+ Before anything else, you need a testing plan. This basically declares
72
+ how many tests your program is going to run to protect against premature
73
+ failure.
74
+ */
75
+ void plan(int count);
76
+
77
+ /**
78
+ @brief check if plan is reached and print report
79
+ */
80
+ int check_plan(void);
81
+
82
+ #define ok(condition, fmt, args...) { \
83
+ int res = __ok(condition, fmt, ##args); \
84
+ if (!res) { \
85
+ __space(stderr); \
86
+ fprintf(stderr, "# Failed test '"); \
87
+ fprintf(stderr, fmt, ##args); \
88
+ fprintf(stderr, "'\n"); \
89
+ __space(stderr); \
90
+ fprintf(stderr, "# in %s at line %d\n", __FILE__, __LINE__); \
91
+ } \
92
+ }
93
+
94
+ #define is(a, b, fmt, args...) { \
95
+ int res = __ok((a) == (b), fmt, ##args); \
96
+ if (!res) { \
97
+ __space(stderr); \
98
+ fprintf(stderr, "# Failed test '"); \
99
+ fprintf(stderr, fmt, ##args); \
100
+ fprintf(stderr, "'\n"); \
101
+ __space(stderr); \
102
+ fprintf(stderr, "# in %s at line %d\n", __FILE__, __LINE__); \
103
+ } \
104
+ }
105
+
106
+ #define isnt(a, b, fmt, args...) { \
107
+ int res = __ok((a) != (b), fmt, ##args); \
108
+ if (!res) { \
109
+ __space(stderr); \
110
+ fprintf(stderr, "# Failed test '"); \
111
+ fprintf(stderr, fmt, ##args); \
112
+ fprintf(stderr, "'\n"); \
113
+ __space(stderr); \
114
+ fprintf(stderr, "# in %s at line %d\n", __FILE__, __LINE__); \
115
+ } \
116
+ }
117
+
118
+ #define fail(fmt, args...) \
119
+ ok(0, fmt, ##args)
120
+
121
+
122
+ #endif /* TEST_H_INCLUDED */
123
+
@@ -0,0 +1,89 @@
1
+ cmake_minimum_required(VERSION 2.8)
2
+
3
+ project(LIBTNT)
4
+
5
+ include(FindPackageMessage)
6
+
7
+ set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH})
8
+ set(CMAKE_INCLUDE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_INCLUDE_PATH})
9
+
10
+ if(POLICY CMP0037)
11
+ cmake_policy(SET CMP0037 OLD) # don't blame custom target names
12
+ endif(POLICY CMP0037)
13
+
14
+ set(ENABLE_BUNDLED_MSGPUCK_DEFAULT OFF)
15
+ if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/third_party/msgpuck/CMakeLists.txt)
16
+ set(ENABLE_BUNDLED_MSGPUCK_DEFAULT ON)
17
+ endif ()
18
+ option(ENABLE_BUNDLED_MSGPUCK "Enable building with the bundled msgpuck"
19
+ ${ENABLE_BUNDLED_MSGPUCK_DEFAULT})
20
+
21
+ set(ENABLE_BUNDLED_DOCS_DEFAULT ON)
22
+ option(ENABLE_BUNDLED_DOCS "Enable building bundled docs with doxygen"
23
+ ${ENABLE_BUNDLED_DOCS_DEFAULT})
24
+
25
+ if (NOT ENABLE_BUNDLED_MSGPUCK)
26
+ set (MSGPUCK_REQUIRED ON)
27
+ include (cmake/FindMsgPuck.cmake)
28
+ include_directories(${MSGPUCK_INCLUDE_DIR})
29
+ elseif (NOT EXISTS "${PROJECT_SOURCE_DIR}/third_party/msgpuck/msgpuck.h")
30
+ message(FATAL_ERROR "Could not find msgpuck development files")
31
+ else (NOT ENABLE_BUNDLED_MSGPUCK)
32
+ set (MSGPUCK_INCLUDE_DIR "${PROJECT_SOURCE_DIR}/third_party")
33
+ set (MSGPUCK_LIBRARIES msgpuck)
34
+ set (MSGPUCK_FOUND TRUE)
35
+ add_subdirectory(third_party/msgpuck)
36
+ endif (NOT ENABLE_BUNDLED_MSGPUCK)
37
+
38
+ # include_directories("${PROJECT_SOURCE_DIR}/tnt")
39
+ # include_directories("${PROJECT_SOURCE_DIR}/tntnet")
40
+
41
+ # set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pthread -Wall -Wextra -std=gnu99 -D__USE_XOPEN")
42
+ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -std=gnu99 -D__USE_XOPEN")
43
+ set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS} -O0 -g3 -ggdb3")
44
+ set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS} -O2 -g")
45
+
46
+ if(NOT CMAKE_BUILD_TYPE)
47
+ set(CMAKE_BUILD_TYPE Debug CACHE STRING
48
+ "Choose the type of build, options are: Debug Release" FORCE)
49
+ endif()
50
+
51
+ if (ENABLE_BUNDLED_DOCS)
52
+ add_custom_target (doc COMMAND doxygen ${PROJECT_SOURCE_DIR}/Doxyfile)
53
+ endif(ENABLE_BUNDLED_DOCS)
54
+
55
+ option(ENABLE_BUNDLED_MSGPUCK "Enable building of the bundled MsgPuck" ON)
56
+ if (ENABLE_BUNDLED_MSGPUCK)
57
+ set(MSGPUCK_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/third_party/msgpuck)
58
+ find_package_message(MsgPuck "Using bundled MsgPuck" "${MSGPUCK_INCLUDE_DIRS}")
59
+ else()
60
+ set(MsgPuck_FIND_REQUIRED ON)
61
+ find_package(MsgPuck)
62
+ endif()
63
+
64
+ include_directories("${MSGPUCK_INCLUDE_DIRS}")
65
+ include_directories("${PROJECT_SOURCE_DIR}/third_party")
66
+ include_directories("${PROJECT_SOURCE_DIR}/include")
67
+
68
+ if (ENABLE_BUNDLED_DOCS)
69
+ add_subdirectory(doc)
70
+ endif(ENABLE_BUNDLED_DOCS)
71
+
72
+ message(STATUS "------------------------------------------------")
73
+ message(STATUS " Tarantool library configuration: ")
74
+ message(STATUS "------------------------------------------------")
75
+ message(STATUS " CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}")
76
+ message(STATUS " PREFIX: ${CMAKE_INSTALL_PREFIX}")
77
+ message(STATUS " C_COMPILER: ${CMAKE_C_COMPILER}")
78
+ message(STATUS " C_FLAGS:${CMAKE_C_FLAGS}")
79
+ message(STATUS "------------------------------------------------")
80
+
81
+ add_subdirectory (include)
82
+ add_subdirectory (tnt)
83
+ #add_subdirectory(tntrpl)
84
+
85
+ if (NOT DEFINED TARANTOOL_C_EMBEDDED)
86
+ add_subdirectory(test)
87
+ endif(NOT DEFINED TARANTOOL_C_EMBEDDED)
88
+
89
+ message(STATUS "------------------------------------------------")
@@ -0,0 +1,18 @@
1
+ # - Find libmsgpuck header-only library
2
+ # The module defines the following variables:
3
+ #
4
+ # MSGPUCK_FOUND - true if MsgPuck was found
5
+ # MSGPUCK_INCLUDE_DIRS - the directory of the MsgPuck headers
6
+ # MSGPUCK_LIBRARIES - the MsgPuck static library needed for linking
7
+ #
8
+
9
+ find_path(MSGPUCK_INCLUDE_DIR msgpuck.h PATH_SUFFIXES msgpuck)
10
+ find_library(MSGPUCK_LIBRARY NAMES libmsgpuck.a)
11
+
12
+ include(FindPackageHandleStandardArgs)
13
+ find_package_handle_standard_args(MsgPuck
14
+ REQUIRED_VARS MSGPUCK_INCLUDE_DIR MSGPUCK_LIBRARY)
15
+ set(MSGPUCK_INCLUDE_DIRS ${MSGPUCK_INCLUDE_DIR})
16
+ set(MSGPUCK_LIBRARIES ${MSGPUCK_LIBRARY})
17
+ mark_as_advanced(MSGPUCK_INCLUDE_DIR MSGPUCK_INCLUDE_DIRS
18
+ MSGPUCK_LIBRARY MSGPUCK_LIBRARIES)
@@ -0,0 +1,10 @@
1
+ include(FindPackageHandleStandardArgs)
2
+
3
+ find_program(SPHINX_EXECUTABLE NAMES sphinx-build
4
+ HINTS
5
+ $ENV{SPHINX_DIR}
6
+ PATH_SUFFIXES bin
7
+ )
8
+
9
+ find_package_handle_standard_args(Sphinx DEFAULT_MSG SPHINX_EXECUTABLE)
10
+ mark_as_advanced(SPHINX_EXECUTABLE)
@@ -0,0 +1,15 @@
1
+ find_package(Sphinx)
2
+
3
+ set(SPHINX_BUILD_HTML_DIR "${PROJECT_BINARY_DIR}/doc/_build/html")
4
+ set(SPHINX_HTML_DIR "${PROJECT_BINARY_DIR}/output/")
5
+
6
+ if (NOT Sphinx-NOTFOUND)
7
+ add_custom_target(sphinx-html
8
+ COMMAND "${SPHINX_EXECUTABLE}"
9
+ -b html
10
+ -d "${SPHINX_BUILD_HTML_DIR}"
11
+ "${PROJECT_SOURCE_DIR}/doc/source"
12
+ "${SPHINX_HTML_DIR}"
13
+ COMMENT "Building HTML documentation with Sphinx"
14
+ )
15
+ endif ()
@@ -0,0 +1,340 @@
1
+ #define TARANTOOL_URI "localhost:3301"
2
+ #define BUFFER_SIZE 256*1024
3
+
4
+ #define log_error(fmt, ...) fprintf(stderr, "%s:%d E>" fmt, __func__, __LINE__, ##__VA_ARGS__)
5
+
6
+ #include <assert.h>
7
+ #include <stddef.h>
8
+ #include <sys/types.h>
9
+ #include <stdio.h>
10
+ #include <inttypes.h>
11
+
12
+ #include <tarantool/tarantool.h>
13
+ #include <tarantool/tnt_net.h>
14
+ #include <tarantool/tnt_opt.h>
15
+ #include <msgpuck.h>
16
+
17
+ int
18
+ tnt_request_set_sspace(struct tnt_stream *tnt, struct tnt_request *req,
19
+ const char *space)
20
+ {
21
+ assert(tnt && space);
22
+ int32_t sno = tnt_get_spaceno(tnt, space, strlen(space));
23
+ if (sno == -1)
24
+ return -1;
25
+ return tnt_request_set_space(req, sno);
26
+ }
27
+
28
+ int
29
+ tnt_request_set_sindex(struct tnt_stream *tnt, struct tnt_request *req,
30
+ const char *index)
31
+ {
32
+ assert(tnt && index && req->space_id);
33
+ int32_t ino = tnt_get_indexno(tnt, req->space_id, index, strlen(index));
34
+ if (ino == -1)
35
+ return -1;
36
+ return tnt_request_set_index(req, ino);
37
+ }
38
+
39
+ int profile_space_no;
40
+
41
+ struct msg_profile {
42
+ int id;
43
+ char *user;
44
+ int like;
45
+ char *msg;
46
+ };
47
+
48
+ struct tnt_stream *tarantool_connection(const char *uri) {
49
+ struct tnt_stream *connection = tnt_net(NULL);
50
+ if (tnt_set(connection, TNT_OPT_URI, uri) == -1)
51
+ goto rollback;
52
+ tnt_set(connection, TNT_OPT_SEND_BUF, BUFFER_SIZE);
53
+ tnt_set(connection, TNT_OPT_RECV_BUF, BUFFER_SIZE);
54
+ if (tnt_connect(connection) == -1) {
55
+ log_error("Failed to connect (%s)", tnt_strerror(connection));
56
+ goto rollback;
57
+ }
58
+ return connection;
59
+ rollback:
60
+ tnt_stream_free(connection);
61
+ return NULL;
62
+ }
63
+
64
+ void msg_profile_free(struct msg_profile *msg) {
65
+ if (msg) {
66
+ free(msg->msg);
67
+ free(msg->user);
68
+ free(msg);
69
+ }
70
+ }
71
+
72
+ int msg_profile_decode(struct tnt_reply *rpl, struct msg_profile **rv) {
73
+ uint32_t str_len = 0;
74
+ if (rpl->code != 0) {
75
+ log_error("Query error %d: %.*s", (int )TNT_REPLY_ERR(rpl),
76
+ (int )(rpl->error_end - rpl->error), rpl->error);
77
+ return -1;
78
+ }
79
+ if (mp_typeof(*rpl->data) != MP_ARRAY) {
80
+ log_error("Bad reply format");
81
+ return -1;
82
+ } else if (mp_decode_array(&rpl->data) == 0) {
83
+ return 0;
84
+ } else if (mp_decode_array(&rpl->data) > 0) {
85
+ log_error("Bad reply format");
86
+ return -1;
87
+ }
88
+ struct msg_profile *profile = malloc(sizeof(struct msg_profile));
89
+ if (profile == NULL) {
90
+ log_error("OOM");
91
+ return -1;
92
+ }
93
+ const char *data = rpl->data;
94
+ if (mp_typeof(*data) != MP_ARRAY) {
95
+ log_error("Bad reply format");
96
+ goto rollback;
97
+ }
98
+ uint32_t len = mp_decode_array(&data);
99
+ if (len < 2) {
100
+ log_error("Bad reply format");
101
+ goto rollback;
102
+ }
103
+ if (mp_typeof(*data) != MP_UINT) {
104
+ log_error("Bad reply format");
105
+ goto rollback;
106
+ }
107
+ profile->id = mp_decode_uint(&data);
108
+ if (mp_typeof(*data) != MP_STR) {
109
+ log_error("Bad reply format");
110
+ goto rollback;
111
+ }
112
+ profile->user = (char *)mp_decode_str(&data, &str_len);
113
+ profile->user = strndup(profile->user, str_len);
114
+ if (profile->user == NULL) {
115
+ log_error("OOM");
116
+ goto rollback;
117
+ }
118
+ if (mp_typeof(*data) != MP_UINT) {
119
+ log_error("Bad reply format");
120
+ goto rollback;
121
+ }
122
+ profile->like = mp_decode_uint(&data);
123
+ if (mp_typeof(*data) != MP_STR) {
124
+ log_error("Bad reply format");
125
+ goto rollback;
126
+ }
127
+ profile->msg = (char *)mp_decode_str(&data, &str_len);
128
+ profile->msg = strndup(profile->msg, str_len);
129
+ if (profile->msg == NULL) {
130
+ log_error("OOM");
131
+ goto rollback;
132
+ }
133
+ len -= 4;
134
+ while (len > 0) mp_next(&data);
135
+ rpl->data = data;
136
+ *rv = profile;
137
+ return 0;
138
+ rollback:
139
+ msg_profile_free(profile);
140
+ *rv = NULL;
141
+ return -1;
142
+ }
143
+
144
+ int msg_profile_get(struct tnt_stream *tnt, int id, struct msg_profile **rv) {
145
+ static struct tnt_stream *obj = NULL;
146
+ static struct tnt_reply *rpl = NULL;
147
+ if (!obj) {
148
+ obj = tnt_object(NULL);
149
+ if (!obj) return -1;
150
+ }
151
+ if (!rpl) {
152
+ rpl = tnt_reply_init(NULL);
153
+ if (!rpl) return -1;
154
+ }
155
+ tnt_object_reset(obj);
156
+ tnt_object_add_array(obj, 1);
157
+ tnt_object_add_int(obj, id);
158
+ if (tnt_select(tnt, profile_space_no, 0, UINT32_MAX, 0, 0, obj) == -1) {
159
+ log_error("Failed to append request");
160
+ return -1;
161
+ }
162
+ if (tnt_flush(tnt) == -1) {
163
+ log_error("Failed to send request (%s)", tnt_strerror(tnt));
164
+ return -1;
165
+ }
166
+ if (tnt->read_reply(tnt, rpl) == -1) {
167
+ log_error("Failed to recv/parse result");
168
+ if (tnt_error(tnt)) log_error("%s", tnt_strerror(tnt));
169
+ return -1;
170
+ }
171
+ return msg_profile_decode(rpl, rv);
172
+ }
173
+
174
+ int msg_profile_get_multi(struct tnt_stream *tnt, int *id, size_t cnt,
175
+ struct msg_profile ***rv) {
176
+ static struct tnt_request *req = NULL;
177
+ if (!req) {
178
+ req = tnt_request_select(req);
179
+ tnt_request_set_sspace(tnt, req, "messages");
180
+ tnt_request_set_sindex(tnt, req, "primary");
181
+ if (!req) return -1;
182
+ }
183
+ for (int i = 0; i < cnt; ++i) {
184
+ tnt_request_set_key_format(req, "[%d]", id[i]);
185
+ if (tnt_request_compile(tnt, req) == -1) {
186
+ log_error("OOM");
187
+ return -1;
188
+ }
189
+ }
190
+ if (tnt_flush(tnt) == -1) {
191
+ log_error("Failed to send result (%s)", tnt_strerror(tnt));
192
+ return -1;
193
+ }
194
+ struct msg_profile **retval = calloc(cnt + 1, sizeof(struct msg_profile *));
195
+ size_t rcvd = 0; retval[cnt] = NULL;
196
+ struct tnt_iter it; tnt_iter_reply(NULL, tnt);
197
+ while (tnt_next(&it)) {
198
+ int rv = msg_profile_decode(TNT_IREPLY_PTR(&it), &retval[rcvd]);
199
+ if (retval[rcvd] != NULL) ++rcvd;
200
+ if (rv == -1) {
201
+ for (int i = 0; i < rcvd; i++)
202
+ msg_profile_free(retval[rcvd]);
203
+ free(retval);
204
+ while (tnt_next(&it));
205
+ return -1;
206
+ }
207
+ }
208
+ *rv = retval;
209
+ return rcvd;
210
+ }
211
+
212
+ int msg_profile_like_add(struct tnt_stream *tnt, int id) {
213
+ static struct tnt_request *req = NULL;
214
+ static struct tnt_stream *obj = NULL;
215
+ static struct tnt_reply *rpl = NULL;
216
+ size_t str_len = 0;
217
+ if (!obj) {
218
+ obj = tnt_update_container(NULL);
219
+ if (obj == NULL) {
220
+ log_error("OOM");
221
+ return -1;
222
+ }
223
+ /* update like counter and prepend 'liked ' to msg */
224
+ if (tnt_update_arith_int(obj, 2, '+', 1) == -1 ||
225
+ tnt_update_splice(obj, 3, 0, 0, "liked ", 6) == -1) {
226
+ log_error("OOM");
227
+ return -1;
228
+ }
229
+ tnt_update_container_close(obj);
230
+ }
231
+ if (!req) {
232
+ req = tnt_request_update(req);
233
+ tnt_request_set_sspace(tnt, req, "messages");
234
+ tnt_request_set_sindex(tnt, req, "primary");
235
+ tnt_request_set_tuple(req, obj);
236
+ if (!req) return -1;
237
+ }
238
+ if (!rpl) {
239
+ rpl = tnt_reply_init(NULL);
240
+ if (!rpl) return -1;
241
+ }
242
+ tnt_request_set_key_format(req, "[%d]", id);
243
+ if (tnt_request_compile(tnt, req) == -1) {
244
+ log_error("OOM");
245
+ return -1;
246
+ }
247
+ if (tnt_flush(tnt) == -1) {
248
+ log_error("Failed to send request (%s)", tnt_strerror(tnt));
249
+ return -1;
250
+ }
251
+ if (tnt->read_reply(tnt, rpl) == -1) {
252
+ log_error("Failed to recv/parse result");
253
+ if (tnt_error(tnt)) log_error("%s", tnt_strerror(tnt));
254
+ return -1;
255
+ }
256
+ if (rpl->code) {
257
+ log_error("Query error %d: %.*s", (int )TNT_REPLY_ERR(rpl),
258
+ (int )(rpl->error_end - rpl->error), rpl->error);
259
+ return -1;
260
+ }
261
+ return 0;
262
+ }
263
+
264
+ int msg_profile_create(struct tnt_request *req, int id, const char *usr,
265
+ size_t usr_len, int likes, const char *msg, size_t msg_len) {
266
+ if (tnt_request_set_tuple_format(req, "[%d%.*s%d%.*s]", id, usr_len,
267
+ usr, likes, msg_len, msg) == -1) {
268
+ return -1;
269
+ }
270
+ return 0;
271
+ }
272
+
273
+ int msg_profile_create_alt(struct tnt_stream *obj, int id, const char *usr,
274
+ size_t usr_len, int likes, const char *msg,
275
+ size_t msg_len) {
276
+ if (tnt_object_add_array(obj, 4) == -1 ||
277
+ tnt_object_add_int(obj, id) == -1 ||
278
+ tnt_object_add_str(obj, usr, usr_len) == -1 ||
279
+ tnt_object_add_int(obj, likes) == -1 ||
280
+ tnt_object_add_str(obj, msg, msg_len) == -1) {
281
+ log_error("OOM");
282
+ return -1;
283
+ }
284
+ return 0;
285
+ }
286
+
287
+ int msg_profile_put(struct tnt_stream *tnt, int id, const char *usr,
288
+ size_t usr_len, int likes, const char *msg, size_t msg_len) {
289
+ static struct tnt_request *req = NULL;
290
+ static struct tnt_reply *rpl = NULL;
291
+ if (!req) {
292
+ req = tnt_request_update(req);
293
+ if (!req) return -1;
294
+ if (tnt_request_set_sspace(tnt, req, "messages") == -1) {
295
+ log_error("failed to find space 'messages'");
296
+ return -1;
297
+ }
298
+ if (tnt_request_set_sindex(tnt, req, "primary") == -1) {
299
+ log_error("failed to find index 'primary' in space "
300
+ "'message'");
301
+ return -1;
302
+ }
303
+ }
304
+ if (msg_profile_create(req, id, usr, usr_len, likes, msg, msg_len) == -1) {
305
+ log_error("OOM");
306
+ return -1;
307
+ }
308
+ if (tnt_request_set_tuple_format(req, "[%d%.*s%d%.*s]", id, usr_len,
309
+ usr, likes, msg_len, msg) == -1) {
310
+ log_error("OOM");
311
+ return -1;
312
+ }
313
+ if (tnt_request_compile(tnt, req) == -1) {
314
+ log_error("OOM");
315
+ return -1;
316
+ }
317
+ if (tnt_flush(tnt) == -1) {
318
+ log_error("Failed to send request (%s)", tnt_strerror(tnt));
319
+ return -1;
320
+ }
321
+ if (tnt->read_reply(tnt, rpl) == -1) {
322
+ log_error("Failed to recv/parse result");
323
+ if (tnt_error(tnt)) log_error("%s", tnt_strerror(tnt));
324
+ return -1;
325
+ }
326
+ if (rpl->code) {
327
+ log_error("Query error %d: %.*s", (int )TNT_REPLY_ERR(rpl),
328
+ (int )(rpl->error_end - rpl->error), rpl->error);
329
+ return -1;
330
+ }
331
+ return 0;
332
+ }
333
+
334
+ /* To build this example use next command:
335
+ * gcc example.c -I ../../include/ -L ../../tnt/ -ltarantool */
336
+ int main() {
337
+ struct tnt_stream *tnt = tarantool_connection(TARANTOOL_URI);
338
+ profile_space_no = tnt_get_spaceno(tnt, "messages", strlen("messages"));
339
+ tnt_stream_free(tnt);
340
+ }
@@ -0,0 +1,6 @@
1
+ if(NOT DEFINED CMAKE_INSTALL_INCLUDEDIR)
2
+ set(CMAKE_INSTALL_INCLUDEDIR include)
3
+ endif(NOT DEFINED CMAKE_INSTALL_INCLUDEDIR)
4
+
5
+ # installation of tarantool C client library headers
6
+ install(DIRECTORY tarantool DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})