From d9f372d7b1bc1abbff5fdf9735118290cd024d5e Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 25 Jan 2024 17:28:38 +0300 Subject: Turn libodb-pgsql repository into package for muti-package repository --- libodb-pgsql/odb/pgsql/auto-handle.hxx | 90 ++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 libodb-pgsql/odb/pgsql/auto-handle.hxx (limited to 'libodb-pgsql/odb/pgsql/auto-handle.hxx') diff --git a/libodb-pgsql/odb/pgsql/auto-handle.hxx b/libodb-pgsql/odb/pgsql/auto-handle.hxx new file mode 100644 index 0000000..49b396d --- /dev/null +++ b/libodb-pgsql/odb/pgsql/auto-handle.hxx @@ -0,0 +1,90 @@ +// file : odb/pgsql/auto-handle.hxx +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_PGSQL_AUTO_HANDLE_HXX +#define ODB_PGSQL_AUTO_HANDLE_HXX + +#include + +#include +#include // PGconn, PGresult + +#include + +namespace odb +{ + namespace pgsql + { + template + struct handle_traits; + + template <> + struct LIBODB_PGSQL_EXPORT handle_traits + { + static void + release (PGconn*); + }; + + template <> + struct LIBODB_PGSQL_EXPORT handle_traits + { + static void + release (PGresult*); + }; + + template + class auto_handle + { + public: + auto_handle (H* h = 0) + : h_ (h) + { + } + + ~auto_handle () + { + if (h_ != 0) + handle_traits::release (h_); + } + + H* + get () const + { + return h_; + } + + void + reset (H* h = 0) + { + if (h_ != 0) + handle_traits::release (h_); + + h_ = h; + } + + H* + release () + { + H* h (h_); + h_ = 0; + return h; + } + + operator H* () const + { + return h_; + } + + private: + auto_handle (const auto_handle&); + auto_handle& operator= (const auto_handle&); + + private: + H* h_; + }; + } +} + +#include + +#endif // ODB_PGSQL_AUTO_HANDLE_HXX -- cgit v1.1