2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2015-11-05 10:29:02 +01:00
|
|
|
|
|
|
|
#include "base/objecttype.hpp"
|
|
|
|
#include "base/initialize.hpp"
|
2018-01-04 18:24:45 +01:00
|
|
|
#include <boost/throw_exception.hpp>
|
2015-11-05 10:29:02 +01:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2018-09-04 15:17:34 +02:00
|
|
|
/* Ensure that the priority is lower than the basic namespace initialization in scriptframe.cpp. */
|
2016-08-27 09:35:08 +02:00
|
|
|
INITIALIZE_ONCE_WITH_PRIORITY([]() {
|
2015-11-05 10:29:02 +01:00
|
|
|
Type::Ptr type = new ObjectType();
|
|
|
|
type->SetPrototype(Object::GetPrototype());
|
|
|
|
Type::Register(type);
|
|
|
|
Object::TypeInstance = type;
|
2016-08-27 09:35:08 +02:00
|
|
|
}, 20);
|
2015-11-05 10:29:02 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
String ObjectType::GetName() const
|
2015-11-05 10:29:02 +01:00
|
|
|
{
|
|
|
|
return "Object";
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
Type::Ptr ObjectType::GetBaseType() const
|
2015-11-05 10:29:02 +01:00
|
|
|
{
|
2017-11-30 08:36:35 +01:00
|
|
|
return nullptr;
|
2015-11-05 10:29:02 +01:00
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
int ObjectType::GetAttributes() const
|
2015-11-05 10:29:02 +01:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ObjectType::GetFieldId(const String& name) const
|
|
|
|
{
|
|
|
|
if (name == "type")
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
Field ObjectType::GetFieldInfo(int id) const
|
|
|
|
{
|
|
|
|
if (id == 0)
|
2018-01-04 09:28:24 +01:00
|
|
|
return {1, "String", "type", nullptr, nullptr, 0, 0};
|
2015-11-05 10:29:02 +01:00
|
|
|
else
|
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Invalid field ID."));
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
int ObjectType::GetFieldCount() const
|
2015-11-05 10:29:02 +01:00
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
ObjectFactory ObjectType::GetFactory() const
|
2015-11-05 10:29:02 +01:00
|
|
|
{
|
|
|
|
return DefaultObjectFactory<Object>;
|
|
|
|
}
|
|
|
|
|