os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestControllerTest/TestControllerStateAccessor.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // The implementation of the accessor class upon the CTestController
    15 // 
    16 //
    17 
    18 // ______________________________________________________________________________
    19 //
    20 _LIT(KTTestController_DumpName,"C:\\System\\Data\\Logs\\TTestController_StateDump.bin");
    21 
    22 inline TInt TTestController_StateAccessor::InvariantTest(TAny* aTestObject)
    23 	{
    24 	if(aTestObject)
    25 		{
    26 		CTestController* TestController = REINTERPRET_CAST(CTestController*, aTestObject);
    27 		if (TestController->iDataLogger == NULL ||
    28 			TestController->iScheduler == NULL ||
    29 			TestController->iTestManager == NULL)
    30 			return KTestBedFailedInvariant;
    31 		}
    32 	return KErrNone;
    33 	}
    34 
    35 inline TInt TTestController_StateAccessor::Internalize(TAny* aTestObject)
    36 	{
    37 	TInt error = KErrNone;
    38 	if(aTestObject != NULL)
    39 		{
    40 		CTestController* TestController = REINTERPRET_CAST(CTestController*, aTestObject);
    41 		TRAP(error,InternalizeL(TestController));
    42 		}
    43 	return error;
    44 	}
    45 
    46 inline TInt TTestController_StateAccessor::Externalize(TAny* aTestObject)
    47 	{
    48 	TInt error = KErrNone;
    49 	if(aTestObject != NULL)
    50 		{
    51 		CTestController* TestController = REINTERPRET_CAST(CTestController*, aTestObject);
    52 		TRAP(error,ExternalizeL(TestController));
    53 		}
    54 	return error;
    55 	}
    56 
    57 inline void TTestController_StateAccessor::InternalizeL(RFileReadStream& /* aStream */, CTestController* /* aLoadManager */)
    58 	{
    59 	// Not required
    60 	}
    61 
    62 inline void TTestController_StateAccessor::ExternalizeL(RFileWriteStream& /* aStream */, CTestController* /* aLoadManager */)
    63 	{
    64 	// Not required
    65 	}
    66 
    67 // internal helpers
    68 inline void TTestController_StateAccessor::InternalizeL(CTestController* aTestController)
    69 	{
    70 	// Read in the dumped data
    71 	RFs fs;
    72 	User::LeaveIfError(fs.Connect());
    73 	CleanupClosePushL(fs);
    74 	// Read the object dump
    75 	TParse filename;
    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
    82 	}
    83 
    84 inline void TTestController_StateAccessor::ExternalizeL(CTestController* aTestController)
    85 	{
    86 	RFs fs;
    87 	User::LeaveIfError(fs.Connect());
    88 	CleanupClosePushL(fs);
    89 	// Write out the object dump
    90 	TParse filename;
    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
    97 	}
    98