summaryrefslogtreecommitdiffstats
path: root/src/jaegertracing/thrift/contrib/transport-sample/ThriftCommon.cpp
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
commit19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch)
tree42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/jaegertracing/thrift/contrib/transport-sample/ThriftCommon.cpp
parentInitial commit. (diff)
downloadceph-19fcec84d8d7d21e796c7624e521b60d28ee21ed.tar.xz
ceph-19fcec84d8d7d21e796c7624e521b60d28ee21ed.zip
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/jaegertracing/thrift/contrib/transport-sample/ThriftCommon.cpp')
-rw-r--r--src/jaegertracing/thrift/contrib/transport-sample/ThriftCommon.cpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/jaegertracing/thrift/contrib/transport-sample/ThriftCommon.cpp b/src/jaegertracing/thrift/contrib/transport-sample/ThriftCommon.cpp
new file mode 100644
index 000000000..60ebf7a00
--- /dev/null
+++ b/src/jaegertracing/thrift/contrib/transport-sample/ThriftCommon.cpp
@@ -0,0 +1,37 @@
+// ThriftCommon.cpp : Common functions for sample Thrift client and server
+//
+
+#include "ThriftCommon.h"
+
+namespace thriftcommon
+{
+ //----------------------------------------------------------------------------
+ //Launch child process and pass R/W anonymous pipe handles on cmd line.
+ //This is a simple example and does not include elevation or other
+ //advanced features.
+ //
+ bool LaunchAnonPipeChild(std::string app, boost::shared_ptr<TServerTransport> transport)
+ {
+#ifdef _WIN32
+ PROCESS_INFORMATION pi;
+ STARTUPINFOA si;
+ GetStartupInfoA(&si); //set startupinfo for the spawned process
+ char handles[MAX_PATH]; //Stores pipe handles converted to text
+
+ sprintf(handles, "%s %d %d", app.c_str(),
+ (int)boost::shared_dynamic_cast<TPipeServer>(transport)->getClientRdPipeHandle(),
+ (int)boost::shared_dynamic_cast<TPipeServer>(transport)->getClientWrtPipeHandle());
+
+ //spawn the child process
+ if (!CreateProcessA(NULL, handles, NULL,NULL,TRUE,0,NULL,NULL,&si,&pi))
+ {
+ GlobalOutput.perror("TPipeServer CreateProcess failed, GLE=", GetLastError());
+ return false;
+ }
+
+ CloseHandle(pi.hThread);
+ CloseHandle(pi.hProcess);
+#endif
+ return true;
+ }
+}