-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostgres.hh
88 lines (71 loc) · 2.15 KB
/
postgres.hh
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/// @file
/// @brief schema and dut classes for PostgreSQL
#ifndef POSTGRES_HH
#define POSTGRES_HH
#include "dut.hh"
#include "relmodel.hh"
#include "schema.hh"
#include <pqxx/pqxx>
extern "C" {
#include <libpq-fe.h>
}
#include <sys/time.h>
#include <fcntl.h>
#define POSTGRES_STMT_BLOCK_MS 200
#define OID long
struct pg_type : sqltype {
OID oid_;
char typdelim_;
OID typrelid_;
OID typelem_;
OID typarray_;
char typtype_;
pg_type(string name,
OID oid,
char typdelim,
OID typrelid,
OID typelem,
OID typarray,
char typtype)
: sqltype(name), oid_(oid), typdelim_(typdelim), typrelid_(typrelid),
typelem_(typelem), typarray_(typarray), typtype_(typtype) { }
virtual ~pg_type() {}
virtual bool consistent(struct sqltype *rvalue);
// bool consistent_(sqltype *rvalue);
};
struct pgsql_connection {
PGconn *conn = 0;
string test_db;
unsigned int test_port;
pgsql_connection(string db, unsigned int port);
~pgsql_connection();
};
struct schema_pqxx : schema, pgsql_connection {
map<OID, pg_type*> oid2type;
map<string, pg_type*> name2type;
virtual string quote_name(const string &id) {
return id;
}
bool is_consistent_with_basic_type(sqltype *rvalue);
// schema_pqxx(string &conninfo, bool no_catalog);
schema_pqxx(string db, unsigned int port, bool no_catalog);
~schema_pqxx();
};
// struct dut_pqxx : dut_base {
// pqxx::connection c;
// virtual void test(const std::string &stmt);
// dut_pqxx(std::string conninfo);
// };
struct dut_libpq : dut_base, pgsql_connection {
virtual void test(const string &stmt,
vector<vector<string>>* output = NULL,
int* affected_row_num = NULL,
vector<string>* env_setting_stmts = NULL);
virtual void reset(void);
virtual void backup(void);
virtual void reset_to_backup(void);
virtual void get_content(vector<string>& tables_name, map<string, vector<vector<string>>>& content);
static int save_backup_file(string db_name, string path);
dut_libpq(string db, unsigned int port);
};
#endif