sl@0
|
1 |
// Copyright (c) 1997-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 |
// The state accessor class definitions for the CRegistrar class.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __REGISTRARSTATEACCESSOR_H__
|
sl@0
|
19 |
#define __REGISTRARSTATEACCESSOR_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
// ______________________________________________________________________________
|
sl@0
|
22 |
//
|
sl@0
|
23 |
/**
|
sl@0
|
24 |
@internalComponent
|
sl@0
|
25 |
Comments : State accessor for the CRegistrar object under test.
|
sl@0
|
26 |
*/
|
sl@0
|
27 |
class TRegistrar_StateAccessor : public MStateAccessor
|
sl@0
|
28 |
{
|
sl@0
|
29 |
public:
|
sl@0
|
30 |
/**
|
sl@0
|
31 |
@fn InvariantTest(TAny* aTestObject)
|
sl@0
|
32 |
Intended Usage : Checks if CRegistrar has violated any of its invariants.
|
sl@0
|
33 |
@since 7.0
|
sl@0
|
34 |
@param TAny* A pointer to the object under test.
|
sl@0
|
35 |
@return TInt KErrNone if the invariants were valid, error code otherwise.
|
sl@0
|
36 |
@pre TRegistrar_StateAccessor is fully constructed.
|
sl@0
|
37 |
@post The class under test is set to the state specified.
|
sl@0
|
38 |
*/
|
sl@0
|
39 |
inline TInt InvariantTest(TAny* aTestObject);
|
sl@0
|
40 |
|
sl@0
|
41 |
/**
|
sl@0
|
42 |
@fn Internalize(TAny* aTestObject)
|
sl@0
|
43 |
Intended Usage : Implemented by the developer to set the state of the object under test.
|
sl@0
|
44 |
@since 7.0
|
sl@0
|
45 |
@param TAny* A pointer to the object under test.
|
sl@0
|
46 |
@return TInt KErrNone if the state was set, error code otherwise.
|
sl@0
|
47 |
@pre TRegistrar_StateAccessor is fully constructed.
|
sl@0
|
48 |
@post The class under test is set to the state specified.
|
sl@0
|
49 |
*/
|
sl@0
|
50 |
inline TInt Internalize(TAny* aTestObject);
|
sl@0
|
51 |
|
sl@0
|
52 |
/**
|
sl@0
|
53 |
@fn Externalize(TAny* aTestObject)
|
sl@0
|
54 |
Intended Usage : Implemented by the developer to persist the state of the object under test.
|
sl@0
|
55 |
@since 7.0
|
sl@0
|
56 |
@param TAny* A pointer to the object under test.
|
sl@0
|
57 |
@return TInt KErrNone if the state was persisted, error code otherwise.
|
sl@0
|
58 |
@pre TRegistrar_StateAccessor is fully constructed.
|
sl@0
|
59 |
@post No change to the class under test.
|
sl@0
|
60 |
*/
|
sl@0
|
61 |
inline TInt Externalize(TAny* aTestObject);
|
sl@0
|
62 |
|
sl@0
|
63 |
/**
|
sl@0
|
64 |
@fn void ParseL(CRegistrar& aRegistrar, CRegistryData::CDllData& aDll, const TDesC& aRscFileName)
|
sl@0
|
65 |
Intended Usage :
|
sl@0
|
66 |
Error Condition :
|
sl@0
|
67 |
@since 7.0
|
sl@0
|
68 |
@param aRegistrar @see CRegistrar::ParseL
|
sl@0
|
69 |
@param aDll @see CRegistrar::ParseL
|
sl@0
|
70 |
@param aRscFileName @see CRegistrar::ParseL
|
sl@0
|
71 |
@pre This object is fully constructed
|
sl@0
|
72 |
@post The private method ParseL is executed on aRegistrar
|
sl@0
|
73 |
*/
|
sl@0
|
74 |
void ParseL(CRegistrar& aRegistrar, CRegistryData::CDllData& aDll, const TDesC& aRscFileName);
|
sl@0
|
75 |
|
sl@0
|
76 |
/**
|
sl@0
|
77 |
@fn void ParseRegistrationDataL(CRegistrar& aRegistrar, const TEntry& anEntry, const TDesC& aRscFileName, const TDriveUnit& aDrive, TBool aUpdate, TInt aRegistryDriveIndex)
|
sl@0
|
78 |
Intended Usage :
|
sl@0
|
79 |
Error Condition :
|
sl@0
|
80 |
@since 7.0
|
sl@0
|
81 |
@param aRegistrar " "
|
sl@0
|
82 |
@param aEntry @see CRegistrar::ParseRegistrationDataL
|
sl@0
|
83 |
@param aRscFileName @see CRegistrar::ParseRegistrationDataL
|
sl@0
|
84 |
@param aDrive @see CRegistrar::ParseRegistrationDataL
|
sl@0
|
85 |
@param aUpdate @see CRegistrar::ParseRegistrationDataL
|
sl@0
|
86 |
@param aRegistryDriveIndex @see CRegistrar::ParseRegistrationDataL
|
sl@0
|
87 |
@pre This object is fully constructed
|
sl@0
|
88 |
@post The private method ParseRegistrationDataL is executed on aRegistrar
|
sl@0
|
89 |
*/
|
sl@0
|
90 |
void ParseRegistrationDataL(CRegistrar& aRegistrar, const TEntry& aEntry,
|
sl@0
|
91 |
const TDesC& aRscFileName, const TDriveUnit& aDrive,
|
sl@0
|
92 |
TBool aUpdate, TInt aRegistryDriveIndex);
|
sl@0
|
93 |
|
sl@0
|
94 |
// Internal methods access
|
sl@0
|
95 |
void DiscoveriesBegin(CRegistrar& aRegistrar);
|
sl@0
|
96 |
|
sl@0
|
97 |
void DiscoveriesComplete(CRegistrar& aRegistrar, TBool aSuccessful);
|
sl@0
|
98 |
|
sl@0
|
99 |
void DriveRemoved(CRegistrar& aRegistrar, TDriveUnit aDrive);
|
sl@0
|
100 |
|
sl@0
|
101 |
void DriveReinstatedL(CRegistrar& aRegistrar, TDriveUnit aDrive);
|
sl@0
|
102 |
|
sl@0
|
103 |
void RegisterDiscoveryL(CRegistrar& aRegistrar, const TEntry& aEntry);
|
sl@0
|
104 |
|
sl@0
|
105 |
}; // TRegistrar_StateAccessor
|
sl@0
|
106 |
|
sl@0
|
107 |
#include "RegistrarStateAccessor.inl"
|
sl@0
|
108 |
|
sl@0
|
109 |
#endif // __REGISTRARSTATEACCESSOR_H__
|