sl@0
|
1 |
// Copyright (c) 2005-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 "t_cenrep_helper.h"
|
sl@0
|
17 |
#include "srvdefs.h"
|
sl@0
|
18 |
#include <f32file.h> // RFs
|
sl@0
|
19 |
#include <e32test.h> // RTest
|
sl@0
|
20 |
#include <hal.h>
|
sl@0
|
21 |
#include "cachemgr.h"
|
sl@0
|
22 |
#include "clirep.h"
|
sl@0
|
23 |
|
sl@0
|
24 |
#if defined(__CENTREP_SERVER_PERFTEST__) || defined(__CENTREP_SERVER_MEMTEST__) || defined(__CENTREP_SERVER_CACHETEST__)
|
sl@0
|
25 |
#include "srvreqs.h"
|
sl@0
|
26 |
#define CONDITIONAL_PARAM(x) x
|
sl@0
|
27 |
#else
|
sl@0
|
28 |
#define CONDITIONAL_PARAM(x)
|
sl@0
|
29 |
#endif
|
sl@0
|
30 |
|
sl@0
|
31 |
void PatchDrive(TDes& aPath)
|
sl@0
|
32 |
{
|
sl@0
|
33 |
TDriveNumber sysdrive = RFs::GetSystemDrive();
|
sl@0
|
34 |
aPath[0] = 'a' + sysdrive-EDriveA; // Replace drive letter only.
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
EXPORT_C void printDirL(const TDesC& aDirName)
|
sl@0
|
38 |
{
|
sl@0
|
39 |
CDir* fileList=NULL;
|
sl@0
|
40 |
RFs fs;
|
sl@0
|
41 |
User::LeaveIfError(fs.Connect());
|
sl@0
|
42 |
CleanupClosePushL(fs);
|
sl@0
|
43 |
|
sl@0
|
44 |
TInt r = fs.GetDir(aDirName,KEntryAttNormal, ESortByDate, fileList);
|
sl@0
|
45 |
|
sl@0
|
46 |
if (r==KErrPathNotFound)
|
sl@0
|
47 |
{
|
sl@0
|
48 |
RDebug::Print(_L("No directory %S"), &aDirName);
|
sl@0
|
49 |
}
|
sl@0
|
50 |
else if (r==KErrNone)
|
sl@0
|
51 |
{
|
sl@0
|
52 |
TInt fileCount=fileList->Count();
|
sl@0
|
53 |
RDebug::Print( _L("%02d files in %S\n"),fileCount, &aDirName);
|
sl@0
|
54 |
for (TInt i = 0;i < fileCount; ++i)
|
sl@0
|
55 |
{
|
sl@0
|
56 |
TEntry entry=(*fileList)[i];
|
sl@0
|
57 |
|
sl@0
|
58 |
RDebug::Print( _L("File[%02d] - %S \n"),
|
sl@0
|
59 |
i,
|
sl@0
|
60 |
&(entry.iName)
|
sl@0
|
61 |
);
|
sl@0
|
62 |
}
|
sl@0
|
63 |
}
|
sl@0
|
64 |
else
|
sl@0
|
65 |
{
|
sl@0
|
66 |
RDebug::Print(_L("Error getting contents of directory %S"), &aDirName);
|
sl@0
|
67 |
}
|
sl@0
|
68 |
delete fileList;
|
sl@0
|
69 |
CleanupStack::PopAndDestroy(); //fs
|
sl@0
|
70 |
}
|
sl@0
|
71 |
|
sl@0
|
72 |
EXPORT_C TInt KillProcess(const TDesC& aProcessName)
|
sl@0
|
73 |
{
|
sl@0
|
74 |
TFullName name;
|
sl@0
|
75 |
|
sl@0
|
76 |
RDebug::Print(_L("Find and kill \"%S\" process.\n"), &aProcessName);
|
sl@0
|
77 |
|
sl@0
|
78 |
TBuf<64> pattern(aProcessName);
|
sl@0
|
79 |
TInt length = pattern.Length();
|
sl@0
|
80 |
pattern += _L("*");
|
sl@0
|
81 |
TFindProcess procFinder(pattern);
|
sl@0
|
82 |
|
sl@0
|
83 |
while (procFinder.Next(name) == KErrNone)
|
sl@0
|
84 |
{
|
sl@0
|
85 |
if (name.Length() > length)
|
sl@0
|
86 |
{//If found name is a string containing aProcessName string.
|
sl@0
|
87 |
TChar c(name[length]);
|
sl@0
|
88 |
if (c.IsAlphaDigit() ||
|
sl@0
|
89 |
c == TChar('_') ||
|
sl@0
|
90 |
c == TChar('-'))
|
sl@0
|
91 |
{
|
sl@0
|
92 |
// If the found name is other valid application name
|
sl@0
|
93 |
// starting with aProcessName string.
|
sl@0
|
94 |
RDebug::Print(_L(":: Process name: \"%S\".\n"), &name);
|
sl@0
|
95 |
continue;
|
sl@0
|
96 |
}
|
sl@0
|
97 |
}
|
sl@0
|
98 |
RProcess proc;
|
sl@0
|
99 |
if (proc.Open(name) == KErrNone)
|
sl@0
|
100 |
{
|
sl@0
|
101 |
proc.Kill(0);
|
sl@0
|
102 |
RDebug::Print(_L("\"%S\" process killed.\n"), &name);
|
sl@0
|
103 |
}
|
sl@0
|
104 |
proc.Close();
|
sl@0
|
105 |
}
|
sl@0
|
106 |
return KErrNone;
|
sl@0
|
107 |
}
|
sl@0
|
108 |
|
sl@0
|
109 |
const TInt KSmallDelay = 2*1000;
|
sl@0
|
110 |
|
sl@0
|
111 |
//File cleanup function
|
sl@0
|
112 |
EXPORT_C void CleanupCDriveL(TBool aRemoveRomCache)
|
sl@0
|
113 |
{
|
sl@0
|
114 |
RFs fs;
|
sl@0
|
115 |
User::LeaveIfError(fs.Connect());
|
sl@0
|
116 |
CleanupClosePushL(fs);
|
sl@0
|
117 |
|
sl@0
|
118 |
CFileMan* fm = CFileMan::NewL(fs);
|
sl@0
|
119 |
CleanupStack::PushL(fm);
|
sl@0
|
120 |
HBufC* file_buf = HBufC::NewLC(KMaxFileName);
|
sl@0
|
121 |
TPtr file(file_buf->Des());
|
sl@0
|
122 |
file.Copy(KCPersistsFiles);
|
sl@0
|
123 |
PatchDrive(file);
|
sl@0
|
124 |
TInt r = fm->Delete(file);
|
sl@0
|
125 |
|
sl@0
|
126 |
if (r != KErrNone &&
|
sl@0
|
127 |
r != KErrNotFound &&
|
sl@0
|
128 |
r != KErrPathNotFound)
|
sl@0
|
129 |
{
|
sl@0
|
130 |
User::Leave(r);
|
sl@0
|
131 |
}
|
sl@0
|
132 |
|
sl@0
|
133 |
if(aRemoveRomCache)
|
sl@0
|
134 |
{
|
sl@0
|
135 |
//Delete cached rom version file
|
sl@0
|
136 |
file.Copy(KCRomVersionFiles);
|
sl@0
|
137 |
PatchDrive(file);
|
sl@0
|
138 |
fm->Attribs(file, 0, KEntryAttReadOnly, TTime(0), 0);
|
sl@0
|
139 |
r = fm->Delete(file);
|
sl@0
|
140 |
if (r != KErrNone &&
|
sl@0
|
141 |
r != KErrNotFound &&
|
sl@0
|
142 |
r != KErrPathNotFound &&
|
sl@0
|
143 |
r != KErrPermissionDenied)
|
sl@0
|
144 |
{
|
sl@0
|
145 |
User::Leave(r);
|
sl@0
|
146 |
}
|
sl@0
|
147 |
|
sl@0
|
148 |
// Delete all install files
|
sl@0
|
149 |
file.Copy(KCInstallFiles);
|
sl@0
|
150 |
PatchDrive(file);
|
sl@0
|
151 |
r = fm->Delete(file);
|
sl@0
|
152 |
if (r != KErrNone &&
|
sl@0
|
153 |
r != KErrNotFound &&
|
sl@0
|
154 |
r != KErrPathNotFound)
|
sl@0
|
155 |
{
|
sl@0
|
156 |
User::Leave(r);
|
sl@0
|
157 |
}
|
sl@0
|
158 |
|
sl@0
|
159 |
// Give SW time to handle uninstall.
|
sl@0
|
160 |
User::After(KSmallDelay);
|
sl@0
|
161 |
}
|
sl@0
|
162 |
CleanupStack::PopAndDestroy(3);
|
sl@0
|
163 |
}
|
sl@0
|
164 |
|
sl@0
|
165 |
//Function to remove all repositories from repository cache
|
sl@0
|
166 |
//Try not to use this function because it is time consuming (129.5 seconds)
|
sl@0
|
167 |
EXPORT_C void CleanupRepositoryCache()
|
sl@0
|
168 |
{
|
sl@0
|
169 |
// So we wait here until the cache is empty to correct the behaviour.
|
sl@0
|
170 |
User::After(KDefaultEvictionTimeout+950000);
|
sl@0
|
171 |
}
|
sl@0
|
172 |
|
sl@0
|
173 |
//Function to clean specific repository files
|
sl@0
|
174 |
EXPORT_C void CleanupFileFromCDriveL(const TUid aRepository)
|
sl@0
|
175 |
{
|
sl@0
|
176 |
RFs fs;
|
sl@0
|
177 |
User::LeaveIfError(fs.Connect());
|
sl@0
|
178 |
CleanupClosePushL(fs);
|
sl@0
|
179 |
|
sl@0
|
180 |
CFileMan* fm = CFileMan::NewL(fs);
|
sl@0
|
181 |
CleanupStack::PushL(fm);
|
sl@0
|
182 |
|
sl@0
|
183 |
HBufC* file_buf = HBufC::NewLC(KMaxFileName);
|
sl@0
|
184 |
TPtr filename(file_buf->Des());
|
sl@0
|
185 |
filename = KCPersistsDir;
|
sl@0
|
186 |
filename.AppendNumFixedWidth(aRepository.iUid,EHex,8);
|
sl@0
|
187 |
filename.Append(KTxtFileExt);
|
sl@0
|
188 |
PatchDrive(filename);
|
sl@0
|
189 |
// Delete txt file from persists dir
|
sl@0
|
190 |
TInt r = fm->Delete(filename);
|
sl@0
|
191 |
|
sl@0
|
192 |
if (r != KErrNone &&
|
sl@0
|
193 |
r != KErrNotFound &&
|
sl@0
|
194 |
r != KErrPathNotFound)
|
sl@0
|
195 |
{
|
sl@0
|
196 |
User::Leave(r);
|
sl@0
|
197 |
}
|
sl@0
|
198 |
|
sl@0
|
199 |
filename = KCPersistsDir;
|
sl@0
|
200 |
filename.AppendNumFixedWidth(aRepository.iUid,EHex,8);
|
sl@0
|
201 |
filename.Append(KCreFileExt);
|
sl@0
|
202 |
PatchDrive(filename);
|
sl@0
|
203 |
// Delete cre file from persists dir
|
sl@0
|
204 |
r = fm->Delete(filename);
|
sl@0
|
205 |
|
sl@0
|
206 |
if (r != KErrNone &&
|
sl@0
|
207 |
r != KErrNotFound &&
|
sl@0
|
208 |
r != KErrPathNotFound)
|
sl@0
|
209 |
{
|
sl@0
|
210 |
User::Leave(r);
|
sl@0
|
211 |
}
|
sl@0
|
212 |
|
sl@0
|
213 |
filename = KCInstallDir;
|
sl@0
|
214 |
filename.AppendNumFixedWidth(aRepository.iUid,EHex,8);
|
sl@0
|
215 |
filename.Append(KTxtFileExt);
|
sl@0
|
216 |
PatchDrive(filename);
|
sl@0
|
217 |
// Delete txt file from install dir
|
sl@0
|
218 |
r = fm->Delete(filename);
|
sl@0
|
219 |
if (r != KErrNone &&
|
sl@0
|
220 |
r != KErrNotFound &&
|
sl@0
|
221 |
r != KErrPathNotFound)
|
sl@0
|
222 |
{
|
sl@0
|
223 |
User::Leave(r);
|
sl@0
|
224 |
}
|
sl@0
|
225 |
|
sl@0
|
226 |
filename = KCInstallDir;
|
sl@0
|
227 |
filename.AppendNumFixedWidth(aRepository.iUid,EHex,8);
|
sl@0
|
228 |
filename.Append(KCreFileExt);
|
sl@0
|
229 |
PatchDrive(filename);
|
sl@0
|
230 |
// Delete cre file from install dir
|
sl@0
|
231 |
r = fm->Delete(filename);
|
sl@0
|
232 |
if (r != KErrNone &&
|
sl@0
|
233 |
r != KErrNotFound &&
|
sl@0
|
234 |
r != KErrPathNotFound)
|
sl@0
|
235 |
{
|
sl@0
|
236 |
User::Leave(r);
|
sl@0
|
237 |
}
|
sl@0
|
238 |
|
sl@0
|
239 |
// Give SW time to handle uninstall.
|
sl@0
|
240 |
User::After(KSmallDelay);
|
sl@0
|
241 |
|
sl@0
|
242 |
CleanupStack::PopAndDestroy(3);
|
sl@0
|
243 |
}
|
sl@0
|
244 |
|
sl@0
|
245 |
//This function copies files from a source folder to a target folder
|
sl@0
|
246 |
//and sets the file attributes to archive and read only
|
sl@0
|
247 |
EXPORT_C void CopyTestFilesL(CFileMan& aFm, const TDesC& aSrc, const TDesC& aDest)
|
sl@0
|
248 |
{
|
sl@0
|
249 |
TBuf<KMaxFileName> src, dest;
|
sl@0
|
250 |
src.Copy(aSrc);
|
sl@0
|
251 |
dest.Copy(aDest);
|
sl@0
|
252 |
|
sl@0
|
253 |
PatchDrive(dest);
|
sl@0
|
254 |
|
sl@0
|
255 |
//copy test files
|
sl@0
|
256 |
User::LeaveIfError(aFm.Copy(src, dest,CFileMan::ERecurse));
|
sl@0
|
257 |
aFm.Attribs(dest,
|
sl@0
|
258 |
KEntryAttArchive,
|
sl@0
|
259 |
KEntryAttReadOnly,
|
sl@0
|
260 |
TTime(0),
|
sl@0
|
261 |
CFileMan::ERecurse);
|
sl@0
|
262 |
}
|
sl@0
|
263 |
|
sl@0
|
264 |
//This function prints out the recorded time in milliseconds of aTime.
|
sl@0
|
265 |
EXPORT_C void RecordPerformanceTimingL(TUint32 aTime)
|
sl@0
|
266 |
{
|
sl@0
|
267 |
TInt freq = 0;
|
sl@0
|
268 |
TInt Err = HAL::Get(HAL::EFastCounterFrequency, freq);
|
sl@0
|
269 |
if(Err != KErrNone)
|
sl@0
|
270 |
{
|
sl@0
|
271 |
RDebug::Print(_L("HAL error <%d>\r\n"), Err);
|
sl@0
|
272 |
}
|
sl@0
|
273 |
const TInt KMicroSecIn1Sec = 1000000;
|
sl@0
|
274 |
const TInt KMsIn1Sec = 1000;
|
sl@0
|
275 |
|
sl@0
|
276 |
double v = ((double)aTime * KMicroSecIn1Sec) / (double)freq; TInt v2 = (TInt)v;
|
sl@0
|
277 |
RDebug::Print(_L("####Execution time: %d ms\r\n"), v2 / KMsIn1Sec);
|
sl@0
|
278 |
}
|
sl@0
|
279 |
|
sl@0
|
280 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
281 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
282 |
//Test macroes and functions
|
sl@0
|
283 |
|
sl@0
|
284 |
EXPORT_C void CheckL(RTest& aTest, TInt aValue, TInt aLine)
|
sl@0
|
285 |
{
|
sl@0
|
286 |
if (!aValue)
|
sl@0
|
287 |
{
|
sl@0
|
288 |
CleanupCDriveL();
|
sl@0
|
289 |
aTest(EFalse, aLine);
|
sl@0
|
290 |
}
|
sl@0
|
291 |
}
|
sl@0
|
292 |
EXPORT_C void CheckL(RTest& aTest, TInt aValue, TInt aExpected, TInt aLine)
|
sl@0
|
293 |
{
|
sl@0
|
294 |
if (aValue != aExpected)
|
sl@0
|
295 |
{
|
sl@0
|
296 |
RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"),
|
sl@0
|
297 |
aExpected, aValue);
|
sl@0
|
298 |
CleanupCDriveL();
|
sl@0
|
299 |
aTest(EFalse, aLine);
|
sl@0
|
300 |
}
|
sl@0
|
301 |
}
|
sl@0
|
302 |
|
sl@0
|
303 |
/**
|
sl@0
|
304 |
*Retrieves transaction state of the session.
|
sl@0
|
305 |
*/
|
sl@0
|
306 |
EXPORT_C TInt TransactionState(CRepository* aRep)
|
sl@0
|
307 |
{
|
sl@0
|
308 |
return (static_cast<CClientRepository*>(aRep))->TransactionState();
|
sl@0
|
309 |
}
|
sl@0
|
310 |
|
sl@0
|
311 |
/**
|
sl@0
|
312 |
*Sends EGetSetParameters to server.
|
sl@0
|
313 |
*/
|
sl@0
|
314 |
EXPORT_C TInt SetGetParameters(const TIpcArgs& CONDITIONAL_PARAM(aArgs))
|
sl@0
|
315 |
{
|
sl@0
|
316 |
#if defined(__CENTREP_SERVER_PERFTEST__) || defined(__CENTREP_SERVER_MEMTEST__) || defined(__CENTREP_SERVER_CACHETEST__)
|
sl@0
|
317 |
RRepositorySession session;
|
sl@0
|
318 |
TInt ret = session.Connect();
|
sl@0
|
319 |
if (ret == KErrNone)
|
sl@0
|
320 |
{
|
sl@0
|
321 |
ret = session.SendReceive(EGetSetParameters, aArgs);
|
sl@0
|
322 |
session.Close();
|
sl@0
|
323 |
}
|
sl@0
|
324 |
return ret;
|
sl@0
|
325 |
#else
|
sl@0
|
326 |
return KErrNotSupported;
|
sl@0
|
327 |
#endif
|
sl@0
|
328 |
}
|