aboutsummaryrefslogtreecommitdiff
path: root/odb/oracle/auto-descriptor.hxx
blob: f55925d6156c50b8a0b8fbf56f472d21c2a61ca9 (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
89
90
91
92
93
94
95
96
97
98
99
100
// file      : odb/oracle/auto-descriptor.hxx
// author    : Constantin Michael <constantin@codesynthesis.com>
// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
// license   : ODB NCUEL; see accompanying LICENSE file

#ifndef ODB_ORACLE_AUTO_DESCRIPTOR_HXX
#define ODB_ORACLE_AUTO_DESCRIPTOR_HXX

#include <odb/pre.hxx>

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

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

namespace odb
{
  namespace oracle
  {
    //
    // descriptor_type_traits
    //

    template <typename D>
    struct descriptor_type_traits;

    template <>
    struct descriptor_type_traits<OCIParam>
    { static const ub4 dtype; };

    template <>
    struct descriptor_type_traits<OCILobLocator>
    { static const ub4 dtype; };


    //
    // descriptor_traits
    //

    LIBODB_ORACLE_EXPORT void
    oci_descriptor_free (void* descriptor, ub4 type);

    template <typename D>
    struct descriptor_traits
    {
      static void
      release (D* d)
      {
        oci_descriptor_free (d, descriptor_type_traits<D>::dtype);
      }
    };

    template <typename D>
    class auto_descriptor
    {
    public:
      auto_descriptor (D* d = 0)
          : d_ (d)
      {
      }

      ~auto_descriptor ()
      {
        if (d_ != 0)
          descriptor_traits<D>::release (d_);
      }

      operator D* ()
      {
        return d_;
      }

      D*
      get ()
      {
        return d_;
      }

      void
      reset (D* d = 0)
      {
        if (d_ != 0)
          descriptor_traits<D>::release (d_);

        d_ = d;
      }

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

    protected:
      D* d_;
    };
  }
}

#include <odb/post.hxx>

#endif // ODB_ORACLE_AUTO_DESCRIPTOR_HXX