os/graphics/windowing/windowserver/nga/SERVER/WsMemMgr.cpp
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
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include "WsMemMgr.h"
sl@0
    17
#include "inifile.h"
sl@0
    18
#include "panics.h"
sl@0
    19
#include "wstop.h"
sl@0
    20
sl@0
    21
static const TTimeIntervalMicroSeconds KBurstDuration = 1000000; //one second
sl@0
    22
static const TInt KMaxMemoryReleasesPerBurst = 5;
sl@0
    23
CWsMemoryManager * CWsMemoryManager::iStatic = NULL;
sl@0
    24
sl@0
    25
CWsMemoryManager * CWsMemoryManager::Static()
sl@0
    26
	{
sl@0
    27
	return iStatic;
sl@0
    28
	}
sl@0
    29
sl@0
    30
CWsMemoryManager * CWsMemoryManager::NewLC()
sl@0
    31
	{
sl@0
    32
	CWsMemoryManager * self = new (ELeave) CWsMemoryManager;
sl@0
    33
	CleanupStack::PushL(self);
sl@0
    34
	self->ConstructL();
sl@0
    35
	iStatic = self;
sl@0
    36
	return iStatic;
sl@0
    37
	}
sl@0
    38
sl@0
    39
CWsMemoryManager::CWsMemoryManager()
sl@0
    40
	{
sl@0
    41
	iImpl = User::SwitchAllocator(this);
sl@0
    42
	}
sl@0
    43
	
sl@0
    44
CWsMemoryManager::~CWsMemoryManager()
sl@0
    45
	{
sl@0
    46
	WS_ASSERT_ALWAYS(this == User::SwitchAllocator(iImpl),EWsPanicMemoryManager);
sl@0
    47
	iStatic = 0;
sl@0
    48
	if (iReserve!=NULL)
sl@0
    49
		{
sl@0
    50
		Free(iReserve);
sl@0
    51
		}
sl@0
    52
	}
sl@0
    53
sl@0
    54
void CWsMemoryManager::ConstructL()
sl@0
    55
	{
sl@0
    56
	_LIT(KMemMgrReserve, "MEMORYRESERVE");
sl@0
    57
	const TInt KDefaultMemMgrReserve = 1024;
sl@0
    58
	
sl@0
    59
	if (!WsIniFile->FindVar(KMemMgrReserve, iReserveSize))
sl@0
    60
		iReserveSize = KDefaultMemMgrReserve;
sl@0
    61
sl@0
    62
	if (iReserveSize > 0)
sl@0
    63
		iReserve = Alloc(iReserveSize);
sl@0
    64
	
sl@0
    65
	iCurrentBurstStart.UniversalTime();
sl@0
    66
	}
sl@0
    67
sl@0
    68
/**
sl@0
    69
Tells the memory manager to fail on next retry.
sl@0
    70
I.e. whenever the next allocation failure occurs, the memory manager won't try 
sl@0
    71
to free up memory to have another go at the allocation.
sl@0
    72
sl@0
    73
N.B. this only applies for the next failure, the state is reset when there is an
sl@0
    74
allocation failure.
sl@0
    75
sl@0
    76
This method is only to be used for OOM testing.
sl@0
    77
*/
sl@0
    78
void CWsMemoryManager::SetFailNextRetry()
sl@0
    79
	{
sl@0
    80
	iFailNextRetry = ETrue;
sl@0
    81
	}
sl@0
    82
sl@0
    83
/**
sl@0
    84
Implementing RAllocator
sl@0
    85
*/
sl@0
    86
sl@0
    87
/**
sl@0
    88
Alloc and ReAlloc attempt to obtain memory through CWsTop::ReleaseMemory when they run low.
sl@0
    89
ReleaseMemory looks for blocks of memory that the window server doesn't need urgently and frees
sl@0
    90
them.
sl@0
    91
*/
sl@0
    92
