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 /** \example serialization_json_example/test.cpp */
10 
11 #include <iostream> // cout
12 #include <sstream> // stringstream
13 
14 //! [example]
17 
18 #include <iostream> // cout
19 
21 {
22  // Define the MRPT objects to be serialized:
24  mrpt::poses::CPose2D{1.0, 2.0, mrpt::DEG2RAD(90.0)},
26  mrpt::poses::CPose2D p1{5.0, 6.0, mrpt::DEG2RAD(.0)};
27 
28  // --------------------
29  // JSON Serialization
30  // --------------------
31  // Create a JSON archive:
33 
34  // Writes the objects to the JSON archive:
35  arch["pose_pdf"] = pdf1;
36  arch["pose"] = p1;
37 
38  // Writes the JSON representation to an std::ostream
39  std::stringstream ss;
40  ss << arch;
41 
42  // also, print to cout for illustration purposes:
43  std::cout << arch << std::endl;
44 
45  // --------------------
46  // JSON Deserialization
47  // --------------------
48  // rewind stream for reading from the start
49  ss.seekg(0);
50 
51  // Create a new JSON archive for reading
52  auto arch2 = mrpt::serialization::archiveJSON();
53 
54  // Load the plain text representation into the archive:
55  ss >> arch2;
56 
57  // Parse the JSON data into an MRPT object:
59  arch2["pose_pdf"].readTo(pdf2);
61  arch2["pose"].readTo(p2);
62 
63  std::cout << "read pose:" << p2.asString() << std::endl;
64 }
65 //! [example]
66 
67 int main(int argc, char** argv)
68 {
69  try
70  {
72  return 0;
73  }
74  catch (const std::exception& e)
75  {
76  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
77  return -1;
78  }
79  catch (...)
80  {
81  printf("Untyped exception!");
82  return -1;
83  }
84 }
85 
86 #if 0 // code disabled, only present as an example for the docs:
87 
88 //! [example_raw]
89 #include <json/json.h>
90 
91 void test()
92 {
93  Json::Value val;
95  std::make_unique<CSchemeArchive<Json::Value>>(val));
96 
97  mrpt::poses::CPose2D pt1{1.0, 2.0, 3.0};
98  // Store any CSerializable object into the JSON value:
99  arch = pt1;
100  // Alternative:
101  // arch["pose"] = pt1;
102 
103  std::stringstream ss;
104  ss << val;
105  std::cout << val << std::endl;
106 }
107 
108 //! [example_raw]
109 
110 #endif
void asString(std::string &s) const
Returns a human-readable textual representation of the object (eg: "[x y yaw]", yaw in degrees) ...
Definition: CPose2D.cpp:445
Virtual base class for "schematic archives" (JSON, XML,...)
CMatrixFixed< double, 3, 3 > CMatrixDouble33
Definition: CMatrixFixed.h:367
Declares a class that represents a Probability Density function (PDF) of a 2D pose ...
constexpr double DEG2RAD(const double x)
Degrees to radians.
void WriteAndReadExample()
[example]
int val
Definition: mrpt_jpeglib.h:957
const char * argv[]
A class used to store a 2D pose, including the 2D coordinate point and a heading (phi) angle...
Definition: CPose2D.h:39
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
const int argc
CSchemeArchiveBase archiveJSON()
Returns an archive for reading/writing in JSON format.



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