os/ossrv/ossrv_pub/exceptions/inc/stdapis/stlport/exception
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/*
sl@0
     2
 * © Portions copyright (c) 2006-2007 Nokia Corporation.  All rights reserved.
sl@0
     3
 *
sl@0
     4
 * Copyright (c) 1996,1997
sl@0
     5
 * Silicon Graphics Computer Systems, Inc.
sl@0
     6
 *
sl@0
     7
 * Copyright (c) 1999 
sl@0
     8
 * Boris Fomitchev
sl@0
     9
 *
sl@0
    10
 * This material is provided "as is", with absolutely no warranty expressed
sl@0
    11
 * or implied. Any use is at your own risk.
sl@0
    12
 *
sl@0
    13
 * Permission to use or copy this software for any purpose is hereby granted 
sl@0
    14
 * without fee, provided the above notices are retained on all copies.
sl@0
    15
 * Permission to modify the code and to distribute modified code is granted,
sl@0
    16
 * provided the above notices are retained, and a notice that the code was
sl@0
    17
 * modified is included with the above copyright notice.
sl@0
    18
 *
sl@0
    19
 */
sl@0
    20
sl@0
    21
// This header exists solely for portability.  Normally it just includes
sl@0
    22
// the native header <exception>.
sl@0
    23
sl@0
    24
// The header <exception> contains low-level functions that interact
sl@0
    25
// with a compiler's exception-handling mechanism.  It is assumed to
sl@0
    26
// be supplied with the compiler, rather than with the library, because
sl@0
    27
// it is inherently tied very closely to the compiler itself.
sl@0
    28
sl@0
    29
// On platforms where <exception> does not exist, this header defines
sl@0
    30
// an exception base class.  This is *not* a substitute for everything
sl@0
    31
// in <exception>, but it suffices to support a bare minimum of STL
sl@0
    32
// functionality.
sl@0
    33
sl@0
    34
sl@0
    35
# if !defined (_STLP_OUTERMOST_HEADER_ID)
sl@0
    36
#  define _STLP_OUTERMOST_HEADER_ID 0x423
sl@0
    37
#  include <stl/_prolog.h>
sl@0
    38
# elif (_STLP_OUTERMOST_HEADER_ID == 0x423) && ! defined (_STLP_DONT_POP_0x423)
sl@0
    39
#  define _STLP_DONT_POP_0x423
sl@0
    40
# endif
sl@0
    41
sl@0
    42
#ifndef _STLP_EXCEPTION
sl@0
    43
#define _STLP_EXCEPTION
sl@0
    44
sl@0
    45
# if   ! defined (_STLP_NO_EXCEPTION_HEADER)
sl@0
    46
sl@0
    47
#  if defined ( _UNCAUGHT_EXCEPTION )
sl@0
    48
#   undef _STLP_INCOMPLETE_EXCEPTION_HEADER
sl@0
    49
#  endif
sl@0
    50
sl@0
    51
# if defined(_STLP_BROKEN_EXCEPTION_CLASS)
sl@0
    52
#  define exception     _STLP_NULLIFIED_BROKEN_EXCEPTION_CLASS
sl@0
    53
#  define bad_exception _STLP_NULLIFIED_BROKEN_BAD_EXCEPTION_CLASS
sl@0
    54
#  if defined (_STLP_NO_NEW_NEW_HEADER)
sl@0
    55
#   include _STLP_NATIVE_CPP_RUNTIME_HEADER(Exception.h)
sl@0
    56
#  else
sl@0
    57
#   include _STLP_NATIVE_CPP_RUNTIME_HEADER(Exception)
sl@0
    58
#  endif
sl@0
    59
#  undef exception
sl@0
    60
#  undef bad_exception
sl@0
    61
# else
sl@0
    62
sl@0
    63
#ifndef _STLP_NO_NEW_NEW_HEADER
sl@0
    64
#define _STLP_NO_NEW_NEW_HEADER
sl@0
    65
#endif
sl@0
    66
sl@0
    67
# if defined (_STLP_NO_NEW_NEW_HEADER)
sl@0
    68
#  include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception.h)
sl@0
    69
# else
sl@0
    70
#   include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception)
sl@0
    71
# endif
sl@0
    72
sl@0
    73
# endif
sl@0
    74
sl@0
    75
#    if defined (_STLP_MSVC) || defined (__ICL)
sl@0
    76
// dwa 02/04/00 - here I'm assuming that __ICL uses the same library headers as vc6.
sl@0
    77
