Skip to content

Commit

Permalink
feat: implement database and session info handling in request object …
Browse files Browse the repository at this point in the history
…with compatibility retained
  • Loading branch information
t-horikawa committed Dec 14, 2023
1 parent d7ae6e5 commit 28bd4ec
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ogawayama
2 changes: 1 addition & 1 deletion tateyama
Submodule tateyama updated 39 files
+3 −1 docs/config_parameters.md
+71 −0 include/tateyama/api/server/database_info.h
+14 −0 include/tateyama/api/server/request.h
+107 −0 include/tateyama/api/server/session_info.h
+11 −5 include/tateyama/status/resource/bridge.h
+3 −0 include/tateyama/status/resource/core.h
+65 −0 src/tateyama/endpoint/common/session_info_impl.h
+61 −0 src/tateyama/endpoint/common/worker_common.h
+3 −6 src/tateyama/endpoint/ipc/bootstrap/ipc_endpoint.h
+14 −13 src/tateyama/endpoint/ipc/bootstrap/ipc_listener.h
+12 −3 src/tateyama/endpoint/ipc/bootstrap/server_wires_impl.h
+27 −5 src/tateyama/endpoint/ipc/bootstrap/worker.cpp
+18 −18 src/tateyama/endpoint/ipc/bootstrap/worker.h
+8 −0 src/tateyama/endpoint/ipc/ipc_request.cpp
+11 −2 src/tateyama/endpoint/ipc/ipc_request.h
+1 −1 src/tateyama/endpoint/ipc/ipc_response.h
+56 −31 src/tateyama/endpoint/ipc/wire.h
+14 −0 src/tateyama/endpoint/loopback/loopback_request.h
+1 −4 src/tateyama/endpoint/stream/bootstrap/stream_endpoint.h
+12 −12 src/tateyama/endpoint/stream/bootstrap/stream_listener.h
+37 −20 src/tateyama/endpoint/stream/bootstrap/stream_worker.cpp
+13 −14 src/tateyama/endpoint/stream/bootstrap/stream_worker.h
+14 −3 src/tateyama/endpoint/stream/stream.h
+9 −0 src/tateyama/endpoint/stream/stream_request.cpp
+8 −1 src/tateyama/endpoint/stream/stream_request.h
+15 −8 src/tateyama/status/resource/bridge.cpp
+55 −0 src/tateyama/status/resource/database_info_impl.h
+1 −0 test/CMakeLists.txt
+14 −0 test/tateyama/datastore/datastore_test.cpp
+122 −0 test/tateyama/endpoint/ipc/ipc_info_test.cpp
+4 −1 test/tateyama/endpoint/response_only_test.cpp
+6 −3 test/tateyama/endpoint/result_set_limit_test.cpp
+5 −2 test/tateyama/endpoint/result_set_test.cpp
+101 −0 test/tateyama/endpoint/stream/stream_client.cpp
+74 −0 test/tateyama/endpoint/stream/stream_client.h
+141 −0 test/tateyama/endpoint/stream/stream_info_test.cpp
+5 −2 test/tateyama/endpoint/writer_limit_test.cpp
+14 −0 test/tateyama/framework/router_test.cpp
+132 −98 test/tsubakuro/common/wire/wire.h
2 changes: 1 addition & 1 deletion tsubakuro

0 comments on commit 28bd4ec

Please sign in to comment.