summaryrefslogtreecommitdiffstats
path: root/tags/native-sca-1.0.incubating-M3-RC4/runtime/core/src/tuscany/sca/core/Exceptions.h
blob: 3b5b048736d22d9fc8034cdccf86edb47c021ec6 (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
/*
 * 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$ */

#ifndef tuscany_sca_core_exceptions_h
#define tuscany_sca_core_exceptions_h

#include <ostream>

#include "commonj/sdo/SDO.h"

#include "tuscany/sca/export.h"


namespace tuscany
{
    namespace sca
    {        
        /**
         * Top level exception to represent all the exceptions that may be 
         * thrown by an SCA runtime implementation.
         */
        class SCA_API TuscanyRuntimeException
        {
        public:
            /**
             * Represents the possible severity levels for an exception.
             */
            enum severity_level
            {
                Normal,    
                    Warning,
                    Error,
                    Severe
            };
            
            /**
             * Constructor.
             * @param name Class name of the exception.
             * @param sev Severity level.
             * @param msg_text Detailed description of the exception.
             */
            TuscanyRuntimeException(
                const char *name = "TuscanyRuntimeException",
                severity_level sev = Severe,
                const char* msg_text = "");
            
            TuscanyRuntimeException(const TuscanyRuntimeException& c);
            TuscanyRuntimeException(const SDORuntimeException& c);
            
            // Destructor
            virtual  ~TuscanyRuntimeException();
            
            /**
             * Return class name of this exception.
             */
            const char* getEClassName() const;
            
            /**
             * Return severity.
             */
            severity_level getSeverity() const;
            
            /**
             * Return message text associated with exception.
             */
            const char* getMessageText() const;
            
            /*
             * Return file name where the exception was raised.
             */
            const char* getFileName() const;
            
            /**
             * Return line number where the exception was raised.
             */
            unsigned long getLineNumber() const;
            
            /**
             * Return function name where the exception was raised.
             */
            const char* getFunctionName() const;
            
            /**
             * Set the exception severity.
             */
            void setSeverity(severity_level sev);
            
            /**
             * Set the message text associated with exception.
             */
            void setMessageText(const char* msg_text);
                    
            /**
             * Set the location where the exception was raised.
             * @param file Name of the file.
             * @param line Line number in the file.
             * @param function Name of the function.
             */
            void setLocation(const char* file,
                unsigned long line,
                const char* function="");
            
            /**
             * Append exception details to ostream.
             */
            virtual std::ostream& PrintSelf(std::ostream &os) const;
            
            /**
             * Operator to send exceptions details to a stream.
             */
            SCA_API friend std::ostream& operator<< (std::ostream &os, const TuscanyRuntimeException &except);
            
        protected:
            
        private:
            /**
             * Class name of the exception.
             */ 
            char*        class_name;
            
            /**
             * Severity level of the exception.
             */
            severity_level   severity;
            
            /**
             * Description of the exception.
             */
            char*        message_text;     // Description of exception
            
            /**
             * Location where the exception was thrown or handled and thrown.
             */            
            class location
            {
            public:
                char*            file;       // File name (from __FILE__)
                unsigned long   line;       // Line number (from __LINE__)
                char*            function;   // Function name
            };
            
            
            enum {num_locations=5};
            /**
             * Array of locations where the exception has been handled and thrown.
             */
            location         locations[num_locations];
            
            /**
             * The current location (index into TuscanyRuntimeException#location).
             */
            int              location_set;
            
            /**
             * A snapshot of the stack when the exception was constructed
             */
#if defined(WIN32)  || defined (_WINDOWS)
#else
            int stacktrace_size;
            char** stacktrace_symbols;
#endif
            
        }; // End TuscanyRuntimeException class definition
        

        /**
         * Indicates a problem in the consistency of the SCA model provided to the
         * Tuscany runtime.
         */
        class SCA_API SystemConfigurationException: public TuscanyRuntimeException
        {
        public:
            SystemConfigurationException(const char* msg)
                : TuscanyRuntimeException("SystemConfigurationException", Severe,
                msg)
            {
            }

            SystemConfigurationException(
                const char *name,
                severity_level sev,
                const char* msg_text)
                : TuscanyRuntimeException(name, sev, msg_text)
            {
            }
            
            SystemConfigurationException(const SDORuntimeException& c)
                : TuscanyRuntimeException(c)
            {
            }
        private:
        };
        
        /**
         * Indicates a problem while invoking a service.
         */
        class SCA_API ServiceInvocationException: public TuscanyRuntimeException
        {
        public:
            ServiceInvocationException(const char* msg)
                : TuscanyRuntimeException("ServiceInvocationException", Severe, msg)
            {
            }

            ServiceInvocationException(
                const char *name,
                severity_level sev,
                const char* msg_text)
                : TuscanyRuntimeException(name, sev, msg_text)
            {
            }
            
            ServiceInvocationException(const SDORuntimeException& c)
                : TuscanyRuntimeException(c)
            {
            }

        private:
        };
        
        /**
         * Indicates a problem while working with service data.
         */
        class SCA_API ServiceDataException: public TuscanyRuntimeException
        {
        public:
            ServiceDataException(const char* msg)
                : TuscanyRuntimeException("ServiceDataException", Severe,
                msg)
            {
            }

            ServiceDataException(
                const char *name,
                severity_level sev,
                const char* msg_text)
                : TuscanyRuntimeException(name, sev, msg_text)
            {
            }
            
            ServiceDataException(const SDORuntimeException& c)
                : TuscanyRuntimeException(c)
            {
            }
        private:
        };
        
    } // End namespace sca
} // End namespace tuscany


/**
  * =========================================================================
  * Macro  - throwException
  *
  * 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
  * =========================================================================
*/

#if defined(WIN32)  || defined (_WINDOWS)
#define throwException(type, parameter)  \
{\
 type __TuscanyThrownException__(parameter); \
 __TuscanyThrownException__.setLocation(__FILE__,__LINE__,__FUNCTION__); \
 throw __TuscanyThrownException__;\
}
#else
#define throwException(type, parameter)  \
{\
 type __TuscanyThrownException__(parameter); \
 __TuscanyThrownException__.setLocation(__FILE__,__LINE__,__PRETTY_FUNCTION__); \
 throw __TuscanyThrownException__;\
}
#endif

/** 
    =========================================================================
  * Macro  - rethrowException
  *
  * 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.
  * =========================================================================
*/
#if defined(WIN32)  || defined (_WINDOWS)
#define rethrowException(exception)  \
{\
 (exception).setLocation(__FILE__,__LINE__,__FUNCTION__); \
 throw (exception);\
}
#else
#define rethrowException(exception)  \
{\
 (exception).setLocation(__FILE__,__LINE__,__PRETTY_FUNCTION__); \
 throw (exception);\
}
#endif

/**
  * =========================================================================
  * Macro  - handleException
  *
  * 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.
  * =========================================================================
*/
#if defined(WIN32)  || defined (_WINDOWS)
#define handleException(__PRETTY_FUNCTION__, exception)  \
{\
 (exception).setLocation(__FILE__,__LINE__,__FUNCTION__); \
}
#else
#define handleException(__PRETTY_FUNCTION__, exception)  \
{\
 (exception).setLocation(__FILE__,__LINE__,__PRETTY_FUNCTION__); \
}
#endif

#endif // tuscany_sca_core_exceptions_h