28 std::cout <<
"[thread_reader ID:" << std::this_thread::get_id()
29 <<
"] Started." << std::endl;
34 read_pipe.
Read(&len,
sizeof(len));
35 read_pipe.
Read(buf, len);
37 cout <<
"RX: " << buf << endl;
43 #if !defined(HAS_BROKEN_CLANG_STD_VISIT) 44 auto doprint = [](
auto& pose) { cout <<
"RX pose: " << pose << endl; };
47 std::visit(doprint, var);
49 std::visit(doprint, var);
51 std::cout <<
"Code disabled for clang due to variant bug. See: " 52 "https://stackoverflow.com/a/46507150/1631514\n";
55 printf(
"[thread_reader] Finished.\n");
57 catch (
const std::exception& e)
59 cerr << e.what() << endl;
67 std::cout <<
"[thread_writer ID:" << std::this_thread::get_id()
68 <<
"] Started." << std::endl;
71 const char* str =
"Hello world!";
72 size_t len = strlen(str);
73 write_pipe.
Write(&len,
sizeof(len));
74 write_pipe.
Write(str, len);
80 #if !defined(HAS_BROKEN_CLANG_STD_VISIT) 81 std::variant<mrpt::poses::CPose3D, mrpt::poses::CPose2D> var1(
83 std::variant<mrpt::poses::CPose3D, mrpt::poses::CPose2D> var2(
86 arch.WriteVariant(var1);
87 arch.WriteVariant(var2);
89 printf(
"[thread_writer] Finished.\n");
91 catch (
const std::exception& e)
93 cerr << e.what() << endl;
103 std::unique_ptr<CPipeReadEndPoint> read_pipe;
104 std::unique_ptr<CPipeWriteEndPoint> write_pipe;
106 CPipe::createPipe(read_pipe, write_pipe);
112 using namespace std::chrono_literals;
113 std::this_thread::sleep_for(10ms);
133 catch (
const std::exception& e)
140 printf(
"Untyped exception!!");
size_t Read(void *Buffer, size_t Count) override
Introduces a pure virtual method responsible for reading from the stream.
void thread_reader(CPipeReadEndPoint &read_pipe)
CArchiveStreamBase< STREAM > archiveFrom(STREAM &s)
Helper function to create a templatized wrapper CArchive object for a: MRPT's CStream, std::istream, std::ostream, std::stringstream.
size_t Write(const void *Buffer, size_t Count) override
Introduces a pure virtual method responsible for writing to the stream.
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
The write end-point in a pipe created with mrpt::synch::CPipe.
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
A class used to store a 2D pose, including the 2D coordinate point and a heading (phi) angle...
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
The read end-point in a pipe created with mrpt::synch::CPipe.
std::string exception_to_str(const std::exception &e)
Builds a nice textual representation of a nested exception, which if generated using MRPT macros (THR...
void thread_writer(CPipeWriteEndPoint &write_pipe)