os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestControllerTest/TestControllerStateAccessor.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 CTestController
18 // ______________________________________________________________________________
20 _LIT(KTTestController_DumpName,"C:\\System\\Data\\Logs\\TTestController_StateDump.bin");
22 inline TInt TTestController_StateAccessor::InvariantTest(TAny* aTestObject)
26 CTestController* TestController = REINTERPRET_CAST(CTestController*, aTestObject);
27 if (TestController->iDataLogger == NULL ||
28 TestController->iScheduler == NULL ||
29 TestController->iTestManager == NULL)
30 return KTestBedFailedInvariant;
35 inline TInt TTestController_StateAccessor::Internalize(TAny* aTestObject)
37 TInt error = KErrNone;
38 if(aTestObject != NULL)
40 CTestController* TestController = REINTERPRET_CAST(CTestController*, aTestObject);
41 TRAP(error,InternalizeL(TestController));
46 inline TInt TTestController_StateAccessor::Externalize(TAny* aTestObject)
48 TInt error = KErrNone;
49 if(aTestObject != NULL)
51 CTestController* TestController = REINTERPRET_CAST(CTestController*, aTestObject);
52 TRAP(error,ExternalizeL(TestController));
57 inline void TTestController_StateAccessor::InternalizeL(RFileReadStream& /* aStream */, CTestController* /* aLoadManager */)
62 inline void TTestController_StateAccessor::ExternalizeL(RFileWriteStream& /* aStream */, CTestController* /* aLoadManager */)
68 inline void TTestController_StateAccessor::InternalizeL(CTestController* aTestController)
70 // Read in the dumped data
72 User::LeaveIfError(fs.Connect());
73 CleanupClosePushL(fs);
74 // Read the object dump
76 filename.Set(KTTestController_DumpName(),NULL,NULL);
77 RFileReadStream stream;
78 User::LeaveIfError(stream.Open(fs,filename.FullName(), EFileRead));
79 CleanupClosePushL(stream);
80 InternalizeL(stream, aTestController);
81 CleanupStack::PopAndDestroy(2); // stream & fs
84 inline void TTestController_StateAccessor::ExternalizeL(CTestController* aTestController)
87 User::LeaveIfError(fs.Connect());
88 CleanupClosePushL(fs);
89 // Write out the object dump
91 filename.Set(KTTestController_DumpName(),NULL,NULL);
92 RFileWriteStream stream;
93 User::LeaveIfError(stream.Replace(fs,filename.FullName(), EFileWrite));
94 CleanupClosePushL(stream);
95 ExternalizeL(stream, aTestController);
96 CleanupStack::PopAndDestroy(2); // stream & fs