sl@0
|
1 |
// Copyright (c) 1998-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 <s32crypt.h>
|
sl@0
|
17 |
#include "U32STD.H"
|
sl@0
|
18 |
|
sl@0
|
19 |
class TCachePage
|
sl@0
|
20 |
{
|
sl@0
|
21 |
public:
|
sl@0
|
22 |
inline TDblQueLink& Link();
|
sl@0
|
23 |
inline void Deque();
|
sl@0
|
24 |
inline TBool IsQued() const;
|
sl@0
|
25 |
inline void Reque(TDblQue<TCachePage>& aQue);
|
sl@0
|
26 |
private:
|
sl@0
|
27 |
inline const TDblQueLinkBase& Link() const;
|
sl@0
|
28 |
public:
|
sl@0
|
29 |
TDblQueLink iLink;
|
sl@0
|
30 |
TCachePagePool* iOwner;
|
sl@0
|
31 |
TPageRef iRef;
|
sl@0
|
32 |
TPageChange iChange;
|
sl@0
|
33 |
};
|
sl@0
|
34 |
//
|
sl@0
|
35 |
class StorePagePool
|
sl@0
|
36 |
{
|
sl@0
|
37 |
public:
|
sl@0
|
38 |
static TPageRef ExtendL(RStorePagePool& aPool,const TAny* aPage,TPageReclamation aReclamation,const CPBEncryptionBase* aKey=NULL);
|
sl@0
|
39 |
static void WriteL(RStorePagePool& aPool,TPageRef aRef,const TAny* aPage,TPageChange aChange,const CPBEncryptionBase* aKey=NULL);
|
sl@0
|
40 |
static void ReadL(RStorePagePool& aPool,TPageRef aRef,TAny* aPage,const CPBEncryptionBase* aKey=NULL);
|
sl@0
|
41 |
static void DeleteL(RStorePagePool& aPool,TPageRef aRef,const CPBEncryptionBase* aKey=NULL);
|
sl@0
|
42 |
private:
|
sl@0
|
43 |
static void PadL(RWriteStream& aStream,TInt aLength);
|
sl@0
|
44 |
static void EncryptL(RWriteStream& aStream,const TAny* aPage,const CPBEncryptionBase& aKey);
|
sl@0
|
45 |
static void EncryptNewL(RWriteStream& aStream,const TAny* aPage,const CPBEncryptionBase& aKey);
|
sl@0
|
46 |
static void DecryptL(RReadStream& aStream,TAny* aPage,const CPBEncryptionBase& aKey);
|
sl@0
|
47 |
static void SeekL(MStreamBuf* aBuf,TInt aMark,TPageRef aRef,const CPBEncryptionBase* aKey);
|
sl@0
|
48 |
};
|
sl@0
|
49 |
//
|
sl@0
|
50 |
enum TPagePanic
|
sl@0
|
51 |
{
|
sl@0
|
52 |
EPageNotOpen,
|
sl@0
|
53 |
EPageChangeInvalid,
|
sl@0
|
54 |
EPageDoubleLock,
|
sl@0
|
55 |
EPageNotLocked,
|
sl@0
|
56 |
EPageCacheInUse,
|
sl@0
|
57 |
EPageCacheFull,
|
sl@0
|
58 |
EPageReclaimAvailable,
|
sl@0
|
59 |
EPageCipherTextOverrun,
|
sl@0
|
60 |
ECryptKeyUninitialised,
|
sl@0
|
61 |
EPageBadKeyType
|
sl@0
|
62 |
};
|
sl@0
|
63 |
|
sl@0
|
64 |
GLREF_C void Panic(TPagePanic aPanic);
|
sl@0
|
65 |
|
sl@0
|
66 |
#include "UP_STD.INL"
|
sl@0
|
67 |
|