aboutsummaryrefslogtreecommitdiffstats
path: root/yt/yt/core/rpc/unittests/bin/main.cpp
diff options
context:
space:
mode:
authormax42 <max42@yandex-team.com>2023-07-29 00:02:16 +0300
committermax42 <max42@yandex-team.com>2023-07-29 00:02:16 +0300
commit73b89de71748a21e102d27b9f3ed1bf658766cb5 (patch)
tree188bbd2d622fa91cdcbb1b6d6d77fbc84a0646f5 /yt/yt/core/rpc/unittests/bin/main.cpp
parent528e321bcc2a2b67b53aeba58c3bd88305a141ee (diff)
downloadydb-73b89de71748a21e102d27b9f3ed1bf658766cb5.tar.gz
YT-19210: expose YQL shared library for YT.
After this, a new target libyqlplugin.so appears. in open-source cmake build. Diff in open-source YDB repo looks like the following: https://paste.yandex-team.ru/f302bdb4-7ef2-4362-91c7-6ca45f329264
Diffstat (limited to 'yt/yt/core/rpc/unittests/bin/main.cpp')
-rw-r--r--yt/yt/core/rpc/unittests/bin/main.cpp42
1 files changed, 42 insertions, 0 deletions
diff --git a/yt/yt/core/rpc/unittests/bin/main.cpp b/yt/yt/core/rpc/unittests/bin/main.cpp
new file mode 100644
index 0000000000..9b8412055b
--- /dev/null
+++ b/yt/yt/core/rpc/unittests/bin/main.cpp
@@ -0,0 +1,42 @@
+#include <yt/yt/core/rpc/bus/server.h>
+#include <yt/yt/core/rpc/server.h>
+
+#include <yt/yt/core/bus/tcp/server.h>
+#include <yt/yt/core/bus/tcp/config.h>
+
+#include <yt/yt/core/concurrency/thread_pool.h>
+
+#include <yt/yt/core/rpc/unittests/lib/my_service.h>
+
+using namespace NYT;
+using namespace NYT::NBus;
+using namespace NYT::NRpc;
+using namespace NYT::NRpc::NBus;
+using namespace NYT::NConcurrency;
+
+int main(int argc, char* argv[])
+{
+ try {
+ if (argc != 2) {
+ THROW_ERROR_EXCEPTION("Port argument is missing");
+ }
+
+ auto port = FromString<int>(argv[1]);
+
+ auto busConfig = TBusServerConfig::CreateTcp(port);
+ auto busServer = CreateBusServer(busConfig);
+ auto server = CreateBusServer(busServer);
+
+ auto workerPool = CreateThreadPool(4, "Worker");
+ auto service = CreateMyService(workerPool->GetInvoker(), false);
+ server->RegisterService(service);
+ server->Start();
+
+ Sleep(TDuration::Max());
+ } catch (const std::exception& ex) {
+ Cerr << ex.what() << Endl;
+ return 1;
+ }
+
+ return 0;
+}