aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/auto-handle.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-08-30 16:10:02 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-08-30 16:10:30 +0200
commit9fce9a7250f63a2a3cceeb0aac7b22d5dd7e6915 (patch)
treedd20f89ddd286f663aaf881835970c03cc628855 /odb/pgsql/auto-handle.hxx
parent44a26d189e186ac10c4a80c4dbb68d65927b12a9 (diff)
Implement uniform handle management across all databases
Also use the auto_handle template instead of the raw handle in connection, statement, and result classes. This removes a lot of brittle "exception safety guarantee" code that we had in those classes.
Diffstat (limited to 'odb/pgsql/auto-handle.hxx')
-rw-r--r--odb/pgsql/auto-handle.hxx92
1 files changed, 92 insertions, 0 deletions
diff --git a/odb/pgsql/auto-handle.hxx b/odb/pgsql/auto-handle.hxx
new file mode 100644
index 0000000..2ed58e5
--- /dev/null
+++ b/odb/pgsql/auto-handle.hxx
@@ -0,0 +1,92 @@
+// file : odb/pgsql/auto-handle.hxx
+// author : Constantin Michael <constantin@codesynthesis.com>
+// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef ODB_PGSQL_AUTO_HANDLE_HXX
+#define ODB_PGSQL_AUTO_HANDLE_HXX
+
+#include <odb/pre.hxx>
+
+#include <odb/pgsql/version.hxx>
+#include <odb/pgsql/pgsql-fwd.hxx> // PGconn, PGresult
+
+#include <odb/pgsql/details/export.hxx>
+
+namespace odb
+{
+ namespace pgsql
+ {
+ template <typename H>
+ struct handle_traits;
+
+ template <>
+ struct LIBODB_PGSQL_EXPORT handle_traits<PGconn>
+ {
+ static void
+ release (PGconn*);
+ };
+
+ template <>
+ struct LIBODB_PGSQL_EXPORT handle_traits<PGresult>
+ {
+ static void
+ release (PGresult*);
+ };
+
+ template <typename H>
+ class auto_handle
+ {
+ public:
+ auto_handle (H* h = 0)
+ : h_ (h)
+ {
+ }
+
+ ~auto_handle ()
+ {
+ if (h_ != 0)
+ handle_traits<H>::release (h_);
+ }
+
+ H*
+ get () const
+ {
+ return h_;
+ }
+
+ void
+ reset (H* h = 0)
+ {
+ if (h_ != 0)
+ handle_traits<H>::release (h_);
+
+ h_ = h;
+ }
+
+ H*
+ release ()
+ {
+ H* h (h_);
+ h_ = 0;
+ return h;
+ }
+
+ operator H* ()
+ {
+ return h_;
+ }
+
+ private:
+ auto_handle (const auto_handle&);
+ auto_handle& operator= (const auto_handle&);
+
+ private:
+ H* h_;
+ };
+ }
+}
+
+#include <odb/post.hxx>
+
+#endif // ODB_PGSQL_AUTO_HANDLE_HXX