00001 /* 00002 * Copyright (c) 2012, Willow Garage, Inc. 00003 * All rights reserved. 00004 * 00005 * Redistribution and use in source and binary forms, with or without 00006 * modification, are permitted provided that the following conditions are met: 00007 * 00008 * * Redistributions of source code must retain the above copyright 00009 * notice, this list of conditions and the following disclaimer. 00010 * * Redistributions in binary form must reproduce the above copyright 00011 * notice, this list of conditions and the following disclaimer in the 00012 * documentation and/or other materials provided with the distribution. 00013 * * Neither the name of the Willow Garage, Inc. nor the names of its 00014 * contributors may be used to endorse or promote products derived from 00015 * this software without specific prior written permission. 00016 * 00017 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00018 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00019 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00020 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 00021 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 00022 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 00023 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 00024 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 00025 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 00026 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00027 * POSSIBILITY OF SUCH DAMAGE. 00028 */ 00029 00030 //Note: This header defines a simplication of Poco::MetaObject that allows us to tag MetaObjects with an associated library name. 00031 00032 #ifndef PLUGINS_PRIVATE_META_OBJECT_DEFINED 00033 #define PLUGINS_PRIVATE_META_OBJECT_DEFINED 00034 00035 #include <console_bridge/console.h> 00036 #include <vector> 00037 #include <typeinfo> 00038 00039 #include "class_loader/console_bridge_compatibility.h" 00040 00041 namespace class_loader 00042 { 00043 00044 class ClassLoader; //Forward declaration 00045 00046 namespace class_loader_private 00047 { 00048 00049 typedef std::vector<class_loader::ClassLoader*> ClassLoaderVector; 00050 00055 class AbstractMetaObjectBase 00056 { 00057 public: 00058 00062 AbstractMetaObjectBase(const std::string& class_name, const std::string& base_class_name); 00068 ~AbstractMetaObjectBase(); 00069 00074 std::string className() const; 00075 00079 std::string baseClassName() const; 00083 std::string typeidBaseClassName() const; 00084 00089 std::string getAssociatedLibraryPath(); 00090 00094 void setAssociatedLibraryPath(std::string library_path); 00095 00100 void addOwningClassLoader(ClassLoader* loader); 00101 00106 void removeOwningClassLoader(const ClassLoader* loader); 00107 00112 bool isOwnedBy(const ClassLoader* loader); 00113 00117 bool isOwnedByAnybody(); 00118 00122 ClassLoaderVector getAssociatedClassLoaders(); 00123 00124 protected: 00128 virtual void dummyMethod(){} 00129 00130 protected: 00131 ClassLoaderVector associated_class_loaders_; 00132 std::string associated_library_path_; 00133 std::string base_class_name_; 00134 std::string class_name_; 00135 std::string typeid_base_class_name_; 00136 }; 00137 00143 template <class B> 00144 class AbstractMetaObject : public AbstractMetaObjectBase 00145 { 00146 public: 00151 AbstractMetaObject(const std::string& class_name, const std::string& base_class_name) : 00152 AbstractMetaObjectBase(class_name, base_class_name) 00153 { 00154 AbstractMetaObjectBase::typeid_base_class_name_ = std::string(typeid(B).name()); 00155 } 00156 00161 virtual B* create() const = 0; 00164 00165 private: 00166 AbstractMetaObject(); 00167 AbstractMetaObject(const AbstractMetaObject&); 00168 AbstractMetaObject& operator = (const AbstractMetaObject&); 00169 }; 00170 00177 template <class C, class B> 00178 class MetaObject: public AbstractMetaObject<B> 00179 { 00180 public: 00184 MetaObject(const std::string& class_name, const std::string& base_class_name) : 00185 AbstractMetaObject<B>(class_name, base_class_name) 00186 { 00187 } 00188 00193 B* create() const 00194 { 00195 return new C; 00196 } 00197 }; 00198 00199 } // End namespace class_loader_private 00200 } // End namespace class_loader 00201 00202 #endif