Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
21 CWsMemoryManager * CWsMemoryManager::iStatic = NULL;
23 CWsMemoryManager * CWsMemoryManager::Static()
28 CWsMemoryManager * CWsMemoryManager::NewLC()
30 CWsMemoryManager * self = new (ELeave) CWsMemoryManager;
31 CleanupStack::PushL(self);
37 CWsMemoryManager::CWsMemoryManager()
39 iImpl = User::SwitchAllocator(this);
42 CWsMemoryManager::~CWsMemoryManager()
44 WS_ASSERT_ALWAYS(this == User::SwitchAllocator(iImpl),EWsPanicMemoryManager);
53 void CWsMemoryManager::ConstructL()
55 _LIT(KMemMgrReserve, "MEMORYRESERVE");
56 const TInt KDefaultMemMgrReserve = 1024;
58 if (!WsIniFile->FindVar(KMemMgrReserve, iReserveSize))
59 iReserveSize = KDefaultMemMgrReserve;
62 iReserve = Alloc(iReserveSize);
66 Implementing RAllocator
70 Alloc and ReAlloc attempt to obtain memory through CWsTop::ReleaseMemory when they run low.
71 ReleaseMemory looks for blocks of memory that the window server doesn't need urgently and frees
74 TAny* CWsMemoryManager::Alloc(TInt aSize)
76 TBool keepTrying = ETrue;
80 return iImpl->Alloc(aSize); //fallback on RAllocator
82 if(TAny* ret = iImpl->Alloc(aSize)) //normal case
85 if(iReserveEnabled && iReserve && (aSize < iReserveSize))
93 keepTrying = CWsTop::ReleaseMemory();
96 const TInt reclaimed = Compress(); //Try to give back to the OS
106 TAny* CWsMemoryManager::ReAlloc(TAny* aPtr, TInt aSize, TInt aMode)
108 TBool keepTrying = ETrue;
112 return iImpl->ReAlloc(aPtr, aSize, aMode); //fallback on RAllocator
114 if(TAny* ret = iImpl->ReAlloc(aPtr, aSize, aMode)) //normal case
117 if(iReserveEnabled && iReserve && (aSize < iReserveSize))
125 keepTrying = CWsTop::ReleaseMemory();
128 const TInt reclaimed = Compress(); //Try to give back to the OS
139 The rest of these functions just call the default implementation
141 void CWsMemoryManager::Free(TAny* aPtr)
143 return iImpl->Free(aPtr);
146 TInt CWsMemoryManager::AllocLen(const TAny* aCell) const
148 return iImpl->AllocLen(aCell);
151 TInt CWsMemoryManager::Compress()
153 return iImpl->Compress();
156 void CWsMemoryManager::Reset()
161 TInt CWsMemoryManager::AllocSize(TInt& aTotalAllocSize) const
163 return iImpl->AllocSize(aTotalAllocSize);
166 TInt CWsMemoryManager::Available(TInt& aBiggestBlock) const
168 return iImpl->Available(aBiggestBlock);
171 TInt CWsMemoryManager::DebugFunction(TInt aFunc, TAny* a1, TAny* a2)
173 return iImpl->DebugFunction(aFunc,a1,a2);
176 TInt CWsMemoryManager::Count() const
178 return iImpl->Count();
180 /** This is a fairly dumb way to enable and disable the reserve, but we normally
181 get away with it because wserv is high priority. A better approach would be to
182 use placement new into the reserve memory and manage it directly. This would also
183 allow us to track misbehaving code which allocated during OOM drawing and didn't
186 void CWsMemoryManager::EnableReserve()
188 WS_ASSERT_DEBUG(!iReserveEnabled, EWsPanicMemoryManager);
189 iReserveEnabled = ETrue;
192 void CWsMemoryManager::DisableReserve()
194 WS_ASSERT_DEBUG(iReserveEnabled, EWsPanicMemoryManager);
195 iReserveEnabled = EFalse;
196 if((!iReserve) && (iReserveSize > 0))
197 iReserve = Alloc(iReserveSize);