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 |
#ifndef __WSMEMMGR_H__
|
sl@0
|
17 |
#define __WSMEMMGR_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32base.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
class CWsMemoryManager: public CBase, private RAllocator
|
sl@0
|
22 |
{
|
sl@0
|
23 |
public:
|
sl@0
|
24 |
static CWsMemoryManager * NewLC();
|
sl@0
|
25 |
~CWsMemoryManager();
|
sl@0
|
26 |
|
sl@0
|
27 |
void EnableReserve();
|
sl@0
|
28 |
void DisableReserve();
|
sl@0
|
29 |
|
sl@0
|
30 |
public:
|
sl@0
|
31 |
static CWsMemoryManager * Static();
|
sl@0
|
32 |
TInt Count() const;
|
sl@0
|
33 |
|
sl@0
|
34 |
void SetFailNextRetry();
|
sl@0
|
35 |
private:
|
sl@0
|
36 |
CWsMemoryManager();
|
sl@0
|
37 |
void ConstructL();
|
sl@0
|
38 |
// implementing RAllocator
|
sl@0
|
39 |
TAny* Alloc(TInt aSize);
|
sl@0
|
40 |
void Free(TAny* aPtr);
|
sl@0
|
41 |
TAny* ReAlloc(TAny* aPtr, TInt aSize, TInt aMode);
|
sl@0
|
42 |
TInt AllocLen(const TAny* aCell) const;
|
sl@0
|
43 |
TInt Compress();
|
sl@0
|
44 |
void Reset();
|
sl@0
|
45 |
TInt AllocSize(TInt& aTotalAllocSize) const;
|
sl@0
|
46 |
TInt Available(TInt& aBiggestBlock) const;
|
sl@0
|
47 |
TInt DebugFunction(TInt aFunc, TAny* a1, TAny* a2);
|
sl@0
|
48 |
|
sl@0
|
49 |
|
sl@0
|
50 |
private:
|
sl@0
|
51 |
static CWsMemoryManager * iStatic;
|
sl@0
|
52 |
|
sl@0
|
53 |
private:
|
sl@0
|
54 |
RAllocator* iImpl;
|
sl@0
|
55 |
TBool iReleasing;
|
sl@0
|
56 |
TBool iReserveEnabled;
|
sl@0
|
57 |
TInt iReserveSize;
|
sl@0
|
58 |
TAny* iReserve;
|
sl@0
|
59 |
TBool iFailNextRetry;
|
sl@0
|
60 |
TTime iCurrentBurstStart;
|
sl@0
|
61 |
TInt iCurrentBurstReleaseCount;
|
sl@0
|
62 |
};
|
sl@0
|
63 |
|
sl@0
|
64 |
#endif //__WSMEMMGR_H__
|
sl@0
|
65 |
|