Visualization Library 2.1.0

A lightweight C++ OpenGL middleware for 2D/3D graphics

VL     Star     Watch     Fork     Issue

[Download] [Tutorials] [All Classes] [Grouped Classes]
Registry.hpp
Go to the documentation of this file.
1 /**************************************************************************************/
2 /* */
3 /* Visualization Library */
4 /* http://visualizationlibrary.org */
5 /* */
6 /* Copyright (c) 2005-2020, Michele Bosi */
7 /* All rights reserved. */
8 /* */
9 /* Redistribution and use in source and binary forms, with or without modification, */
10 /* are permitted provided that the following conditions are met: */
11 /* */
12 /* - Redistributions of source code must retain the above copyright notice, this */
13 /* list of conditions and the following disclaimer. */
14 /* */
15 /* - Redistributions in binary form must reproduce the above copyright notice, this */
16 /* list of conditions and the following disclaimer in the documentation and/or */
17 /* other materials provided with the distribution. */
18 /* */
19 /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND */
20 /* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED */
21 /* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */
22 /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR */
23 /* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES */
24 /* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; */
25 /* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */
26 /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
27 /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS */
28 /* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
29 /* */
30 /**************************************************************************************/
31 
32 #ifndef VLXRegistry_INCLUDE_ONCE
33 #define VLXRegistry_INCLUDE_ONCE
34 
35 #include <vlX/link_config.hpp>
36 #include <vlX/ClassWrapper.hpp>
37 #include <string>
38 #include <map>
39 
40 namespace vlX
41 {
43  class Registry: public vl::Object
44  {
46 
47  public:
48  void registerClassWrapper(const vl::TypeInfo& type, ClassWrapper* wrapper)
49  {
50  std::string tag = std::string("<") + type.name() + ">";
51  mExportRegistry[type] = wrapper;
52  mImportRegistry[tag] = wrapper;
53  }
54 
55  std::map< std::string, vl::ref<ClassWrapper> >& importRegistry() { return mImportRegistry; }
56  std::map< vl::TypeInfo, vl::ref<ClassWrapper> >& exportRegistry() { return mExportRegistry; }
57 
58  const std::map< std::string, vl::ref<ClassWrapper> >& importRegistry() const { return mImportRegistry; }
59  const std::map< vl::TypeInfo, vl::ref<ClassWrapper> >& exportRegistry() const { return mExportRegistry; }
60 
61  private:
62  std::map< std::string, vl::ref<ClassWrapper> > mImportRegistry; // <tag> --> ClassWrapper
63  std::map< vl::TypeInfo, vl::ref<ClassWrapper> > mExportRegistry; // TypeInfo --> ClassWrapper
64  };
65 
67  VLX_EXPORT extern void setDefVLXRegistry(Registry* reg);
68 }
69 
70 #endif
void registerClassWrapper(const vl::TypeInfo &type, ClassWrapper *wrapper)
Definition: Registry.hpp:48
std::map< vl::TypeInfo, vl::ref< ClassWrapper > > & exportRegistry()
Definition: Registry.hpp:56
const std::map< vl::TypeInfo, vl::ref< ClassWrapper > > & exportRegistry() const
Definition: Registry.hpp:59
Base cass for all class wrappers implementing the translation to/from its VLX representation.
VLX_EXPORT Registry * defVLXRegistry()
Definition: pimpl.cpp:43
#define VL_INSTRUMENT_CLASS(ClassName, BaseClass)
Definition: TypeInfo.hpp:122
Represents a class type.
Definition: TypeInfo.hpp:46
const std::map< std::string, vl::ref< ClassWrapper > > & importRegistry() const
Definition: Registry.hpp:58
std::map< std::string, vl::ref< ClassWrapper > > & importRegistry()
Definition: Registry.hpp:55
The base class for all the reference counted objects.
Definition: Object.hpp:158
Registry of vl::ClassWrapper objects, used by vl::VLXSerializer, see also vl::defVLXRegistry().
Definition: Registry.hpp:43
const char * name() const
The name of the class including the namespace.
Definition: TypeInfo.hpp:65
VLX_EXPORT void setDefVLXRegistry(Registry *reg)
Definition: pimpl.cpp:47