/****************************************************************************** * 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 * * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. * ******************************************************************************/ #include "i2-base.h" using namespace icinga; ConfigObject::ConfigObject(Dictionary::Ptr properties, const ConfigObject::Set::Ptr& container) : m_Container(container ? container : GetAllObjects()), m_Properties(properties), m_Tags(boost::make_shared()) { } ConfigObject::ConfigObject(string type, string name, const ConfigObject::Set::Ptr& container) : m_Container(container ? container : GetAllObjects()), m_Properties(boost::make_shared()), m_Tags(boost::make_shared()) { SetProperty("__type", type); SetProperty("__name", name); } void ConfigObject::SetProperties(Dictionary::Ptr properties) { m_Properties = properties; } Dictionary::Ptr ConfigObject::GetProperties(void) const { return m_Properties; } Dictionary::Ptr ConfigObject::GetTags(void) const { return m_Tags; } string ConfigObject::GetType(void) const { string type; GetProperties()->GetProperty("__type", &type); return type; } string ConfigObject::GetName(void) const { string name; GetProperties()->GetProperty("__name", &name); return name; } void ConfigObject::SetLocal(bool value) { GetProperties()->SetProperty("__local", value ? 1 : 0); } bool ConfigObject::IsLocal(void) const { bool value = false; GetProperties()->GetProperty("__local", &value); return value; } void ConfigObject::SetAbstract(bool value) { GetProperties()->SetProperty("__abstract", value ? 1 : 0); } bool ConfigObject::IsAbstract(void) const { bool value = false; GetProperties()->GetProperty("__abstract", &value); return value; } void ConfigObject::SetSource(const string& value) { GetProperties()->SetProperty("__source", value); } string ConfigObject::GetSource(void) const { string value; GetProperties()->GetProperty("__source", &value); return value; } void ConfigObject::SetCommitTimestamp(time_t ts) { GetProperties()->SetProperty("__tx", static_cast(ts)); } time_t ConfigObject::GetCommitTimestamp(void) const { long value = false; GetProperties()->GetProperty("__tx", &value); return value; } void ConfigObject::Commit(void) { ConfigObject::Ptr dobj = GetObject(GetType(), GetName()); ConfigObject::Ptr self = GetSelf(); assert(!dobj || dobj == self); m_Container->CheckObject(self); time_t now; time(&now); SetCommitTimestamp(now); } void ConfigObject::Unregister(void) { ConfigObject::Ptr self = GetSelf(); m_Container->RemoveObject(self); } ObjectSet::Ptr ConfigObject::GetAllObjects(void) { static ObjectSet::Ptr allObjects; if (!allObjects) { allObjects = boost::make_shared >(); allObjects->Start(); } return allObjects; } ConfigObject::TNMap::Ptr ConfigObject::GetObjectsByTypeAndName(void) { static ConfigObject::TNMap::Ptr tnmap; if (!tnmap) { tnmap = boost::make_shared(GetAllObjects(), &ConfigObject::TypeAndNameGetter); tnmap->Start(); } return tnmap; } ConfigObject::Ptr ConfigObject::GetObject(string type, string name) { ConfigObject::TNMap::Range range; range = GetObjectsByTypeAndName()->GetRange(make_pair(type, name)); assert(distance(range.first, range.second) <= 1); if (range.first == range.second) return ConfigObject::Ptr(); else return range.first->second; } bool ConfigObject::TypeAndNameGetter(const ConfigObject::Ptr& object, pair *key) { *key = make_pair(object->GetType(), object->GetName()); return true; } function ConfigObject::MakeTypePredicate(string type) { return boost::bind(&ConfigObject::TypePredicate, _1, type); } bool ConfigObject::TypePredicate(const ConfigObject::Ptr& object, string type) { return (object->GetType() == type); } ConfigObject::TMap::Ptr ConfigObject::GetObjectsByType(void) { static ObjectMap::Ptr tmap; if (!tmap) { tmap = boost::make_shared(GetAllObjects(), &ConfigObject::TypeGetter); tmap->Start(); } return tmap; } bool ConfigObject::TypeGetter(const ConfigObject::Ptr& object, string *key) { *key = object->GetType(); return true; } ConfigObject::TMap::Range ConfigObject::GetObjects(string type) { return GetObjectsByType()->GetRange(type); }