/usr/include/camp/class.hpp is in libcamp0.7-dev 0.7.1.1-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 | /****************************************************************************
**
** Copyright (C) 2009-2010 TECHNOGERMA Systems France and/or its subsidiary(-ies).
** Contact: Technogerma Systems France Information (contact@technogerma.fr)
**
** This file is part of the CAMP library.
**
** CAMP is free software: you can redistribute it and/or modify
** it under the terms of the GNU Lesser General Public License as published by
** the Free Software Foundation, either version 3 of the License, or
** (at your option) any later version.
**
** CAMP is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU Lesser General Public License for more details.
**
** You should have received a copy of the GNU Lesser General Public License
** along with CAMP. If not, see <http://www.gnu.org/licenses/>.
**
****************************************************************************/
#ifndef CAMP_CLASS_HPP
#define CAMP_CLASS_HPP
#include <camp/config.hpp>
#include <camp/args.hpp>
#include <camp/classget.hpp>
#include <camp/classcast.hpp>
#include <camp/property.hpp>
#include <camp/function.hpp>
#include <camp/tagholder.hpp>
#include <camp/errors.hpp>
#include <camp/userobject.hpp>
#include <camp/detail/classmanager.hpp>
#include <camp/detail/typeid.hpp>
#ifndef Q_MOC_RUN
#include <boost/noncopyable.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/mem_fun.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include <boost/multi_index/random_access_index.hpp>
#endif
#include <string>
namespace bm = boost::multi_index;
namespace camp
{
template <typename T> class ClassBuilder;
class Constructor;
class Value;
class ClassVisitor;
/**
* \brief camp::Class represents a metaclass composed of properties and functions
*
* camp::Class is the main class of the CAMP API. It defines a metaclass, which
* is an abstract representation of a C++ class with its own properties,
* functions, constructors, base classes, etc.
*
* Classes are declared, bound to a C++ type and filled with the \c declare
* template function.
*
* \code
* class MyClass
* {
* public:
*
* MyClass();
* int getProp() const;
* void setProp(int);
* std::string func();
* };
*
* camp::Class::declare<MyClass>("MyClass")
* .tag("help", "this is my class")
* .constructor0()
* .property("prop", &MyClass::getProp, &MyClass::setProp)
* .function("func", &MyClass::func);
* \endcode
*
* It then provides a set of accessors to retrieve its member functions and properties.
*
* \code
* const camp::Class& metaclass = camp::classByType<MyClass>();
*
* const camp::Property& prop = metaclass.property("prop");
* const camp::Function& func = metaclass.function("func");
* \endcode
*
* Another way to inspect a class, which is more type-safe, is to use a ClassVisitor.
*
* \code
* MyVisitor visitor;
* metaclass.visit(visitor);
* \endcode
*
* It also allows to create and destroy instances of the bound C++ class.
*
* \code
* MyClass* obj = metaclass.construct<MyClass>();
* metaclass.destroy(obj);
* \endcode
*
* \remark All function and property names are unique within the metaclass.
*
* \sa Enum, TagHolder, ClassBuilder, Function, Property
*/
class CAMP_API Class : public TagHolder, boost::noncopyable
{
public:
/**
* \brief Declare a new metaclass
*
* This is the function to call to create a new metaclass. The template
* parameter T is the C++ class that will be bound to the metaclass.
*
* \param name Name of the metaclass in CAMP. This name identifies
* the metaclass and thus has to be unique
*
* \return A ClassBuilder<T> object that will provide functions
* to fill the new metaclass with properties, functions, etc.
*/
template <typename T>
static ClassBuilder<T> declare(const std::string& name);
public:
/**
* \brief Return the name of the metaclass
*
* \return String containing the name of the metaclass
*/
const std::string& name() const;
/**
* \brief Return the total number of base metaclasses of this metaclass
*
* \return Number of base metaclasses
*/
std::size_t baseCount() const;
/**
* \brief Return a base metaclass from its index
*
* \param index Index of the base to get
*
* \return Reference to the index-th base metaclass of this metaclass
*
* \throw OutOfRange index is out of range
*/
const Class& base(std::size_t index) const;
/**
* \brief Return the total number of functions of this metaclass
*
* \return Number of functions
*/
std::size_t functionCount() const;
/**
* \brief Check if this metaclass contains the given function
*
* \param name Name of the function to check
*
* \return True if the function is in the metaclass, false otherwise
*/
bool hasFunction(const std::string& name) const;
/**
* \brief Get a function from its index in this metaclass
*
* \param index Index of the function to get
*
* \return Reference to the function
*
* \throw OutOfRange index is out of range
*/
const Function& function(std::size_t index) const;
/**
* \brief Get a function from its name
*
* \param name Name of the function to get (case sensitive)
*
* \return Reference to the function
*
* \throw FunctionNotFound \a name is not a function of the metaclass
*/
const Function& function(const std::string& name) const;
/**
* \brief Return the total number of properties of this metaclass
*
* \return Number of properties
*/
std::size_t propertyCount() const;
/**
* \brief Check if this metaclass contains the given property
*
* \param name Name of the property to check
*
* \return True if the property is in the metaclass, false otherwise
*/
bool hasProperty(const std::string& name) const;
/**
* \brief Get a property from its index in this metaclass
*
* \param index Index of the property to get
*
* \return Reference to the property
*
* \throw OutOfRange index is out of range
*/
const Property& property(std::size_t index) const;
/**
* \brief Get a property from its name
*
* \param name Name of the property to get (case sensitive)
*
* \return Reference to the property
*
* \throw PropertyNotFound \a name is not a property of the metaclass
*/
const Property& property(const std::string& name) const;
/**
* \brief Construct a new instance of the C++ class bound to the metaclass
*
* If no constructor can match the provided arguments, UserObject::nothing
* is returned.
* The new instance is wrapped into a UserObject. It must be destroyed
* with the Class::destroy function.
*
* \param args Arguments to pass to the constructor (empty by default)
*
* \return New instance wrapped into a UserObject, or UserObject::nothing if it failed
*/
UserObject construct(const Args& args = Args::empty) const;
/**
* \brief Destroy an instance of the C++ class bound to the metaclass
*
* This function must be called to destroy every instance created with
* Class::construct.
*
* \param object Object to be destroyed
*/
void destroy(const UserObject& object) const;
/**
* \brief Start visitation of a class
*
* \param visitor Visitor to use for visitation
*/
void visit(ClassVisitor& visitor) const;
/**
* \brief Convert a pointer to an object to be compatible with a base or derived metaclass
*
* The target metaclass may be a base or a derived of this, both cases are properly handled.
*
* \param pointer Pointer to convert
* \param target Target metaclass to convert to
*
* \return Converted pointer
*
* \throw ClassUnrelated \a target is not a base nor a derived class of this
*/
void* applyOffset(void* pointer, const Class& target) const;
/**
* \brief Operator == to check equality between two metaclasses
*
* Two metaclasses are equal if their name is the same.
*
* \param other Metaclass to compare with this
*
* \return True if both metaclasses are the same, false otherwise
*/
bool operator==(const Class& other) const;
/**
* \brief Operator != to check inequality between two metaclasses
*
* \param other Metaclass to compare with this
*
* \return True if metaclasses are different, false if they are equal
*/
bool operator!=(const Class& other) const;
private:
template <typename T> friend class ClassBuilder;
friend class detail::ClassManager;
/**
* \brief Construct the metaclass from its name
*
* \param name Name of the metaclass
*/
Class(const std::string& name);
/**
* \brief Get the offset of a base metaclass
*
* \param base Base metaclass to check
*
* \return offset between this and base, or -1 if both classes are unrelated
*/
int baseOffset(const Class& base) const;
private:
/**
* \brief Structure holding informations about a base metaclass
*/
struct BaseInfo
{
const Class* base;
int offset;
};
typedef boost::shared_ptr<Property> PropertyPtr;
typedef boost::shared_ptr<Function> FunctionPtr;
typedef boost::shared_ptr<Constructor> ConstructorPtr;
typedef std::vector<ConstructorPtr> ConstructorList;
typedef std::vector<BaseInfo> BaseList;
struct Id;
struct Name;
typedef boost::multi_index_container<PropertyPtr,
bm::indexed_by<bm::random_access<bm::tag<Id> >,
bm::ordered_unique<bm::tag<Name>, bm::const_mem_fun<Property, const std::string&, &Property::name> >
>
> PropertyTable;
typedef boost::multi_index_container<FunctionPtr,
bm::indexed_by<bm::random_access<bm::tag<Id> >,
bm::ordered_unique<bm::tag<Name>, bm::const_mem_fun<Function, const std::string&, &Function::name> >
>
> FunctionTable;
typedef PropertyTable::index<Name>::type PropertyNameIndex;
typedef FunctionTable::index<Name>::type FunctionNameIndex;
typedef void (*Destructor)(const UserObject&);
std::string m_name; ///< Name of the metaclass
FunctionTable m_functions; ///< Table of metafunctions indexed by name
PropertyTable m_properties; ///< Table of metaproperties indexed by name
BaseList m_bases; ///< List of base metaclasses
ConstructorList m_constructors; ///< List of metaconstructors
Destructor m_destructor; ///< Destructor (function that is able to delete an abstract object)
};
} // namespace camp
// Must be included here because of mutual dependance between Class and ClassBuilder
#include <camp/classbuilder.hpp>
#include <camp/class.inl>
#endif // CAMP_CLASS_HPP
|