os/ossrv/stdcpp/src/libstd_cpp_init.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description: 
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
# include "stlport_prefix.h"
sl@0
    20
#include <e32base.h>
sl@0
    21
#include <e32err.h>
sl@0
    22
//#include <typeinfo.h>
sl@0
    23
#include <memory>
sl@0
    24
sl@0
    25
#include "libstdcppwsd.h"
sl@0
    26
#ifdef __WINSCW__
sl@0
    27
#include <pls.h>
sl@0
    28
const TUid KLibstdcppUID = {0x10282872};
sl@0
    29
#endif
sl@0
    30
sl@0
    31
#ifdef	__WINSCW__
sl@0
    32
#ifdef __cplusplus
sl@0
    33
extern "C" {
sl@0
    34
#endif
sl@0
    35
#ifdef __cplusplus
sl@0
    36
}	// extern "C"
sl@0
    37
#endif
sl@0
    38
#include <e32std.h>
sl@0
    39
#endif //__WINSCW__
sl@0
    40
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
    41
#include "sysif.h"
sl@0
    42
#endif
sl@0
    43
sl@0
    44
sl@0
    45
sl@0
    46
sl@0
    47
_STLP_BEGIN_NAMESPACE
sl@0
    48
sl@0
    49
void CallIosInit();
sl@0
    50
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
    51
extern void CallCloseStdLib();
sl@0
    52
#endif
sl@0
    53
sl@0
    54
_STLP_EXP_DECLSPEC void LibStdCppInit()
sl@0
    55
    {
sl@0
    56
	//Create Cleanup Stack
sl@0
    57
	CTrapCleanup* pCleanup = CTrapCleanup::New();
sl@0
    58
sl@0
    59
	if( pCleanup )
sl@0
    60
		{
sl@0
    61
		CallIosInit();
sl@0
    62
		delete pCleanup;
sl@0
    63
		}
sl@0
    64
    }
sl@0
    65
sl@0
    66
#if 0
sl@0
    67
_STLP_EXP_DECLSPEC type_info::~type_info () {}
sl@0
    68
sl@0
    69
sl@0
    70
_STLP_EXP_DECLSPEC bad_cast::~bad_cast() throw() { }
sl@0
    71
sl@0
    72
_STLP_EXP_DECLSPEC bad_typeid::~bad_typeid() throw() { }
sl@0
    73
    
sl@0
    74
sl@0
    75
// return true if this is a type_info for a pointer type
sl@0
    76
_STLP_EXP_DECLSPEC bool type_info::__is_pointer_p () const
sl@0
    77
{
sl@0
    78
  return false;
sl@0
    79
}
sl@0
    80
sl@0
    81
_STLP_EXP_DECLSPEC bool type_info::__is_function_p () const
sl@0
    82
{
sl@0
    83
  return false;
sl@0
    84
}
sl@0
    85
sl@0
    86
_STLP_EXP_DECLSPEC bool type_info::__do_catch (const type_info *thr_type, void **, unsigned) const
sl@0
    87
{
sl@0
    88
  return *this == *thr_type;
sl@0
    89
}
sl@0
    90
sl@0
    91
#endif
sl@0
    92
sl@0
    93
sl@0
    94
_STLP_EXP_DECLSPEC new_handler set_new_handler(new_handler pnew) __NO_THROW
sl@0
    95
{
sl@0
    96
    new_handler& phandler = get_new_handler();
sl@0
    97
    new_handler phold = phandler;
sl@0
    98
    phandler = pnew;
sl@0
    99
    return phold;
sl@0
   100
}
sl@0
   101
sl@0
   102
_STLP_END_NAMESPACE
sl@0
   103
sl@0
   104
using namespace std;
sl@0
   105
sl@0
   106
int
sl@0
   107
init_libcpp_wsdvar(_Libcpp_wsd* g_libcpp_wsd)
sl@0
   108
{
sl@0
   109
	g_libcpp_wsd->is_Initialized = false;
sl@0
   110
	return KErrNone;
sl@0
   111
}
sl@0
   112
sl@0
   113
#ifdef __WINSCW__
sl@0
   114
void* GetGlobalTlsData()
sl@0
   115
    {
sl@0
   116
    return Pls<_Libcpp_wsd>(KLibstdcppUID, &init_libcpp_wsdvar);
sl@0
   117
    }
sl@0
   118
sl@0
   119
