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 "UF_STD.H"
|
sl@0
|
17 |
|
sl@0
|
18 |
const TInt KBaseOffset=KFileStoreStartOffset-KPermanentStoreHeaderOffset;
|
sl@0
|
19 |
#if defined(__NO_CLASS_CONSTS__)
|
sl@0
|
20 |
#define KBase TStreamPos(KBaseOffset)
|
sl@0
|
21 |
#else
|
sl@0
|
22 |
const TStreamPos KBase=TStreamPos(KBaseOffset);
|
sl@0
|
23 |
#endif
|
sl@0
|
24 |
|
sl@0
|
25 |
EXPORT_C TUid CPermanentFileStore::Layout() const
|
sl@0
|
26 |
/** Gets the UID that uniquely identifies this file store as a permanent file store.
|
sl@0
|
27 |
|
sl@0
|
28 |
@return KPermanentFileStoreLayoutUid. */
|
sl@0
|
29 |
{
|
sl@0
|
30 |
return KPermanentFileStoreLayoutUid;
|
sl@0
|
31 |
}
|
sl@0
|
32 |
|
sl@0
|
33 |
EXPORT_C CPermanentFileStore::CPermanentFileStore(RFile& aFile)
|
sl@0
|
34 |
//
|
sl@0
|
35 |
// Constructor creating a new file store.
|
sl@0
|
36 |
//
|
sl@0
|
37 |
: CFileStore(aFile)/*,iCoord(NULL)*/
|
sl@0
|
38 |
{}
|
sl@0
|
39 |
|
sl@0
|
40 |
EXPORT_C CPermanentFileStore::CPermanentFileStore(RFileBuf& aBuf,const TUidType& aType)
|
sl@0
|
41 |
//
|
sl@0
|
42 |
// Constructor opening an existing file store.
|
sl@0
|
43 |
//
|
sl@0
|
44 |
: CFileStore(aBuf,aType)/*,iCoord(NULL)*/
|
sl@0
|
45 |
{}
|
sl@0
|
46 |
|
sl@0
|
47 |
EXPORT_C void CPermanentFileStore::MarshalL()
|
sl@0
|
48 |
{
|
sl@0
|
49 |
__ASSERT_DEBUG(iCoord==NULL,User::Invariant());
|
sl@0
|
50 |
iCoord=new(ELeave) CPermanentStoreCoord(KBase,Host());
|
sl@0
|
51 |
CFileStore::MarshalL();
|
sl@0
|
52 |
iRoot=Coord().PrimaryL();
|
sl@0
|
53 |
}
|
sl@0
|
54 |
|
sl@0
|
55 |
EXPORT_C CPermanentFileStore::~CPermanentFileStore()
|
sl@0
|
56 |
/** Frees resources owned by the object, prior to its destruction. */
|
sl@0
|
57 |
{
|
sl@0
|
58 |
Destruct();
|
sl@0
|
59 |
delete iCoord;
|
sl@0
|
60 |
}
|
sl@0
|
61 |
|
sl@0
|
62 |
EXPORT_C MStreamBuf* CPermanentFileStore::DoReadL(TStreamId anId) const
|
sl@0
|
63 |
{
|
sl@0
|
64 |
if (iCoord==NULL)
|
sl@0
|
65 |
__LEAVE(KErrNotFound);
|
sl@0
|
66 |
//
|
sl@0
|
67 |
return HPermanentStoreBuf::OpenL(CoordL(),anId,HPermanentStoreBuf::ERead);
|
sl@0
|
68 |
}
|
sl@0
|
69 |
|
sl@0
|
70 |
EXPORT_C MStreamBuf* CPermanentFileStore::DoCreateL(TStreamId& anId)
|
sl@0
|
71 |
{
|
sl@0
|
72 |
return HPermanentStoreBuf::CreateL(TrimL(),anId);
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
EXPORT_C MStreamBuf* CPermanentFileStore::DoWriteL(TStreamId anId)
|
sl@0
|
76 |
{
|
sl@0
|
77 |
if (iCoord==NULL)
|
sl@0
|
78 |
__LEAVE(KErrNotFound);
|
sl@0
|
79 |
//
|
sl@0
|
80 |
return HPermanentStoreBuf::OpenL(CoordL(),anId);
|
sl@0
|
81 |
}
|
sl@0
|
82 |
|
sl@0
|
83 |
EXPORT_C MStreamBuf* CPermanentFileStore::DoReplaceL(TStreamId anId)
|
sl@0
|
84 |
{
|
sl@0
|
85 |
if (iCoord==NULL)
|
sl@0
|
86 |
__LEAVE(KErrNotFound);
|
sl@0
|
87 |
//
|
sl@0
|
88 |
return HPermanentStoreBuf::ReplaceL(TrimL(),anId);
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
EXPORT_C void CPermanentFileStore::ExternalizeL(RWriteStream& aStream) const
|
sl@0
|
92 |
//
|
sl@0
|
93 |
// Externalize this store's structure, during construction only.
|
sl@0
|
94 |
//
|
sl@0
|
95 |
{
|
sl@0
|
96 |
__ASSERT_DEBUG(!Host().IsActive()&&iCoord==NULL,User::Invariant());
|
sl@0
|
97 |
TUint8 buf[-KPermanentStoreHeaderOffset];
|
sl@0
|
98 |
Mem::FillZ(buf,sizeof(buf));
|
sl@0
|
99 |
aStream.WriteL(buf,sizeof(buf));
|
sl@0
|
100 |
}
|
sl@0
|
101 |
|
sl@0
|
102 |
EXPORT_C void CPermanentFileStore::InternalizeL(RReadStream& aStream)
|
sl@0
|
103 |
//
|
sl@0
|
104 |
// Internalize this store's structure, during marshalling or refreshment.
|
sl@0
|
105 |
//
|
sl@0
|
106 |
{
|
sl@0
|
107 |
__ASSERT_DEBUG(!Host().IsActive(),User::Invariant());
|
sl@0
|
108 |
Coord().InternalizeL(aStream);
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
EXPORT_C void CPermanentFileStore::DoSetRootL(TStreamId anId)
|
sl@0
|
112 |
//
|
sl@0
|
113 |
// Set the root stream id.
|
sl@0
|
114 |
//
|
sl@0
|
115 |
{
|
sl@0
|
116 |
CoordL().ChangedL();
|
sl@0
|
117 |
iRoot=anId;
|
sl@0
|
118 |
}
|
sl@0
|
119 |
|
sl@0
|
120 |
EXPORT_C TStreamId CPermanentFileStore::DoExtendL()
|
sl@0
|
121 |
{
|
sl@0
|
122 |
return CoordL().ExtendL();
|
sl@0
|
123 |
}
|
sl@0
|
124 |
|
sl@0
|
125 |
EXPORT_C void CPermanentFileStore::DoDeleteL(TStreamId anId)
|
sl@0
|
126 |
{
|
sl@0
|
127 |
if (iCoord==NULL)
|
sl@0
|
128 |
__LEAVE(KErrNotFound);
|
sl@0
|
129 |
//
|
sl@0
|
130 |
CoordL().DeleteL(anId);
|
sl@0
|
131 |
}
|
sl@0
|
132 |
|
sl@0
|
133 |
EXPORT_C void CPermanentFileStore::DoCommitL()
|
sl@0
|
134 |
//
|
sl@0
|
135 |
// Establish a new commit point, committing changes made since the last one.
|
sl@0
|
136 |
//
|
sl@0
|
137 |
{
|
sl@0
|
138 |
if (iCoord!=NULL&&TrimL().CommitL(iRoot))
|
sl@0
|
139 |
{
|
sl@0
|
140 |
return;
|
sl@0
|
141 |
}
|
sl@0
|
142 |
//
|
sl@0
|
143 |
SynchL();
|
sl@0
|
144 |
}
|
sl@0
|
145 |
|
sl@0
|
146 |
EXPORT_C void CPermanentFileStore::DoRevertL()
|
sl@0
|
147 |
//
|
sl@0
|
148 |
// Roll back to the state at the last commit point.
|
sl@0
|
149 |
//
|
sl@0
|
150 |
{
|
sl@0
|
151 |
CPermanentStoreCoord* coord=iCoord;
|
sl@0
|
152 |
if (coord!=NULL&&coord->RevertL(iRoot))
|
sl@0
|
153 |
return;
|
sl@0
|
154 |
//
|
sl@0
|
155 |
SynchL();
|
sl@0
|
156 |
}
|
sl@0
|
157 |
|
sl@0
|
158 |
EXPORT_C MIncrementalCollector* CPermanentFileStore::DoReclaimL()
|
sl@0
|
159 |
{
|
sl@0
|
160 |
return CPermanentStoreCollector::ReclaimerL(CoordL());
|
sl@0
|
161 |
}
|
sl@0
|
162 |
|
sl@0
|
163 |
EXPORT_C MIncrementalCollector* CPermanentFileStore::DoCompactL()
|
sl@0
|
164 |
{
|
sl@0
|
165 |
return CPermanentStoreCollector::CompactorL(TrimL());
|
sl@0
|
166 |
}
|
sl@0
|
167 |
|
sl@0
|
168 |
CPermanentStoreCoord& CPermanentFileStore::CoordL() const
|
sl@0
|
169 |
{
|
sl@0
|
170 |
CPermanentStoreCoord* coord=iCoord;
|
sl@0
|
171 |
if (coord==NULL)
|
sl@0
|
172 |
{
|
sl@0
|
173 |
coord=new(ELeave) CPermanentStoreCoord(KBase,Host());
|
sl@0
|
174 |
MUTABLE_CAST(CPermanentStoreCoord*&,iCoord)=coord;
|
sl@0
|
175 |
}
|
sl@0
|
176 |
else if (!Host().IsActive())
|
sl@0
|
177 |
CONST_CAST(CPermanentFileStore*,this)->RefreshL();
|
sl@0
|
178 |
return *coord;
|
sl@0
|
179 |
}
|
sl@0
|
180 |
|
sl@0
|
181 |
CPermanentStoreCoord& CPermanentFileStore::TrimL()
|
sl@0
|
182 |
{
|
sl@0
|
183 |
CPermanentStoreCoord& coord=CoordL();
|
sl@0
|
184 |
if (!coord.IsTrim())
|
sl@0
|
185 |
{
|
sl@0
|
186 |
TInt lim=coord.LimitL().Offset(); // it can be slightly smaller than this
|
sl@0
|
187 |
TInt size=Host().HostL()->SizeL();
|
sl@0
|
188 |
if (size>lim)
|
sl@0
|
189 |
SetSizeL(lim);
|
sl@0
|
190 |
coord.Clipped();
|
sl@0
|
191 |
}
|
sl@0
|
192 |
return coord;
|
sl@0
|
193 |
}
|
sl@0
|
194 |
|
sl@0
|
195 |
EXPORT_C CFileStore* CPermanentFileStore::DoNewL(RFile& aFile)
|
sl@0
|
196 |
//
|
sl@0
|
197 |
// Factory function creating a new file.
|
sl@0
|
198 |
//
|
sl@0
|
199 |
{
|
sl@0
|
200 |
return new(ELeave) CPermanentFileStore(aFile);
|
sl@0
|
201 |
}
|
sl@0
|
202 |
|