aboutsummaryrefslogtreecommitdiff
path: root/odb/mssql/auto-handle.hxx
blob: f6934e4e1ef32243e25f951943d75fc631d60d54 (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
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      : odb/mssql/auto-handle.hxx
// license   : ODB NCUEL; see accompanying LICENSE file

#ifndef ODB_MSSQL_AUTO_HANDLE_HXX
#define ODB_MSSQL_AUTO_HANDLE_HXX

#include <odb/pre.hxx>

#include <odb/details/config.hxx> // ODB_CXX11

#include <odb/mssql/mssql-fwd.hxx>
#include <odb/mssql/version.hxx>

#include <odb/mssql/details/export.hxx>

namespace odb
{
  namespace mssql
  {
    LIBODB_MSSQL_EXPORT void
    free_handle (SQLHANDLE, SQLSMALLINT htype);

    template <SQLSMALLINT htype>
    class auto_handle
    {
    public:
      auto_handle (SQLHANDLE h = 0)
          : h_ (h)
      {
      }

      ~auto_handle ()
      {
        if (h_ != 0)
          free_handle (h_, htype);
      }

      operator SQLHANDLE () const
      {
        return h_;
      }

      SQLHANDLE
      get () const
      {
        return h_;
      }

      SQLHANDLE
      release ()
      {
        SQLHANDLE h (h_);
        h_ = 0;
        return h;
      }

      void
      reset (SQLHANDLE h = 0)
      {
        if (h_ != 0)
          free_handle (h_, htype);

        h_ = h;
      }

#ifdef ODB_CXX11
      auto_handle (auto_handle&& ah) noexcept: h_ (ah.release ()) {}
      auto_handle& operator= (auto_handle&& ah) noexcept
      {
        if (this != &ah)
          reset (ah.release ());
        return *this;
      }
#endif

    private:
      auto_handle (const auto_handle&);
      auto_handle& operator= (const auto_handle&);

    private:
      SQLHANDLE h_;
    };
  }
}

#include <odb/post.hxx>

#endif // ODB_MSSQL_AUTO_HANDLE_HXX