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