TAny* CWsMemoryManager::Alloc(TInt aSize)
sl@0
    93
	{
sl@0
    94
	TBool keepTrying = ETrue;
sl@0
    95
	do
sl@0
    96
		{
sl@0
    97
		if(iReleasing)
sl@0
    98
			return iImpl->Alloc(aSize); //fallback on RAllocator
sl@0
    99
		
sl@0
   100
		if(TAny* ret = iImpl->Alloc(aSize)) //normal case
sl@0
   101
			return ret;
sl@0
   102
		
sl@0
   103
		TTime now;
sl@0
   104
		now.UniversalTime();
sl@0
   105
		if(now.MicroSecondsFrom(iCurrentBurstStart) < KBurstDuration)
sl@0
   106
			{
sl@0
   107
			iCurrentBurstReleaseCount++;
sl@0
   108
			if(iCurrentBurstReleaseCount > KMaxMemoryReleasesPerBurst)
sl@0
   109
				return NULL;
sl@0
   110
			}
sl@0
   111
		else
sl@0
   112
			{
sl@0
   113
			iCurrentBurstStart = now;
sl@0
   114
			iCurrentBurstReleaseCount = 1;
sl@0
   115
			}
sl@0
   116
		
sl@0
   117
		if(iReserveEnabled && iReserve && (aSize < iReserveSize))
sl@0
   118
			{
sl@0
   119
			Free(iReserve);
sl@0
   120
			iReserve = NULL;
sl@0
   121
			}
sl@0
   122
		else
sl@0
   123
			{
sl@0
   124
			iReleasing = ETrue;
sl@0
   125
			keepTrying = CWsTop::ReleaseMemory();
sl@0
   126
			if(keepTrying)
sl@0
   127
 				{
sl@0
   128
 				const TInt reclaimed = Compress(); //Try to give back to the OS
sl@0
   129
 				}
sl@0
   130
			iReleasing = EFalse;
sl@0
   131
			}
sl@0
   132
		
sl@0
   133
		//used for OOM testing only
sl@0
   134
		if(iFailNextRetry)
sl@0
   135
			{
sl@0
   136
			iFailNextRetry = EFalse;
sl@0
   137
			keepTrying = EFalse;
sl@0
   138
			}
sl@0
   139
		
sl@0
   140
		} while(keepTrying);
sl@0
   141
sl@0
   142
	return NULL;
sl@0
   143
	}
sl@0
   144
sl@0
   145
TAny* CWsMemoryManager::ReAlloc(TAny* aPtr, TInt aSize, TInt aMode)
sl@0
   146
	{
sl@0
   147
	TBool keepTrying = ETrue;
sl@0
   148
	do
sl@0
   149
		{
sl@0
   150
		if(iReleasing)
sl@0
   151
			return iImpl->ReAlloc(aPtr, aSize, aMode); //fallback on RAllocator
sl@0
   152
		
sl@0
   153
		if(TAny* ret = iImpl->ReAlloc(aPtr, aSize, aMode)) //normal case
sl@0
   154
			return ret;
sl@0
   155
			
sl@0
   156
		TTime now;
sl@0
   157
		now.UniversalTime();
sl@0
   158
		if(now.MicroSecondsFrom(iCurrentBurstStart) < KBurstDuration)
sl@0
   159
			{
sl@0
   160
			iCurrentBurstReleaseCount++;
sl@0
   161
			if(iCurrentBurstReleaseCount > KMaxMemoryReleasesPerBurst)
sl@0
   162
				return NULL;
sl@0
   163
			}
sl@0
   164
		else
sl@0
   165
			{
sl@0
   166
			iCurrentBurstStart = now;
sl@0
   167
			iCurrentBurstReleaseCount = 1;
sl@0
   168
			}
sl@0
   169
			
sl@0
   170
		if(iReserveEnabled && iReserve && (aSize < iReserveSize))
sl@0
   171
			{
sl@0
   172
			Free(iReserve);
sl@0
   173
			iReserve = NULL;
sl@0
   174
			}
sl@0
   175
		else
sl@0
   176
			{
sl@0
   177
			iReleasing = ETrue;
sl@0
   178
			keepTrying = CWsTop::ReleaseMemory();
sl@0
   179
			if(keepTrying)
sl@0
   180
 				{
sl@0
   181
 				const TInt reclaimed = Compress(); //Try to give back to the OS
sl@0
   182
 				}	
sl@0
   183
			iReleasing = EFalse;
sl@0
   184
			}
sl@0
   185
			
sl@0
   186
		//used for OOM testing only
sl@0
   187
		if(iFailNextRetry)
sl@0
   188
			{
sl@0
   189
			iFailNextRetry = EFalse;
sl@0
   190
			keepTrying = EFalse;
sl@0
   191
			}
sl@0
   192
sl@0
   193
		} while(keepTrying);
sl@0
   194
sl@0
   195
	return NULL;
sl@0
   196
	}
