sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // The implementation of the accessor class upon the CComponentTester sl@0: // sl@0: // sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: _LIT(KTComponentTester_DumpName,"C:\\System\\Data\\Logs\\TComponentTester_StateDump.bin"); sl@0: sl@0: inline TInt TComponentTester_StateAccessor::InvariantTest(TAny* aTestObject) sl@0: { sl@0: if(aTestObject) sl@0: { sl@0: CComponentTester* theComponentTester = REINTERPRET_CAST(CComponentTester*, aTestObject); sl@0: if(theComponentTester->iUnitTests == NULL) sl@0: return KTestBedFailedInvariant; sl@0: } sl@0: return KErrNone; sl@0: } sl@0: sl@0: inline TInt TComponentTester_StateAccessor::Internalize(TAny* aTestObject) sl@0: { sl@0: TInt error = KErrNone; sl@0: if(aTestObject != NULL) sl@0: { sl@0: CComponentTester* ComponentTester = REINTERPRET_CAST(CComponentTester*, aTestObject); sl@0: TRAP(error,InternalizeL(ComponentTester)); sl@0: } sl@0: return error; sl@0: } sl@0: sl@0: inline TInt TComponentTester_StateAccessor::Externalize(TAny* aTestObject) sl@0: { sl@0: TInt error = KErrNone; sl@0: if(aTestObject != NULL) sl@0: { sl@0: CComponentTester* ComponentTester = REINTERPRET_CAST(CComponentTester*, aTestObject); sl@0: TRAP(error,ExternalizeL(ComponentTester)); sl@0: } sl@0: return error; sl@0: } sl@0: sl@0: inline void TComponentTester_StateAccessor::InternalizeL(RFileReadStream& /* aStream */, CComponentTester* /* aLoadManager */) sl@0: { sl@0: // Not required sl@0: } sl@0: sl@0: inline void TComponentTester_StateAccessor::ExternalizeL(RFileWriteStream& /* aStream */, CComponentTester* /* aLoadManager */) sl@0: { sl@0: // Not required sl@0: } sl@0: sl@0: sl@0: inline CComponentTesterTestDerivation::CComponentTesterTestDerivation(CDataLogger& aDataLogger, MComponentTestObserver& aObserver) sl@0: : CComponentTester(aDataLogger, aObserver) sl@0: { sl@0: } sl@0: sl@0: inline void CComponentTesterTestDerivation::ConstructL() sl@0: { sl@0: ComponentTesterConstructL(); sl@0: } sl@0: sl@0: inline CComponentTesterTestDerivation* TComponentTester_StateAccessor::CreateComponentTester(CComponentTester& /*aCompTest*/, sl@0: CDataLogger& aDataLogger, sl@0: MComponentTestObserver& aObserver) sl@0: { sl@0: return new(ELeave)CComponentTesterTestDerivation(aDataLogger, aObserver); sl@0: } sl@0: sl@0: inline void TComponentTester_StateAccessor::AddUnitTestL(CComponentTester& aCompTest, CUnitTest* aUnitTest) sl@0: { sl@0: aCompTest.AddUnitTestL(aUnitTest); sl@0: } sl@0: sl@0: inline void TComponentTester_StateAccessor::AddParamUnitTestL(CComponentTester& aCompTest, CUnitTest* aUnitTest) sl@0: { sl@0: aCompTest.AddParamUnitTestL(aUnitTest); sl@0: } sl@0: sl@0: inline void TComponentTester_StateAccessor::RunL(CComponentTester& aCompTest) sl@0: { sl@0: aCompTest.RunL(); sl@0: } sl@0: sl@0: // internal helpers sl@0: inline void TComponentTester_StateAccessor::InternalizeL(CComponentTester* aComponentTester) sl@0: { sl@0: // Read in the dumped data sl@0: RFs fs; sl@0: User::LeaveIfError(fs.Connect()); sl@0: CleanupClosePushL(fs); sl@0: // Read the object dump sl@0: TParse filename; sl@0: filename.Set(KTComponentTester_DumpName(),NULL,NULL); sl@0: RFileReadStream stream; sl@0: User::LeaveIfError(stream.Open(fs,filename.FullName(), EFileRead)); sl@0: CleanupClosePushL(stream); sl@0: InternalizeL(stream, aComponentTester); sl@0: CleanupStack::PopAndDestroy(2); // stream & fs sl@0: } sl@0: sl@0: inline void TComponentTester_StateAccessor::ExternalizeL(CComponentTester* aComponentTester) sl@0: { sl@0: RFs fs; sl@0: User::LeaveIfError(fs.Connect()); sl@0: CleanupClosePushL(fs); sl@0: // Write out the object dump sl@0: TParse filename; sl@0: filename.Set(KTComponentTester_DumpName(),NULL,NULL); sl@0: RFileWriteStream stream; sl@0: User::LeaveIfError(stream.Replace(fs,filename.FullName(), EFileWrite)); sl@0: CleanupClosePushL(stream); sl@0: ExternalizeL(stream, aComponentTester); sl@0: CleanupStack::PopAndDestroy(2); // stream & fs sl@0: } sl@0: