os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentTesterTest/ComponentTesterStateAccessor.inl
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.
14 // The implementation of the accessor class upon the CComponentTester
18 // ______________________________________________________________________________
20 _LIT(KTComponentTester_DumpName,"C:\\System\\Data\\Logs\\TComponentTester_StateDump.bin");
22 inline TInt TComponentTester_StateAccessor::InvariantTest(TAny* aTestObject)
26 CComponentTester* theComponentTester = REINTERPRET_CAST(CComponentTester*, aTestObject);
27 if(theComponentTester->iUnitTests == NULL)
28 return KTestBedFailedInvariant;
33 inline TInt TComponentTester_StateAccessor::Internalize(TAny* aTestObject)
35 TInt error = KErrNone;
36 if(aTestObject != NULL)
38 CComponentTester* ComponentTester = REINTERPRET_CAST(CComponentTester*, aTestObject);
39 TRAP(error,InternalizeL(ComponentTester));
44 inline TInt TComponentTester_StateAccessor::Externalize(TAny* aTestObject)
46 TInt error = KErrNone;
47 if(aTestObject != NULL)
49 CComponentTester* ComponentTester = REINTERPRET_CAST(CComponentTester*, aTestObject);
50 TRAP(error,ExternalizeL(ComponentTester));
55 inline void TComponentTester_StateAccessor::InternalizeL(RFileReadStream& /* aStream */, CComponentTester* /* aLoadManager */)
60 inline void TComponentTester_StateAccessor::ExternalizeL(RFileWriteStream& /* aStream */, CComponentTester* /* aLoadManager */)
66 inline CComponentTesterTestDerivation::CComponentTesterTestDerivation(CDataLogger& aDataLogger, MComponentTestObserver& aObserver)
67 : CComponentTester(aDataLogger, aObserver)
71 inline void CComponentTesterTestDerivation::ConstructL()
73 ComponentTesterConstructL();
76 inline CComponentTesterTestDerivation* TComponentTester_StateAccessor::CreateComponentTester(CComponentTester& /*aCompTest*/,
77 CDataLogger& aDataLogger,
78 MComponentTestObserver& aObserver)
80 return new(ELeave)CComponentTesterTestDerivation(aDataLogger, aObserver);
83 inline void TComponentTester_StateAccessor::AddUnitTestL(CComponentTester& aCompTest, CUnitTest* aUnitTest)
85 aCompTest.AddUnitTestL(aUnitTest);
88 inline void TComponentTester_StateAccessor::AddParamUnitTestL(CComponentTester& aCompTest, CUnitTest* aUnitTest)
90 aCompTest.AddParamUnitTestL(aUnitTest);
93 inline void TComponentTester_StateAccessor::RunL(CComponentTester& aCompTest)
99 inline void TComponentTester_StateAccessor::InternalizeL(CComponentTester* aComponentTester)
101 // Read in the dumped data
103 User::LeaveIfError(fs.Connect());
104 CleanupClosePushL(fs);
105 // Read the object dump
107 filename.Set(KTComponentTester_DumpName(),NULL,NULL);
108 RFileReadStream stream;
109 User::LeaveIfError(stream.Open(fs,filename.FullName(), EFileRead));
110 CleanupClosePushL(stream);
111 InternalizeL(stream, aComponentTester);
112 CleanupStack::PopAndDestroy(2); // stream & fs
115 inline void TComponentTester_StateAccessor::ExternalizeL(CComponentTester* aComponentTester)
118 User::LeaveIfError(fs.Connect());
119 CleanupClosePushL(fs);
120 // Write out the object dump
122 filename.Set(KTComponentTester_DumpName(),NULL,NULL);
123 RFileWriteStream stream;
124 User::LeaveIfError(stream.Replace(fs,filename.FullName(), EFileWrite));
125 CleanupClosePushL(stream);
126 ExternalizeL(stream, aComponentTester);
127 CleanupStack::PopAndDestroy(2); // stream & fs