sl@0
   197
sl@0
   198
/**
sl@0
   199
The rest of these functions just call the default implementation
sl@0
   200
*/
sl@0
   201
void CWsMemoryManager::Free(TAny* aPtr)
sl@0
   202
	{
sl@0
   203
	return iImpl->Free(aPtr);
sl@0
   204
	}
sl@0
   205
sl@0
   206
TInt CWsMemoryManager::AllocLen(const TAny* aCell) const
sl@0
   207
	{
sl@0
   208
	return iImpl->AllocLen(aCell);
sl@0
   209
	}
sl@0
   210
sl@0
   211
TInt CWsMemoryManager::Compress()
sl@0
   212
	{
sl@0
   213
	return iImpl->Compress();
sl@0
   214
	}
sl@0
   215
sl@0
   216
void CWsMemoryManager::Reset()
sl@0
   217
	{
sl@0
   218
	iImpl->Reset();
sl@0
   219
	}
sl@0
   220
sl@0
   221
TInt CWsMemoryManager::AllocSize(TInt& aTotalAllocSize) const
sl@0
   222
	{
sl@0
   223
	return iImpl->AllocSize(aTotalAllocSize);
sl@0
   224
	}
sl@0
   225
sl@0
   226
TInt CWsMemoryManager::Available(TInt& aBiggestBlock) const
sl@0
   227
	{
sl@0
   228
	return iImpl->Available(aBiggestBlock);
sl@0
   229
	}
sl@0
   230
sl@0
   231
TInt CWsMemoryManager::DebugFunction(TInt aFunc, TAny* a1, TAny* a2)
sl@0
   232
	{
sl@0
   233
	return iImpl->DebugFunction(aFunc,a1,a2);
sl@0
   234
	}
sl@0
   235
sl@0
   236
TInt CWsMemoryManager::Count() const
sl@0
   237
	{
sl@0
   238
	return iImpl->Count();
sl@0
   239
	}
sl@0
   240
/** This is a fairly dumb way to enable and disable the reserve, but we normally
sl@0
   241
get away with it because wserv is high priority.  A better approach would be to
sl@0
   242
use placement new into the reserve memory and manage it directly.  This would also
sl@0
   243
allow us to track misbehaving code which allocated during OOM drawing and didn't
sl@0
   244
free at the end.
sl@0
   245
*/
sl@0
   246
void CWsMemoryManager::EnableReserve()
sl@0
   247
	{
sl@0
   248
	WS_ASSERT_DEBUG(!iReserveEnabled, EWsPanicMemoryManager);
sl@0
   249
	iReserveEnabled = ETrue;
sl@0
   250
	}
sl@0
   251
sl@0
   252
void CWsMemoryManager::DisableReserve()
sl@0
   253
	{
sl@0
   254
	WS_ASSERT_DEBUG(iReserveEnabled, EWsPanicMemoryManager);
sl@0
   255
	iReserveEnabled = EFalse;
sl@0
   256
	if((!iReserve) && (iReserveSize > 0))
sl@0
   257
		iReserve = Alloc(iReserveSize);
sl@0
   258
	}