os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistrarTest/RegistrarStateAccessor.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Implementation of the state accessor class for the CRegistrar class
    15 // 
    16 //
    17 
    18 // ______________________________________________________________________________
    19 //
    20 inline TInt TRegistrar_StateAccessor::InvariantTest(TAny* aTestObject)
    21 	{
    22 	CRegistrar* registrar = REINTERPRET_CAST(CRegistrar*, aTestObject);
    23 
    24 	// The only invariants over all cases
    25 	if(	registrar						== NULL ||
    26 		registrar->iDiscoverer			== NULL)
    27 		return KTestBedFailedInvariant;
    28 	return KErrNone;
    29 	}
    30 
    31 inline TInt TRegistrar_StateAccessor::Internalize(TAny* /* aTestObject */)
    32 	{
    33 	// No reload state
    34 	return KErrNone;
    35 	}
    36 
    37 inline TInt TRegistrar_StateAccessor::Externalize(TAny* /* aTestObject */)
    38 	{
    39 	// No persistent state yet
    40 	return KErrNone;
    41 	}
    42 
    43 inline void TRegistrar_StateAccessor::ParseL(CRegistrar& aRegistrar, 
    44 											 CRegistryData::CDllData& aDll, 
    45 											 const TDesC& aRscFileName)
    46 	{
    47 	aRegistrar.ParseL(aDll, aRscFileName);
    48 	}
    49 
    50 inline void TRegistrar_StateAccessor::ParseRegistrationDataL(CRegistrar& aRegistrar, 
    51 															 const TEntry& aEntry, 
    52 															 const TDesC& aRscFileName,
    53 															 const TDriveUnit& aDrive,
    54 															 TBool aUpdate,
    55 															 TInt aRegistryDriveIndex)
    56 	{
    57 	aRegistrar.ParseRegistrationDataL(aEntry, aRscFileName, aDrive, aUpdate, aRegistryDriveIndex);
    58 	}
    59 
    60 inline void TRegistrar_StateAccessor::DiscoveriesBegin(CRegistrar& aRegistrar)
    61 	{
    62 	aRegistrar.DiscoveriesBegin();
    63 	}
    64 
    65 inline void TRegistrar_StateAccessor::DiscoveriesComplete(CRegistrar& aRegistrar, TBool aSuccessful)
    66 	{
    67 	aRegistrar.DiscoveriesComplete(aSuccessful);
    68 	}
    69 
    70 inline void TRegistrar_StateAccessor::DriveRemoved(CRegistrar& aRegistrar, TDriveUnit aDrive)
    71 	{
    72 	aRegistrar.DriveRemovedL(aDrive);
    73 	}
    74 
    75 inline void TRegistrar_StateAccessor::DriveReinstatedL(CRegistrar& aRegistrar,
    76 													   TDriveUnit aDrive)
    77 	{
    78 	aRegistrar.DriveReinstatedL(aDrive);
    79 	}
    80 
    81 void TRegistrar_StateAccessor::RegisterDiscoveryL(CRegistrar& aRegistrar, const TEntry& aEntry)
    82 	{
    83 	aRegistrar.RegisterDiscoveryL(aEntry);
    84 	}
    85