-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcorral.h
More file actions
207 lines (188 loc) · 6.63 KB
/
corral.h
File metadata and controls
207 lines (188 loc) · 6.63 KB
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
//----------------------------------------------------------------------------
// Copyright (c) 2014, Codalogic Ltd (http://www.codalogic.com)
// All rights reserved.
//
// The license for this file is based on the BSD-3-Clause license
// (http://www.opensource.org/licenses/BSD-3-Clause).
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
//
// - Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// - Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// - Neither the name Codalogic Ltd nor the names of its contributors may be
// used to endorse or promote products derived from this software without
// specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//----------------------------------------------------------------------------
// Note: return_from_function:
// Use the Colvin/Gibbons (aka auto_ptr / auto_ptr_ref shuffle) to transfer
// corral<T> from functions. See last part of:
// http://ptgmedia.pearsoncmg.com/images/020163371X/autoptrupdate/auto_ptr_update.html
// Additional background at: http://www.gotw.ca/gotw/025.htm
// And auto_ptr code in <memory> .
#ifndef CORRAL_H
#define CORRAL_H
#include <exception>
namespace crrl { // 'corral' without the vowels!
class bad_corral : public std::exception
{
virtual const char * what() const throw()
{
return "bad_corral exception";
}
};
template< typename T >
class bad_corral_release : public std::exception
{
virtual const char * what() const throw()
{
return "bad_corral_release exception";
}
};
template< typename TvalueId >
struct corral_config
{
// Empty so that without template specialisation code won't compile
// typedef TvalueId value_t;
// static bool validator( const value_t & ) { return true; }
// static void on_reset( value_t & value ) {}
// typedef bad_corral Texception;
};
// A simple non-clean-up config. For example, use as:
// namespace corral {
// template<>
// struct corral_config<int> : public corral_config_simple<int> {};
// }
template< typename TvalueId >
struct corral_config_simple
{
typedef TvalueId value_t;
static bool validator( const value_t & ) { return true; }
static void on_reset( value_t & value ) {}
typedef bad_corral Texception;
};
template< typename TvalueId, typename Tconfig >
class corral_bridge // See return_from_function. 1 - define a bridge
{
private: // corral_bridge is an implementation detail of corral
template< typename Uvalue, typename Uexception, typename Uconfig > friend class corral;
typedef typename corral_config<TvalueId>::value_t value_t;
explicit corral_bridge( value_t value, bool is_valid )
: m_value( value ), m_is_valid( is_valid )
{}
bool m_is_valid;
value_t m_value;
};
template< typename TvalueId,
typename Texception = typename corral_config<TvalueId>::Texception,
typename Tconfig = corral_config< TvalueId > >
class corral
{
public:
typedef typename corral_config<TvalueId>::value_t value_t;
typedef bool (*validator_t)( const value_t & );
private:
bool m_is_valid;
bool m_is_owned;
value_t m_value;
public:
corral() : m_is_valid( false ), m_is_owned( false )
{}
corral( value_t value ) : m_value( value )
{
m_is_valid = m_is_owned = Tconfig::validator( value );
}
corral( value_t value, validator_t validator ) : m_value( value )
{
m_is_valid = m_is_owned = validator( value );
}
template< typename Uvalue, typename Uexception, typename Uconfig > friend class corral;
template< typename Uexception >
explicit corral( corral< TvalueId, Uexception, Tconfig > & rhs )
{
// Really a move()!
m_is_valid = m_is_owned = rhs.is_valid();
if( m_is_valid )
m_value = rhs.m_value;
rhs.m_is_valid = rhs.m_is_owned = false;
}
operator corral_bridge<TvalueId, Tconfig>() // See return_from_function. 2 - Cast to create a bridge
{
corral_bridge<TvalueId, Tconfig> bridge( m_value, m_is_valid );
m_is_valid = m_is_owned = false;
return bridge;
}
corral( corral_bridge<TvalueId, Tconfig> bridge ) // See return_from_function. 3 - Construct from bridge
{
m_value = bridge.m_value;
m_is_owned = m_is_valid = bridge.m_is_valid;
}
virtual ~corral()
{
reset();
}
bool is_valid() const { return m_is_owned && m_is_valid; }
void check() const
{
if( ! is_valid() )
throw Texception();
}
value_t & get()
{
if( ! is_valid() )
throw Texception();
return m_value;
}
const value_t & get() const
{
if( ! is_valid() )
throw Texception();
return m_value;
}
template< typename Uexception >
void take( corral< TvalueId, Uexception, Tconfig > & rhs )
{
reset();
if( rhs.is_valid() )
{
m_value = rhs.release();
m_is_owned = m_is_valid = true;
}
}
value_t & release()
{
if( ! is_valid() )
throw bad_corral_release< Texception >();
m_is_owned = false;
return m_value;
}
void reset()
{
if( is_valid() )
if( ! on_reset( m_value ) )
Tconfig::on_reset( m_value );
m_is_valid = m_is_owned = false;
}
private:
template< typename Uexception > // Disable copy assignment
corral & operator = ( const corral< TvalueId, Uexception, Tconfig > & rhs );
virtual bool /* is_resource_released */ on_reset( value_t & value ) { return false; }
};
} // namespace crrl
#endif // CORRAL_H