icinga2/lib/db_ido/dbconnection.hpp

112 lines
4.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 DBCONNECTION_H
#define DBCONNECTION_H
2014-05-25 16:23:35 +02:00
#include "db_ido/i2-db_ido.hpp"
#include "db_ido/dbconnection.thpp"
#include "db_ido/dbobject.hpp"
#include "db_ido/dbquery.hpp"
#include "base/timer.hpp"
namespace icinga
{
/**
* A database connection.
*
2013-10-14 20:12:42 +02:00
* @ingroup db_ido
*/
class I2_DB_IDO_API DbConnection : public ObjectImpl<DbConnection>
{
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);
2014-01-31 08:28:00 +01:00
void SetInsertID(const DbType::Ptr& type, const DbReference& objid, const DbReference& dbref);
2013-08-02 08:56:36 +02:00
DbReference GetInsertID(const DbObject::Ptr& dbobj) const;
2014-01-31 08:28:00 +01:00
DbReference GetInsertID(const DbType::Ptr& type, const DbReference& objid) const;
void SetNotificationInsertID(const CustomVarObject::Ptr& obj, const DbReference& dbref);
DbReference GetNotificationInsertID(const CustomVarObject::Ptr& obj) const;
void SetObjectActive(const DbObject::Ptr& dbobj, bool active);
bool GetObjectActive(const DbObject::Ptr& dbobj) const;
void ClearIDCache(void);
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;
2014-08-17 17:57:20 +02:00
static void ValidateFailoverTimeout(const String& location, const Dictionary::Ptr& attrs);
protected:
2014-08-17 17:57:20 +02:00
virtual void OnConfigLoaded(void);
virtual void Start(void);
virtual void Resume(void);
virtual void Pause(void);
virtual void ExecuteQuery(const DbQuery& query) = 0;
virtual void ActivateObject(const DbObject::Ptr& dbobj) = 0;
virtual void DeactivateObject(const DbObject::Ptr& dbobj) = 0;
virtual void CleanUpExecuteQuery(const String& table, const String& time_column, double max_age);
2014-01-31 08:28:00 +01:00
virtual void FillIDCache(const DbType::Ptr& type) = 0;
void UpdateAllObjects(void);
2014-01-31 08:28:00 +01:00
void PrepareDatabase(void);
private:
2013-08-02 08:56:36 +02:00
std::map<DbObject::Ptr, DbReference> m_ObjectIDs;
2014-01-31 08:28:00 +01:00
std::map<std::pair<DbType::Ptr, DbReference>, DbReference> m_InsertIDs;
2014-08-17 17:57:20 +02:00
std::map<CustomVarObject::Ptr, DbReference> m_NotificationInsertIDs;
std::set<DbObject::Ptr> m_ActiveObjects;
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-10-26 09:41:45 +02:00
void CleanUpHandler(void);
virtual void ClearConfigTable(const String& table) = 0;
static Timer::Ptr m_ProgramStatusTimer;
static void InsertRuntimeVariable(const String& key, const Value& value);
static void ProgramStatusHandler(void);
};
struct database_error : virtual std::exception, virtual boost::exception { };
struct errinfo_database_query_;
typedef boost::error_info<struct errinfo_database_query_, std::string> errinfo_database_query;
}
#endif /* DBCONNECTION_H */