MRPT  2.0.1
porting_mrpt2.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 // clang-format off
11 /** \page porting_mrpt2 Porting code from MRPT 1.{3,4,5} to MRPT 2.*
12  *
13  * MRPT 2.0 includes several fundamental changes, most of them related to API
14  * clean ups and the introduction of C++17 as the minimum supported version of
15  * the language.
16  *
17  * Existing user applications may need to be adapted to continue compiling and
18  * working as usual after updating to MRPT 2.*:
19  *
20  * **Mandatory changes**
21  * - Your project must use C++17. Using CMake this is now done automatically when linking your targets against MRPT imported targes. See: \ref mrpt_from_cmake.
22  *
23  * - Matrices and classes no longer inherits from Eigen classes. See: \ref mrpt_math_vectors_matrices_grp
24  * - `mrpt::math::CMatrix` --> `mrpt::math::CMatrixF`
25  *
26  * - The header `<mrpt/math/lightweight_geom_data.h>` is deprecated. Instead, use
27  * - `<mrpt/math/TPose2D.h>`
28  * - `<mrpt/math/TPose3D.h>`
29  * - `<mrpt/math/TPoint2D.h>`
30  * - (and so on)
31  *
32  * - **Smart pointers** are now standard [`std::shared_ptr<>`](http://en.cppreference.com/w/cpp/memory/shared_ptr) instead of those based on `stlplus`. Required changes:
33  * - `ptr.clear()` --> `ptr.reset()`. Also, notice that the former `stlplus` semantics of `clear()` deleting **all** copies
34  * of the object, as hold by different smart pointers, is no longer maintained. There is no longer such a possibility, since the
35  * C++11 standard does not allow it to happen (and it makes sense in this way).
36  * - `ptr.clear_unique()` --> `ptr.reset()`. (Read this note above)
37  * - `ptr.make_unique()` does no longer exists, and does not make sense (read above).
38  * - `ptr.pointer()` --> `ptr.get()`
39  * - Smart pointers have been renamed from `CFooPtr` to the more standard `CFoo::Ptr`, with a new pointer-to-const version `CFoo::ConstPtr`.
40  * - Note: To help with porting and maintaining existing code bases, MRPT >=1.5.4 offers MRPT2-like `CFoo::Ptr` smart pointers. Refer to changelog of mrpt 1.5.4.
41  * - You can keep using code like:
42  * \code
43  * CFoo::Ptr o = CFoo::Create();
44  * \endcode
45  * in MRPT 2.0 to create a smart pointer, but can also use `std::make_shared<CFoo>()`, or `std::make_shared<CFoo>()` if the
46  * class must be memory-aligned (typically, if it contains Eigen matrices). The arguments of `Create()` are now [perfectly-forwarded](http://en.cppreference.com/w/cpp/utility/forward) to
47  * the class ctor, so the parameter list must exactly match any of the available ctors.
48  * - Smart pointer typecasting now is done via C++11 standard functions:
49  * - Example: Old code
50  * \code
51  * CObservationPtr obs = getObsFromSomewhere();
52  * CObservationGPSPtr gps = CObservationGPS(obs);
53  * \endcode
54  * becomes pure C++14 in MRPT 2.0:
55  * \code
56  * CObservation::Ptr obs = getObsFromSomewhere();
57  * CObservationGPS::Ptr gps = std::dynamic_pointer_cast<CObservationGPS>(obs);
58  * \endcode
59  * or, if you need to keep your code compatible with MRPT >=1.5.4:
60  * \code
61  * CObservation::Ptr obs = getObsFromSomewhere();
62  * CObservationGPS::Ptr gps = mrpt::ptr_cast<CObservationGPS>::from(obs);
63  * \endcode
64  *
65  * - Threads, semaphores and mutexes are now based on C++11 standard library.
66  * Required changes:
67  * - `mrpt::synch::CCriticalSection cs;` --> `std::mutex cs;`
68  * - `mrpt::synch::CCriticalSectionLocker lock(&cs);` --> `std::lock_guard<std::mutex> lock(cs);`
69  * - `mrpt::system::TThreadHandle h = mrpt::system::createThread(...);` --> `std::thread h = std::thread(...);`
70  * - `mrpt::system::sleep(5);` --> `std::this_thread::sleep_for(5ms);`
71  * - `mrpt::synch::CSemaphore sem; sem.waitForSignal(timeout); sem.release();` --> `std::promise<void> sem; auto fut = sem.get_future(); fut.wait_for(...); sem.set_value();`
72  * - Scheduler functions are now in a new header `<mrpt/system/scheduler.h>`, not in the old `<mrpt/system/threads.h`:
73  * - `mrpt::system::changeCurrentProcessPriority()`
74  * - `mrpt::system::changeCurrentThreadPriority()`
75  *
76  * - `mrpt::utils::CObject::duplicate()` has been removed, use the equivalent (redundant) `mrpt::utils::CObject::clone()`.
77  *
78  * - CSerialPort, `mrpt::utils::net`, sockets: have been moved to its own new module \ref mrpt_comms_grp under namespace `mrpt::comms`.
79  *
80  * - Static variables have been dropped in favor of global getter/setter functions. This allowed removing all DLL import/export macros
81  * for Windows compilers. Important changes are:
82  * - `mrpt::math::randomGenerator` --> `mrpt::math::getRandomGenerator()`
83  * - `mrpt::global_settings` old static variables have been replaced by getter/setter functions.
84  *
85  * - `ASSERT_*` macros must now be ended with a semicolon, e.g. `ASSERT_(a>0);`
86  *
87  * - Serialization: See tutorial of the new module \ref mrpt_serialization_grp
88  * - To serialize an object to/from a CStream, you must now use CArchive:
89  * \code
90  * CStreamXXXX f; // Any mrpt::io::CStream type
91  * auto arch = mrpt::serialization::archiveFrom(f);
92  * arch << object;
93  * arch >> object;
94  * \endcode
95  * - The two methods `writeToStream()` and `readFromStream()` of old `CSerializable` classes must be replaced by the three methods:
96  * `serializeGetVersion()`, `serializeTo()`, and `serializeTo()`. See tutorials in \ref mrpt_serialization_grp.
97  *
98  * - Implicit constructor to convert from mrpt::poses::CPose3D to mrpt::math::TPose3D has been removed, due to the refactoring
99  * of mrpt::math and mrpt::poses into separate libraries. To convert CPose3D -> TPose3D, use the new method mrpt::poses::CPose3D::asTPose()
100  * \code
101  * mrpt::poses::CPose3D p1;
102  * mrpt::math::TPose3D p2 = p1; // ERROR in mrpt 2.0 (built in MRPT 1.*)
103  * mrpt::math::TPose3D p3 = p1.asTPose(); // OK for mrpt 2.0
104  * \endcode
105  *
106  * - 16-byte memory-aligned STL containers are now not required, since C++17 already observes the required alignment by default.
107  *
108  * - mrpt::system::TTimeStamp is now a C++11-compatible std::chrono clock
109  * time_point. All existing backwards-compatible functions to handle dates and
110  * timestamps in MRPT remain, but C++11 chrono functions can be now also used
111  * instead. mrpt::system::secondsToTimestamp() has been removed since it mixed
112  * up a duration with time_point and may be prone to errors.
113  *
114  * - The RTTI macros `IS_CLASS()` and `IS_DERIVED()` now accept references to objects instead of pointers:
115  * \code
116  * if (IS_CLASS(ptrObj, ...)) // ERROR in mrpt 2.0 (built in MRPT 1.*)
117  * if (IS_CLASS(*ptrObj, ...)) // OK for mrpt 2.0
118  *
119  * if (IS_DERIVED(ptrObj, ...)) // ERROR in mrpt 2.0 (built in MRPT 1.*)
120  * if (IS_DERIVED(*ptrObj, ...)) // OK for mrpt 2.0
121  * \endcode
122  *
123  * **Optional changes**
124  * - Use the `Foo::ConstPtr` smart pointers when possible instead of its
125  * non-const counterpart.
126  *
127  *
128  */
129 // clang-format on



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