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 |
#ifndef T_CENREP_HELPER_H
|
sl@0
|
17 |
#define T_CENREP_HELPER_H
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <e32def.h>
|
sl@0
|
21 |
#include <e32cmn.h>
|
sl@0
|
22 |
#include <f32file.h>
|
sl@0
|
23 |
#include <centralrepository.h>
|
sl@0
|
24 |
|
sl@0
|
25 |
_LIT(KCPersistsDir, "c:\\private\\10202BE9\\persists\\");
|
sl@0
|
26 |
_LIT(KCPersistsFiles, "c:\\private\\10202BE9\\persists\\*.*");
|
sl@0
|
27 |
|
sl@0
|
28 |
_LIT(KCInstallDir, "c:\\private\\10202BE9\\");
|
sl@0
|
29 |
_LIT(KCInstallFiles, "c:\\private\\10202BE9\\*.*");
|
sl@0
|
30 |
|
sl@0
|
31 |
_LIT(KCRomVersionDir, "c:\\private\\10202BE9\\romversion\\");
|
sl@0
|
32 |
_LIT(KCRomVersionFiles, "c:\\private\\10202BE9\\romversion\\*.*");
|
sl@0
|
33 |
|
sl@0
|
34 |
const TInt KGeneralDelay = 2*1000*1000;
|
sl@0
|
35 |
|
sl@0
|
36 |
_LIT(KTxtFileExt, ".txt");
|
sl@0
|
37 |
_LIT(KCreFileExt, ".cre");
|
sl@0
|
38 |
|
sl@0
|
39 |
class RTest;
|
sl@0
|
40 |
|
sl@0
|
41 |
IMPORT_C void printDirL(const TDesC& aDirName);
|
sl@0
|
42 |
|
sl@0
|
43 |
IMPORT_C TInt KillProcess(const TDesC& aProcessName);
|
sl@0
|
44 |
|
sl@0
|
45 |
IMPORT_C void CleanupCDriveL(TBool aRemoveRomCache = ETrue);
|
sl@0
|
46 |
IMPORT_C void CleanupFileFromCDriveL(const TUid aRepository);
|
sl@0
|
47 |
IMPORT_C void CopyTestFilesL(CFileMan& aFm, const TDesC& aSrc, const TDesC& aDest);
|
sl@0
|
48 |
|
sl@0
|
49 |
IMPORT_C void CleanupRepositoryCache();
|
sl@0
|
50 |
|
sl@0
|
51 |
IMPORT_C void RecordPerformanceTimingL(TUint32 aTime);
|
sl@0
|
52 |
|
sl@0
|
53 |
/** This API is for internal use only and for testing purposes.
|
sl@0
|
54 |
@internalComponent
|
sl@0
|
55 |
|
sl@0
|
56 |
Retrieves transaction state of the session.
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
IMPORT_C TInt TransactionState(CRepository* aRep);
|
sl@0
|
59 |
|
sl@0
|
60 |
/** This API is for internal use only and for testing purposes.
|
sl@0
|
61 |
@internalComponent
|
sl@0
|
62 |
|
sl@0
|
63 |
Sends EGetSetParameters to server.
|
sl@0
|
64 |
*/
|
sl@0
|
65 |
IMPORT_C TInt SetGetParameters(const TIpcArgs& aArgs);
|
sl@0
|
66 |
|
sl@0
|
67 |
#endif // T_CENREP_HELPER_H
|