Update contrib.
1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include "t_cenrep_helper.h"
18 #include <f32file.h> // RFs
19 #include <e32test.h> // RTest
24 #if defined(__CENTREP_SERVER_PERFTEST__) || defined(__CENTREP_SERVER_MEMTEST__) || defined(__CENTREP_SERVER_CACHETEST__)
26 #define CONDITIONAL_PARAM(x) x
28 #define CONDITIONAL_PARAM(x)
31 void PatchDrive(TDes& aPath)
33 TDriveNumber sysdrive = RFs::GetSystemDrive();
34 aPath[0] = 'a' + sysdrive-EDriveA; // Replace drive letter only.
37 EXPORT_C void printDirL(const TDesC& aDirName)
41 User::LeaveIfError(fs.Connect());
42 CleanupClosePushL(fs);
44 TInt r = fs.GetDir(aDirName,KEntryAttNormal, ESortByDate, fileList);
46 if (r==KErrPathNotFound)
48 RDebug::Print(_L("No directory %S"), &aDirName);
52 TInt fileCount=fileList->Count();
53 RDebug::Print( _L("%02d files in %S\n"),fileCount, &aDirName);
54 for (TInt i = 0;i < fileCount; ++i)
56 TEntry entry=(*fileList)[i];
58 RDebug::Print( _L("File[%02d] - %S \n"),
66 RDebug::Print(_L("Error getting contents of directory %S"), &aDirName);
69 CleanupStack::PopAndDestroy(); //fs
72 EXPORT_C TInt KillProcess(const TDesC& aProcessName)
76 RDebug::Print(_L("Find and kill \"%S\" process.\n"), &aProcessName);
78 TBuf<64> pattern(aProcessName);
79 TInt length = pattern.Length();
81 TFindProcess procFinder(pattern);
83 while (procFinder.Next(name) == KErrNone)
85 if (name.Length() > length)
86 {//If found name is a string containing aProcessName string.
87 TChar c(name[length]);
88 if (c.IsAlphaDigit() ||
92 // If the found name is other valid application name
93 // starting with aProcessName string.
94 RDebug::Print(_L(":: Process name: \"%S\".\n"), &name);
99 if (proc.Open(name) == KErrNone)
102 RDebug::Print(_L("\"%S\" process killed.\n"), &name);
109 const TInt KSmallDelay = 2*1000;
111 //File cleanup function
112 EXPORT_C void CleanupCDriveL(TBool aRemoveRomCache)
115 User::LeaveIfError(fs.Connect());
116 CleanupClosePushL(fs);
118 CFileMan* fm = CFileMan::NewL(fs);
119 CleanupStack::PushL(fm);
120 HBufC* file_buf = HBufC::NewLC(KMaxFileName);
121 TPtr file(file_buf->Des());
122 file.Copy(KCPersistsFiles);
124 TInt r = fm->Delete(file);
128 r != KErrPathNotFound)
135 //Delete cached rom version file
136 file.Copy(KCRomVersionFiles);
138 fm->Attribs(file, 0, KEntryAttReadOnly, TTime(0), 0);
139 r = fm->Delete(file);
142 r != KErrPathNotFound &&
143 r != KErrPermissionDenied)
148 // Delete all install files
149 file.Copy(KCInstallFiles);
151 r = fm->Delete(file);
154 r != KErrPathNotFound)
159 // Give SW time to handle uninstall.
160 User::After(KSmallDelay);
162 CleanupStack::PopAndDestroy(3);
165 //Function to remove all repositories from repository cache
166 //Try not to use this function because it is time consuming (129.5 seconds)
167 EXPORT_C void CleanupRepositoryCache()
169 // So we wait here until the cache is empty to correct the behaviour.
170 User::After(KDefaultEvictionTimeout+950000);
173 //Function to clean specific repository files
174 EXPORT_C void CleanupFileFromCDriveL(const TUid aRepository)
177 User::LeaveIfError(fs.Connect());
178 CleanupClosePushL(fs);
180 CFileMan* fm = CFileMan::NewL(fs);
181 CleanupStack::PushL(fm);
183 HBufC* file_buf = HBufC::NewLC(KMaxFileName);
184 TPtr filename(file_buf->Des());
185 filename = KCPersistsDir;
186 filename.AppendNumFixedWidth(aRepository.iUid,EHex,8);
187 filename.Append(KTxtFileExt);
188 PatchDrive(filename);
189 // Delete txt file from persists dir
190 TInt r = fm->Delete(filename);
194 r != KErrPathNotFound)
199 filename = KCPersistsDir;
200 filename.AppendNumFixedWidth(aRepository.iUid,EHex,8);
201 filename.Append(KCreFileExt);
202 PatchDrive(filename);
203 // Delete cre file from persists dir
204 r = fm->Delete(filename);
208 r != KErrPathNotFound)
213 filename = KCInstallDir;
214 filename.AppendNumFixedWidth(aRepository.iUid,EHex,8);
215 filename.Append(KTxtFileExt);
216 PatchDrive(filename);
217 // Delete txt file from install dir
218 r = fm->Delete(filename);
221 r != KErrPathNotFound)
226 filename = KCInstallDir;
227 filename.AppendNumFixedWidth(aRepository.iUid,EHex,8);
228 filename.Append(KCreFileExt);
229 PatchDrive(filename);
230 // Delete cre file from install dir
231 r = fm->Delete(filename);
234 r != KErrPathNotFound)
239 // Give SW time to handle uninstall.
240 User::After(KSmallDelay);
242 CleanupStack::PopAndDestroy(3);
245 //This function copies files from a source folder to a target folder
246 //and sets the file attributes to archive and read only
247 EXPORT_C void CopyTestFilesL(CFileMan& aFm, const TDesC& aSrc, const TDesC& aDest)
249 TBuf<KMaxFileName> src, dest;
256 User::LeaveIfError(aFm.Copy(src, dest,CFileMan::ERecurse));
264 //This function prints out the recorded time in milliseconds of aTime.
265 EXPORT_C void RecordPerformanceTimingL(TUint32 aTime)
268 TInt Err = HAL::Get(HAL::EFastCounterFrequency, freq);
271 RDebug::Print(_L("HAL error <%d>\r\n"), Err);
273 const TInt KMicroSecIn1Sec = 1000000;
274 const TInt KMsIn1Sec = 1000;
276 double v = ((double)aTime * KMicroSecIn1Sec) / (double)freq; TInt v2 = (TInt)v;
277 RDebug::Print(_L("####Execution time: %d ms\r\n"), v2 / KMsIn1Sec);
280 ///////////////////////////////////////////////////////////////////////////////////////
281 ///////////////////////////////////////////////////////////////////////////////////////
282 //Test macroes and functions
284 EXPORT_C void CheckL(RTest& aTest, TInt aValue, TInt aLine)
289 aTest(EFalse, aLine);
292 EXPORT_C void CheckL(RTest& aTest, TInt aValue, TInt aExpected, TInt aLine)
294 if (aValue != aExpected)
296 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"),
299 aTest(EFalse, aLine);
304 *Retrieves transaction state of the session.
306 EXPORT_C TInt TransactionState(CRepository* aRep)
308 return (static_cast<CClientRepository*>(aRep))->TransactionState();
312 *Sends EGetSetParameters to server.
314 EXPORT_C TInt SetGetParameters(const TIpcArgs& CONDITIONAL_PARAM(aArgs))
316 #if defined(__CENTREP_SERVER_PERFTEST__) || defined(__CENTREP_SERVER_MEMTEST__) || defined(__CENTREP_SERVER_CACHETEST__)
317 RRepositorySession session;
318 TInt ret = session.Connect();
321 ret = session.SendReceive(EGetSetParameters, aArgs);
326 return KErrNotSupported;