MRPT  2.0.1
lib_mrpt_serialization.h
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 details in https://www.mrpt.org/License |
8  +---------------------------------------------------------------------------+
9  */
10 
11 /** \defgroup mrpt_serialization_grp [mrpt-serialization]
12 
13 Serialization (marshalling) portable library for C++ objects persistence.
14 
15 [TOC]
16 
17 # Library `mrpt-serialization`
18 <small> [New in MRPT 2.0.0] </small>
19 
20 This library is part of MRPT and can be installed in Debian-based systems with:
21 
22  sudo apt install libmrpt-serialization-dev
23 
24 See: \ref mrpt_from_cmake
25 
26 ## Binary serialization (most efficient)
27 
28 Main classes and concepts associated with this library:
29 - mrpt::serialization::CArchive provides:
30  - An abstraction of I/O streams (e.g. std::stream's, MRPT's
31 mrpt::io::CStream's, sockets)
32  - A portable API (endianness aware) for serialization of data structures on
33 those streams.
34 - mrpt::serialization::CSerializable provides:
35  - A generic way to define persistent C++ classes.
36  - Versioning: if class fields are added or removed, you'll still be able to
37 read old data files.
38 
39 Serialization happens via `archive << object` operators in all cases but,
40 underneath, two mechanisms are provided:
41 - **Direct overloading of the `<<`/`>>` operators** for
42 mrpt::serialization::CArchive objects.
43  - Pros: concise declaration (just the two operator functions).
44  - Cons: Cannot handle versioning. Cannot deserialize unknown types (i.e. no
45 support for class factory).
46 - **Via mrpt::serialization::CSerializable** and associated macros:
47  - Pros: Allows polymorphic classes to be (de)serialized. Allows versioning.
48  - Cons: Requires adding macros to class definitions. Requires
49 **registering** the class with \ref mrpt_rtti_grp.
50 
51 Support for STL containers is provided via this "direct mechanism" for the
52 container structure itself, but contained elements can use any of the
53 serialization mechanisms.
54 
55 Serializing `shared_ptr<T>` is supported for any arbitrary type `T`. It is legal
56 to serialize an empty (`nullptr`) smart pointer; an empty pointer will be read
57 back. Polymorphic classes can be also writen and read, although reading a smart
58 pointer to a polymorphic base class is only supported for classes derived from
59 MRPT's CSerializable, since that operation requires registering types in a class
60 factory (see \a mrpt_rtti_grp and mrpt::serialization::CSerializable).
61 
62 ### Example #1: serialize STL container via MRPT `CStream`s
63 
64 See: \ref serialization_stl/test.cpp
65 \snippet serialization_stl/test.cpp example
66 Output:
67 \include serialization_stl/console.out
68 
69 ### Example #2: serialize STL container via `std::ostream` and `std::istream`
70 
71 See: \ref serialization_stl/test.cpp
72 \snippet serialization_stl/test.cpp example_stdio
73 Output:
74 \include serialization_stl/console.out
75 
76 ### Example #3: Serialization of existing MRPT classes
77 
78 Write me!
79 
80 ### Example #4: Polymorphic serialization of user classes
81 
82 Write me!
83 
84 
85 ## Schema (plain-text) serialization (human readable)
86 
87 An alternative mechanism to serialize objects is based on
88 mrpt::serialization::CSchemeArchive and allow objects to be (de)serialized in
89 plain text formats like XML, JSON, YAML, etc.
90 For now (Aug 2018) only JSON is implemented.
91 
92 ### Example #1: Easy JSON serialization
93 
94 This method only requires having MRPT built against jsoncpp, but does not
95 enforce the user to also depend on that library.
96 
97 See: \ref serialization_json_example/test.cpp
98 \snippet serialization_json_example/test.cpp example
99 Output:
100 \include serialization_json_example/console.out
101 
102 ### Example #2: JSON serialization with full access to jsoncpp
103 
104 If you want to have full control on the JSON formatting and other details,
105 you may directly depend on jsoncpp and use the following, template-based access
106 to MRPT serialization:
107 
108 See: \ref serialization_json_example/test.cpp
109 \snippet serialization_json_example/test.cpp example_raw
110 
111 */



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