// the header <yvals.h> which ships with vc6 and is included by its native <exception>
sl@0
    78
// actually turns on warnings, so we have to turn them back off.
sl@0
    79
#      include <config/_msvc_warnings_off.h>
sl@0
    80
#    endif
sl@0
    81
sl@0
    82
sl@0
    83
#  ifdef _STLP_USE_OWN_NAMESPACE
sl@0
    84
sl@0
    85
_STLP_BEGIN_NAMESPACE
sl@0
    86
sl@0
    87
#if !defined(_STLP_BROKEN_EXCEPTION_CLASS)
sl@0
    88
using _STLP_VENDOR_EXCEPT_STD::exception;
sl@0
    89
using _STLP_VENDOR_EXCEPT_STD::bad_exception;
sl@0
    90
#endif
sl@0
    91
sl@0
    92
# if ! defined (_STLP_NO_USING_FOR_GLOBAL_FUNCTIONS)
sl@0
    93
sl@0
    94
// fbp : many platforms present strange mix of
sl@0
    95
// those in various namespaces
sl@0
    96
#  if !defined(_STLP_VENDOR_UNEXPECTED_STD)
sl@0
    97
#   define _STLP_VENDOR_UNEXPECTED_STD _STLP_VENDOR_EXCEPT_STD
sl@0
    98
#  endif
sl@0
    99
sl@0
   100
// weird errors
sl@0
   101
# if (! defined (__BORLANDC__)) || (defined (__STD_EXCEPTION) && defined (__RWSTD_EXCEPTION_SEEN) && defined ( _STLP_DONT_POP_0x423))
sl@0
   102
using _STLP_VENDOR_UNEXPECTED_STD::unexpected;
sl@0
   103
using _STLP_VENDOR_UNEXPECTED_STD::unexpected_handler;
sl@0
   104
using _STLP_VENDOR_UNEXPECTED_STD::set_unexpected;
sl@0
   105
using _STLP_VENDOR_UNEXPECTED_STD::terminate;
sl@0
   106
using _STLP_VENDOR_UNEXPECTED_STD::terminate_handler;
sl@0
   107
using _STLP_VENDOR_UNEXPECTED_STD::set_terminate;
sl@0
   108
# endif
sl@0
   109
sl@0
   110
# if !defined (_STLP_INCOMPLETE_EXCEPTION_HEADER) 
sl@0
   111
using _STLP_VENDOR_UNEXPECTED_STD::uncaught_exception;
sl@0
   112
# endif
sl@0
   113
sl@0
   114
#  endif
sl@0
   115
sl@0
   116
_STLP_END_NAMESPACE
sl@0
   117
sl@0
   118
#  endif /* _STLP_OWN_NAMESPACE */
sl@0
   119
sl@0
   120
#else /* _STLP_NO_EXCEPTION_HEADER */
sl@0
   121
sl@0
   122
// fbp : absence of <exception> usually means that those
sl@0
   123
// functions are not going to be called by compiler.
sl@0
   124
// Still, define them for the user.
sl@0
   125
#ifdef __SYMBIAN32__
sl@0
   126
_STLP_BEGIN_NAMESPACE
sl@0
   127
#endif //__SYMBIAN32__
sl@0
   128
typedef void (*unexpected_handler)();
sl@0
   129
unexpected_handler set_unexpected(unexpected_handler f) _STLP_NOTHROW_INHERENTLY;
sl@0
   130
void unexpected();
sl@0
   131
sl@0
   132
typedef void (*terminate_handler)();
sl@0
   133
terminate_handler set_terminate(terminate_handler f) _STLP_NOTHROW_INHERENTLY;
sl@0
   134
void terminate();
sl@0
   135
sl@0
   136
bool uncaught_exception(); // not implemented under mpw as of Jan/1999
sl@0
   137
sl@0
   138
#ifdef __SYMBIAN32__
sl@0
   139
_STLP_END_NAMESPACE
sl@0
   140
#endif //__SYMBIAN32__
sl@0
   141
sl@0
   142
#endif  /* _STLP_NO_EXCEPTION_HEADER */	
sl@0
   143
sl@0
   144
# if   defined (_STLP_NO_EXCEPTION_HEADER) || defined(_STLP_BROKEN_EXCEPTION_CLASS)
sl@0
   145
# ifndef _STLP_EXCEPTION_H
sl@0
   146
#  define _STLP_EXCEPTION_H
sl@0
   147
