icinga2/lib/base/dynamicobject.cpp

546 lines
14 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
* *
* 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 *
2012-05-11 13:33:57 +02:00
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
#include "i2-base.h"
using namespace icinga;
double DynamicObject::m_CurrentTx = 0;
set<DynamicObject *> DynamicObject::m_ModifiedObjects;
2013-02-18 14:40:24 +01:00
boost::mutex DynamicObject::m_TransactionMutex;
boost::once_flag DynamicObject::m_TransactionOnce;
Timer::Ptr DynamicObject::m_TransactionTimer;
2013-02-17 19:14:34 +01:00
signals2::signal<void (const DynamicObject::Ptr&)> DynamicObject::OnRegistered;
signals2::signal<void (const DynamicObject::Ptr&)> DynamicObject::OnUnregistered;
signals2::signal<void (double, const set<DynamicObject *>&)> DynamicObject::OnTransactionClosing;
DynamicObject::DynamicObject(const Dictionary::Ptr& serializedObject)
: m_ConfigTx(0)
{
RegisterAttribute("__name", Attribute_Config);
RegisterAttribute("__type", Attribute_Config);
RegisterAttribute("__local", Attribute_Config);
RegisterAttribute("__abstract", Attribute_Config);
RegisterAttribute("__source", Attribute_Local);
RegisterAttribute("methods", Attribute_Config);
2012-08-02 12:12:59 +02:00
if (!serializedObject->Contains("configTx"))
BOOST_THROW_EXCEPTION(invalid_argument("Serialized object must contain a config snapshot."));
2012-08-02 12:12:59 +02:00
/* apply config state from the config item/remote update;
* The DynamicObject::Create function takes care of restoring
* non-config state after the object has been fully constructed */
ApplyUpdate(serializedObject, Attribute_Config);
2013-02-18 14:40:24 +01:00
boost::call_once(m_TransactionOnce, &DynamicObject::Initialize);
}
2013-02-17 19:14:34 +01:00
/*
* @threadsafety Always.
*/
DynamicObject::~DynamicObject(void)
{
2013-02-18 14:40:24 +01:00
boost::mutex::scoped_lock lock(m_TransactionMutex);
m_ModifiedObjects.erase(this);
}
2013-02-18 14:40:24 +01:00
void DynamicObject::Initialize(void)
{
/* Set up a timer to periodically create a new transaction. */
m_TransactionTimer = boost::make_shared<Timer>();
m_TransactionTimer->SetInterval(0.5);
m_TransactionTimer->OnTimerExpired.connect(boost::bind(&DynamicObject::NewTx));
m_TransactionTimer->Start();
}
/**
* @threadsafety Always.
*/
void DynamicObject::SendLocalUpdateEvents(void)
{
map<String, Value, string_iless>::iterator it;
for (it = m_ModifiedAttributes.begin(); it != m_ModifiedAttributes.end(); it++) {
OnAttributeChanged(it->first, it->second);
}
m_ModifiedAttributes.clear();
2012-07-24 13:13:02 +02:00
}
Dictionary::Ptr DynamicObject::BuildUpdate(double sinceTx, int attributeTypes) const
{
DynamicObject::AttributeConstIterator it;
Dictionary::Ptr attrs = boost::make_shared<Dictionary>();
for (it = m_Attributes.begin(); it != m_Attributes.end(); it++) {
if (it->second.Type == Attribute_Transient)
continue;
if ((it->second.Type & attributeTypes) == 0)
continue;
if (it->second.Tx == 0)
continue;
if (it->second.Tx < sinceTx && !(it->second.Type == Attribute_Config && m_ConfigTx >= sinceTx))
continue;
Dictionary::Ptr attr = boost::make_shared<Dictionary>();
attr->Set("data", it->second.Data);
attr->Set("type", it->second.Type);
attr->Set("tx", it->second.Tx);
attrs->Set(it->first, attr);
}
Dictionary::Ptr update = boost::make_shared<Dictionary>();
update->Set("attrs", attrs);
if (m_ConfigTx >= sinceTx && attributeTypes & Attribute_Config)
update->Set("configTx", m_ConfigTx);
else if (attrs->GetLength() == 0)
return Dictionary::Ptr();
return update;
}
2012-04-20 13:49:04 +02:00
2012-09-21 09:43:06 +02:00
void DynamicObject::ApplyUpdate(const Dictionary::Ptr& serializedUpdate,
int allowedTypes)
{
double configTx = 0;
2012-09-21 09:43:06 +02:00
if ((allowedTypes & Attribute_Config) != 0 &&
serializedUpdate->Contains("configTx")) {
configTx = serializedUpdate->Get("configTx");
if (configTx > m_ConfigTx)
ClearAttributesByType(Attribute_Config);
}
Dictionary::Ptr attrs = serializedUpdate->Get("attrs");
Dictionary::Iterator it;
for (it = attrs->Begin(); it != attrs->End(); it++) {
if (!it->second.IsObjectType<Dictionary>())
continue;
Dictionary::Ptr attr = it->second;
int type = attr->Get("type");
if ((type & ~allowedTypes) != 0)
continue;
Value data = attr->Get("data");
double tx = attr->Get("tx");
if (type & Attribute_Config)
RegisterAttribute(it->first, Attribute_Config);
if (!HasAttribute(it->first))
RegisterAttribute(it->first, static_cast<DynamicAttributeType>(type));
InternalSetAttribute(it->first, data, tx, true);
}
}
2012-09-21 09:43:06 +02:00
void DynamicObject::RegisterAttribute(const String& name,
DynamicAttributeType type)
{
DynamicAttribute attr;
attr.Type = type;
attr.Tx = 0;
pair<DynamicObject::AttributeIterator, bool> tt;
tt = m_Attributes.insert(make_pair(name, attr));
if (!tt.second)
tt.first->second.Type = type;
}
2012-08-03 13:19:55 +02:00
void DynamicObject::Set(const String& name, const Value& data)
{
InternalSetAttribute(name, data, GetCurrentTx());
}
void DynamicObject::Touch(const String& name)
{
InternalSetAttribute(name, InternalGetAttribute(name), GetCurrentTx());
}
2012-08-03 13:19:55 +02:00
Value DynamicObject::Get(const String& name) const
{
return InternalGetAttribute(name);
}
2012-09-21 09:43:06 +02:00
void DynamicObject::InternalSetAttribute(const String& name, const Value& data,
double tx, bool allowEditConfig)
{
DynamicAttribute attr;
attr.Type = Attribute_Transient;
attr.Data = data;
attr.Tx = tx;
pair<DynamicObject::AttributeIterator, bool> tt;
tt = m_Attributes.insert(make_pair(name, attr));
Value oldValue;
if (!allowEditConfig && (tt.first->second.Type & Attribute_Config))
BOOST_THROW_EXCEPTION(runtime_error("Config properties are immutable: '" + name + "'."));
if (!tt.second && tx >= tt.first->second.Tx) {
oldValue = tt.first->second.Data;
tt.first->second.Data = data;
tt.first->second.Tx = tx;
}
if (tt.first->second.Type & Attribute_Config)
m_ConfigTx = tx;
2013-02-17 19:14:34 +01:00
{
2013-02-18 14:40:24 +01:00
boost::mutex::scoped_lock lock(m_TransactionMutex);
2013-02-17 19:14:34 +01:00
m_ModifiedObjects.insert(this);
}
/* Use insert() rather than [] so we don't overwrite
* an existing oldValue if the attribute was previously
* changed in the same transaction */
m_ModifiedAttributes.insert(make_pair(name, oldValue));
}
Value DynamicObject::InternalGetAttribute(const String& name) const
{
DynamicObject::AttributeConstIterator it;
it = m_Attributes.find(name);
if (it == m_Attributes.end())
2012-08-03 13:19:55 +02:00
return Empty;
2012-08-03 13:19:55 +02:00
return it->second.Data;
}
bool DynamicObject::HasAttribute(const String& name) const
2012-07-02 14:38:37 +02:00
{
return (m_Attributes.find(name) != m_Attributes.end());
2012-07-02 14:38:37 +02:00
}
void DynamicObject::ClearAttributesByType(DynamicAttributeType type)
2012-07-02 14:38:37 +02:00
{
DynamicObject::AttributeIterator at;
for (at = m_Attributes.begin(); at != m_Attributes.end(); at++) {
if (at->second.Type != type)
continue;
at->second.Tx = 0;
at->second.Data = Empty;
}
}
DynamicType::Ptr DynamicObject::GetType(void) const
{
String name = Get("__type");
return DynamicType::GetByName(name);
}
String DynamicObject::GetName(void) const
{
2012-08-03 13:19:55 +02:00
return Get("__name");
}
bool DynamicObject::IsLocal(void) const
{
2012-08-03 13:19:55 +02:00
Value value = Get("__local");
if (value.IsEmpty())
return false;
return (value != 0);
}
bool DynamicObject::IsAbstract(void) const
{
2012-08-03 13:19:55 +02:00
Value value = Get("__abstract");
if (value.IsEmpty())
return false;
return (value != 0);
2012-07-02 14:38:37 +02:00
}
void DynamicObject::SetSource(const String& value)
{
2012-08-03 13:19:55 +02:00
Set("__source", value);
}
String DynamicObject::GetSource(void) const
{
2012-08-03 13:19:55 +02:00
return Get("__source");
}
void DynamicObject::Register(void)
{
DynamicType::Ptr dtype = GetType();
DynamicObject::Ptr dobj = dtype->GetObject(GetName());
2012-07-30 10:17:29 +02:00
DynamicObject::Ptr self = GetSelf();
assert(!dobj || dobj == self);
dtype->RegisterObject(self);
OnRegistered(GetSelf());
Start();
}
void DynamicObject::Start(void)
{
/* Nothing to do here. */
}
2012-07-30 10:17:29 +02:00
void DynamicObject::Unregister(void)
{
DynamicType::Ptr dtype = GetType();
2013-02-18 14:40:24 +01:00
ObjectLock olock(dtype);
if (!dtype || !dtype->GetObject(GetName()))
return;
dtype->UnregisterObject(GetSelf());
OnUnregistered(GetSelf());
}
ScriptTask::Ptr DynamicObject::InvokeMethod(const String& method,
const vector<Value>& arguments, ScriptTask::CompletionCallback callback)
2012-07-14 15:59:59 +02:00
{
2012-08-03 13:19:55 +02:00
Value value = Get("methods");
if (!value.IsObjectType<Dictionary>())
return ScriptTask::Ptr();
2013-02-18 14:40:24 +01:00
String funcName;
2012-08-03 13:19:55 +02:00
Dictionary::Ptr methods = value;
2012-07-14 15:59:59 +02:00
2013-02-18 14:40:24 +01:00
{
ObjectLock olock(methods);
if (!methods->Contains(method))
return ScriptTask::Ptr();
funcName = methods->Get(method);
}
2012-07-14 15:59:59 +02:00
ScriptFunction::Ptr func = ScriptFunction::GetByName(funcName);
if (!func)
BOOST_THROW_EXCEPTION(invalid_argument("Function '" + funcName + "' does not exist."));
2012-07-14 15:59:59 +02:00
2012-07-15 17:15:49 +02:00
ScriptTask::Ptr task = boost::make_shared<ScriptTask>(func, arguments);
task->Start(callback);
2012-07-14 15:59:59 +02:00
return task;
}
2012-07-24 13:13:02 +02:00
2013-02-17 19:14:34 +01:00
/*
* @threadsafety Always.
*/
void DynamicObject::DumpObjects(const String& filename)
2012-07-24 13:13:02 +02:00
{
Logger::Write(LogInformation, "base", "Dumping program state to file '" + filename + "'");
String tempFilename = filename + ".tmp";
fstream fp;
fp.open(tempFilename.CStr(), std::ios_base::out);
2012-07-24 13:13:02 +02:00
if (!fp)
BOOST_THROW_EXCEPTION(runtime_error("Could not open '" + filename + "' file"));
2012-07-24 13:13:02 +02:00
StdioStream::Ptr sfp = boost::make_shared<StdioStream>(&fp, false);
sfp->Start();
2012-07-24 13:13:02 +02:00
DynamicType::Ptr type;
BOOST_FOREACH(tie(tuples::ignore, type), DynamicType::GetTypes()) {
DynamicObject::Ptr object;
BOOST_FOREACH(tie(tuples::ignore, object), type->GetObjects()) {
if (object->IsLocal())
continue;
Dictionary::Ptr persistentObject = boost::make_shared<Dictionary>();
2012-07-24 13:13:02 +02:00
persistentObject->Set("type", object->GetType()->GetName());
persistentObject->Set("name", object->GetName());
int types = Attribute_Local | Attribute_Replicated;
/* only persist properties for replicated objects or for objects
* that are marked as persistent */
2012-08-02 12:12:59 +02:00
if (!object->GetSource().IsEmpty() /*|| object->IsPersistent()*/)
types |= Attribute_Config;
Dictionary::Ptr update = object->BuildUpdate(0, types);
if (!update)
continue;
persistentObject->Set("update", update);
2012-07-24 13:13:02 +02:00
Value value = persistentObject;
String json = value.Serialize();
2012-07-24 13:13:02 +02:00
NetString::WriteStringToStream(sfp, json);
2012-07-24 13:13:02 +02:00
}
}
sfp->Close();
2012-11-22 12:04:32 +01:00
fp.close();
#ifdef _WIN32
_unlink(filename.CStr());
#endif /* _WIN32 */
2012-08-14 09:51:11 +02:00
if (rename(tempFilename.CStr(), filename.CStr()) < 0)
BOOST_THROW_EXCEPTION(PosixException("rename() failed", errno));
2012-07-24 13:13:02 +02:00
}
2013-02-17 19:14:34 +01:00
/*
* @threadsafety Always.
*/
void DynamicObject::RestoreObjects(const String& filename)
2012-07-24 13:13:02 +02:00
{
Logger::Write(LogInformation, "base", "Restoring program state from file '" + filename + "'");
std::fstream fp;
fp.open(filename.CStr(), std::ios_base::in);
2012-07-24 13:13:02 +02:00
StdioStream::Ptr sfp = boost::make_shared<StdioStream>(&fp, false);
sfp->Start();
2012-07-24 13:13:02 +02:00
unsigned long restored = 0;
String message;
while (NetString::ReadStringFromStream(sfp, &message)) {
2012-08-05 03:10:53 +02:00
Dictionary::Ptr persistentObject = Value::Deserialize(message);
2012-07-24 13:13:02 +02:00
String type = persistentObject->Get("type");
String name = persistentObject->Get("name");
Dictionary::Ptr update = persistentObject->Get("update");
2012-07-24 13:13:02 +02:00
2012-08-05 03:10:53 +02:00
bool hasConfig = update->Contains("configTx");
DynamicType::Ptr dt = DynamicType::GetByName(type);
2013-02-18 14:40:24 +01:00
ObjectLock dlock(dt);
if (!dt)
BOOST_THROW_EXCEPTION(invalid_argument("Invalid type: " + type));
DynamicObject::Ptr object = dt->GetObject(name);
2012-08-05 03:10:53 +02:00
if (hasConfig && !object) {
object = dt->CreateObject(update);
object->Register();
2012-08-05 03:10:53 +02:00
} else if (object) {
object->ApplyUpdate(update, Attribute_All);
2012-07-24 13:13:02 +02:00
}
restored++;
2012-07-24 13:13:02 +02:00
}
2012-11-22 12:04:32 +01:00
sfp->Close();
stringstream msgbuf;
msgbuf << "Restored " << restored << " objects";
Logger::Write(LogDebug, "base", msgbuf.str());
2012-07-24 13:13:02 +02:00
}
void DynamicObject::DeactivateObjects(void)
{
DynamicType::TypeMap::iterator tt;
for (tt = DynamicType::GetTypes().begin(); tt != DynamicType::GetTypes().end(); tt++) {
DynamicType::NameMap::iterator nt;
while ((nt = tt->second->GetObjects().begin()) != tt->second->GetObjects().end()) {
DynamicObject::Ptr object = nt->second;
object->Unregister();
}
}
}
2013-02-17 19:14:34 +01:00
/*
* @threadsafety Always.
*/
double DynamicObject::GetCurrentTx(void)
{
2013-02-18 14:40:24 +01:00
boost::mutex::scoped_lock lock(m_TransactionMutex);
2013-02-17 19:14:34 +01:00
assert(m_CurrentTx != 0);
return m_CurrentTx;
}
2013-02-17 19:14:34 +01:00
/*
2013-02-18 14:40:24 +01:00
* @threadsafety Always. Caller must not hold any Object locks.
2013-02-17 19:14:34 +01:00
*/
void DynamicObject::NewTx(void)
{
2013-02-18 14:40:24 +01:00
double tx;
2013-02-17 19:14:34 +01:00
set<DynamicObject *> objects;
2013-02-17 19:14:34 +01:00
{
2013-02-18 14:40:24 +01:00
boost::mutex::scoped_lock lock(m_TransactionMutex);
2013-02-17 19:14:34 +01:00
2013-02-18 14:40:24 +01:00
tx = m_CurrentTx;
2013-02-17 19:14:34 +01:00
m_ModifiedObjects.swap(objects);
2013-02-18 14:40:24 +01:00
m_CurrentTx = Utility::GetTime();
}
2013-02-17 19:14:34 +01:00
BOOST_FOREACH(DynamicObject *object, objects) {
2013-02-18 14:40:24 +01:00
ObjectLock olock(object);
2013-02-17 19:14:34 +01:00
object->SendLocalUpdateEvents();
}
2013-02-18 14:40:24 +01:00
OnTransactionClosing(tx, objects);
}
2013-02-14 14:58:26 +01:00
void DynamicObject::OnInitCompleted(void)
{ }
2012-08-07 21:02:12 +02:00
void DynamicObject::OnAttributeChanged(const String&, const Value&)
{ }
2012-08-07 21:02:12 +02:00
2013-02-17 19:14:34 +01:00
/*
* @threadsafety Always.
*/
DynamicObject::Ptr DynamicObject::GetObject(const String& type, const String& name)
{
DynamicType::Ptr dtype = DynamicType::GetByName(type);
2013-02-18 14:40:24 +01:00
{
ObjectLock olock(dtype);
return dtype->GetObject(name);
}
}
const DynamicObject::AttributeMap& DynamicObject::GetAttributes(void) const
{
return m_Attributes;
2013-02-02 20:00:02 +01:00
}