os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistryDataTest/RegistryDataStateAccessor.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistryDataTest/RegistryDataStateAccessor.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,81 @@
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 +//
1.18 +
1.19 +
1.20 +#include "RegistryDataStateAccessor.h"
1.21 +#include "TestUtilities.h" // For __FILE__LINE__
1.22 +
1.23 +// ______________________________________________________________________________
1.24 +//
1.25 +TInt TRegistryData_StateAccessor::InvariantTest(TAny* aTestObject)
1.26 + {
1.27 + CRegistryData* regData = REINTERPRET_CAST(CRegistryData*, aTestObject);
1.28 + if(regData->iRegistrations == NULL)
1.29 + return KTestBedFailedInvariant;
1.30 + return KErrNone;
1.31 + }
1.32 +
1.33 +TInt TRegistryData_StateAccessor::Internalize(TAny* /* aTestObject */)
1.34 + {
1.35 + // Not required
1.36 + return KErrNone;
1.37 + }
1.38 +
1.39 +TInt TRegistryData_StateAccessor::Externalize(TAny* /* aTestObject */)
1.40 + {
1.41 + // Not required
1.42 + return KErrNone;
1.43 + }
1.44 +
1.45 +inline void TRegistryData_StateAccessor::BuildIndexesL(CRegistryData& aRegData)
1.46 + {
1.47 + aRegData.BuildIndexesL();
1.48 + }
1.49 +
1.50 +inline TInt TRegistryData_StateAccessor::IndexedFind(CRegistryData& aRegData, const TUid& aImplementationUid)
1.51 + {
1.52 + return aRegData.IndexedFind(aImplementationUid);
1.53 + }
1.54 +
1.55 +inline TBool TRegistryData_StateAccessor::MatchOnUid()
1.56 + {
1.57 + return CRegistryData::MatchOnUid(iIndexItem, iKey);
1.58 + }
1.59 +
1.60 +inline void TRegistryData_StateAccessor::RestoreL(CRegistryData& aRegData, RFileReadStream& aStore)
1.61 + {
1.62 + aRegData.RestoreL(aStore);
1.63 + }
1.64 +
1.65 +inline void TRegistryData_StateAccessor::StoreL(CRegistryData& aRegData, RFileWriteStream& aStore)
1.66 + {
1.67 + aRegData.StoreL(aStore);
1.68 + }
1.69 +
1.70 +TBool TRegistryData_StateAccessor::IsRegisteredDrive(CRegistryData& aRegData,
1.71 + TDriveUnit aDriveUnit)
1.72 + {
1.73 + TInt driveIndex = KErrNotFound;
1.74 + const TInt driveCount = aRegData.iRegistrations->Count();
1.75 + for(TInt index = 0; (index<driveCount) && (driveIndex==KErrNotFound); ++index)
1.76 + {
1.77 + if((*(aRegData.iRegistrations))[index]->iDrive == aDriveUnit)
1.78 + driveIndex = index;
1.79 + }
1.80 +
1.81 + // Return ETrue if the drive has been found
1.82 + return driveIndex != KErrNotFound;
1.83 + }
1.84 +