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_stl/test.cpp */
10 
11 #include <iostream> // cout
12 
13 template <class CONTAINER>
14 void printMap(const CONTAINER& m)
15 {
16  for (const auto& e : m) std::cout << e.first << "=" << e.second << ", ";
17  std::cout << std::endl;
18 }
19 
20 //! [example]
25 
26 #include <iostream> // cout
27 
29 {
30  // Declare data to be serialized:
31  std::map<std::string, uint32_t> m1{{"one", 1}, {"two", 2}};
32 
33  // === Write ===
34  {
35  // CStream output:
36  mrpt::io::CFileOutputStream ofs("file.bin");
37  auto arch_out = mrpt::serialization::archiveFrom(ofs);
38  // Use << to serialize in binary form:
39  arch_out << m1;
40  }
41 
42  // === Read ===
43  std::map<std::string, uint32_t> m2;
44  {
45  // CStream output:
46  mrpt::io::CFileInputStream ifs("file.bin");
47  auto arch_in = mrpt::serialization::archiveFrom(ifs);
48  // Use >> to deserialize:
49  arch_in >> m2;
50  }
51 
52  std::cout << "Wrote: ";
53  printMap(m1);
54  std::cout << "Read : ";
55  printMap(m2);
56 }
57 //! [example]
58 
59 //! [example_stdio]
63 #include <fstream> // io std streams
64 
65 #include <iostream> // cout
66 
68 {
69  // Declare data to be serialized:
70  std::map<std::string, uint32_t> m1{{"one", 1}, {"two", 2}};
71 
72  // === Write ===
73  {
74  // CStream output:
75  std::ofstream ofs("file.bin");
76  auto arch_out = mrpt::serialization::archiveFrom<std::ostream>(ofs);
77  // Use << to serialize in binary form:
78  arch_out << m1;
79  }
80 
81  // === Read ===
82  std::map<std::string, uint32_t> m2;
83  {
84  // CStream output:
85  std::ifstream ifs("file.bin");
86  auto arch_in = mrpt::serialization::archiveFrom<std::istream>(ifs);
87  // Use >> to deserialize:
88  arch_in >> m2;
89  }
90 
91  std::cout << "Wrote: ";
92  printMap(m1);
93  std::cout << "Read : ";
94  printMap(m2);
95 }
96 //! [example_stdio]
97 
98 // ------------------------------------------------------
99 // MAIN
100 // ------------------------------------------------------
101 int main(int argc, char** argv)
102 {
103  try
104  {
107  return 0;
108  }
109  catch (const std::exception& e)
110  {
111  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
112  return -1;
113  }
114  catch (...)
115  {
116  printf("Untyped exception!");
117  return -1;
118  }
119 }
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
This CStream derived class allow using a file as a read-only, binary stream.
void WriteAndReadExampleStdIO()
[example]
void WriteAndReadExample()
[example]
This CStream derived class allow using a file as a write-only, binary stream.
const char * argv[]
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
void printMap(const CONTAINER &m)



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