void SetGlobalTlsData(void* aData)
sl@0
   120
    {
sl@0
   121
    SetPls(aData, KLibstdcppUID);
sl@0
   122
    }
sl@0
   123
#endif
sl@0
   124
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   125
void* SetBackendHeap()
sl@0
   126
{
sl@0
   127
sl@0
   128
	RHeap* oldHeap = User::SwitchHeap( Backend()->Heap() ); // From now, new allocates memory form backend heap
sl@0
   129
	
sl@0
   130
	return (void*)oldHeap;
sl@0
   131
	
sl@0
   132
}
sl@0
   133
sl@0
   134
void ReSetUserHeap(void* oldHeap)
sl@0
   135
{
sl@0
   136
	
sl@0
   137
	User::SwitchHeap( (RHeap*)oldHeap);
sl@0
   138
}
sl@0
   139
sl@0
   140
sl@0
   141
#endif
sl@0
   142
sl@0
   143
sl@0
   144
sl@0
   145
_STLP_EXP_DECLSPEC void CloseStdLibCpp()
sl@0
   146
    {
sl@0
   147
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   148
    std::CallCloseStdLib();
sl@0
   149
#endif
sl@0
   150
    }
sl@0
   151
sl@0
   152
sl@0
   153
sl@0
   154
sl@0
   155
_STLP_EXP_DECLSPEC void *operator new(unsigned int aSize)__NO_THROW
sl@0
   156
	{
sl@0
   157
	void* __y;
sl@0
   158
sl@0
   159
	__y = _STLP_NEW(aSize);
sl@0
   160
sl@0
   161
	if (__y == 0)
sl@0
   162
	    {
sl@0
   163
	    new_handler& phandler = get_new_handler();
sl@0
   164
	    if(phandler == NULL)
sl@0
   165
	        _STLP_THROW(bad_alloc());
sl@0
   166
	    else
sl@0
   167
	      phandler();
sl@0
   168
	    }
sl@0
   169
    return __y;
sl@0
   170
	}
sl@0
   171
sl@0
   172
_STLP_EXP_DECLSPEC void *operator new[](unsigned int aSize)__NO_THROW
sl@0
   173
    {
sl@0
   174
    return ::operator new(aSize);
sl@0
   175
    }
sl@0
   176
sl@0
   177
_STLP_EXP_DECLSPEC void operator delete(void* aPtr) __NO_THROW
sl@0
   178
    {
sl@0
   179
sl@0
   180
    ::free(aPtr);
sl@0
   181
sl@0
   182
    }
sl@0
   183
sl@0
   184
_STLP_EXP_DECLSPEC void operator delete[](void* aPtr) __NO_THROW
sl@0
   185
    {
sl@0
   186
    ::operator delete(aPtr);
sl@0
   187
    }
sl@0
   188
sl@0
   189
_STLP_EXP_DECLSPEC void* operator new(unsigned int aSize, const std::nothrow_t& /*aNoThrow*/) __NO_THROW
sl@0
   190
    { 
sl@0
   191
	void* __y = _STLP_NEW(aSize);
sl@0
   192
	if (__y == 0)
sl@0
   193
	    {
sl@0
   194
	    new_handler& phandler = get_new_handler();
sl@0
   195
	    if(phandler != NULL)
sl@0
   196
	      phandler();
sl@0
   197
	    }
sl@0
   198
    return __y;
sl@0
   199
    }
sl@0
   200
sl@0
   201
_STLP_EXP_DECLSPEC void* operator new[](unsigned int aSize, const std::nothrow_t& aNoThrow) __NO_THROW
sl@0
   202
    { 
sl@0
   203
    return operator new (aSize, aNoThrow); 
sl@0
   204
    }
sl@0
   205
sl@0
   206
_STLP_EXP_DECLSPEC void operator delete(void* aPtr, const std::nothrow_t& /*aNoThrow*/) __NO_THROW
sl@0
   207
    {
sl@0
   208
    operator delete(aPtr);
sl@0
   209
    }
sl@0
   210
sl@0
   211
_STLP_EXP_DECLSPEC void operator delete[](void* aPtr, const std::nothrow_t& /*aNoThrow*/) __NO_THROW
sl@0
   212
    {
sl@0
   213
    operator delete(aPtr);
sl@0
   214
    }
sl@0
   215
sl@0
   216
sl@0
   217
// end of file