icinga2/lib/base/type.hpp

139 lines
3.8 KiB
C++
Raw Normal View History

2013-10-26 09:41:45 +02:00
/******************************************************************************
* Icinga 2 *
2015-01-22 12:00:23 +01:00
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
2013-10-26 09:41:45 +02:00
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program 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 General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software Foundation *
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
#ifndef TYPE_H
#define TYPE_H
2013-10-26 09:41:45 +02:00
2014-05-25 16:23:35 +02:00
#include "base/i2-base.hpp"
#include "base/string.hpp"
2014-05-25 16:23:35 +02:00
#include "base/object.hpp"
#include "base/initialize.hpp"
#include <boost/function.hpp>
2015-02-25 14:03:15 +01:00
#include <vector>
2013-10-26 09:41:45 +02:00
namespace icinga
{
/* keep this in sync with tools/mkclass/classcompiler.hpp */
2014-10-26 19:59:49 +01:00
enum FieldAttribute
{
FAEphemeral = 1,
FAConfig = 2,
FAState = 4,
FAInternal = 64,
2014-10-26 19:59:49 +01:00
};
class Type;
struct Field
2013-10-26 09:41:45 +02:00
{
int ID;
const char *TypeName;
2013-12-03 09:59:21 +01:00
const char *Name;
2013-10-26 09:41:45 +02:00
int Attributes;
Field(int id, const char *type, const char *name, int attributes)
: ID(id), TypeName(type), Name(name), Attributes(attributes)
2013-10-26 09:41:45 +02:00
{ }
};
enum TypeAttribute
{
TAAbstract = 1
};
2014-11-03 00:44:04 +01:00
class I2_BASE_API Type : public Object
2013-10-26 09:41:45 +02:00
{
public:
2014-11-07 12:32:25 +01:00
DECLARE_PTR_TYPEDEFS(Type);
virtual String ToString(void) const;
virtual String GetName(void) const = 0;
2014-11-03 00:44:04 +01:00
virtual Type::Ptr GetBaseType(void) const = 0;
virtual int GetAttributes(void) const = 0;
2013-10-26 09:41:45 +02:00
virtual int GetFieldId(const String& name) const = 0;
virtual Field GetFieldInfo(int id) const = 0;
2013-10-26 09:41:45 +02:00
virtual int GetFieldCount(void) const = 0;
Object::Ptr Instantiate(void) const;
2014-11-03 00:44:04 +01:00
bool IsAssignableFrom(const Type::Ptr& other) const;
bool IsAbstract(void) const;
Object::Ptr GetPrototype(void) const;
void SetPrototype(const Object::Ptr& object);
2014-11-03 00:44:04 +01:00
static void Register(const Type::Ptr& type);
static Type::Ptr GetByName(const String& name);
virtual void SetField(int id, const Value& value);
virtual Value GetField(int id) const;
virtual std::vector<String> GetLoadDependencies(void) const;
2014-11-07 12:32:25 +01:00
protected:
virtual ObjectFactory GetFactory(void) const = 0;
private:
Object::Ptr m_Prototype;
};
class I2_BASE_API TypeType : public Type
{
public:
DECLARE_PTR_TYPEDEFS(Type);
virtual String GetName(void) const;
virtual Type::Ptr GetBaseType(void) const;
virtual int GetAttributes(void) const;
virtual int GetFieldId(const String& name) const;
virtual Field GetFieldInfo(int id) const;
virtual int GetFieldCount(void) const;
protected:
virtual ObjectFactory GetFactory(void) const;
};
template<typename T>
class TypeImpl
{
};
#define REGISTER_TYPE(type) \
namespace { namespace UNIQUE_NAME(rt) { \
void RegisterType ## type(void) \
{ \
icinga::Type::Ptr t = new TypeImpl<type>(); \
2014-11-07 12:32:25 +01:00
type::TypeInstance = t; \
2013-11-08 21:37:21 +01:00
icinga::Type::Register(t); \
} \
\
INITIALIZE_ONCE(RegisterType ## type); \
2014-11-07 12:32:25 +01:00
} } \
DEFINE_TYPE_INSTANCE(type)
#define DEFINE_TYPE_INSTANCE(type) \
Type::Ptr type::TypeInstance
2013-10-26 09:41:45 +02:00
}
#endif /* TYPE_H */