sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// The implementation of the accessor class upon the CTestController
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
// ______________________________________________________________________________
|
sl@0
|
19 |
//
|
sl@0
|
20 |
_LIT(KTTestController_DumpName,"C:\\System\\Data\\Logs\\TTestController_StateDump.bin");
|
sl@0
|
21 |
|
sl@0
|
22 |
inline TInt TTestController_StateAccessor::InvariantTest(TAny* aTestObject)
|
sl@0
|
23 |
{
|
sl@0
|
24 |
if(aTestObject)
|
sl@0
|
25 |
{
|
sl@0
|
26 |
CTestController* TestController = REINTERPRET_CAST(CTestController*, aTestObject);
|
sl@0
|
27 |
if (TestController->iDataLogger == NULL ||
|
sl@0
|
28 |
TestController->iScheduler == NULL ||
|
sl@0
|
29 |
TestController->iTestManager == NULL)
|
sl@0
|
30 |
return KTestBedFailedInvariant;
|
sl@0
|
31 |
}
|
sl@0
|
32 |
return KErrNone;
|
sl@0
|
33 |
}
|
sl@0
|
34 |
|
sl@0
|
35 |
inline TInt TTestController_StateAccessor::Internalize(TAny* aTestObject)
|
sl@0
|
36 |
{
|
sl@0
|
37 |
TInt error = KErrNone;
|
sl@0
|
38 |
if(aTestObject != NULL)
|
sl@0
|
39 |
{
|
sl@0
|
40 |
CTestController* TestController = REINTERPRET_CAST(CTestController*, aTestObject);
|
sl@0
|
41 |
TRAP(error,InternalizeL(TestController));
|
sl@0
|
42 |
}
|
sl@0
|
43 |
return error;
|
sl@0
|
44 |
}
|
sl@0
|
45 |
|
sl@0
|
46 |
inline TInt TTestController_StateAccessor::Externalize(TAny* aTestObject)
|
sl@0
|
47 |
{
|
sl@0
|
48 |
TInt error = KErrNone;
|
sl@0
|
49 |
if(aTestObject != NULL)
|
sl@0
|
50 |
{
|
sl@0
|
51 |
CTestController* TestController = REINTERPRET_CAST(CTestController*, aTestObject);
|
sl@0
|
52 |
TRAP(error,ExternalizeL(TestController));
|
sl@0
|
53 |
}
|
sl@0
|
54 |
return error;
|
sl@0
|
55 |
}
|
sl@0
|
56 |
|
sl@0
|
57 |
inline void TTestController_StateAccessor::InternalizeL(RFileReadStream& /* aStream */, CTestController* /* aLoadManager */)
|
sl@0
|
58 |
{
|
sl@0
|
59 |
// Not required
|
sl@0
|
60 |
}
|
sl@0
|
61 |
|
sl@0
|
62 |
inline void TTestController_StateAccessor::ExternalizeL(RFileWriteStream& /* aStream */, CTestController* /* aLoadManager */)
|
sl@0
|
63 |
{
|
sl@0
|
64 |
// Not required
|
sl@0
|
65 |
}
|
sl@0
|
66 |
|
sl@0
|
67 |
// internal helpers
|
sl@0
|
68 |
inline void TTestController_StateAccessor::InternalizeL(CTestController* aTestController)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
// Read in the dumped data
|
sl@0
|
71 |
RFs fs;
|
sl@0
|
72 |
User::LeaveIfError(fs.Connect());
|
sl@0
|
73 |
CleanupClosePushL(fs);
|
sl@0
|
74 |
// Read the object dump
|
sl@0
|
75 |
TParse filename;
|
sl@0
|
76 |
filename.Set(KTTestController_DumpName(),NULL,NULL);
|
sl@0
|
77 |
RFileReadStream stream;
|
sl@0
|
78 |
User::LeaveIfError(stream.Open(fs,filename.FullName(), EFileRead));
|
sl@0
|
79 |
CleanupClosePushL(stream);
|
sl@0
|
80 |
InternalizeL(stream, aTestController);
|
sl@0
|
81 |
CleanupStack::PopAndDestroy(2); // stream & fs
|
sl@0
|
82 |
}
|
sl@0
|
83 |
|
sl@0
|
84 |
inline void TTestController_StateAccessor::ExternalizeL(CTestController* aTestController)
|
sl@0
|
85 |
{
|
sl@0
|
86 |
RFs fs;
|
sl@0
|
87 |
User::LeaveIfError(fs.Connect());
|
sl@0
|
88 |
CleanupClosePushL(fs);
|
sl@0
|
89 |
// Write out the object dump
|
sl@0
|
90 |
TParse filename;
|
sl@0
|
91 |
filename.Set(KTTestController_DumpName(),NULL,NULL);
|
sl@0
|
92 |
RFileWriteStream stream;
|
sl@0
|
93 |
User::LeaveIfError(stream.Replace(fs,filename.FullName(), EFileWrite));
|
sl@0
|
94 |
CleanupClosePushL(stream);
|
sl@0
|
95 |
ExternalizeL(stream, aTestController);
|
sl@0
|
96 |
CleanupStack::PopAndDestroy(2); // stream & fs
|
sl@0
|
97 |
}
|
sl@0
|
98 |
|