icinga2/lib/db_ido_mysql/idomysqlconnection.hpp

123 lines
4.2 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
2015-01-22 12:00:23 +01:00
* Copyright (C) 2012-2015 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. *
******************************************************************************/
2013-09-25 10:41:59 +02:00
#ifndef IDOMYSQLCONNECTION_H
#define IDOMYSQLCONNECTION_H
2014-05-25 16:23:35 +02:00
#include "db_ido_mysql/idomysqlconnection.thpp"
#include "base/array.hpp"
#include "base/timer.hpp"
#include "base/workqueue.hpp"
2013-11-03 13:45:26 +01:00
#include <mysql.h>
namespace icinga
{
typedef boost::shared_ptr<MYSQL_RES> IdoMysqlResult;
typedef boost::function<void (const IdoMysqlResult&)> IdoAsyncCallback;
struct IdoAsyncQuery
{
String Query;
IdoAsyncCallback Callback;
};
/**
* An IDO MySQL database connection.
*
* @ingroup ido
*/
class IdoMysqlConnection : public ObjectImpl<IdoMysqlConnection>
{
public:
2014-11-03 00:44:04 +01:00
DECLARE_OBJECT(IdoMysqlConnection);
DECLARE_OBJECTNAME(IdoMysqlConnection);
IdoMysqlConnection(void);
static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
2015-08-18 07:46:04 +02:00
virtual int GetPendingQueryCount(void) const override;
protected:
2015-08-18 07:46:04 +02:00
virtual void Resume(void) override;
virtual void Pause(void) override;
2015-08-18 07:46:04 +02:00
virtual void ActivateObject(const DbObject::Ptr& dbobj) override;
virtual void DeactivateObject(const DbObject::Ptr& dbobj) override;
virtual void ExecuteQuery(const DbQuery& query) override;
virtual void ExecuteMultipleQueries(const std::vector<DbQuery>& queries);
2015-08-18 07:46:04 +02:00
virtual void CleanUpExecuteQuery(const String& table, const String& time_key, double time_value) override;
virtual void FillIDCache(const DbType::Ptr& type) override;
virtual void NewTransaction(void) override;
private:
2013-07-17 11:29:51 +02:00
DbReference m_InstanceID;
int m_SessionToken;
2013-07-17 11:29:51 +02:00
WorkQueue m_QueryQueue;
boost::mutex m_QueryQueueMutex;
2013-07-17 11:29:51 +02:00
MYSQL m_Connection;
2014-01-31 08:28:00 +01:00
int m_AffectedRows;
int m_MaxPacketSize;
std::vector<IdoAsyncQuery> m_AsyncQueries;
2013-07-17 11:29:51 +02:00
Timer::Ptr m_ReconnectTimer;
Timer::Ptr m_TxTimer;
IdoMysqlResult Query(const String& query);
2013-08-02 08:56:36 +02:00
DbReference GetLastInsertID(void);
2014-01-31 08:28:00 +01:00
int GetAffectedRows(void);
2013-07-17 11:29:51 +02:00
String Escape(const String& s);
Dictionary::Ptr FetchRow(const IdoMysqlResult& result);
void DiscardRows(const IdoMysqlResult& result);
void AsyncQuery(const String& query, const IdoAsyncCallback& callback = IdoAsyncCallback());
void FinishAsyncQueries(void);
2013-07-23 11:02:47 +02:00
bool FieldToEscapedString(const String& key, const Value& value, Value *result);
2013-07-24 10:55:04 +02:00
void InternalActivateObject(const DbObject::Ptr& dbobj);
void InternalDeactivateObject(const DbObject::Ptr& dbobj);
void Disconnect(void);
void Reconnect(void);
void AssertOnWorkQueue(void);
void TxTimerHandler(void);
void ReconnectTimerHandler(void);
2014-01-31 08:28:00 +01:00
void InternalExecuteQuery(const DbQuery& query, DbQueryType *typeOverride = NULL);
void FinishExecuteQuery(const DbQuery& query, int type, bool upsert);
void InternalCleanUpExecuteQuery(const String& table, const String& time_key, double time_value);
void InternalNewTransaction(void);
2015-08-18 07:46:04 +02:00
virtual void ClearConfigTable(const String& table) override;
void ClearCustomVarTable(const String& table);
void ExceptionHandler(boost::exception_ptr exp);
};
}
2013-09-25 10:41:59 +02:00
#endif /* IDOMYSQLCONNECTION_H */