2013-07-05 09:37:04 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* 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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef DBCONNECTION_H
|
|
|
|
#define DBCONNECTION_H
|
|
|
|
|
|
|
|
#include "base/dynamicobject.h"
|
2013-07-25 09:00:23 +02:00
|
|
|
#include "base/timer.h"
|
2013-07-05 09:37:04 +02:00
|
|
|
#include "ido/dbobject.h"
|
2013-07-22 12:08:49 +02:00
|
|
|
#include "ido/dbquery.h"
|
2013-07-05 09:37:04 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A database connection.
|
|
|
|
*
|
|
|
|
* @ingroup ido
|
|
|
|
*/
|
|
|
|
class DbConnection : public DynamicObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DECLARE_PTR_TYPEDEFS(DbConnection);
|
|
|
|
|
2013-08-01 11:14:33 +02:00
|
|
|
static void StaticInitialize(void);
|
|
|
|
|
2013-08-02 08:56:36 +02:00
|
|
|
void SetObjectID(const DbObject::Ptr& dbobj, const DbReference& dbref);
|
|
|
|
DbReference GetObjectID(const DbObject::Ptr& dbobj) const;
|
|
|
|
|
|
|
|
void SetInsertID(const DbObject::Ptr& dbobj, const DbReference& dbref);
|
|
|
|
DbReference GetInsertID(const DbObject::Ptr& dbobj) const;
|
2013-07-05 09:37:04 +02:00
|
|
|
|
2013-08-02 15:45:50 +02:00
|
|
|
void SetConfigUpdate(const DbObject::Ptr& dbobj, bool hasupdate);
|
|
|
|
bool GetConfigUpdate(const DbObject::Ptr& dbobj) const;
|
|
|
|
|
|
|
|
void SetStatusUpdate(const DbObject::Ptr& dbobj, bool hasupdate);
|
|
|
|
bool GetStatusUpdate(const DbObject::Ptr& dbobj) const;
|
|
|
|
|
2013-08-01 09:46:48 +02:00
|
|
|
String GetTablePrefix(void) const;
|
|
|
|
|
2013-07-05 09:37:04 +02:00
|
|
|
protected:
|
2013-07-17 14:10:28 +02:00
|
|
|
virtual void Start(void);
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
virtual void InternalSerialize(const Dictionary::Ptr& bag, int attributeTypes) const;
|
|
|
|
virtual void InternalDeserialize(const Dictionary::Ptr& bag, int attributeTypes);
|
|
|
|
|
2013-07-22 12:08:49 +02:00
|
|
|
virtual void ExecuteQuery(const DbQuery& query) = 0;
|
|
|
|
virtual void ActivateObject(const DbObject::Ptr& dbobj) = 0;
|
|
|
|
virtual void DeactivateObject(const DbObject::Ptr& dbobj) = 0;
|
2013-07-05 09:37:04 +02:00
|
|
|
|
|
|
|
void UpdateAllObjects(void);
|
|
|
|
|
|
|
|
private:
|
2013-08-20 11:06:04 +02:00
|
|
|
String m_TablePrefix;
|
2013-08-01 09:46:48 +02:00
|
|
|
|
2013-08-02 08:56:36 +02:00
|
|
|
std::map<DbObject::Ptr, DbReference> m_ObjectIDs;
|
|
|
|
std::map<DbObject::Ptr, DbReference> m_InsertIDs;
|
2013-08-02 15:45:50 +02:00
|
|
|
std::set<DbObject::Ptr> m_ConfigUpdates;
|
|
|
|
std::set<DbObject::Ptr> m_StatusUpdates;
|
2013-07-25 09:00:23 +02:00
|
|
|
static Timer::Ptr m_ProgramStatusTimer;
|
|
|
|
|
2013-08-08 08:47:29 +02:00
|
|
|
static void InsertRuntimeVariable(const String& key, const Value& value);
|
2013-07-25 09:00:23 +02:00
|
|
|
static void ProgramStatusHandler(void);
|
2013-07-05 09:37:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* DBCONNECTION_H */
|