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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2013-09-25 10:41:59 +02:00
|
|
|
#ifndef IDOMYSQLCONNECTION_H
|
|
|
|
#define IDOMYSQLCONNECTION_H
|
2013-07-05 09:37:04 +02:00
|
|
|
|
2013-07-17 11:29:51 +02:00
|
|
|
#include "base/array.h"
|
2013-07-05 09:37:04 +02:00
|
|
|
#include "base/dynamictype.h"
|
2013-07-17 14:10:28 +02:00
|
|
|
#include "base/timer.h"
|
2013-09-25 10:41:59 +02:00
|
|
|
#include "db_ido/dbconnection.h"
|
2013-07-05 09:37:04 +02:00
|
|
|
#include <mysql/mysql.h>
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
2013-08-16 11:15:05 +02:00
|
|
|
* An IDO MySQL database connection.
|
2013-07-05 09:37:04 +02:00
|
|
|
*
|
|
|
|
* @ingroup ido
|
|
|
|
*/
|
2013-09-25 10:41:59 +02:00
|
|
|
class IdoMysqlConnection : public DbConnection
|
2013-07-05 09:37:04 +02:00
|
|
|
{
|
|
|
|
public:
|
2013-09-25 10:41:59 +02:00
|
|
|
DECLARE_PTR_TYPEDEFS(IdoMysqlConnection);
|
2013-07-05 09:37:04 +02:00
|
|
|
|
2013-07-22 12:08:49 +02:00
|
|
|
//virtual void UpdateObject(const DbObject::Ptr& dbobj, DbUpdateType kind);
|
|
|
|
|
|
|
|
protected:
|
2013-08-20 11:06:04 +02:00
|
|
|
virtual void Start(void);
|
|
|
|
virtual void Stop(void);
|
|
|
|
|
|
|
|
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 ActivateObject(const DbObject::Ptr& dbobj);
|
|
|
|
virtual void DeactivateObject(const DbObject::Ptr& dbobj);
|
|
|
|
virtual void ExecuteQuery(const DbQuery& query);
|
2013-09-26 15:22:21 +02:00
|
|
|
virtual void CleanUpExecuteQuery(const String& table, const String& time_key, double time_value);
|
2013-07-05 09:37:04 +02:00
|
|
|
|
|
|
|
private:
|
2013-08-20 11:06:04 +02:00
|
|
|
String m_Host;
|
|
|
|
Value m_Port;
|
|
|
|
String m_User;
|
|
|
|
String m_Password;
|
|
|
|
String m_Database;
|
|
|
|
String m_InstanceName;
|
|
|
|
String m_InstanceDescription;
|
2013-07-05 09:37:04 +02:00
|
|
|
|
2013-07-17 11:29:51 +02:00
|
|
|
DbReference m_InstanceID;
|
|
|
|
|
|
|
|
boost::mutex m_ConnectionMutex;
|
2013-07-19 10:18:47 +02:00
|
|
|
bool m_Connected;
|
2013-07-17 11:29:51 +02:00
|
|
|
MYSQL m_Connection;
|
|
|
|
|
2013-07-19 10:18:47 +02:00
|
|
|
Timer::Ptr m_ReconnectTimer;
|
2013-07-17 14:10:28 +02:00
|
|
|
Timer::Ptr m_TxTimer;
|
|
|
|
|
2013-07-17 11:29:51 +02:00
|
|
|
Array::Ptr Query(const String& query);
|
2013-08-02 08:56:36 +02:00
|
|
|
DbReference GetLastInsertID(void);
|
2013-07-17 11:29:51 +02:00
|
|
|
String Escape(const String& s);
|
|
|
|
Dictionary::Ptr FetchRow(MYSQL_RES *result);
|
2013-07-17 14:10:28 +02:00
|
|
|
|
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);
|
2013-07-22 12:08:49 +02:00
|
|
|
|
2013-07-17 14:10:28 +02:00
|
|
|
void TxTimerHandler(void);
|
2013-07-19 10:18:47 +02:00
|
|
|
void ReconnectTimerHandler(void);
|
2013-08-02 17:11:14 +02:00
|
|
|
|
|
|
|
void ClearConfigTables(void);
|
|
|
|
void ClearConfigTable(const String& table);
|
2013-07-05 09:37:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-09-25 10:41:59 +02:00
|
|
|
#endif /* IDOMYSQLCONNECTION_H */
|