2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-10-30 10:32:33 -04:00
|
|
|
|
|
|
|
|
#ifndef IDOPGSQLCONNECTION_H
|
|
|
|
|
#define IDOPGSQLCONNECTION_H
|
|
|
|
|
|
2018-01-18 07:50:38 -05:00
|
|
|
#include "db_ido_pgsql/idopgsqlconnection-ti.hpp"
|
2018-01-01 09:21:14 -05:00
|
|
|
#include "pgsql_shim/pgsqlinterface.hpp"
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/array.hpp"
|
|
|
|
|
#include "base/timer.hpp"
|
|
|
|
|
#include "base/workqueue.hpp"
|
2018-01-01 09:21:14 -05:00
|
|
|
#include "base/library.hpp"
|
2013-10-30 10:32:33 -04:00
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
2017-11-21 07:20:55 -05:00
|
|
|
typedef std::shared_ptr<PGresult> IdoPgsqlResult;
|
2014-01-28 05:42:12 -05:00
|
|
|
|
2013-10-30 10:32:33 -04:00
|
|
|
/**
|
|
|
|
|
* An IDO pgSQL database connection.
|
|
|
|
|
*
|
|
|
|
|
* @ingroup ido
|
|
|
|
|
*/
|
2018-01-04 00:11:04 -05:00
|
|
|
class IdoPgsqlConnection final : public ObjectImpl<IdoPgsqlConnection>
|
2013-10-30 10:32:33 -04:00
|
|
|
{
|
|
|
|
|
public:
|
2014-11-02 18:44:04 -05:00
|
|
|
DECLARE_OBJECT(IdoPgsqlConnection);
|
|
|
|
|
DECLARE_OBJECTNAME(IdoPgsqlConnection);
|
2013-10-30 10:32:33 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
IdoPgsqlConnection();
|
2015-02-07 16:36:17 -05:00
|
|
|
|
|
|
|
|
static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
|
2014-02-17 10:34:18 -05:00
|
|
|
|
2021-06-30 12:07:58 -04:00
|
|
|
const char * GetLatestSchemaVersion() const noexcept override;
|
2021-06-30 12:11:55 -04:00
|
|
|
const char * GetCompatSchemaVersion() const noexcept override;
|
2021-06-30 12:07:58 -04:00
|
|
|
|
2018-01-03 23:12:56 -05:00
|
|
|
int GetPendingQueryCount() const override;
|
2015-03-13 07:00:30 -04:00
|
|
|
|
2013-10-30 10:32:33 -04:00
|
|
|
protected:
|
2018-01-03 23:12:56 -05:00
|
|
|
void OnConfigLoaded() override;
|
|
|
|
|
void Resume() override;
|
|
|
|
|
void Pause() override;
|
|
|
|
|
|
|
|
|
|
void ActivateObject(const DbObject::Ptr& dbobj) override;
|
|
|
|
|
void DeactivateObject(const DbObject::Ptr& dbobj) override;
|
|
|
|
|
void ExecuteQuery(const DbQuery& query) override;
|
|
|
|
|
void ExecuteMultipleQueries(const std::vector<DbQuery>& queries) override;
|
|
|
|
|
void CleanUpExecuteQuery(const String& table, const String& time_key, double time_value) override;
|
|
|
|
|
void FillIDCache(const DbType::Ptr& type) override;
|
|
|
|
|
void NewTransaction() override;
|
2021-04-20 12:37:09 -04:00
|
|
|
void Disconnect() override;
|
2013-10-30 10:32:33 -04:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
DbReference m_InstanceID;
|
|
|
|
|
|
2018-01-01 09:21:14 -05:00
|
|
|
Library m_Library;
|
|
|
|
|
std::unique_ptr<PgsqlInterface, PgsqlInterfaceDeleter> m_Pgsql;
|
|
|
|
|
|
2013-10-30 10:32:33 -04:00
|
|
|
PGconn *m_Connection;
|
2014-01-31 02:28:00 -05:00
|
|
|
int m_AffectedRows;
|
2013-10-30 10:32:33 -04:00
|
|
|
|
|
|
|
|
Timer::Ptr m_ReconnectTimer;
|
|
|
|
|
Timer::Ptr m_TxTimer;
|
|
|
|
|
|
2014-01-28 05:42:12 -05:00
|
|
|
IdoPgsqlResult Query(const String& query);
|
2013-10-30 10:32:33 -04:00
|
|
|
DbReference GetSequenceValue(const String& table, const String& column);
|
2018-01-03 22:25:35 -05:00
|
|
|
int GetAffectedRows();
|
2013-10-30 10:32:33 -04:00
|
|
|
String Escape(const String& s);
|
2014-01-28 05:42:12 -05:00
|
|
|
Dictionary::Ptr FetchRow(const IdoPgsqlResult& result, int row);
|
2013-10-30 10:32:33 -04:00
|
|
|
|
|
|
|
|
bool FieldToEscapedString(const String& key, const Value& value, Value *result);
|
|
|
|
|
void InternalActivateObject(const DbObject::Ptr& dbobj);
|
2015-04-03 19:03:39 -04:00
|
|
|
void InternalDeactivateObject(const DbObject::Ptr& dbobj);
|
2013-10-30 10:32:33 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
void InternalNewTransaction();
|
|
|
|
|
void Reconnect();
|
2013-10-30 10:32:33 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
void AssertOnWorkQueue();
|
2013-10-30 10:32:33 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
void ReconnectTimerHandler();
|
2013-10-30 10:32:33 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
void StatsLoggerTimerHandler();
|
2015-12-16 02:49:47 -05:00
|
|
|
|
2015-12-15 09:29:48 -05:00
|
|
|
bool CanExecuteQuery(const DbQuery& query);
|
|
|
|
|
|
2016-08-17 07:24:18 -04:00
|
|
|
void InternalExecuteQuery(const DbQuery& query, int typeOverride = -1);
|
2015-12-15 09:29:48 -05:00
|
|
|
void InternalExecuteMultipleQueries(const std::vector<DbQuery>& queries);
|
2013-11-05 06:40:25 -05:00
|
|
|
void InternalCleanUpExecuteQuery(const String& table, const String& time_key, double time_value);
|
2013-10-30 10:32:33 -04:00
|
|
|
|
2016-07-21 11:37:41 -04:00
|
|
|
void ClearTableBySession(const String& table);
|
2018-01-03 22:25:35 -05:00
|
|
|
void ClearTablesBySession();
|
2013-11-05 06:40:25 -05:00
|
|
|
|
2016-08-31 07:43:14 -04:00
|
|
|
void ExceptionHandler(boost::exception_ptr exp);
|
2015-12-16 02:49:47 -05:00
|
|
|
|
|
|
|
|
void FinishConnect(double startTime);
|
2013-10-30 10:32:33 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* IDOPGSQLCONNECTION_H */
|