2013-07-05 09:37:04 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2013-09-25 07:43:57 +02:00
|
|
|
* Copyright (C) 2012-2013 Icinga Development Team (http://www.icinga.org/) *
|
2013-07-05 09:37:04 +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 *
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef DBCONNECTION_H
|
|
|
|
#define DBCONNECTION_H
|
|
|
|
|
2013-11-03 13:45:26 +01:00
|
|
|
#include "db_ido/i2-db_ido.h"
|
2013-10-26 09:41:45 +02:00
|
|
|
#include "db_ido/dbconnection.th"
|
2013-09-25 10:41:59 +02:00
|
|
|
#include "db_ido/dbobject.h"
|
|
|
|
#include "db_ido/dbquery.h"
|
2013-10-26 09:41:45 +02:00
|
|
|
#include "base/timer.h"
|
2013-07-05 09:37:04 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A database connection.
|
|
|
|
*
|
2013-10-14 20:12:42 +02:00
|
|
|
* @ingroup db_ido
|
2013-07-05 09:37:04 +02:00
|
|
|
*/
|
2013-11-03 13:45:26 +01:00
|
|
|
class I2_DB_IDO_API DbConnection : public ReflectionObjectImpl<DbConnection>
|
2013-07-05 09:37:04 +02:00
|
|
|
{
|
|
|
|
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-07-05 09:37:04 +02:00
|
|
|
protected:
|
2013-07-17 14:10:28 +02:00
|
|
|
virtual void Start(void);
|
|
|
|
|
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
|
|
|
|
2013-10-30 14:07:26 +01:00
|
|
|
virtual void CleanUpExecuteQuery(const String& table, const String& time_column, double max_age);
|
2013-09-26 15:22:21 +02:00
|
|
|
|
2013-07-05 09:37:04 +02:00
|
|
|
void UpdateAllObjects(void);
|
|
|
|
|
|
|
|
private:
|
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-10-26 09:41:45 +02:00
|
|
|
Timer::Ptr m_CleanUpTimer;
|
2013-09-26 15:22:21 +02:00
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
void CleanUpHandler(void);
|
2013-09-26 15:22:21 +02:00
|
|
|
|
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 */
|