os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistrarTest/RegistrarStateAccessor.h
Update contrib.
1 // Copyright (c) 1997-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.
14 // The state accessor class definitions for the CRegistrar class.
18 #ifndef __REGISTRARSTATEACCESSOR_H__
19 #define __REGISTRARSTATEACCESSOR_H__
21 // ______________________________________________________________________________
25 Comments : State accessor for the CRegistrar object under test.
27 class TRegistrar_StateAccessor : public MStateAccessor
31 @fn InvariantTest(TAny* aTestObject)
32 Intended Usage : Checks if CRegistrar has violated any of its invariants.
34 @param TAny* A pointer to the object under test.
35 @return TInt KErrNone if the invariants were valid, error code otherwise.
36 @pre TRegistrar_StateAccessor is fully constructed.
37 @post The class under test is set to the state specified.
39 inline TInt InvariantTest(TAny* aTestObject);
42 @fn Internalize(TAny* aTestObject)
43 Intended Usage : Implemented by the developer to set the state of the object under test.
45 @param TAny* A pointer to the object under test.
46 @return TInt KErrNone if the state was set, error code otherwise.
47 @pre TRegistrar_StateAccessor is fully constructed.
48 @post The class under test is set to the state specified.
50 inline TInt Internalize(TAny* aTestObject);
53 @fn Externalize(TAny* aTestObject)
54 Intended Usage : Implemented by the developer to persist the state of the object under test.
56 @param TAny* A pointer to the object under test.
57 @return TInt KErrNone if the state was persisted, error code otherwise.
58 @pre TRegistrar_StateAccessor is fully constructed.
59 @post No change to the class under test.
61 inline TInt Externalize(TAny* aTestObject);
64 @fn void ParseL(CRegistrar& aRegistrar, CRegistryData::CDllData& aDll, const TDesC& aRscFileName)
68 @param aRegistrar @see CRegistrar::ParseL
69 @param aDll @see CRegistrar::ParseL
70 @param aRscFileName @see CRegistrar::ParseL
71 @pre This object is fully constructed
72 @post The private method ParseL is executed on aRegistrar
74 void ParseL(CRegistrar& aRegistrar, CRegistryData::CDllData& aDll, const TDesC& aRscFileName);
77 @fn void ParseRegistrationDataL(CRegistrar& aRegistrar, const TEntry& anEntry, const TDesC& aRscFileName, const TDriveUnit& aDrive, TBool aUpdate, TInt aRegistryDriveIndex)
82 @param aEntry @see CRegistrar::ParseRegistrationDataL
83 @param aRscFileName @see CRegistrar::ParseRegistrationDataL
84 @param aDrive @see CRegistrar::ParseRegistrationDataL
85 @param aUpdate @see CRegistrar::ParseRegistrationDataL
86 @param aRegistryDriveIndex @see CRegistrar::ParseRegistrationDataL
87 @pre This object is fully constructed
88 @post The private method ParseRegistrationDataL is executed on aRegistrar
90 void ParseRegistrationDataL(CRegistrar& aRegistrar, const TEntry& aEntry,
91 const TDesC& aRscFileName, const TDriveUnit& aDrive,
92 TBool aUpdate, TInt aRegistryDriveIndex);
94 // Internal methods access
95 void DiscoveriesBegin(CRegistrar& aRegistrar);
97 void DiscoveriesComplete(CRegistrar& aRegistrar, TBool aSuccessful);
99 void DriveRemoved(CRegistrar& aRegistrar, TDriveUnit aDrive);
101 void DriveReinstatedL(CRegistrar& aRegistrar, TDriveUnit aDrive);
103 void RegisterDiscoveryL(CRegistrar& aRegistrar, const TEntry& aEntry);
105 }; // TRegistrar_StateAccessor
107 #include "RegistrarStateAccessor.inl"
109 #endif // __REGISTRARSTATEACCESSOR_H__