os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistrarTest/RegistrarStateAccessor.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistrarTest/RegistrarStateAccessor.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,109 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// The state accessor class definitions for the CRegistrar class.
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __REGISTRARSTATEACCESSOR_H__
1.22 +#define __REGISTRARSTATEACCESSOR_H__
1.23 +
1.24 +// ______________________________________________________________________________
1.25 +//
1.26 +/**
1.27 + @internalComponent
1.28 + Comments : State accessor for the CRegistrar object under test.
1.29 + */
1.30 +class TRegistrar_StateAccessor : public MStateAccessor
1.31 + {
1.32 +public:
1.33 + /**
1.34 + @fn InvariantTest(TAny* aTestObject)
1.35 + Intended Usage : Checks if CRegistrar has violated any of its invariants.
1.36 + @since 7.0
1.37 + @param TAny* A pointer to the object under test.
1.38 + @return TInt KErrNone if the invariants were valid, error code otherwise.
1.39 + @pre TRegistrar_StateAccessor is fully constructed.
1.40 + @post The class under test is set to the state specified.
1.41 + */
1.42 + inline TInt InvariantTest(TAny* aTestObject);
1.43 +
1.44 + /**
1.45 + @fn Internalize(TAny* aTestObject)
1.46 + Intended Usage : Implemented by the developer to set the state of the object under test.
1.47 + @since 7.0
1.48 + @param TAny* A pointer to the object under test.
1.49 + @return TInt KErrNone if the state was set, error code otherwise.
1.50 + @pre TRegistrar_StateAccessor is fully constructed.
1.51 + @post The class under test is set to the state specified.
1.52 + */
1.53 + inline TInt Internalize(TAny* aTestObject);
1.54 +
1.55 + /**
1.56 + @fn Externalize(TAny* aTestObject)
1.57 + Intended Usage : Implemented by the developer to persist the state of the object under test.
1.58 + @since 7.0
1.59 + @param TAny* A pointer to the object under test.
1.60 + @return TInt KErrNone if the state was persisted, error code otherwise.
1.61 + @pre TRegistrar_StateAccessor is fully constructed.
1.62 + @post No change to the class under test.
1.63 + */
1.64 + inline TInt Externalize(TAny* aTestObject);
1.65 +
1.66 +/**
1.67 + @fn void ParseL(CRegistrar& aRegistrar, CRegistryData::CDllData& aDll, const TDesC& aRscFileName)
1.68 + Intended Usage :
1.69 + Error Condition :
1.70 + @since 7.0
1.71 + @param aRegistrar @see CRegistrar::ParseL
1.72 + @param aDll @see CRegistrar::ParseL
1.73 + @param aRscFileName @see CRegistrar::ParseL
1.74 + @pre This object is fully constructed
1.75 + @post The private method ParseL is executed on aRegistrar
1.76 + */
1.77 + void ParseL(CRegistrar& aRegistrar, CRegistryData::CDllData& aDll, const TDesC& aRscFileName);
1.78 +
1.79 +/**
1.80 + @fn void ParseRegistrationDataL(CRegistrar& aRegistrar, const TEntry& anEntry, const TDesC& aRscFileName, const TDriveUnit& aDrive, TBool aUpdate, TInt aRegistryDriveIndex)
1.81 + Intended Usage :
1.82 + Error Condition :
1.83 + @since 7.0
1.84 + @param aRegistrar " "
1.85 + @param aEntry @see CRegistrar::ParseRegistrationDataL
1.86 + @param aRscFileName @see CRegistrar::ParseRegistrationDataL
1.87 + @param aDrive @see CRegistrar::ParseRegistrationDataL
1.88 + @param aUpdate @see CRegistrar::ParseRegistrationDataL
1.89 + @param aRegistryDriveIndex @see CRegistrar::ParseRegistrationDataL
1.90 + @pre This object is fully constructed
1.91 + @post The private method ParseRegistrationDataL is executed on aRegistrar
1.92 + */
1.93 + void ParseRegistrationDataL(CRegistrar& aRegistrar, const TEntry& aEntry,
1.94 + const TDesC& aRscFileName, const TDriveUnit& aDrive,
1.95 + TBool aUpdate, TInt aRegistryDriveIndex);
1.96 +
1.97 +// Internal methods access
1.98 + void DiscoveriesBegin(CRegistrar& aRegistrar);
1.99 +
1.100 + void DiscoveriesComplete(CRegistrar& aRegistrar, TBool aSuccessful);
1.101 +
1.102 + void DriveRemoved(CRegistrar& aRegistrar, TDriveUnit aDrive);
1.103 +
1.104 + void DriveReinstatedL(CRegistrar& aRegistrar, TDriveUnit aDrive);
1.105 +
1.106 + void RegisterDiscoveryL(CRegistrar& aRegistrar, const TEntry& aEntry);
1.107 +
1.108 + }; // TRegistrar_StateAccessor
1.109 +
1.110 +#include "RegistrarStateAccessor.inl"
1.111 +
1.112 +#endif // __REGISTRARSTATEACCESSOR_H__