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/CPose3D.h>
13 #include <iostream>
14 #include <thread>
15 
16 using namespace mrpt;
17 using namespace mrpt::poses;
18 using namespace mrpt::io;
19 using namespace std;
20 
21 void thread_reader(CPipeReadEndPoint& read_pipe)
22 {
23  try
24  {
25  std::cout << "[thread_reader ID:" << std::this_thread::get_id()
26  << "] Started." << std::endl;
27 
28  // Simple read commands:
29  size_t len = 0;
30  char buf[100];
31  read_pipe.Read(&len, sizeof(len));
32  read_pipe.Read(buf, len);
33  buf[len] = 0;
34 
35  cout << "RX: " << buf << endl;
36 
37  // Read MRPT object from a pipe:
38  // *Note*: If the object class is known in advance, one can avoid smart
39  // pointers with ReadObject(&existingObj)
40  auto arch = mrpt::serialization::archiveFrom(read_pipe);
41  auto obj = arch.ReadObject();
42  if (IS_CLASS(*obj, CPose3D))
43  {
44  CPose3D::Ptr ptrPose = std::dynamic_pointer_cast<CPose3D>(obj);
45  cout << "RX pose: " << *ptrPose << endl;
46  }
47 
48  printf("[thread_reader] Finished.\n");
49  }
50  catch (const std::exception& e)
51  {
52  cerr << e.what() << endl;
53  }
54 }
55 
56 void thread_writer(CPipeWriteEndPoint& write_pipe)
57 {
58  try
59  {
60  std::cout << "[thread_writer ID:" << std::this_thread::get_id()
61  << "] Started." << std::endl;
62 
63  // Simple write commands:
64  const char* str = "Hello world!";
65  size_t len = strlen(str);
66  write_pipe.Write(&len, sizeof(len));
67  write_pipe.Write(str, len);
68 
69  // Send MRPT objects:
70  mrpt::poses::CPose3D pose(1, 2, 3, 0.1, 0.2, 0.3);
71  auto arch = mrpt::serialization::archiveFrom(write_pipe);
72  arch.WriteObject(&pose);
73 
74  printf("[thread_writer] Finished.\n");
75  }
76  catch (const std::exception& e)
77  {
78  cerr << e.what() << endl;
79  }
80 }
81 
82 // ------------------------------------------------------
83 // ThreadsTest
84 // ------------------------------------------------------
85 void ThreadsTest()
86 {
87  // Create a pipe:
88  std::unique_ptr<CPipeReadEndPoint> read_pipe;
89  std::unique_ptr<CPipeWriteEndPoint> write_pipe;
90 
91  CPipe::createPipe(read_pipe, write_pipe);
92 
93  // And send the two end-points to two threads:
94  std::thread hT1(thread_reader, std::ref(*read_pipe));
95  std::thread hT2(thread_writer, std::ref(*write_pipe));
96 
97  // Wait for the threads to end.
98  hT1.join();
99  hT2.join();
100 }
101 
102 // ------------------------------------------------------
103 // MAIN
104 // ------------------------------------------------------
105 int main()
106 {
107  try
108  {
109  ThreadsTest();
110 
111  return 0;
112  }
113  catch (const std::exception& e)
114  {
115  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
116  return -1;
117  }
118  catch (...)
119  {
120  printf("Untyped exception!!");
121  return -1;
122  }
123 }
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
#define IS_CLASS(obj, class_name)
True if the given reference to object (derived from mrpt::rtti::CObject) is of the given class...
Definition: CObject.h:146
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 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