summaryrefslogtreecommitdiffstats
path: root/tags/cpp-1.0-incubating-M2-RC3/sdo/runtime/core/src/commonj/sdo/SDORuntimeException.h
blob: d8a79cac3f2718bf51878981168e0368247c7c0a (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
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 *   
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

/* $Rev$ $Date$ */

#if !defined SDO_EXCEPTIONS_H
#define SDO_EXCEPTIONS_H

#include "commonj/sdo/export.h"


#include <string>
#include <iostream>



/** SDORuntimeException - Exception base class.
 *
 *
 * Description :
 * -------------
 *   SDO exception class definition
 *
 *   This is intended as a base class.
 *
 * Parent Classes :
 * ----------------
 *   none
 *
 * Public Member functions:
 * ------------------------
 *
 *   Constructors :
 *     SDORuntimeExceptionm(severity_level sev=severe,
 *                          const string &msg_text="");
 *
 *       creates the exception object. Parameters are:
 *         sev: the severity of the exception (Error, Severe)
 *         msg_text:  descriptive message_text
 *
 *     copy constructor not necessary
 *
 *   Destructor :
 *       virtual ~SDORuntimeException();
 *
 *   Assignment operator:
 *       not necessary
 *
 *   void setSeverity(severity_level sev);
 *     set the exception severity
 *
 *   void setMessageText(const char* msg_text);
 *     set the message text associated with the exception. (This text should
 *     come from a message catalog as it may be written to stdout/stderr at
 *     some point)
 *
 *   void setExceptionLocation(const char* file,
 *                             unsigned long line,
 *                             const char* function="");
 *
 *     adds the location of the exception. Parameters
 *       file: the filename from where the exception is being created
 *       (from __FILE__)
 *       line: the line number from where the exception is being created
 *       (from __LINE__)
 *       function: The function name from where the exception is being created
 *
 *   severity_level getSeverity() const;
 *     returns the severity of the exception
 *
 *   const char* getMessageText() const;
 *     returns the message text that describes this exception.
 *
 *   const tring& getFileName() const;
 *     returns the file name from the location information in the exception
 *
 *   unsigned long getLineNumber() const;
 *     returns the line number from the location information in the exception
 *
 *   const char* getFunctionName() const;
 *     returns the function name from the location information in the exception
 *
 * Private Data Members :
 * ----------------------
 *   severity_level   severity;         * Severity of exception
 *   string           message_text;     * Message associated with exception
 *   string           file_name;        * File name (from __FILE__)
 *   unsigned long    line_number;      * Line number (from __LINE__)
 *   string           function_name;    * Function name
 *
 */

class  SDORuntimeException
{
  public:
    // Constructor
    enum severity_level
    {
      Normal,
      Warning,
      Error,
      Severe
    };

    SDO_API SDORuntimeException(const char *name="SDORuntimeException",
                 severity_level sev=Severe,
                 const char* msg_text="");

    SDO_API SDORuntimeException(const SDORuntimeException& c);

    // Destructor
    virtual  SDO_API ~SDORuntimeException();

    /**  getEClassName() get the exception class
     *
     * returns the name of the exception class, which will be
     * a subclass of SDORuntimeException
     */

    SDO_API const char* getEClassName() const;

    /**  getSeverity returns a level from severity_levels
     *
     * Return severity
     * from the enumerator severity_levels, which is:
     *
     * Normal,Warning, Error,Severe
      */

    SDO_API severity_level getSeverity() const;

    /**
     * Return message text associated with exception
     */

    SDO_API const char* getMessageText() const;

    /**  getFileName() the file where the exception occurred
     *
     *     Return file name where exception was raised
     */

    SDO_API const char* getFileName() const;

    /**  getLineNumber gives the line where the excepion occurred
     *
     * Return line number where exception was raised
     */

    SDO_API unsigned long getLineNumber() const;

    /**  getFunctionName give the name of the raising function
     *
     * Return function name where exception was raised
     */

    SDO_API const char* getFunctionName() const;


    /**  setSeverity
     *
     * sets an exception severity
     */

    SDO_API void setSeverity(severity_level sev);

    /**  setMessageText
     *
     * set the message text associated with exception
     */

    SDO_API void setMessageText(const char* msg_text);


    /**  setExceptionLocation
     *
     * set exception location
     */

    SDO_API void setExceptionLocation(const char* file,
                                unsigned long line,
                                const char* function="");

    SDO_API void setLocation(const char* file,
                                unsigned long line,
                                const char* function="");

    SDO_API void trace(const char* text="%1:\n  %3 %4 %2");

    SDO_API virtual std::ostream& PrintSelf(std::ostream &os) const;

    /**  operator << to write the exception
     *
     * ostream operator <<
     */

    SDO_API friend std::ostream& operator<< (std::ostream &os, const SDORuntimeException &except);
 
  protected:

  private:

    char*        class_name;

    severity_level   severity;         // Severity of exception

    char*        message_text;     // Description of exception

    //* Location where the exception was last thrown*handled

    class location
    {
      public:
        char*            file;       //* File name (from __FILE__)
        unsigned long   line;       //* Line number (from __LINE__)
        char*            function;   //* Function name
    };

    // Array of locations
    enum {num_locations=5};
    location         locations[num_locations];

    // Index into locations array
    int              location_set;


}; // End SDORuntimeException class definition

/** 
 ***************************************************************************
 *
 * SDOOutOfMemoryException - Exception for no-storage
 *
 * ***************************************************************************
 */

class SDOOutOfMemoryException: public SDORuntimeException
{
  public:
    SDOOutOfMemoryException(unsigned long size)
      : SDORuntimeException("SDOOutOfMemoryException", Severe,
                     "Unable to obtain storage of length " + size)
    {
    }
  private:
}; // End SDOOutOfMemory class definition

/** 
 ***************************************************************************
 *
 * SDONullPointerException - Exception for no-storage
 *
 * ***************************************************************************
 */

class SDONullPointerException: public SDORuntimeException
{
  public:
    SDONullPointerException(const char* param)
      : SDORuntimeException("SDONullPointerException", Warning,
                     "The referenced object is null ")
    {
    }
  private:
}; // End SDOOutOfMemory class definition
/**
***************************************************************************
*
* SDOPathNotFoundException - Exception for bad path
*
****************************************************************************
*/
class SDOPathNotFoundException: public SDORuntimeException
{
  public:
    SDOPathNotFoundException(const char* path)
      : SDORuntimeException("SDOPathNotFoundException", Warning,
                     path)
    {
    }
  private:
}; // End SDOPathNotFoundException class definition

/**
***************************************************************************
*
* SDOPropertyNotFoundException - Exception for property not found
*
****************************************************************************
*/

class SDOPropertyNotFoundException: public SDORuntimeException
{
  public:
    SDOPropertyNotFoundException(const char* name)
      : SDORuntimeException("SDOPropertyNotFoundException", Warning,
                      name)
    {
    }
  private:
}; // End SDOPropertyNotFoundException class definition

/** 
***************************************************************************
*
*  SDOTypeNotFoundException - Exception for type not found.
*
****************************************************************************
*/
class SDOTypeNotFoundException: public SDORuntimeException
{
  public:
    SDOTypeNotFoundException(const char* name)
      : SDORuntimeException("SDOTypeNotFoundException", Warning,
                     name)
    {
    }
  private:
}; // End SDOTypeNotFoundException class definition

/**
***************************************************************************
*
* SDOFileNotFoundException - Exception for file not found
*
****************************************************************************
*/

class SDOFileNotFoundException: public SDORuntimeException
{
  public:
    SDOFileNotFoundException(const char* name)
      : SDORuntimeException("SDOFileNotFoundException", Warning,
                     name)
    {
    }
  private:
}; // End SDOFileNotFoundException class definition
/** 
***************************************************************************
*
* SDOPropertyNotSetException - Exception for asking for the value of an 
* unset/undefaulted prop
*
****************************************************************************
*/
class SDOPropertyNotSetException: public SDORuntimeException
{
  public:
    SDOPropertyNotSetException(const char* name)
      : SDORuntimeException("SDOPropertyNotSetException", Warning,
                     name)
    {
    }
  private:
}; // End SDOPropertyNotSetException class definition
/** 
***************************************************************************
*
* SDOUnsupportedOperationException - Invalid action or unimplemented method.
*
****************************************************************************
*/
class SDOUnsupportedOperationException: public SDORuntimeException
{
  public:
    SDOUnsupportedOperationException(const char* name)
      : SDORuntimeException("SDOUnsupportedOperationException", Warning,
                      name)
    {
    }
  private:
}; // End SDOTypeNotFoundException class definition

/**
***************************************************************************
*
* SDOInvalidConversionException - Invalid conversion - cannot convert to type.
*
****************************************************************************
*/
class SDOInvalidConversionException: public SDORuntimeException
{
  public:
    SDOInvalidConversionException(const char* name)
      : SDORuntimeException("SDOInvalidConversionException", Warning,
                      name)
    {
    }
  private:
}; // End SDOTypeNotFoundException class definition
/** 
***************************************************************************
*
* SDOIllegalArgumentException - Invalid argument passed (null name?).
*
****************************************************************************
*/
class SDOIllegalArgumentException: public SDORuntimeException
{
  public:
    SDOIllegalArgumentException(const char* name)
      : SDORuntimeException("SDOIllegalArgumentException", Warning,
                      name)
    {
    }
  private:
}; // End SDOTypeNotFoundException class definition
/**
****************************************************************************
*
* SDOIndexOutOfRangeException - element index not in a list.
*
****************************************************************************
*/
class SDOIndexOutOfRangeException: public SDORuntimeException
{
  public:
    SDOIndexOutOfRangeException(const char* name)
      : SDORuntimeException("SDOIndexOutOfRangeException", Warning,
                      name)
    {
    }
  private:
}; // End SDOTypeNotFoundException class definition

/** 
***************************************************************************
*
* SDOXMLParserException - XMLParser error
*
****************************************************************************
*/
class SDOXMLParserException: public SDORuntimeException
{
  public:
    SDOXMLParserException(const char* name)
      : SDORuntimeException("SDOXMLParserException", Warning,
                      name)
    {
    }
  private:
}; // End SDOTypeNotFoundException class definition

/* 
***************************************************************************
*
* Macro definitions
*
****************************************************************************
*/
/**
  * =========================================================================
  * Macro  - SDO_THROW_EXCEPTION
  *
  * adds the current file name, line number and function name to the exception.
  * then throws the exception.
  * The parameter 'function_name' should be the name of the function throwing
  * this exception.
  * The parameter 'type' is the class of exception to throw and must be a
  * SDORuntimeException or a class derived from SDORuntimeException.
  * The parameter 'parameter' is the construction parameter for the exception
  * =========================================================================
*/

  #define SDO_THROW_EXCEPTION(function_name, type, parameter )  \
    {\
     type ex(parameter); \
     ex.setExceptionLocation(__FILE__,__LINE__,#function_name); \
     throw ex;\
    }

/** 
    =========================================================================
  * Macro  - SDO_RETHROW_EXCEPTION
  *
  * adds the current file name, line number and function name to the exception.
  * then re-throws the exception.
  * The parameter 'function_name' should be the name of the function throwing
  * this exception.
  * =========================================================================
*/
  #define SDO_RETHROW_EXCEPTION(function_name, exception)  \
     (exception).setLocation(__FILE__,__LINE__,#function_name); \
     throw;

/**
  * =========================================================================
  * Macro  - SDO_HANDLE_EXCEPTION
  *
  * adds the current file name, line number and function name to the exception.
  * Writes an exception trace entry then continues.
  * The parameter 'function_name' should be the name of the function handling
  * this exception.
  * =========================================================================
*/
  #define SDO_HANDLE_EXCEPTION(function_name, exception)  \
    {\
     (exception).setLocation(__FILE__,__LINE__,#function_name); \
     (exception).Trace("Exception handled by %1: \n  %3 %4 %2");\
    }

#endif