1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nonnga/SERVER/WsMemMgr.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,198 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include "WsMemMgr.h"
1.20 +#include "inifile.h"
1.21 +#include "panics.h"
1.22 +#include "wstop.h"
1.23 +
1.24 +CWsMemoryManager * CWsMemoryManager::iStatic = NULL;
1.25 +
1.26 +CWsMemoryManager * CWsMemoryManager::Static()
1.27 + {
1.28 + return iStatic;
1.29 + }
1.30 +
1.31 +CWsMemoryManager * CWsMemoryManager::NewLC()
1.32 + {
1.33 + CWsMemoryManager * self = new (ELeave) CWsMemoryManager;
1.34 + CleanupStack::PushL(self);
1.35 + self->ConstructL();
1.36 + iStatic = self;
1.37 + return iStatic;
1.38 + }
1.39 +
1.40 +CWsMemoryManager::CWsMemoryManager()
1.41 + {
1.42 + iImpl = User::SwitchAllocator(this);
1.43 + }
1.44 +
1.45 +CWsMemoryManager::~CWsMemoryManager()
1.46 + {
1.47 + WS_ASSERT_ALWAYS(this == User::SwitchAllocator(iImpl),EWsPanicMemoryManager);
1.48 + iStatic = 0;
1.49 + if (iReserve!=NULL)
1.50 + {
1.51 + Free(iReserve);
1.52 + iReserve = NULL;
1.53 + }
1.54 + }
1.55 +
1.56 +void CWsMemoryManager::ConstructL()
1.57 + {
1.58 + _LIT(KMemMgrReserve, "MEMORYRESERVE");
1.59 + const TInt KDefaultMemMgrReserve = 1024;
1.60 +
1.61 + if (!WsIniFile->FindVar(KMemMgrReserve, iReserveSize))
1.62 + iReserveSize = KDefaultMemMgrReserve;
1.63 +
1.64 + if (iReserveSize > 0)
1.65 + iReserve = Alloc(iReserveSize);
1.66 + }
1.67 +
1.68 +/**
1.69 +Implementing RAllocator
1.70 +*/
1.71 +
1.72 +/**
1.73 +Alloc and ReAlloc attempt to obtain memory through CWsTop::ReleaseMemory when they run low.
1.74 +ReleaseMemory looks for blocks of memory that the window server doesn't need urgently and frees
1.75 +them.
1.76 +*/
1.77 +TAny* CWsMemoryManager::Alloc(TInt aSize)
1.78 + {
1.79 + TBool keepTrying = ETrue;
1.80 + do
1.81 + {
1.82 + if(iReleasing)
1.83 + return iImpl->Alloc(aSize); //fallback on RAllocator
1.84 +
1.85 + if(TAny* ret = iImpl->Alloc(aSize)) //normal case
1.86 + return ret;
1.87 +
1.88 + if(iReserveEnabled && iReserve && (aSize < iReserveSize))
1.89 + {
1.90 + Free(iReserve);
1.91 + iReserve = NULL;
1.92 + }
1.93 + else
1.94 + {
1.95 + iReleasing = ETrue;
1.96 + keepTrying = CWsTop::ReleaseMemory();
1.97 + if(keepTrying)
1.98 + {
1.99 + const TInt reclaimed = Compress(); //Try to give back to the OS
1.100 + }
1.101 + iReleasing = EFalse;
1.102 + }
1.103 +
1.104 + } while(keepTrying);
1.105 +
1.106 + return NULL;
1.107 + }
1.108 +
1.109 +TAny* CWsMemoryManager::ReAlloc(TAny* aPtr, TInt aSize, TInt aMode)
1.110 + {
1.111 + TBool keepTrying = ETrue;
1.112 + do
1.113 + {
1.114 + if(iReleasing)
1.115 + return iImpl->ReAlloc(aPtr, aSize, aMode); //fallback on RAllocator
1.116 +
1.117 + if(TAny* ret = iImpl->ReAlloc(aPtr, aSize, aMode)) //normal case
1.118 + return ret;
1.119 +
1.120 + if(iReserveEnabled && iReserve && (aSize < iReserveSize))
1.121 + {
1.122 + Free(iReserve);
1.123 + iReserve = NULL;
1.124 + }
1.125 + else
1.126 + {
1.127 + iReleasing = ETrue;
1.128 + keepTrying = CWsTop::ReleaseMemory();
1.129 + if(keepTrying)
1.130 + {
1.131 + const TInt reclaimed = Compress(); //Try to give back to the OS
1.132 + }
1.133 + iReleasing = EFalse;
1.134 + }
1.135 +
1.136 + } while(keepTrying);
1.137 +
1.138 + return NULL;
1.139 + }
1.140 +
1.141 +/**
1.142 +The rest of these functions just call the default implementation
1.143 +*/
1.144 +void CWsMemoryManager::Free(TAny* aPtr)
1.145 + {
1.146 + return iImpl->Free(aPtr);
1.147 + }
1.148 +
1.149 +TInt CWsMemoryManager::AllocLen(const TAny* aCell) const
1.150 + {
1.151 + return iImpl->AllocLen(aCell);
1.152 + }
1.153 +
1.154 +TInt CWsMemoryManager::Compress()
1.155 + {
1.156 + return iImpl->Compress();
1.157 + }
1.158 +
1.159 +void CWsMemoryManager::Reset()
1.160 + {
1.161 + iImpl->Reset();
1.162 + }
1.163 +
1.164 +TInt CWsMemoryManager::AllocSize(TInt& aTotalAllocSize) const
1.165 + {
1.166 + return iImpl->AllocSize(aTotalAllocSize);
1.167 + }
1.168 +
1.169 +TInt CWsMemoryManager::Available(TInt& aBiggestBlock) const
1.170 + {
1.171 + return iImpl->Available(aBiggestBlock);
1.172 + }
1.173 +
1.174 +TInt CWsMemoryManager::DebugFunction(TInt aFunc, TAny* a1, TAny* a2)
1.175 + {
1.176 + return iImpl->DebugFunction(aFunc,a1,a2);
1.177 + }
1.178 +
1.179 +TInt CWsMemoryManager::Count() const
1.180 + {
1.181 + return iImpl->Count();
1.182 + }
1.183 +/** This is a fairly dumb way to enable and disable the reserve, but we normally
1.184 +get away with it because wserv is high priority. A better approach would be to
1.185 +use placement new into the reserve memory and manage it directly. This would also
1.186 +allow us to track misbehaving code which allocated during OOM drawing and didn't
1.187 +free at the end.
1.188 +*/
1.189 +void CWsMemoryManager::EnableReserve()
1.190 + {
1.191 + WS_ASSERT_DEBUG(!iReserveEnabled, EWsPanicMemoryManager);
1.192 + iReserveEnabled = ETrue;
1.193 + }
1.194 +
1.195 +void CWsMemoryManager::DisableReserve()
1.196 + {
1.197 + WS_ASSERT_DEBUG(iReserveEnabled, EWsPanicMemoryManager);
1.198 + iReserveEnabled = EFalse;
1.199 + if((!iReserve) && (iReserveSize > 0))
1.200 + iReserve = Alloc(iReserveSize);
1.201 + }