1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef MYSQLINTERFACE_H
#define MYSQLINTERFACE_H
#include "mysql_shim/mysql_shim_export.h"
#include <memory>
#include <mysql.h>
namespace icinga
{
struct MysqlInterface
{
MysqlInterface(const MysqlInterface&) = delete;
MysqlInterface& operator=(MysqlInterface&) = delete;
virtual void Destroy() = 0;
virtual my_ulonglong affected_rows(MYSQL *mysql) const = 0;
virtual void close(MYSQL *sock) const = 0;
virtual const char *error(MYSQL *mysql) const = 0;
virtual MYSQL_FIELD *fetch_field(MYSQL_RES *result) const = 0;
virtual unsigned long *fetch_lengths(MYSQL_RES *result) const = 0;
virtual MYSQL_ROW fetch_row(MYSQL_RES *result) const = 0;
virtual unsigned int field_count(MYSQL *mysql) const = 0;
virtual MYSQL_FIELD_OFFSET field_seek(MYSQL_RES *result,
MYSQL_FIELD_OFFSET offset) const = 0;
virtual void free_result(MYSQL_RES *result) const = 0;
virtual MYSQL *init(MYSQL *mysql) const = 0;
virtual my_ulonglong insert_id(MYSQL *mysql) const = 0;
virtual int next_result(MYSQL *mysql) const = 0;
virtual int ping(MYSQL *mysql) const = 0;
virtual int query(MYSQL *mysql, const char *q) const = 0;
virtual MYSQL *real_connect(MYSQL *mysql, const char *host, const char *user, const char *passwd,
const char *db, unsigned int port, const char *unix_socket, unsigned long clientflag) const = 0;
virtual unsigned long real_escape_string(MYSQL *mysql, char *to, const char *from, unsigned long length) const = 0;
virtual int options(MYSQL *mysql, mysql_option option, const void *arg) const = 0;
virtual bool ssl_set(MYSQL *mysql, const char *key, const char *cert, const char *ca, const char *capath, const char *cipher) const = 0;
virtual MYSQL_RES *store_result(MYSQL *mysql) const = 0;
virtual unsigned int thread_safe() const = 0;
protected:
MysqlInterface() = default;
~MysqlInterface() = default;
};
struct MysqlInterfaceDeleter
{
void operator()(MysqlInterface *ifc) const
{
ifc->Destroy();
}
};
}
extern "C"
{
MYSQL_SHIM_EXPORT icinga::MysqlInterface *create_mysql_shim();
}
typedef icinga::MysqlInterface *(*create_mysql_shim_ptr)();
#endif /* MYSQLINTERFACE_H */
|