os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistryDataTest/RegistryDataStateAccessor.cpp
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 //
    15 
    16 
    17 #include "RegistryDataStateAccessor.h"
    18 #include "TestUtilities.h"	// For __FILE__LINE__
    19 
    20 // ______________________________________________________________________________
    21 //
    22 TInt TRegistryData_StateAccessor::InvariantTest(TAny* aTestObject)
    23 	{
    24 	CRegistryData* regData = REINTERPRET_CAST(CRegistryData*, aTestObject);
    25 	if(regData->iRegistrations == NULL)
    26 		return KTestBedFailedInvariant;
    27 	return KErrNone;
    28 	}
    29 
    30 TInt TRegistryData_StateAccessor::Internalize(TAny* /* aTestObject */)
    31 	{
    32 	// Not required
    33 	return KErrNone;
    34 	}
    35 
    36 TInt TRegistryData_StateAccessor::Externalize(TAny* /* aTestObject */)
    37 	{
    38 	// Not required
    39 	return KErrNone;
    40 	}
    41 
    42 inline void TRegistryData_StateAccessor::BuildIndexesL(CRegistryData& aRegData)
    43 	{
    44 	aRegData.BuildIndexesL();
    45 	}
    46 
    47 inline TInt TRegistryData_StateAccessor::IndexedFind(CRegistryData& aRegData, const TUid& aImplementationUid)
    48 	{
    49 	return aRegData.IndexedFind(aImplementationUid);
    50 	}
    51 
    52 inline TBool TRegistryData_StateAccessor::MatchOnUid()
    53 	{
    54 	return CRegistryData::MatchOnUid(iIndexItem, iKey);
    55 	}
    56 
    57 inline void TRegistryData_StateAccessor::RestoreL(CRegistryData& aRegData, RFileReadStream& aStore)
    58 	{
    59 	aRegData.RestoreL(aStore);
    60 	}
    61 
    62 inline void TRegistryData_StateAccessor::StoreL(CRegistryData& aRegData, RFileWriteStream& aStore)
    63 	{
    64 	aRegData.StoreL(aStore);
    65 	}
    66 
    67 TBool TRegistryData_StateAccessor::IsRegisteredDrive(CRegistryData& aRegData, 
    68 													 TDriveUnit aDriveUnit)
    69 	{
    70 	TInt driveIndex = KErrNotFound;
    71 	const TInt driveCount = aRegData.iRegistrations->Count();
    72 	for(TInt index = 0; (index<driveCount) && (driveIndex==KErrNotFound); ++index)
    73 		{
    74 		if((*(aRegData.iRegistrations))[index]->iDrive == aDriveUnit)
    75 			driveIndex = index;
    76 		}
    77 
    78 	// Return ETrue if the drive has been found
    79 	return driveIndex != KErrNotFound;
    80 	}
    81