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 |
// Class TPermanentStoreHeader
|
sl@0
|
17 |
inline TUint8* TPermanentStoreHeader::Ptr()
|
sl@0
|
18 |
{return REINTERPRET_CAST(TUint8*,&iBackup);}
|
sl@0
|
19 |
inline const TUint8* TPermanentStoreHeader::Ptr() const
|
sl@0
|
20 |
{return REINTERPRET_CAST(const TUint8*,&iBackup);}
|
sl@0
|
21 |
inline TPermanentStoreHeader::TPermanentStoreHeader(TInt aToc)
|
sl@0
|
22 |
{Set(aToc,0,aToc);}
|
sl@0
|
23 |
inline TPermanentStoreHeader::TPermanentStoreHeader(TInt aBackupToc,TInt aHandle,TInt aReference)
|
sl@0
|
24 |
{
|
sl@0
|
25 |
__ASSERT_DEBUG(aHandle!=0,User::Invariant());
|
sl@0
|
26 |
Set(aBackupToc,aHandle,aReference);
|
sl@0
|
27 |
}
|
sl@0
|
28 |
inline TBool TPermanentStoreHeader::IsDirty() const
|
sl@0
|
29 |
{return iBackup&0x1;}
|
sl@0
|
30 |
inline void TPermanentStoreHeader::MarkDirty()
|
sl@0
|
31 |
{iBackup|=0x1;}
|
sl@0
|
32 |
inline void TPermanentStoreHeader::SetBackupToc(TInt aBackupToc)
|
sl@0
|
33 |
{
|
sl@0
|
34 |
__ASSERT_DEBUG(aBackupToc>=0,User::Invariant());
|
sl@0
|
35 |
iBackup=TUint32(aBackupToc)<<1;
|
sl@0
|
36 |
}
|
sl@0
|
37 |
inline TInt TPermanentStoreHeader::BackupToc() const
|
sl@0
|
38 |
{return iBackup>>1;}
|
sl@0
|
39 |
inline TInt TPermanentStoreHeader::Handle() const
|
sl@0
|
40 |
{return iHandle;}
|
sl@0
|
41 |
inline TInt TPermanentStoreHeader::Reference() const
|
sl@0
|
42 |
{return iRef;}
|
sl@0
|
43 |
|
sl@0
|
44 |
// Class CPermanentStoreToc
|
sl@0
|
45 |
inline TInt CPermanentStoreToc::Extent() const
|
sl@0
|
46 |
{return iExt;}
|
sl@0
|
47 |
inline TBool CPermanentStoreToc::IsVirtual() const
|
sl@0
|
48 |
{return iPrimary<0;}
|
sl@0
|
49 |
inline TInt CPermanentStoreToc::Primary() const
|
sl@0
|
50 |
{return iPrimary&KMaskStreamIdValue;}
|
sl@0
|
51 |
inline void CPermanentStoreToc::Changed()
|
sl@0
|
52 |
{iPrimary|=KHandleInvalid;}
|
sl@0
|
53 |
inline TStreamPos CPermanentStoreToc::Base() const
|
sl@0
|
54 |
{return iBase;}
|
sl@0
|
55 |
inline TStreamExchange& CPermanentStoreToc::Host() const
|
sl@0
|
56 |
{
|
sl@0
|
57 |
__ASSERT_DEBUG(iHost!=NULL,User::Invariant());
|
sl@0
|
58 |
return *iHost;
|
sl@0
|
59 |
}
|
sl@0
|
60 |
inline const CPermanentStoreToc::TEntry* CPermanentStoreToc::Entry(TInt aHandle) const
|
sl@0
|
61 |
{return CONST_CAST(CPermanentStoreToc*,this)->Entry(aHandle);}
|
sl@0
|
62 |
inline TBool CPermanentStoreToc::HasDelta() const
|
sl@0
|
63 |
{return iOff!=iTocOff;}
|
sl@0
|
64 |
|
sl@0
|
65 |
// Class RPermanentStoreTocIter
|
sl@0
|
66 |
inline void RPermanentStoreTocIter::Close()
|
sl@0
|
67 |
{Release();}
|
sl@0
|
68 |
|
sl@0
|
69 |
// Class TPermanentStoreCache
|
sl@0
|
70 |
inline TPermanentStoreCache::TPermanentStoreCache()
|
sl@0
|
71 |
{Invalidate();}
|
sl@0
|
72 |
|
sl@0
|
73 |
// Class CPermanentStoreCoord
|
sl@0
|
74 |
inline TBool CPermanentStoreCoord::IsTrim() const
|
sl@0
|
75 |
{return !(iState&EClip);}
|
sl@0
|
76 |
inline void CPermanentStoreCoord::Clipped()
|
sl@0
|
77 |
{iState&=~EClip;}
|
sl@0
|
78 |
inline TStreamPos CPermanentStoreCoord::Base() const
|
sl@0
|
79 |
{return iBase;}
|
sl@0
|
80 |
inline TStreamExchange& CPermanentStoreCoord::Host() const
|
sl@0
|
81 |
{
|
sl@0
|
82 |
__ASSERT_DEBUG(iHost!=NULL,User::Invariant());
|
sl@0
|
83 |
return *iHost;
|
sl@0
|
84 |
}
|
sl@0
|
85 |
inline TInt CPermanentStoreCoord::Toc() const
|
sl@0
|
86 |
{return iToc;}
|
sl@0
|
87 |
inline CPermanentStoreToc& CPermanentStoreCoord::Table() const
|
sl@0
|
88 |
{
|
sl@0
|
89 |
__ASSERT_DEBUG(iTable!=NULL,User::Invariant());
|
sl@0
|
90 |
return *iTable;
|
sl@0
|
91 |
}
|
sl@0
|
92 |
inline TUint CPermanentStoreCoord::Generation() const
|
sl@0
|
93 |
{return iGen;}
|
sl@0
|
94 |
inline void CPermanentStoreCoord::Inc()
|
sl@0
|
95 |
{++iRefs;}
|
sl@0
|
96 |
inline void CPermanentStoreCoord::Dec()
|
sl@0
|
97 |
{--iRefs;}
|
sl@0
|
98 |
inline TBool CPermanentStoreCoord::Accessed() const
|
sl@0
|
99 |
{return iAccess;}
|
sl@0
|
100 |
|
sl@0
|
101 |
// Class HPermanentStoreBuf
|
sl@0
|
102 |
inline HPermanentStoreBuf::HPermanentStoreBuf(CPermanentStoreCoord& aCoord)
|
sl@0
|
103 |
: RFrame16Buf(aCoord.Base()),iCoord(&aCoord),iHandle(0)
|
sl@0
|
104 |
{}
|
sl@0
|
105 |
inline CPermanentStoreCoord& HPermanentStoreBuf::Coord() const
|
sl@0
|
106 |
{
|
sl@0
|
107 |
__ASSERT_DEBUG(iCoord!=NULL,User::Invariant());
|
sl@0
|
108 |
return *iCoord;
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
// Class CPermanentStoreCollector
|
sl@0
|
112 |
inline CPermanentStoreCoord& CPermanentStoreCollector::Coord() const
|
sl@0
|
113 |
{
|
sl@0
|
114 |
__ASSERT_DEBUG(iCoord!=NULL,User::Invariant());
|
sl@0
|
115 |
return *iCoord;
|
sl@0
|
116 |
}
|
sl@0
|
117 |
inline TStreamExchange& CPermanentStoreCollector::Host() const
|
sl@0
|
118 |
{
|
sl@0
|
119 |
__ASSERT_DEBUG(iHost!=NULL,User::Invariant());
|
sl@0
|
120 |
return *iHost;
|
sl@0
|
121 |
}
|
sl@0
|
122 |
inline TBool CPermanentStoreCollector::Compacting() const
|
sl@0
|
123 |
{return iReloc!=NULL;}
|
sl@0
|
124 |
|