sl@0
   148
_STLP_BEGIN_NAMESPACE
sl@0
   149
sl@0
   150
// section 18.6.1
sl@0
   151
#ifdef __SYMBIAN32__
sl@0
   152
class exception
sl@0
   153
#else
sl@0
   154
class _STLP_CLASS_DECLSPEC exception 
sl@0
   155
#endif
sl@0
   156
	{
sl@0
   157
	public:
sl@0
   158
# ifdef _STLP_OWN_IOSTREAMS
sl@0
   159
        IMPORT_C exception() _STLP_NOTHROW;
sl@0
   160
        IMPORT_C virtual ~exception() _STLP_NOTHROW;
sl@0
   161
	IMPORT_C virtual const char* what() const _STLP_NOTHROW;
sl@0
   162
# else
sl@0
   163
        exception() _STLP_NOTHROW {}
sl@0
   164
		virtual ~exception() _STLP_NOTHROW {}
sl@0
   165
		virtual const char* what() const _STLP_NOTHROW {return "class exception";}
sl@0
   166
# endif
sl@0
   167
	};
sl@0
   168
	
sl@0
   169
	
sl@0
   170
sl@0
   171
// section 18.6.2.1
sl@0
   172
#ifdef __SYMBIAN32__
sl@0
   173
class bad_exception : public exception 
sl@0
   174
#else
sl@0
   175
class _STLP_CLASS_DECLSPEC bad_exception : public exception 
sl@0
   176
#endif
sl@0
   177
	{
sl@0
   178
	public:
sl@0
   179
# ifdef _STLP_OWN_IOSTREAMS
sl@0
   180
	  _STLP_DECLSPEC bad_exception() _STLP_NOTHROW;
sl@0
   181
	  _STLP_DECLSPEC ~bad_exception() _STLP_NOTHROW;
sl@0
   182
	  _STLP_DECLSPEC const char* what() const _STLP_NOTHROW;
sl@0
   183
# else
sl@0
   184
	  bad_exception() _STLP_NOTHROW {}
sl@0
   185
	  ~bad_exception() _STLP_NOTHROW {}
sl@0
   186
	  const char* what() const _STLP_NOTHROW {return "class bad_exception";}
sl@0
   187
# endif
sl@0
   188
	};
sl@0
   189
sl@0
   190
#ifdef __SYMBIAN32__
sl@0
   191
// Give forward declaration, this should be supported by the stdard libraries from platform vendor.
sl@0
   192
typedef void (*unexpected_handler)();
sl@0
   193
_STLP_DECLSPEC unexpected_handler set_unexpected(unexpected_handler f) _STLP_NOTHROW_INHERENTLY;
sl@0
   194
_STLP_DECLSPEC void unexpected();
sl@0
   195
sl@0
   196
typedef void (*terminate_handler)();
sl@0
   197
_STLP_DECLSPEC terminate_handler set_terminate(terminate_handler f) _STLP_NOTHROW_INHERENTLY;
sl@0
   198
_STLP_DECLSPEC void terminate();
sl@0
   199
sl@0
   200
_STLP_DECLSPEC bool uncaught_exception(); // not implemented under mpw as of Jan/1999
sl@0
   201
sl@0
   202
#endif
sl@0
   203
_STLP_END_NAMESPACE
sl@0
   204
sl@0
   205
#endif /* _STLP_NO_EXCEPTION_HEADER */
sl@0
   206
sl@0
   207
_STLP_BEGIN_NAMESPACE
sl@0
   208
// forward declaration
sl@0
   209
class __Named_exception;
sl@0
   210
_STLP_END_NAMESPACE
sl@0
   211
#endif /* _STLP_EXCEPTION_H */
sl@0
   212
sl@0
   213
#endif //_STLP_EXCEPTION
sl@0
   214
sl@0
   215
# if (_STLP_OUTERMOST_HEADER_ID == 0x423)
sl@0
   216
#  if ! defined (_STLP_DONT_POP_0x423)
sl@0
   217
#   include <stl/_epilog.h>
sl@0
   218
#   undef  _STLP_OUTERMOST_HEADER_ID
sl@0
   219
#   endif
sl@0
   220
#   undef  _STLP_DONT_POP_0x423
sl@0
   221
# endif
sl@0
   222
sl@0
   223
sl@0
   224
// Local Variables:
sl@0
   225
// mode:C++
sl@0
   226
// End:
sl@0
   227
sl@0
   228
sl@0
   229