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 <s32file.h>
|
sl@0
|
17 |
#include <e32test.h>
|
sl@0
|
18 |
#include <e32math.h>
|
sl@0
|
19 |
#include <hal.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
// This is a path specification and should not be used as is
|
sl@0
|
22 |
_LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_FRECL.DAT");
|
sl@0
|
23 |
const TPtrC KTestText=_L("Reclamation testing in progress...");
|
sl@0
|
24 |
const TInt KTestStreams=1000;
|
sl@0
|
25 |
const TInt KTestReplicas=5000;
|
sl@0
|
26 |
|
sl@0
|
27 |
TFileName TheFileName;
|
sl@0
|
28 |
|
sl@0
|
29 |
RTest TheTest(_L("t_storfrecl"));
|
sl@0
|
30 |
RFs TheFs;
|
sl@0
|
31 |
TInt64 TheSeed;
|
sl@0
|
32 |
|
sl@0
|
33 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
34 |
|
sl@0
|
35 |
void DeleteDataFile(const TDesC& aFullName)
|
sl@0
|
36 |
{
|
sl@0
|
37 |
RFs fsSession;
|
sl@0
|
38 |
TInt err = fsSession.Connect();
|
sl@0
|
39 |
if(err == KErrNone)
|
sl@0
|
40 |
{
|
sl@0
|
41 |
TEntry entry;
|
sl@0
|
42 |
if(fsSession.Entry(aFullName, entry) == KErrNone)
|
sl@0
|
43 |
{
|
sl@0
|
44 |
RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
|
sl@0
|
45 |
err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
|
sl@0
|
46 |
if(err != KErrNone)
|
sl@0
|
47 |
{
|
sl@0
|
48 |
RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
|
sl@0
|
49 |
}
|
sl@0
|
50 |
err = fsSession.Delete(aFullName);
|
sl@0
|
51 |
if(err != KErrNone)
|
sl@0
|
52 |
{
|
sl@0
|
53 |
RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
|
sl@0
|
54 |
}
|
sl@0
|
55 |
}
|
sl@0
|
56 |
fsSession.Close();
|
sl@0
|
57 |
}
|
sl@0
|
58 |
else
|
sl@0
|
59 |
{
|
sl@0
|
60 |
RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
|
sl@0
|
61 |
}
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
65 |
//Test macros and functions
|
sl@0
|
66 |
void Check(TInt aValue, TInt aLine)
|
sl@0
|
67 |
{
|
sl@0
|
68 |
if(!aValue)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
TheTest.Printf(_L("*** Boolean expression evaluated to false\r\n"));
|
sl@0
|
71 |
DeleteDataFile(TheFileName);
|
sl@0
|
72 |
TheTest(EFalse, aLine);
|
sl@0
|
73 |
}
|
sl@0
|
74 |
}
|
sl@0
|
75 |
void Check(TInt aValue, TInt aExpected, TInt aLine)
|
sl@0
|
76 |
{
|
sl@0
|
77 |
if(aValue != aExpected)
|
sl@0
|
78 |
{
|
sl@0
|
79 |
DeleteDataFile(TheFileName);
|
sl@0
|
80 |
TheTest.Printf(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
|
sl@0
|
81 |
TheTest(EFalse, aLine);
|
sl@0
|
82 |
}
|
sl@0
|
83 |
}
|
sl@0
|
84 |
#define TEST(arg) ::Check((arg), __LINE__)
|
sl@0
|
85 |
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
|
sl@0
|
86 |
|
sl@0
|
87 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
88 |
|
sl@0
|
89 |
static TInt TheCounterFreq = -10000000;
|
sl@0
|
90 |
const TInt KMicroSecIn1Sec = 1000000;
|
sl@0
|
91 |
|
sl@0
|
92 |
TUint32 CalcTickDiff(TUint32 aStartTicks, TUint32 aEndTicks)
|
sl@0
|
93 |
{
|
sl@0
|
94 |
TInt64 diffTicks = (TInt64)aEndTicks - (TInt64)aStartTicks;
|
sl@0
|
95 |
if(diffTicks < 0)
|
sl@0
|
96 |
{
|
sl@0
|
97 |
diffTicks = KMaxTUint32 + diffTicks + 1;
|
sl@0
|
98 |
}
|
sl@0
|
99 |
return (TUint32)diffTicks;
|
sl@0
|
100 |
}
|
sl@0
|
101 |
|
sl@0
|
102 |
//Prints aFastCount parameter (converted to us) and the bytes count
|
sl@0
|
103 |
void PrintFcDiffAsUs2(const TDesC& aFormatStr, TInt aBytes, TUint32 aFastCount)
|
sl@0
|
104 |
{
|
sl@0
|
105 |
if(TheCounterFreq <= 0)
|
sl@0
|
106 |
{
|
sl@0
|
107 |
TEST2(HAL::Get(HAL::EFastCounterFrequency, TheCounterFreq), KErrNone);
|
sl@0
|
108 |
TheTest.Printf(_L("Counter frequency=%d Hz\r\n"), TheCounterFreq);
|
sl@0
|
109 |
}
|
sl@0
|
110 |
double v = ((double)aFastCount * KMicroSecIn1Sec) / (double)TheCounterFreq;
|
sl@0
|
111 |
TInt v2 = (TInt)v;
|
sl@0
|
112 |
TheTest.Printf(aFormatStr, aBytes, v2);
|
sl@0
|
113 |
}
|
sl@0
|
114 |
|
sl@0
|
115 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
116 |
|
sl@0
|
117 |
TInt ReclaimL(CStreamStore& aStore)
|
sl@0
|
118 |
{
|
sl@0
|
119 |
TUint32 fc = User::FastCounter();
|
sl@0
|
120 |
TInt total = aStore.ReclaimL();
|
sl@0
|
121 |
TUint32 time = CalcTickDiff(fc, User::FastCounter());
|
sl@0
|
122 |
PrintFcDiffAsUs2(_L("### CStreamStore::ReclaimL(), %d bytes reclaimable, Time=%d us\r\n"), total, time);
|
sl@0
|
123 |
return total;
|
sl@0
|
124 |
}
|
sl@0
|
125 |
/**
|
sl@0
|
126 |
@SYMTestCaseID SYSLIB-STORE-CT-1159
|
sl@0
|
127 |
@SYMTestCaseDesc Tests CStreamStore::ReclaimL() function
|
sl@0
|
128 |
@SYMTestPriority High
|
sl@0
|
129 |
@SYMTestActions Tests for reclaiming the space on the store.
|
sl@0
|
130 |
Tests for an empty store,simple and a complex store.
|
sl@0
|
131 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
132 |
@SYMREQ REQ0000
|
sl@0
|
133 |
*/
|
sl@0
|
134 |
void ReclaimTestL()
|
sl@0
|
135 |
{
|
sl@0
|
136 |
TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1159 CPermanentFileStore::ReclaimL()"));
|
sl@0
|
137 |
|
sl@0
|
138 |
TheTest.Printf(_L(" Empty store\r\n"));
|
sl@0
|
139 |
CFileStore* store = CPermanentFileStore::ReplaceLC(TheFs, TheFileName, EFileRead | EFileWrite);
|
sl@0
|
140 |
store->SetTypeL(store->Layout());
|
sl@0
|
141 |
TInt bytes = ReclaimL(*store);
|
sl@0
|
142 |
TEST2(bytes, 0);
|
sl@0
|
143 |
|
sl@0
|
144 |
TheTest.Printf(_L(" Simple store\r\n"));
|
sl@0
|
145 |
RStoreWriteStream strm;
|
sl@0
|
146 |
TStreamId id=strm.CreateLC(*store);
|
sl@0
|
147 |
strm<<KTestText;
|
sl@0
|
148 |
strm.CommitL();
|
sl@0
|
149 |
strm.Release();
|
sl@0
|
150 |
store->CommitL();
|
sl@0
|
151 |
(void)ReclaimL(*store);
|
sl@0
|
152 |
|
sl@0
|
153 |
TheTest.Printf(_L(" Complex store\r\n"));
|
sl@0
|
154 |
TInt ii;
|
sl@0
|
155 |
for (ii=0;ii<KTestStreams;++ii)
|
sl@0
|
156 |
{
|
sl@0
|
157 |
id=strm.CreateL(*store);
|
sl@0
|
158 |
TInt val=Math::Rand(TheSeed);
|
sl@0
|
159 |
TInt len=(val>>11)%(KTestText.Length()+1);
|
sl@0
|
160 |
if (len>0)
|
sl@0
|
161 |
strm<<KTestText.Left(len-1);
|
sl@0
|
162 |
strm.CommitL();
|
sl@0
|
163 |
strm.Release();
|
sl@0
|
164 |
if ((val>>7)&1)
|
sl@0
|
165 |
store->DeleteL(id);
|
sl@0
|
166 |
}
|
sl@0
|
167 |
store->CommitL();
|
sl@0
|
168 |
(void)ReclaimL(*store);
|
sl@0
|
169 |
|
sl@0
|
170 |
TheTest.Printf(_L(" Large stream\r\n"));
|
sl@0
|
171 |
id=strm.CreateL(*store);
|
sl@0
|
172 |
for (ii=0;ii<KTestReplicas;++ii)
|
sl@0
|
173 |
strm<<KTestText;
|
sl@0
|
174 |
strm.CommitL();
|
sl@0
|
175 |
strm.Release();
|
sl@0
|
176 |
store->CommitL();
|
sl@0
|
177 |
(void)ReclaimL(*store);
|
sl@0
|
178 |
|
sl@0
|
179 |
TheTest.Printf(_L(" Deleted large stream\r\n"));
|
sl@0
|
180 |
store->DeleteL(id);
|
sl@0
|
181 |
store->CommitL();
|
sl@0
|
182 |
(void)ReclaimL(*store);
|
sl@0
|
183 |
|
sl@0
|
184 |
TheTest.Printf(_L(" Mixed reclaim and commit\r\n"));
|
sl@0
|
185 |
RStoreReclaim reclaim;
|
sl@0
|
186 |
TInt step;
|
sl@0
|
187 |
reclaim.OpenLC(*store,step);
|
sl@0
|
188 |
TRequestStatus status;
|
sl@0
|
189 |
TPckgBuf<TInt> pckgStep(step);
|
sl@0
|
190 |
TRAPD(r, reclaim.NextL(pckgStep,status));
|
sl@0
|
191 |
TEST2(r, KErrNone);
|
sl@0
|
192 |
User::WaitForRequest(status);
|
sl@0
|
193 |
TEST2(status.Int(), KErrNone);
|
sl@0
|
194 |
TEST(step>0);
|
sl@0
|
195 |
strm.CreateL(*store);
|
sl@0
|
196 |
strm<<KTestText;
|
sl@0
|
197 |
strm.CommitL();
|
sl@0
|
198 |
strm.Release();
|
sl@0
|
199 |
TRAP(r, reclaim.NextL(step));
|
sl@0
|
200 |
TEST(r!=KErrNone);
|
sl@0
|
201 |
reclaim.ResetL(step);
|
sl@0
|
202 |
r = reclaim.Next(step);
|
sl@0
|
203 |
TEST(r!=KErrNone);
|
sl@0
|
204 |
store->CommitL();
|
sl@0
|
205 |
TPckgBuf<TInt> pckgStep1(step);
|
sl@0
|
206 |
reclaim.Next(pckgStep1,status) ;
|
sl@0
|
207 |
User::WaitForRequest(status);
|
sl@0
|
208 |
TEST(status.Int() != KErrNone);
|
sl@0
|
209 |
reclaim.ResetL(step);
|
sl@0
|
210 |
while (step)
|
sl@0
|
211 |
{
|
sl@0
|
212 |
r = reclaim.Next(step);
|
sl@0
|
213 |
TEST2(r, KErrNone);
|
sl@0
|
214 |
}
|
sl@0
|
215 |
|
sl@0
|
216 |
TInt total=reclaim.Available();
|
sl@0
|
217 |
CleanupStack::PopAndDestroy();
|
sl@0
|
218 |
TheTest.Printf(_L(" %d byte(s) reclaimable\n"),total);
|
sl@0
|
219 |
|
sl@0
|
220 |
CleanupStack::Pop(); // strm
|
sl@0
|
221 |
CleanupStack::PopAndDestroy(); // store
|
sl@0
|
222 |
}
|
sl@0
|
223 |
|
sl@0
|
224 |
//Initialize TheFileName. RFs::Connect(). Prepare the test directory.
|
sl@0
|
225 |
void CreateTestEnv()
|
sl@0
|
226 |
{
|
sl@0
|
227 |
TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
|
sl@0
|
228 |
TParse parse;
|
sl@0
|
229 |
parse.Set(drive.Name(), &KFileLocationSpec, NULL);
|
sl@0
|
230 |
TheFileName.Copy(parse.FullName());
|
sl@0
|
231 |
TheTest.Printf(_L("### Test file: %S\r\n"), &TheFileName);
|
sl@0
|
232 |
|
sl@0
|
233 |
TInt err = TheFs.Connect();
|
sl@0
|
234 |
TheTest(err == KErrNone);
|
sl@0
|
235 |
|
sl@0
|
236 |
err = TheFs.MkDirAll(TheFileName);
|
sl@0
|
237 |
TEST(err == KErrNone || err == KErrAlreadyExists);
|
sl@0
|
238 |
}
|
sl@0
|
239 |
|
sl@0
|
240 |
TInt E32Main()
|
sl@0
|
241 |
{
|
sl@0
|
242 |
TheTest.Title();
|
sl@0
|
243 |
|
sl@0
|
244 |
CTrapCleanup* tc = CTrapCleanup::New();
|
sl@0
|
245 |
TheTest(tc != NULL);
|
sl@0
|
246 |
|
sl@0
|
247 |
__UHEAP_MARK;
|
sl@0
|
248 |
|
sl@0
|
249 |
CreateTestEnv();
|
sl@0
|
250 |
|
sl@0
|
251 |
TRAPD(err, ReclaimTestL());
|
sl@0
|
252 |
::DeleteDataFile(TheFileName);
|
sl@0
|
253 |
TheFs.Close();
|
sl@0
|
254 |
TEST2(err, KErrNone);
|
sl@0
|
255 |
|
sl@0
|
256 |
__UHEAP_MARKEND;
|
sl@0
|
257 |
|
sl@0
|
258 |
TheTest.End();
|
sl@0
|
259 |
TheTest.Close();
|
sl@0
|
260 |
|
sl@0
|
261 |
delete tc;
|
sl@0
|
262 |
|
sl@0
|
263 |
return 0;
|
sl@0
|
264 |
}
|
sl@0
|
265 |
|