MRPT  2.0.1
test.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 #include <mrpt/io/CPipe.h>
11 #include <mrpt/poses/CPose2D.h>
12 #include <mrpt/poses/CPose3D.h>
14 #include <iostream>
15 #include <thread>
16 
17 using namespace mrpt;
18 using namespace mrpt::poses;
19 using namespace mrpt::system;
20 using namespace mrpt::io;
21 using namespace mrpt::serialization;
22 using namespace std;
23 
24 void thread_reader(CPipeReadEndPoint& read_pipe)
25 {
26  try
27  {
28  std::cout << "[thread_reader ID:" << std::this_thread::get_id()
29  << "] Started." << std::endl;
30 
31  // Simple read commands:
32  size_t len = 0;
33  char buf[100];
34  read_pipe.Read(&len, sizeof(len));
35  read_pipe.Read(buf, len);
36  buf[len] = 0;
37  cout << "RX: " << buf << endl;
38 
39  // Read MRPT object from a pipe:
40  // *Note*: If the object class is known in advance, one can avoid smart
41  // pointers with ReadObject(&existingObj)
42  auto arch = archiveFrom(read_pipe);
43 #if !defined(HAS_BROKEN_CLANG_STD_VISIT)
44  auto doprint = [](auto& pose) { cout << "RX pose: " << pose << endl; };
45  auto var =
46  arch.ReadVariant<mrpt::poses::CPose2D, mrpt::poses::CPose3D>();
47  std::visit(doprint, var);
48  var = arch.ReadVariant<mrpt::poses::CPose2D, mrpt::poses::CPose3D>();
49  std::visit(doprint, var);
50 #else
51  std::cout << "Code disabled for clang due to variant bug. See: "
52  "https://stackoverflow.com/a/46507150/1631514\n";
53 #endif
54 
55  printf("[thread_reader] Finished.\n");
56  }
57  catch (const std::exception& e)
58  {
59  cerr << e.what() << endl;
60  }
61 }
62 
63 void thread_writer(CPipeWriteEndPoint& write_pipe)
64 {
65  try
66  {
67  std::cout << "[thread_writer ID:" << std::this_thread::get_id()
68  << "] Started." << std::endl;
69 
70  // Simple write commands:
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);
75 
76  // Send MRPT objects:
77  mrpt::poses::CPose3D pose1(1, 2, 3, 1.57, 3.14, 0);
78  mrpt::poses::CPose2D pose2(1.0, 2.0, 3.1415);
79 
80 #if !defined(HAS_BROKEN_CLANG_STD_VISIT)
81  std::variant<mrpt::poses::CPose3D, mrpt::poses::CPose2D> var1(
82  std::move(pose1));
83  std::variant<mrpt::poses::CPose3D, mrpt::poses::CPose2D> var2(
84  std::move(pose2));
85  auto arch = archiveFrom(write_pipe);
86  arch.WriteVariant(var1);
87  arch.WriteVariant(var2);
88 #endif
89  printf("[thread_writer] Finished.\n");
90  }
91  catch (const std::exception& e)
92  {
93  cerr << e.what() << endl;
94  }
95 }
96 
97 // ------------------------------------------------------
98 // ThreadsTest
99 // ------------------------------------------------------
100 void ThreadsTest()
101 {
102  // Create a pipe:
103  std::unique_ptr<CPipeReadEndPoint> read_pipe;
104  std::unique_ptr<CPipeWriteEndPoint> write_pipe;
105 
106  CPipe::createPipe(read_pipe, write_pipe);
107 
108  // And send the two end-points to two threads:
109  std::thread hT1(thread_reader, std::ref(*read_pipe));
110  std::thread hT2(thread_writer, std::ref(*write_pipe));
111 
112  using namespace std::chrono_literals;
113  std::this_thread::sleep_for(10ms);
114  // Wait for the threads to end.
115  hT2.join();
116  // We need to close this to ensure the pipe gets flushed
117  // Remember Unix uses buffered io
118  // write_pipe.reset();
119  hT1.join();
120 }
121 
122 // ------------------------------------------------------
123 // MAIN
124 // ------------------------------------------------------
125 int main()
126 {
127  try
128  {
129  ThreadsTest();
130 
131  return 0;
132  }
133  catch (const std::exception& e)
134  {
135  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
136  return -1;
137  }
138  catch (...)
139  {
140  printf("Untyped exception!!");
141  return -1;
142  }
143 }
size_t Read(void *Buffer, size_t Count) override
Introduces a pure virtual method responsible for reading from the stream.
Definition: CPipe.cpp:117
void thread_reader(CPipeReadEndPoint &read_pipe)
STL namespace.
CArchiveStreamBase< STREAM > archiveFrom(STREAM &s)
Helper function to create a templatized wrapper CArchive object for a: MRPT&#39;s CStream, std::istream, std::ostream, std::stringstream.
Definition: CArchive.h:592
size_t Write(const void *Buffer, size_t Count) override
Introduces a pure virtual method responsible for writing to the stream.
Definition: CPipe.cpp:218
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.
Definition: CPipe.h:148
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...
Definition: CPose2D.h:39
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
Definition: CPose3D.h:85
The read end-point in a pipe created with mrpt::synch::CPipe.
Definition: CPipe.h:125
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...
Definition: exceptions.cpp:59
void ThreadsTest()
void thread_writer(CPipeWriteEndPoint &write_pipe)



Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020