MRPT  1.9.9
maps/src/maps/serializations_unittest.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | http://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2018, Individual contributors, see AUTHORS file |
6  | See: http://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See details in http://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 #define MRPT_NO_WARN_BIG_HDR // Yes, we really want to include all classes.
11 #include <mrpt/maps.h>
12 
13 #include <mrpt/io/CMemoryStream.h>
15 #include <gtest/gtest.h>
16 #include <CTraitsTest.h>
17 
18 using namespace mrpt;
19 using namespace mrpt::maps;
20 using namespace mrpt::obs;
21 using namespace mrpt::io;
22 using namespace mrpt::serialization;
23 using namespace std;
24 
25 #define TEST_CLASS_MOVE_COPY_CTORS(_classname) \
26  template class mrpt::CTraitsTest<_classname>
27 
41 
42 // Create a set of classes, then serialize and deserialize to test possible
43 // bugs:
44 TEST(SerializeTestMaps, WriteReadToMem)
45 {
60 
61  for (size_t i = 0; i < sizeof(lstClasses) / sizeof(lstClasses[0]); i++)
62  {
63  try
64  {
65  CMemoryStream buf;
66  auto arch = mrpt::serialization::archiveFrom(buf);
67  {
68  CSerializable* o =
69  static_cast<CSerializable*>(lstClasses[i]->createObject());
70  arch << *o;
71  delete o;
72  }
73 
74  CSerializable::Ptr recons;
75  buf.Seek(0);
76  arch >> recons;
77  }
78  catch (std::exception& e)
79  {
80  GTEST_FAIL() << "Exception during serialization test for class '"
81  << lstClasses[i]->className << "':\n"
82  << e.what() << endl;
83  }
84  }
85 }
Digital Elevation Model (DEM), a mesh or grid representation of a surface which keeps the estimated h...
A structure that holds runtime class type information.
Definition: CObject.h:30
A cloud of points in 2D or 3D, which can be built from a sequence of laser scans. ...
STL namespace.
A 2D grid map representing the reflectivity of the environment (for example, measured with an IR prox...
#define TEST_CLASS_MOVE_COPY_CTORS(_classname)
CWirelessPowerGridMap2D represents a PDF of wifi concentrations over a 2D area.
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:555
#define CLASS_ID(T)
Access to runtime class ID for a defined class name.
Definition: CObject.h:84
const char * className
Definition: CObject.h:33
This CStream derived class allow using a memory buffer as a CStream.
uint64_t Seek(int64_t Offset, CStream::TSeekOrigin Origin=sFromBeginning) override
Introduces a pure virtual method for moving to a specified position in the streamed resource...
This namespace contains representation of robot actions and observations.
A class for storing a map of 3D probabilistic beacons, using a Montecarlo, Gaussian, or Sum of Gaussians (SOG) representation (for range-only SLAM).
Definition: CBeaconMap.h:44
A three-dimensional probabilistic occupancy grid, implemented as an octo-tree with the "octomap" C++ ...
Definition: COctoMap.h:35
A map of 2D/3D points with individual colours (RGB).
A class for storing an occupancy grid map.
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
CRandomFieldGridMap3D represents a 3D regular grid where each voxel is associated one real-valued pro...
A cloud of points in 2D or 3D, which can be built from a sequence of laser scans. ...
The virtual base class which provides a unified interface for all persistent objects in MRPT...
Definition: CSerializable.h:30
const mrpt::rtti::TRuntimeClassId * lstClasses[]
CGasConcentrationGridMap2D represents a PDF of gas concentrations over a 2D area. ...
mrpt::rtti::CObject * createObject() const
Definition: CObject.cpp:79
A three-dimensional probabilistic occupancy grid, implemented as an octo-tree with the "octomap" C++ ...
TEST(SerializeTestMaps, WriteReadToMem)
The class for storing individual "beacon landmarks" under a variety of 3D position PDF distributions...
Definition: CBeacon.h:36



Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: 7d5e6d718 Fri Aug 24 01:51:28 2018 +0200 at lun nov 2 08:35:50 CET 2020