2015-11-05 10:29:02 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2018-10-18 09:27:04 +02:00
|
|
|
* Copyright (C) 2012-2018 Icinga Development Team (https://icinga.com/) *
|
2015-11-05 10:29:02 +01: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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#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>;
|
|
|
|
}
|
|
|
|
|