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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
// file : odb/oracle/auto-descriptor.hxx
// copyright : Copyright (c) 2005-2019 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
{
enum descriptor_type
{
dt_param,
dt_lob,
dt_timestamp,
dt_interval_ym,
dt_interval_ds,
dt_default
};
LIBODB_ORACLE_EXPORT void
oci_descriptor_free (void* descriptor, descriptor_type type);
//
// descriptor_type_traits
//
template <typename D>
struct default_descriptor_type_traits;
template <>
struct default_descriptor_type_traits<OCIParam>
{ static const descriptor_type dtype = dt_param; };
template <>
struct default_descriptor_type_traits<OCILobLocator>
{ static const descriptor_type dtype = dt_lob; };
//
// auto_descriptor_base
//
template <typename D, descriptor_type type>
struct auto_descriptor_base
{
static void
release (D* d)
{
oci_descriptor_free (d, type);
}
};
template <typename D>
struct auto_descriptor_base<D, dt_default>
{
static void
release (D* d)
{
oci_descriptor_free (d, default_descriptor_type_traits<D>::dtype);
}
};
//
// auto_descriptor
//
template <typename D, descriptor_type type = dt_default>
class auto_descriptor: auto_descriptor_base<D, type>
{
public:
auto_descriptor (D* d = 0)
: d_ (d)
{
}
~auto_descriptor ()
{
if (d_ != 0)
this->release (d_);
}
operator D* () const
{
return d_;
}
D*&
get ()
{
return d_;
}
D*
get () const
{
return d_;
}
void
reset (D* d = 0)
{
if (d_ != 0)
this->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
|