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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
|
#ifndef INCLUDE_EXCEPTIONS_H
#define INCLUDE_EXCEPTIONS_H
/*
* This is the Loris C++ Class Library, implementing analysis,
* manipulation, and synthesis of digitized sounds using the Reassigned
* Bandwidth-Enhanced Additive Sound Model.
*
* Loris is Copyright (c) 1999-2010 by Kelly Fitz and Lippold Haken
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY, without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*
* LorisExceptions.h
*
* Definition of class Exception, a generic exception class, and
* commonly-used derived exception classes.
*
* This file was formerly called Exception.h, but that filename caused build
* problems on case-insensitive systems that sometimes had system headers
* called exception.h.
*
* Kelly Fitz, 17 Oct 2006
* loris@cerlsoundgroup.org
*
* http://www.cerlsoundgroup.org/Loris/
*
*/
#include <stdexcept>
#include <string>
// begin namespace
namespace Loris {
// ---------------------------------------------------------------------------
// class Exception
//
//! Exception is a generic exception class for reporting exceptional
//! circumstances in Loris. Exception is derived from std:exception,
//! and is the base for a hierarchy of derived exception classes
//! in Loris.
//!
//
class Exception : public std::exception
{
// -- public interface --
public:
// --- lifecycle ---
//! Construct a new instance with the specified description and, optionally
//! a string identifying the location at which the exception as thrown. The
//! Throw( Exception_Class, description_string ) macro generates a location
//! string automatically using __FILE__ and __LINE__.
//!
//! \param str is a string describing the exceptional condition
//! \param where is an option string describing the location in
//! the source code from which the exception was thrown
//! (generated automatically by the Throw macro).
Exception( const std::string & str, const std::string & where = "" );
//! Destroy this Exception.
virtual ~Exception( void ) throw()
{
}
// --- access/mutation ---
//! Return a description of this Exception in the form of a
//! C-style string (char pointer). Overrides std::exception::what.
//!
//! \return a C-style string describing the exceptional condition.
const char * what( void ) const throw() { return _sbuf.c_str(); }
//! Append the specified string to this Exception's description,
//! and return a reference to this Exception.
//!
//! \param str is text to append to the exception description
//! \return a reference to this Exception.
Exception & append( const std::string & str );
//! Return a read-only refernce to this Exception's
//! description string.
//!
//! \return a string describing the exceptional condition
const std::string & str( void ) const
{
return _sbuf;
}
// -- instance variables --
protected:
//! string for storing the exception description
std::string _sbuf;
}; // end of class Exception
// ---------------------------------------------------------------------------
// class AssertionFailure
//
//! Class of exceptions thrown when an assertion (usually representing an
//! invariant condition, and usually detected by the Assert macro) is
//! violated.
//
class AssertionFailure : public Exception
{
public:
//! Construct a new instance with the specified description and, optionally
//! a string identifying the location at which the exception as thrown. The
//! Throw( Exception_Class, description_string ) macro generates a location
//! string automatically using __FILE__ and __LINE__.
//!
//! \param str is a string describing the exceptional condition
//! \param where is an option string describing the location in
//! the source code from which the exception was thrown
//! (generated automatically by the Throw macro).
AssertionFailure( const std::string & str, const std::string & where = "" ) :
Exception( std::string("Assertion failed -- ").append( str ), where )
{
}
}; // end of class AssertionFailure
// ---------------------------------------------------------------------------
// class IndexOutOfBounds
//
//! Class of exceptions thrown when a subscriptable object is accessed
//! with an index that is out of range.
//
class IndexOutOfBounds : public Exception
{
public:
//! Construct a new instance with the specified description and, optionally
//! a string identifying the location at which the exception as thrown. The
//! Throw( Exception_Class, description_string ) macro generates a location
//! string automatically using __FILE__ and __LINE__.
//!
//! \param str is a string describing the exceptional condition
//! \param where is an option string describing the location in
//! the source code from which the exception was thrown
//! (generated automatically by the Throw macro).
IndexOutOfBounds( const std::string & str, const std::string & where = "" ) :
Exception( std::string("Index out of bounds -- ").append( str ), where ) {}
}; // end of class IndexOutOfBounds
// ---------------------------------------------------------------------------
// class InvalidObject
//
//! Class of exceptions thrown when an object is found to be badly configured
//! or otherwise invalid.
//
class InvalidObject : public Exception
{
public:
//! Construct a new instance with the specified description and, optionally
//! a string identifying the location at which the exception as thrown. The
//! Throw( Exception_Class, description_string ) macro generates a location
//! string automatically using __FILE__ and __LINE__.
//!
//! \param str is a string describing the exceptional condition
//! \param where is an option string describing the location in
//! the source code from which the exception was thrown
//! (generated automatically by the Throw macro).
InvalidObject( const std::string & str, const std::string & where = "" ) :
Exception( std::string("Invalid configuration or object -- ").append( str ), where )
{
}
}; // end of class InvalidObject
// ---------------------------------------------------------------------------
// class InvalidIterator
//
//! Class of exceptions thrown when an Iterator is found to be badly configured
//! or otherwise invalid.
//
class InvalidIterator : public InvalidObject
{
public:
//! Construct a new instance with the specified description and, optionally
//! a string identifying the location at which the exception as thrown. The
//! Throw( Exception_Class, description_string ) macro generates a location
//! string automatically using __FILE__ and __LINE__.
//!
//! \param str is a string describing the exceptional condition
//! \param where is an option string describing the location in
//! the source code from which the exception was thrown
//! (generated automatically by the Throw macro).
InvalidIterator( const std::string & str, const std::string & where = "" ) :
InvalidObject( std::string("Invalid Iterator -- ").append( str ), where )
{
}
}; // end of class InvalidIterator
// ---------------------------------------------------------------------------
// class InvalidArgument
//
//! Class of exceptions thrown when a function argument is found to be invalid.
//
class InvalidArgument : public Exception
{
public:
//! Construct a new instance with the specified description and, optionally
//! a string identifying the location at which the exception as thrown. The
//! Throw( Exception_Class, description_string ) macro generates a location
//! string automatically using __FILE__ and __LINE__.
//!
//! \param str is a string describing the exceptional condition
//! \param where is an option string describing the location in
//! the source code from which the exception was thrown
//! (generated automatically by the Throw macro).
InvalidArgument( const std::string & str, const std::string & where = "" ) :
Exception( std::string("Invalid Argument -- ").append( str ), where )
{
}
}; // end of class InvalidArgument
// ---------------------------------------------------------------------------
// class RuntimeError
//
//! Class of exceptions thrown when an unanticipated runtime error is
//! encountered.
//
class RuntimeError : public Exception
{
public:
//! Construct a new instance with the specified description and, optionally
//! a string identifying the location at which the exception as thrown. The
//! Throw( Exception_Class, description_string ) macro generates a location
//! string automatically using __FILE__ and __LINE__.
//!
//! \param str is a string describing the exceptional condition
//! \param where is an option string describing the location in
//! the source code from which the exception was thrown
//! (generated automatically by the Throw macro).
RuntimeError( const std::string & str, const std::string & where = "" ) :
Exception( std::string("Runtime Error -- ").append( str ), where )
{
}
}; // end of class RuntimeError
// ---------------------------------------------------------------------------
// class FileIOException
//
//! Class of exceptions thrown when file input or output fails.
//
class FileIOException : public RuntimeError
{
public:
//! Construct a new instance with the specified description and, optionally
//! a string identifying the location at which the exception as thrown. The
//! Throw( Exception_Class, description_string ) macro generates a location
//! string automatically using __FILE__ and __LINE__.
//!
//! \param str is a string describing the exceptional condition
//! \param where is an option string describing the location in
//! the source code from which the exception was thrown
//! (generated automatically by the Throw macro).
FileIOException( const std::string & str, const std::string & where = "" ) :
RuntimeError( std::string("File i/o error -- ").append( str ), where )
{
}
}; // end of class FileIOException
// ---------------------------------------------------------------------------
// macros for throwing exceptions
//
// The compelling reason for using macros instead of inlines for all these
// things is that the __FILE__ and __LINE__ macros will be useful.
//
#define __STR(x) __VAL(x)
#define __VAL(x) #x
#define Throw( exType, report ) \
throw exType( report, " ( " __FILE__ " line: " __STR(__LINE__) " )" )
#define Assert(test) \
do { \
if (!(test)) Throw( Loris::AssertionFailure, #test ); \
} while (false)
} // end of namespace Loris
#endif /* ndef INCLUDE_EXCEPTIONS_H */
|