2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2013-09-25 07:43:57 +02:00
|
|
|
* Copyright (C) 2012-2013 Icinga Development Team (http://www.icinga.org/) *
|
2012-05-10 12:06:41 +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 *
|
2012-05-11 13:33:57 +02:00
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
2012-05-10 12:06:41 +02:00
|
|
|
******************************************************************************/
|
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
#include "base/dynamicobject.h"
|
|
|
|
#include "base/dynamictype.h"
|
|
|
|
#include "base/netstring.h"
|
|
|
|
#include "base/registry.h"
|
|
|
|
#include "base/stdiostream.h"
|
2013-08-28 08:18:58 +02:00
|
|
|
#include "base/debug.h"
|
2013-03-16 21:18:53 +01:00
|
|
|
#include "base/objectlock.h"
|
|
|
|
#include "base/logger_fwd.h"
|
|
|
|
#include "base/exception.h"
|
2013-03-18 11:02:18 +01:00
|
|
|
#include "base/timer.h"
|
2013-03-25 18:36:15 +01:00
|
|
|
#include "base/scriptfunction.h"
|
2013-03-16 21:18:53 +01:00
|
|
|
#include <fstream>
|
|
|
|
#include <boost/make_shared.hpp>
|
2013-08-20 11:06:04 +02:00
|
|
|
#include <boost/tuple/tuple.hpp>
|
2013-03-16 21:18:53 +01:00
|
|
|
#include <boost/foreach.hpp>
|
2013-03-18 17:04:22 +01:00
|
|
|
#include <boost/exception/errinfo_api_function.hpp>
|
|
|
|
#include <boost/exception/errinfo_errno.hpp>
|
|
|
|
#include <boost/exception/errinfo_file_name.hpp>
|
2012-03-31 15:18:09 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
boost::signals2::signal<void (const DynamicObject::Ptr&)> DynamicObject::OnStarted;
|
|
|
|
boost::signals2::signal<void (const DynamicObject::Ptr&)> DynamicObject::OnStopped;
|
|
|
|
boost::signals2::signal<void (const DynamicObject::Ptr&)> DynamicObject::OnStateChanged;
|
2013-09-13 07:49:12 +02:00
|
|
|
boost::signals2::signal<void (const DynamicObject::Ptr&, const String&, bool)> DynamicObject::OnAuthorityChanged;
|
2012-08-02 09:38:08 +02:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
DynamicObject::DynamicObject(void)
|
|
|
|
: m_Active(false)
|
|
|
|
{ }
|
2013-02-08 23:40:28 +01:00
|
|
|
|
|
|
|
DynamicObject::~DynamicObject(void)
|
2013-02-19 12:17:31 +01:00
|
|
|
{ }
|
2013-02-08 23:40:28 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
Dictionary::Ptr DynamicObject::Serialize(int attributeTypes) const
|
2013-02-18 14:40:24 +01:00
|
|
|
{
|
2012-08-02 09:38:08 +02:00
|
|
|
Dictionary::Ptr update = boost::make_shared<Dictionary>();
|
|
|
|
|
2013-03-07 16:00:10 +01:00
|
|
|
ASSERT(!OwnsLock());
|
2013-03-04 15:52:42 +01:00
|
|
|
ObjectLock olock(this);
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
InternalSerialize(update, attributeTypes);
|
2012-08-02 09:38:08 +02:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
/* Make sure our own InternalSerialize() method was called. */
|
|
|
|
ASSERT(update->Contains("__marker"));
|
|
|
|
update->Remove("__marker");
|
2013-02-26 10:13:54 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
return update;
|
2012-03-31 15:18:09 +02:00
|
|
|
}
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
void DynamicObject::Deserialize(const Dictionary::Ptr& update, int attributeTypes)
|
2012-03-31 15:18:09 +02:00
|
|
|
{
|
2013-03-07 16:00:10 +01:00
|
|
|
ASSERT(!OwnsLock());
|
2013-03-04 15:52:42 +01:00
|
|
|
|
2013-08-29 16:53:57 +02:00
|
|
|
{
|
|
|
|
ObjectLock olock(this);
|
|
|
|
InternalDeserialize(update, attributeTypes);
|
|
|
|
}
|
2012-03-31 15:18:09 +02:00
|
|
|
}
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
void DynamicObject::InternalSerialize(const Dictionary::Ptr& bag, int attributeTypes) const
|
2012-09-03 10:28:14 +02:00
|
|
|
{
|
2013-08-20 11:06:04 +02:00
|
|
|
if (attributeTypes & Attribute_Config) {
|
|
|
|
bag->Set("__name", m_Name);
|
|
|
|
bag->Set("__type", m_Type);
|
|
|
|
bag->Set("methods", m_Methods);
|
|
|
|
bag->Set("custom", m_Custom);
|
2013-09-12 10:03:48 +02:00
|
|
|
bag->Set("authorities", m_Authorities);
|
2013-09-17 13:18:26 +02:00
|
|
|
bag->Set("domains", m_Domains);
|
2013-03-04 15:52:42 +01:00
|
|
|
}
|
|
|
|
|
2013-09-17 13:18:26 +02:00
|
|
|
if (attributeTypes & Attribute_State)
|
|
|
|
bag->Set("extensions", m_Extensions);
|
2013-03-04 15:52:42 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
/* This attribute is used by Serialize() to check that this
|
|
|
|
* method was called. */
|
|
|
|
bag->Set("__marker", 1);
|
2012-08-03 13:19:55 +02:00
|
|
|
}
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
void DynamicObject::InternalDeserialize(const Dictionary::Ptr& bag, int attributeTypes)
|
2012-03-31 15:18:09 +02:00
|
|
|
{
|
2013-08-20 11:06:04 +02:00
|
|
|
if (attributeTypes & Attribute_Config) {
|
|
|
|
m_Name = bag->Get("__name");
|
|
|
|
m_Type = bag->Get("__type");
|
|
|
|
m_Methods = bag->Get("methods");
|
|
|
|
m_Custom = bag->Get("custom");
|
2013-09-12 10:03:48 +02:00
|
|
|
m_Authorities = bag->Get("authorities");
|
2013-09-17 13:18:26 +02:00
|
|
|
m_Domains = bag->Get("domains");
|
2013-02-17 19:14:34 +01:00
|
|
|
}
|
2013-02-08 23:40:28 +01:00
|
|
|
|
2013-09-17 13:18:26 +02:00
|
|
|
if (attributeTypes & Attribute_State)
|
|
|
|
m_Extensions = bag->Get("extensions");
|
2012-04-20 14:20:25 +02:00
|
|
|
}
|
|
|
|
|
2012-12-04 08:42:24 +01:00
|
|
|
DynamicType::Ptr DynamicObject::GetType(void) const
|
2012-08-02 09:38:08 +02:00
|
|
|
{
|
2013-02-26 10:13:54 +01:00
|
|
|
return DynamicType::GetByName(m_Type);
|
2012-08-02 09:38:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
String DynamicObject::GetName(void) const
|
|
|
|
{
|
2013-02-26 10:13:54 +01:00
|
|
|
return m_Name;
|
2012-08-02 09:38:08 +02:00
|
|
|
}
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
bool DynamicObject::IsActive(void) const
|
2012-08-02 09:38:08 +02:00
|
|
|
{
|
2013-08-20 11:06:04 +02:00
|
|
|
return m_Active;
|
2012-07-02 19:25:33 +02:00
|
|
|
}
|
|
|
|
|
2013-09-12 10:03:48 +02:00
|
|
|
Array::Ptr DynamicObject::GetAuthorities(void) const
|
|
|
|
{
|
|
|
|
return m_Authorities;
|
|
|
|
}
|
|
|
|
|
2013-09-13 07:49:12 +02:00
|
|
|
void DynamicObject::SetAuthority(const String& type, bool value)
|
2013-09-12 10:03:48 +02:00
|
|
|
{
|
2013-09-13 07:49:12 +02:00
|
|
|
ASSERT(!OwnsLock());
|
|
|
|
|
|
|
|
{
|
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
|
|
if (!m_Authority)
|
|
|
|
m_Authority = boost::make_shared<Dictionary>();
|
|
|
|
|
|
|
|
bool old_value = HasAuthority(type);
|
|
|
|
|
|
|
|
if (old_value == value)
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_Authority->Set(type, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
OnAuthorityChanged(GetSelf(), type, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DynamicObject::HasAuthority(const String& type) const
|
|
|
|
{
|
|
|
|
if (!m_Authority)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return m_Authority->Get(type);
|
2013-09-12 10:03:48 +02:00
|
|
|
}
|
|
|
|
|
2013-09-17 13:18:26 +02:00
|
|
|
Array::Ptr DynamicObject::GetDomains(void) const
|
|
|
|
{
|
|
|
|
return m_Domains;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DynamicObject::SetPrivileges(const String& instance, int privs)
|
|
|
|
{
|
|
|
|
m_Privileges[instance] = privs;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DynamicObject::HasPrivileges(const String& instance, int privs) const
|
|
|
|
{
|
2013-09-19 14:47:17 +02:00
|
|
|
if (privs == 0)
|
|
|
|
return true;
|
|
|
|
|
2013-09-17 13:18:26 +02:00
|
|
|
std::map<String, int>::const_iterator it;
|
|
|
|
it = m_Privileges.find(instance);
|
|
|
|
|
|
|
|
if (it == m_Privileges.end())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return (it->second & privs) == privs;
|
|
|
|
}
|
|
|
|
|
2013-07-05 09:37:04 +02:00
|
|
|
void DynamicObject::SetExtension(const String& key, const Object::Ptr& object)
|
|
|
|
{
|
|
|
|
Dictionary::Ptr extensions = m_Extensions;
|
|
|
|
|
|
|
|
if (!extensions) {
|
|
|
|
extensions = boost::make_shared<Dictionary>();
|
|
|
|
m_Extensions = extensions;
|
|
|
|
}
|
|
|
|
|
|
|
|
extensions->Set(key, object);
|
|
|
|
}
|
|
|
|
|
|
|
|
Object::Ptr DynamicObject::GetExtension(const String& key)
|
|
|
|
{
|
|
|
|
Dictionary::Ptr extensions = m_Extensions;
|
|
|
|
|
|
|
|
if (!extensions)
|
|
|
|
return Object::Ptr();
|
|
|
|
|
|
|
|
return extensions->Get(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DynamicObject::ClearExtension(const String& key)
|
|
|
|
{
|
|
|
|
Dictionary::Ptr extensions = m_Extensions;
|
|
|
|
|
|
|
|
if (!extensions)
|
|
|
|
return;
|
|
|
|
|
|
|
|
extensions->Remove(key);
|
|
|
|
}
|
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
void DynamicObject::Register(void)
|
2012-03-31 15:18:09 +02:00
|
|
|
{
|
2013-03-07 16:00:10 +01:00
|
|
|
ASSERT(!OwnsLock());
|
2013-03-01 12:07:52 +01:00
|
|
|
|
2013-03-04 15:52:42 +01:00
|
|
|
DynamicType::Ptr dtype = GetType();
|
|
|
|
dtype->RegisterObject(GetSelf());
|
2013-02-27 12:44:51 +01:00
|
|
|
}
|
|
|
|
|
2012-09-28 10:39:28 +02:00
|
|
|
void DynamicObject::Start(void)
|
|
|
|
{
|
2013-03-07 16:00:10 +01:00
|
|
|
ASSERT(!OwnsLock());
|
2013-03-01 12:07:52 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
ASSERT(!m_Active);
|
|
|
|
m_Active = true;
|
2013-03-12 14:01:11 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
OnStarted(GetSelf());
|
2013-03-12 14:01:11 +01:00
|
|
|
}
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
void DynamicObject::Stop(void)
|
2012-06-12 09:36:18 +02:00
|
|
|
{
|
2013-03-07 16:00:10 +01:00
|
|
|
ASSERT(!OwnsLock());
|
2013-03-02 09:07:47 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
ASSERT(m_Active);
|
|
|
|
m_Active = false;
|
2012-06-12 09:36:18 +02:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
OnStopped(GetSelf());
|
2012-06-12 09:36:18 +02:00
|
|
|
}
|
|
|
|
|
2013-08-29 16:53:57 +02:00
|
|
|
void DynamicObject::OnConfigLoaded(void)
|
|
|
|
{
|
|
|
|
/* Nothing to do here. */
|
|
|
|
}
|
|
|
|
|
|
|
|
void DynamicObject::OnStateLoaded(void)
|
|
|
|
{
|
|
|
|
/* Nothing to do here. */
|
|
|
|
}
|
|
|
|
|
2013-03-25 18:36:15 +01:00
|
|
|
Value DynamicObject::InvokeMethod(const String& method,
|
2013-03-16 21:18:53 +01:00
|
|
|
const std::vector<Value>& arguments)
|
2012-07-14 15:59:59 +02:00
|
|
|
{
|
2013-03-02 09:07:47 +01:00
|
|
|
Dictionary::Ptr methods;
|
2013-02-26 10:13:54 +01:00
|
|
|
|
2013-03-04 15:52:42 +01:00
|
|
|
methods = m_Methods;
|
2012-07-14 15:59:59 +02:00
|
|
|
|
2013-03-08 16:02:33 +01:00
|
|
|
if (!methods)
|
2013-03-25 18:36:15 +01:00
|
|
|
BOOST_THROW_EXCEPTION(std::invalid_argument("Method '" + method + "' does not exist."));
|
2013-03-08 16:02:33 +01:00
|
|
|
|
2013-03-01 12:07:52 +01:00
|
|
|
String funcName = methods->Get(method);
|
2013-02-18 14:40:24 +01:00
|
|
|
|
2013-03-01 12:07:52 +01:00
|
|
|
if (funcName.IsEmpty())
|
2013-03-25 18:36:15 +01:00
|
|
|
BOOST_THROW_EXCEPTION(std::invalid_argument("Method '" + method + "' does not exist."));
|
2012-08-02 09:38:08 +02:00
|
|
|
|
2013-03-15 11:19:52 +01:00
|
|
|
ScriptFunction::Ptr func = ScriptFunctionRegistry::GetInstance()->GetItem(funcName);
|
2012-07-14 15:59:59 +02:00
|
|
|
|
|
|
|
if (!func)
|
2013-03-16 21:18:53 +01:00
|
|
|
BOOST_THROW_EXCEPTION(std::invalid_argument("Function '" + funcName + "' does not exist."));
|
2012-07-14 15:59:59 +02:00
|
|
|
|
2013-03-25 18:36:15 +01:00
|
|
|
return func->Invoke(arguments);
|
2012-07-14 15:59:59 +02:00
|
|
|
}
|
2012-07-24 13:13:02 +02:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
void DynamicObject::DumpObjects(const String& filename, int attributeTypes)
|
2012-07-24 13:13:02 +02:00
|
|
|
{
|
2013-03-16 21:18:53 +01:00
|
|
|
Log(LogInformation, "base", "Dumping program state to file '" + filename + "'");
|
2012-07-24 13:13:02 +02:00
|
|
|
|
2012-08-07 14:17:36 +02:00
|
|
|
String tempFilename = filename + ".tmp";
|
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
std::fstream fp;
|
2012-11-23 11:02:34 +01:00
|
|
|
fp.open(tempFilename.CStr(), std::ios_base::out);
|
2012-07-24 13:13:02 +02:00
|
|
|
|
|
|
|
if (!fp)
|
2013-03-16 21:18:53 +01:00
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Could not open '" + filename + "' file"));
|
2012-07-24 13:13:02 +02:00
|
|
|
|
2012-11-23 11:02:34 +01:00
|
|
|
StdioStream::Ptr sfp = boost::make_shared<StdioStream>(&fp, false);
|
2012-07-24 13:13:02 +02:00
|
|
|
|
2013-02-18 23:44:24 +01:00
|
|
|
BOOST_FOREACH(const DynamicType::Ptr& type, DynamicType::GetTypes()) {
|
|
|
|
BOOST_FOREACH(const DynamicObject::Ptr& object, type->GetObjects()) {
|
2012-07-27 16:05:02 +02:00
|
|
|
Dictionary::Ptr persistentObject = boost::make_shared<Dictionary>();
|
2012-07-24 13:13:02 +02:00
|
|
|
|
2013-03-02 09:07:47 +01:00
|
|
|
persistentObject->Set("type", type->GetName());
|
2012-07-27 16:05:02 +02:00
|
|
|
persistentObject->Set("name", object->GetName());
|
2012-07-24 14:18:33 +02:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
Dictionary::Ptr update = object->Serialize(attributeTypes);
|
2012-08-02 09:38:08 +02:00
|
|
|
|
|
|
|
if (!update)
|
|
|
|
continue;
|
2012-07-24 14:18:33 +02:00
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
persistentObject->Set("update", update);
|
2012-07-24 13:13:02 +02:00
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
Value value = persistentObject;
|
|
|
|
String json = value.Serialize();
|
2012-07-24 13:13:02 +02:00
|
|
|
|
2012-11-23 11:02:34 +01:00
|
|
|
NetString::WriteStringToStream(sfp, json);
|
2012-07-24 13:13:02 +02:00
|
|
|
}
|
|
|
|
}
|
2012-08-07 14:17:36 +02:00
|
|
|
|
2012-11-23 11:02:34 +01:00
|
|
|
sfp->Close();
|
2012-11-22 12:04:32 +01:00
|
|
|
|
2012-10-17 11:35:06 +02:00
|
|
|
fp.close();
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
_unlink(filename.CStr());
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2013-03-11 13:45:08 +01:00
|
|
|
if (rename(tempFilename.CStr(), filename.CStr()) < 0) {
|
|
|
|
BOOST_THROW_EXCEPTION(posix_error()
|
2013-03-18 17:04:22 +01:00
|
|
|
<< boost::errinfo_api_function("rename")
|
|
|
|
<< boost::errinfo_errno(errno)
|
|
|
|
<< boost::errinfo_file_name(tempFilename));
|
2013-03-11 13:45:08 +01:00
|
|
|
}
|
2012-07-24 13:13:02 +02:00
|
|
|
}
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
void DynamicObject::RestoreObjects(const String& filename, int attributeTypes)
|
2012-07-24 13:13:02 +02:00
|
|
|
{
|
2013-03-16 21:18:53 +01:00
|
|
|
Log(LogInformation, "base", "Restoring program state from file '" + filename + "'");
|
2012-07-24 13:13:02 +02:00
|
|
|
|
2012-11-23 11:02:34 +01:00
|
|
|
std::fstream fp;
|
|
|
|
fp.open(filename.CStr(), std::ios_base::in);
|
2012-07-24 13:13:02 +02:00
|
|
|
|
2012-11-23 11:02:34 +01:00
|
|
|
StdioStream::Ptr sfp = boost::make_shared<StdioStream>(&fp, false);
|
2012-07-24 13:13:02 +02:00
|
|
|
|
2013-01-30 10:52:52 +01:00
|
|
|
unsigned long restored = 0;
|
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
String message;
|
2012-11-23 11:02:34 +01:00
|
|
|
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
|
|
|
|
2012-08-02 09:38:08 +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-12-04 08:42:24 +01:00
|
|
|
DynamicType::Ptr dt = DynamicType::GetByName(type);
|
|
|
|
|
|
|
|
if (!dt)
|
2013-08-27 12:21:41 +02:00
|
|
|
continue;
|
2012-12-04 08:42:24 +01:00
|
|
|
|
|
|
|
DynamicObject::Ptr object = dt->GetObject(name);
|
2012-08-05 03:10:53 +02:00
|
|
|
|
2013-08-29 10:17:12 +02:00
|
|
|
if (object) {
|
|
|
|
ASSERT(!object->IsActive());
|
2013-08-29 16:09:11 +02:00
|
|
|
Log(LogDebug, "base", "Restoring object '" + name + "' of type '" + type + "'.");
|
2013-08-20 11:06:04 +02:00
|
|
|
object->Deserialize(update, attributeTypes);
|
2013-08-29 19:25:34 +02:00
|
|
|
object->OnStateLoaded();
|
2013-08-29 10:17:12 +02:00
|
|
|
}
|
2013-01-30 10:52:52 +01:00
|
|
|
|
|
|
|
restored++;
|
2012-07-24 13:13:02 +02:00
|
|
|
}
|
2012-11-22 12:04:32 +01:00
|
|
|
|
2012-11-23 11:02:34 +01:00
|
|
|
sfp->Close();
|
2013-01-30 10:52:52 +01:00
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
std::ostringstream msgbuf;
|
2013-01-30 10:52:52 +01:00
|
|
|
msgbuf << "Restored " << restored << " objects";
|
2013-03-16 21:18:53 +01:00
|
|
|
Log(LogInformation, "base", msgbuf.str());
|
2012-07-24 13:13:02 +02:00
|
|
|
}
|
2012-07-27 16:05:02 +02:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
void DynamicObject::StopObjects(void)
|
2012-08-07 13:08:14 +02:00
|
|
|
{
|
2013-02-18 23:44:24 +01:00
|
|
|
BOOST_FOREACH(const DynamicType::Ptr& dt, DynamicType::GetTypes()) {
|
2013-03-01 12:07:52 +01:00
|
|
|
BOOST_FOREACH(const DynamicObject::Ptr& object, dt->GetObjects()) {
|
2013-08-20 11:06:04 +02:00
|
|
|
if (object->IsActive())
|
|
|
|
object->Stop();
|
2012-08-07 13:08:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-04 08:42:24 +01:00
|
|
|
DynamicObject::Ptr DynamicObject::GetObject(const String& type, const String& name)
|
|
|
|
{
|
|
|
|
DynamicType::Ptr dtype = DynamicType::GetByName(type);
|
2013-03-01 12:07:52 +01:00
|
|
|
return dtype->GetObject(name);
|
2012-12-04 08:42:24 +01:00
|
|
|
}
|
2013-02-02 14:28:11 +01:00
|
|
|
|
2013-07-12 15:13:05 +02:00
|
|
|
Dictionary::Ptr DynamicObject::GetCustom(void) const
|
|
|
|
{
|
|
|
|
return m_Custom;
|
|
|
|
}
|