icinga2/lib/db_ido/dbobject.h

110 lines
3.3 KiB
C
Raw Normal View History

/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012-2014 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. *
******************************************************************************/
#ifndef DBOBJECT_H
#define DBOBJECT_H
2013-11-03 13:45:26 +01:00
#include "db_ido/i2-db_ido.h"
2013-09-25 10:41:59 +02:00
#include "db_ido/dbreference.h"
#include "db_ido/dbquery.h"
#include "db_ido/dbtype.h"
#include "base/dynamicobject.h"
namespace icinga
{
enum DbObjectUpdateType
{
DbObjectCreated,
DbObjectRemoved
};
enum DbObjectType
{
DbObjectTypeHost = 1,
DbObjectTypeService = 2,
DbObjectTypeHostGroup = 3,
DbObjectTypeServiceGroup = 4,
DbObjectTypeHostEscalation = 5,
DbObjectTypeServiceEscalation = 6,
DbObjectTypeHostDependency = 7,
DbObjectTypeServiceDependency = 8,
DbObjectTypeTimePeriod = 9,
DbObjectTypeContact = 10,
DbObjectTypeContactGroup = 11,
DbObjectTypeCommand = 12,
};
/**
* A database object.
*
* @ingroup ido
*/
2013-11-03 13:45:26 +01:00
class I2_DB_IDO_API DbObject : public Object
{
public:
DECLARE_PTR_TYPEDEFS(DbObject);
2013-08-01 11:14:33 +02:00
static void StaticInitialize(void);
void SetObject(const DynamicObject::Ptr& object);
DynamicObject::Ptr GetObject(void) const;
String GetName1(void) const;
String GetName2(void) const;
shared_ptr<DbType> GetType(void) const;
virtual Dictionary::Ptr GetConfigFields(void) const = 0;
virtual Dictionary::Ptr GetStatusFields(void) const = 0;
static DbObject::Ptr GetOrCreateByObject(const DynamicObject::Ptr& object);
static boost::signals2::signal<void (const DbQuery&)> OnQuery;
void SendConfigUpdate(void);
void SendStatusUpdate(void);
2013-07-17 11:29:51 +02:00
2013-07-24 10:55:04 +02:00
double GetLastConfigUpdate(void) const;
double GetLastStatusUpdate(void) const;
protected:
DbObject(const shared_ptr<DbType>& type, const String& name1, const String& name2);
2013-07-24 10:55:04 +02:00
virtual bool IsStatusAttribute(const String& attribute) const;
virtual void OnConfigUpdate(void);
virtual void OnStatusUpdate(void);
private:
String m_Name1;
String m_Name2;
shared_ptr<DbType> m_Type;
DynamicObject::Ptr m_Object;
2013-07-24 10:55:04 +02:00
double m_LastConfigUpdate;
double m_LastStatusUpdate;
static void StateChangedHandler(const DynamicObject::Ptr& object);
friend class DbType;
};
}
#endif /* DBOBJECT_H */