blob: 9e3172c1dfe86f82d7197d523fa561552a8cc6e2 (
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
|
// 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; };
//
// descriptor_traits
//
LIBODB_ORACLE_EXPORT void
oci_descriptor_free (void* descriptor, ub4 type);
template <typename D>
struct descriptor_traits
{
static void
release (OCIParam* 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&);
private:
D* d_;
};
}
}
#include <odb/post.hxx>
#endif // ODB_ORACLE_AUTO_DESCRIPTOR_HXX
|