blob: 4368ac215517b5e05c34a529e15221fd0475d9f8 [file] [log] [blame]
/* ------------------------------------------------------------------
* Copyright (C) 1998-2009 PacketVideo
*
* Licensed 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.
* -------------------------------------------------------------------
*/
// -*- c++ -*-
// = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
// O S C L _ E R R O R _ I M P _ C P P E X C E P T I O N S
// = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
/*! \addtogroup osclerror OSCL Error
*
* @{
*/
/** \file oscl_error_imp_cppexceptions.h
\brief Implementation File for Leave using C++ exceptions.
*/
#ifndef OSCL_ERROR_IMP_CPPEXCEPTIONS_H_INCLUDED
#define OSCL_ERROR_IMP_CPPEXCEPTIONS_H_INCLUDED
#ifndef OSCL_ERROR_TRAPCLEANUP_H_INCLUDED
#include "oscl_error_trapcleanup.h"
#endif
//Implementation file for Leave using C++ exceptions.
//This is a full implementation of Leave.
class internalLeave
{
public:
int a;
};
//Leave throws C++ exceptions.
#define PVError_DoLeave() internalLeave __ilv;__ilv.a=0;throw(__ilv)
//_PV_TRAP catches Leaves.
//_r is the leave code, _s are statements to execute
#define _PV_TRAP(__r,__s)\
__r=OsclErrNone;\
{\
OsclErrorTrapImp* __tr=OsclErrorTrapImp::Trap();\
if(!__tr){__s;}else{\
try{__s;}\
catch(internalLeave __lv)\
{__lv.a=__r=__tr->iLeave;}\
__tr->UnTrap();}\
}
//_PV_TRAP_NO_TLS catches Leaves.
//_r is the leave code, _s are statements to execute
#define _PV_TRAP_NO_TLS(__trapimp,__r,__s)\
__r=OsclErrNone;\
{\
OsclErrorTrapImp* __tr=OsclErrorTrapImp::TrapNoTls(__trapimp);\
if(!__tr){__s;}else{\
try{__s;}\
catch(internalLeave __lv)\
{__lv.a=__r=__tr->iLeave;}\
__tr->UnTrap();}\
}
#endif // OSCL_ERROR_IMP_CPPEXCEPTIONS_H_INCLUDED
/*! @} */