os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistryDataTest/RegistryDataStateAccessor.cpp
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
17 #include "RegistryDataStateAccessor.h"
18 #include "TestUtilities.h" // For __FILE__LINE__
20 // ______________________________________________________________________________
22 TInt TRegistryData_StateAccessor::InvariantTest(TAny* aTestObject)
24 CRegistryData* regData = REINTERPRET_CAST(CRegistryData*, aTestObject);
25 if(regData->iRegistrations == NULL)
26 return KTestBedFailedInvariant;
30 TInt TRegistryData_StateAccessor::Internalize(TAny* /* aTestObject */)
36 TInt TRegistryData_StateAccessor::Externalize(TAny* /* aTestObject */)
42 inline void TRegistryData_StateAccessor::BuildIndexesL(CRegistryData& aRegData)
44 aRegData.BuildIndexesL();
47 inline TInt TRegistryData_StateAccessor::IndexedFind(CRegistryData& aRegData, const TUid& aImplementationUid)
49 return aRegData.IndexedFind(aImplementationUid);
52 inline TBool TRegistryData_StateAccessor::MatchOnUid()
54 return CRegistryData::MatchOnUid(iIndexItem, iKey);
57 inline void TRegistryData_StateAccessor::RestoreL(CRegistryData& aRegData, RFileReadStream& aStore)
59 aRegData.RestoreL(aStore);
62 inline void TRegistryData_StateAccessor::StoreL(CRegistryData& aRegData, RFileWriteStream& aStore)
64 aRegData.StoreL(aStore);
67 TBool TRegistryData_StateAccessor::IsRegisteredDrive(CRegistryData& aRegData,
68 TDriveUnit aDriveUnit)
70 TInt driveIndex = KErrNotFound;
71 const TInt driveCount = aRegData.iRegistrations->Count();
72 for(TInt index = 0; (index<driveCount) && (driveIndex==KErrNotFound); ++index)
74 if((*(aRegData.iRegistrations))[index]->iDrive == aDriveUnit)
78 // Return ETrue if the drive has been found
79 return driveIndex != KErrNotFound;