sl@0: /* sl@0: * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: # include "stlport_prefix.h" sl@0: #include sl@0: #include sl@0: //#include sl@0: #include sl@0: sl@0: #include "libstdcppwsd.h" sl@0: #ifdef __WINSCW__ sl@0: #include sl@0: const TUid KLibstdcppUID = {0x10282872}; sl@0: #endif sl@0: sl@0: #ifdef __WINSCW__ sl@0: #ifdef __cplusplus sl@0: extern "C" { sl@0: #endif sl@0: #ifdef __cplusplus sl@0: } // extern "C" sl@0: #endif sl@0: #include sl@0: #endif //__WINSCW__ sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: #include "sysif.h" sl@0: #endif sl@0: sl@0: sl@0: sl@0: sl@0: _STLP_BEGIN_NAMESPACE sl@0: sl@0: void CallIosInit(); sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: extern void CallCloseStdLib(); sl@0: #endif sl@0: sl@0: _STLP_EXP_DECLSPEC void LibStdCppInit() sl@0: { sl@0: //Create Cleanup Stack sl@0: CTrapCleanup* pCleanup = CTrapCleanup::New(); sl@0: sl@0: if( pCleanup ) sl@0: { sl@0: CallIosInit(); sl@0: delete pCleanup; sl@0: } sl@0: } sl@0: sl@0: #if 0 sl@0: _STLP_EXP_DECLSPEC type_info::~type_info () {} sl@0: sl@0: sl@0: _STLP_EXP_DECLSPEC bad_cast::~bad_cast() throw() { } sl@0: sl@0: _STLP_EXP_DECLSPEC bad_typeid::~bad_typeid() throw() { } sl@0: sl@0: sl@0: // return true if this is a type_info for a pointer type sl@0: _STLP_EXP_DECLSPEC bool type_info::__is_pointer_p () const sl@0: { sl@0: return false; sl@0: } sl@0: sl@0: _STLP_EXP_DECLSPEC bool type_info::__is_function_p () const sl@0: { sl@0: return false; sl@0: } sl@0: sl@0: _STLP_EXP_DECLSPEC bool type_info::__do_catch (const type_info *thr_type, void **, unsigned) const sl@0: { sl@0: return *this == *thr_type; sl@0: } sl@0: sl@0: #endif sl@0: sl@0: sl@0: _STLP_EXP_DECLSPEC new_handler set_new_handler(new_handler pnew) __NO_THROW sl@0: { sl@0: new_handler& phandler = get_new_handler(); sl@0: new_handler phold = phandler; sl@0: phandler = pnew; sl@0: return phold; sl@0: } sl@0: sl@0: _STLP_END_NAMESPACE sl@0: sl@0: using namespace std; sl@0: sl@0: int sl@0: init_libcpp_wsdvar(_Libcpp_wsd* g_libcpp_wsd) sl@0: { sl@0: g_libcpp_wsd->is_Initialized = false; sl@0: return KErrNone; sl@0: } sl@0: sl@0: #ifdef __WINSCW__ sl@0: void* GetGlobalTlsData() sl@0: { sl@0: return Pls<_Libcpp_wsd>(KLibstdcppUID, &init_libcpp_wsdvar); sl@0: } sl@0: sl@0: void SetGlobalTlsData(void* aData) sl@0: { sl@0: SetPls(aData, KLibstdcppUID); sl@0: } sl@0: #endif sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: void* SetBackendHeap() sl@0: { sl@0: sl@0: RHeap* oldHeap = User::SwitchHeap( Backend()->Heap() ); // From now, new allocates memory form backend heap sl@0: sl@0: return (void*)oldHeap; sl@0: sl@0: } sl@0: sl@0: void ReSetUserHeap(void* oldHeap) sl@0: { sl@0: sl@0: User::SwitchHeap( (RHeap*)oldHeap); sl@0: } sl@0: sl@0: sl@0: #endif sl@0: sl@0: sl@0: sl@0: _STLP_EXP_DECLSPEC void CloseStdLibCpp() sl@0: { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: std::CallCloseStdLib(); sl@0: #endif sl@0: } sl@0: sl@0: sl@0: sl@0: sl@0: _STLP_EXP_DECLSPEC void *operator new(unsigned int aSize)__NO_THROW sl@0: { sl@0: void* __y; sl@0: sl@0: __y = _STLP_NEW(aSize); sl@0: sl@0: if (__y == 0) sl@0: { sl@0: new_handler& phandler = get_new_handler(); sl@0: if(phandler == NULL) sl@0: _STLP_THROW(bad_alloc()); sl@0: else sl@0: phandler(); sl@0: } sl@0: return __y; sl@0: } sl@0: sl@0: _STLP_EXP_DECLSPEC void *operator new[](unsigned int aSize)__NO_THROW sl@0: { sl@0: return ::operator new(aSize); sl@0: } sl@0: sl@0: _STLP_EXP_DECLSPEC void operator delete(void* aPtr) __NO_THROW sl@0: { sl@0: sl@0: ::free(aPtr); sl@0: sl@0: } sl@0: sl@0: _STLP_EXP_DECLSPEC void operator delete[](void* aPtr) __NO_THROW sl@0: { sl@0: ::operator delete(aPtr); sl@0: } sl@0: sl@0: _STLP_EXP_DECLSPEC void* operator new(unsigned int aSize, const std::nothrow_t& /*aNoThrow*/) __NO_THROW sl@0: { sl@0: void* __y = _STLP_NEW(aSize); sl@0: if (__y == 0) sl@0: { sl@0: new_handler& phandler = get_new_handler(); sl@0: if(phandler != NULL) sl@0: phandler(); sl@0: } sl@0: return __y; sl@0: } sl@0: sl@0: _STLP_EXP_DECLSPEC void* operator new[](unsigned int aSize, const std::nothrow_t& aNoThrow) __NO_THROW sl@0: { sl@0: return operator new (aSize, aNoThrow); sl@0: } sl@0: sl@0: _STLP_EXP_DECLSPEC void operator delete(void* aPtr, const std::nothrow_t& /*aNoThrow*/) __NO_THROW sl@0: { sl@0: operator delete(aPtr); sl@0: } sl@0: sl@0: _STLP_EXP_DECLSPEC void operator delete[](void* aPtr, const std::nothrow_t& /*aNoThrow*/) __NO_THROW sl@0: { sl@0: operator delete(aPtr); sl@0: } sl@0: sl@0: sl@0: // end of file