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 rtti_example1/test.cpp */
10 
11 //! [example-define-class]
12 #include <mrpt/rtti/CObject.h>
13 #include <iostream>
14 #include <memory>
15 
16 namespace MyNS
17 {
18 class Foo : public mrpt::rtti::CObject
19 {
20  public:
21  Foo() {}
23 
24  void printName() { std::cout << "printName: Foo" << std::endl; }
25 };
26 
27 class BarBase : public mrpt::rtti::CObject
28 {
29  public:
30  BarBase() {}
32 
33  virtual void printName() { std::cout << "printName: BarBase" << std::endl; }
34 };
35 
36 class Bar : public BarBase
37 {
38  public:
39  Bar() {}
41 
42  void printName() override { std::cout << "class: Bar" << std::endl; }
43  void specificBarMethod()
44  {
45  std::cout << "specificBarMethod: reached." << std::endl;
46  }
47 };
48 } // namespace MyNS
49 
53 
54 //! [example-define-class]
55 
56 //! [example-define-class-test]
57 void Test_UserTypes()
58 {
59  using namespace MyNS;
60  const auto id_foo = CLASS_ID(Foo);
61  std::cout << "RTTI Foo (static): " << id_foo->className << std::endl;
62 
63  // Pointers:
64  Bar::Ptr pBar = std::make_shared<Bar>();
68 
69  pBar->printName();
70  pBase->printName();
71  std::cout << "Is Foo? => " << (IS_DERIVED(*pObj, Foo) ? "Yes\n" : "No\n");
72  std::cout << "Is BarBase? => "
73  << (IS_DERIVED(*pObj, BarBase) ? "Yes\n" : "No\n");
74  std::cout << "Is Bar? => " << (IS_DERIVED(*pObj, Bar) ? "Yes\n" : "No\n");
75  if (IS_CLASS(*pObj, Bar))
76  {
77  auto pBar2 = mrpt::ptr_cast<Bar>::from(pObj);
78  pBar2->specificBarMethod();
79  }
80 }
81 
82 //! [example-define-class-test]
83 
84 //! [example-factory]
85 void do_register()
86 {
87  // Register with explicit namespace:
89  {
90  // Register without explicit namespace:
91  using namespace MyNS;
95  }
96 }
97 
99 {
100  do_register();
101 
102  // Test register:
103  {
104  const auto& allClasses = mrpt::rtti::getAllRegisteredClasses();
105  for (const auto& cl : allClasses)
106  {
107  std::cout << "Known class: " << cl->className << ", children of "
108  << (cl->getBaseClass ? cl->getBaseClass()->className
109  : "(none)")
110  << std::endl;
111  }
112  }
113 
114  // Test factory:
115  {
117  if (IS_CLASS(*pObj, MyNS::Bar))
118  {
119  auto pBar = mrpt::ptr_cast<MyNS::Bar>::from(pObj);
120  pBar->specificBarMethod();
121  }
122  }
123 }
124 
125 //! [example-factory]
126 
127 int main(int argc, char** argv)
128 {
129  try
130  {
131  Test_UserTypes();
133  return 0;
134  }
135  catch (const std::exception& e)
136  {
137  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
138  return -1;
139  }
140 }
void printName() override
void Test_UserTypesFactory()
#define DEFINE_VIRTUAL_MRPT_OBJECT(class_name)
This declaration must be inserted in virtual CObject classes definition:
Definition: CObject.h:293
IMPLEMENTS_MRPT_OBJECT(CMultiObjMotionOpt_Scalarization, CMultiObjectiveMotionOptimizerBase, mrpt::nav) CMultiObjMotionOpt_Scalarization
Virtual base to provide a compiler-independent RTTI system.
Definition: CObject.h:177
IMPLEMENTS_VIRTUAL_MRPT_OBJECT(CMultiObjectiveMotionOptimizerBase, CObject, mrpt::nav) CMultiObjectiveMotionOptimizerBase
#define CLASS_ID(T)
Access to runtime class ID for a defined class name.
Definition: CObject.h:102
#define IS_DERIVED(obj, class_name)
True if the given reference to object (derived from mrpt::rtti::CObject) is an instance of the given ...
Definition: CObject.h:151
#define IS_CLASS(obj, class_name)
True if the given reference to object (derived from mrpt::rtti::CObject) is of the given class...
Definition: CObject.h:146
void registerClassCustomName(const char *customName, const TRuntimeClassId *pNewClass)
Mostly for internal use within mrpt sources, to handle exceptional cases with multiple serialization ...
#define CLASS_ID_NAMESPACE(class_name, namespaceName)
Definition: CObject.h:105
const char * argv[]
mrpt::rtti::CObject::Ptr classFactory(const std::string &className)
Creates an object given by its registered name.
Definition: CObject.cpp:108
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
static CAST_TO::Ptr from(const CAST_FROM_PTR &ptr)
Definition: CObject.h:356
void registerClass(const mrpt::rtti::TRuntimeClassId *pNewClass)
Register a class into the MRPT internal list of "CObject" descendents.
void do_register()
const int argc
void Test_UserTypes()
[example-define-class]
#define DEFINE_MRPT_OBJECT(class_name, NameSpace)
This declaration must be inserted in all CObject classes definition, within the class declaration...
Definition: CObject.h:211
[example-define-class]
std::vector< const mrpt::rtti::TRuntimeClassId * > getAllRegisteredClasses()
Returns a list with all the classes registered in the system through mrpt::rtti::registerClass.



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