summaryrefslogtreecommitdiff
path: root/libpqpp/pq-connection.h
blob: ec1ae819c55d2ac15e6364673eaad5acd21aeb60 (plain)
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
#ifndef PQ_CONNECTION_H
#define PQ_CONNECTION_H

#include "pq-error.h"
#include <c++11Helpers.h>
#include <connection.h>
#include <libpq-fe.h>
#include <set>
#include <visibility.h>

namespace PQ {
	class ConnectionError : public virtual Error, public virtual DB::ConnectionError {
	public:
		explicit ConnectionError(const PGconn *);
	};

	class DLL_PUBLIC Connection : public DB::Connection {
	public:
		using StatementHash = std::size_t;
		using PreparedStatements = std::map<StatementHash, std::string>;

		explicit Connection(const std::string & info);
		~Connection() override;

		SPECIAL_MEMBERS_MOVE_RO(Connection);

		void beginTxInt() override;
		void commitTxInt() override;
		void rollbackTxInt() override;
		void ping() const override;
		void execute(const std::string & sql, const DB::CommandOptionsCPtr & = nullptr) override;
		DB::BulkDeleteStyle bulkDeleteStyle() const override;
		DB::BulkUpdateStyle bulkUpdateStyle() const override;

		DB::SelectCommandPtr select(const std::string & sql, const DB::CommandOptionsCPtr & = nullptr) override;
		DB::ModifyCommandPtr modify(const std::string & sql, const DB::CommandOptionsCPtr & = nullptr) override;

		int64_t insertId() override;
		int serverVersion() const;

		void beginBulkUpload(const char *, const char *) override;
		void endBulkUpload(const char *) override;
		size_t bulkUploadData(const char *, size_t) const override;

		PGresult * checkResult(PGresult * res, int expected, int alternative = -1) const;
		void checkResultFree(PGresult * res, int expected, int alternative = -1) const;

		PGconn * conn;
		mutable PreparedStatements preparedStatements;

	private:
		static bool checkResultInt(PGresult * res, int expected, int alternative);
	};
}

#endif