sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // The state accessor class definitions for the CRegistrar class. sl@0: // sl@0: // sl@0: sl@0: #ifndef __REGISTRARSTATEACCESSOR_H__ sl@0: #define __REGISTRARSTATEACCESSOR_H__ sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : State accessor for the CRegistrar object under test. sl@0: */ sl@0: class TRegistrar_StateAccessor : public MStateAccessor sl@0: { sl@0: public: sl@0: /** sl@0: @fn InvariantTest(TAny* aTestObject) sl@0: Intended Usage : Checks if CRegistrar has violated any of its invariants. sl@0: @since 7.0 sl@0: @param TAny* A pointer to the object under test. sl@0: @return TInt KErrNone if the invariants were valid, error code otherwise. sl@0: @pre TRegistrar_StateAccessor is fully constructed. sl@0: @post The class under test is set to the state specified. sl@0: */ sl@0: inline TInt InvariantTest(TAny* aTestObject); sl@0: sl@0: /** sl@0: @fn Internalize(TAny* aTestObject) sl@0: Intended Usage : Implemented by the developer to set the state of the object under test. sl@0: @since 7.0 sl@0: @param TAny* A pointer to the object under test. sl@0: @return TInt KErrNone if the state was set, error code otherwise. sl@0: @pre TRegistrar_StateAccessor is fully constructed. sl@0: @post The class under test is set to the state specified. sl@0: */ sl@0: inline TInt Internalize(TAny* aTestObject); sl@0: sl@0: /** sl@0: @fn Externalize(TAny* aTestObject) sl@0: Intended Usage : Implemented by the developer to persist the state of the object under test. sl@0: @since 7.0 sl@0: @param TAny* A pointer to the object under test. sl@0: @return TInt KErrNone if the state was persisted, error code otherwise. sl@0: @pre TRegistrar_StateAccessor is fully constructed. sl@0: @post No change to the class under test. sl@0: */ sl@0: inline TInt Externalize(TAny* aTestObject); sl@0: sl@0: /** sl@0: @fn void ParseL(CRegistrar& aRegistrar, CRegistryData::CDllData& aDll, const TDesC& aRscFileName) sl@0: Intended Usage : sl@0: Error Condition : sl@0: @since 7.0 sl@0: @param aRegistrar @see CRegistrar::ParseL sl@0: @param aDll @see CRegistrar::ParseL sl@0: @param aRscFileName @see CRegistrar::ParseL sl@0: @pre This object is fully constructed sl@0: @post The private method ParseL is executed on aRegistrar sl@0: */ sl@0: void ParseL(CRegistrar& aRegistrar, CRegistryData::CDllData& aDll, const TDesC& aRscFileName); sl@0: sl@0: /** sl@0: @fn void ParseRegistrationDataL(CRegistrar& aRegistrar, const TEntry& anEntry, const TDesC& aRscFileName, const TDriveUnit& aDrive, TBool aUpdate, TInt aRegistryDriveIndex) sl@0: Intended Usage : sl@0: Error Condition : sl@0: @since 7.0 sl@0: @param aRegistrar " " sl@0: @param aEntry @see CRegistrar::ParseRegistrationDataL sl@0: @param aRscFileName @see CRegistrar::ParseRegistrationDataL sl@0: @param aDrive @see CRegistrar::ParseRegistrationDataL sl@0: @param aUpdate @see CRegistrar::ParseRegistrationDataL sl@0: @param aRegistryDriveIndex @see CRegistrar::ParseRegistrationDataL sl@0: @pre This object is fully constructed sl@0: @post The private method ParseRegistrationDataL is executed on aRegistrar sl@0: */ sl@0: void ParseRegistrationDataL(CRegistrar& aRegistrar, const TEntry& aEntry, sl@0: const TDesC& aRscFileName, const TDriveUnit& aDrive, sl@0: TBool aUpdate, TInt aRegistryDriveIndex); sl@0: sl@0: // Internal methods access sl@0: void DiscoveriesBegin(CRegistrar& aRegistrar); sl@0: sl@0: void DiscoveriesComplete(CRegistrar& aRegistrar, TBool aSuccessful); sl@0: sl@0: void DriveRemoved(CRegistrar& aRegistrar, TDriveUnit aDrive); sl@0: sl@0: void DriveReinstatedL(CRegistrar& aRegistrar, TDriveUnit aDrive); sl@0: sl@0: void RegisterDiscoveryL(CRegistrar& aRegistrar, const TEntry& aEntry); sl@0: sl@0: }; // TRegistrar_StateAccessor sl@0: sl@0: #include "RegistrarStateAccessor.inl" sl@0: sl@0: #endif // __REGISTRARSTATEACCESSOR_H__