os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentTesterTest/ComponentTesterStateAccessor.inl
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentTesterTest/ComponentTesterStateAccessor.inl	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,129 @@
     1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// The implementation of the accessor class upon the CComponentTester
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +// ______________________________________________________________________________
    1.22 +//
    1.23 +_LIT(KTComponentTester_DumpName,"C:\\System\\Data\\Logs\\TComponentTester_StateDump.bin");
    1.24 +
    1.25 +inline TInt TComponentTester_StateAccessor::InvariantTest(TAny* aTestObject)
    1.26 +	{
    1.27 +	if(aTestObject)
    1.28 +		{
    1.29 +		CComponentTester* theComponentTester = REINTERPRET_CAST(CComponentTester*, aTestObject);
    1.30 +		if(theComponentTester->iUnitTests == NULL)
    1.31 +			return KTestBedFailedInvariant;
    1.32 +		}
    1.33 +	return KErrNone;
    1.34 +	}
    1.35 +
    1.36 +inline TInt TComponentTester_StateAccessor::Internalize(TAny* aTestObject)
    1.37 +	{
    1.38 +	TInt error = KErrNone;
    1.39 +	if(aTestObject != NULL)
    1.40 +		{
    1.41 +		CComponentTester* ComponentTester = REINTERPRET_CAST(CComponentTester*, aTestObject);
    1.42 +		TRAP(error,InternalizeL(ComponentTester));
    1.43 +		}
    1.44 +	return error;
    1.45 +	}
    1.46 +
    1.47 +inline TInt TComponentTester_StateAccessor::Externalize(TAny* aTestObject)
    1.48 +	{
    1.49 +	TInt error = KErrNone;
    1.50 +	if(aTestObject != NULL)
    1.51 +		{
    1.52 +		CComponentTester* ComponentTester = REINTERPRET_CAST(CComponentTester*, aTestObject);
    1.53 +		TRAP(error,ExternalizeL(ComponentTester));
    1.54 +		}
    1.55 +	return error;
    1.56 +	}
    1.57 +
    1.58 +inline void TComponentTester_StateAccessor::InternalizeL(RFileReadStream& /* aStream */, CComponentTester* /* aLoadManager */)
    1.59 +	{
    1.60 +	// Not required
    1.61 +	}
    1.62 +
    1.63 +inline void TComponentTester_StateAccessor::ExternalizeL(RFileWriteStream& /* aStream */, CComponentTester* /* aLoadManager */)
    1.64 +	{
    1.65 +	// Not required
    1.66 +	}
    1.67 +
    1.68 +
    1.69 +inline CComponentTesterTestDerivation::CComponentTesterTestDerivation(CDataLogger& aDataLogger, MComponentTestObserver& aObserver)
    1.70 +	: CComponentTester(aDataLogger, aObserver)
    1.71 +	{
    1.72 +	}
    1.73 +
    1.74 +inline void CComponentTesterTestDerivation::ConstructL()
    1.75 +	{
    1.76 +	ComponentTesterConstructL();
    1.77 +	}
    1.78 +
    1.79 +inline CComponentTesterTestDerivation* TComponentTester_StateAccessor::CreateComponentTester(CComponentTester& /*aCompTest*/, 
    1.80 +																							 CDataLogger& aDataLogger, 
    1.81 +																							 MComponentTestObserver& aObserver)
    1.82 +	{
    1.83 +	return new(ELeave)CComponentTesterTestDerivation(aDataLogger, aObserver);
    1.84 +	}
    1.85 +
    1.86 +inline void TComponentTester_StateAccessor::AddUnitTestL(CComponentTester& aCompTest, CUnitTest* aUnitTest)
    1.87 +	{
    1.88 +	aCompTest.AddUnitTestL(aUnitTest);
    1.89 +	}
    1.90 +
    1.91 +inline void TComponentTester_StateAccessor::AddParamUnitTestL(CComponentTester& aCompTest, CUnitTest* aUnitTest)
    1.92 +	{
    1.93 +	aCompTest.AddParamUnitTestL(aUnitTest);
    1.94 +	}
    1.95 +
    1.96 +inline void TComponentTester_StateAccessor::RunL(CComponentTester& aCompTest)
    1.97 +	{
    1.98 +	aCompTest.RunL();
    1.99 +	}
   1.100 +
   1.101 +// internal helpers
   1.102 +inline void TComponentTester_StateAccessor::InternalizeL(CComponentTester* aComponentTester)
   1.103 +	{
   1.104 +	// Read in the dumped data
   1.105 +	RFs fs;
   1.106 +	User::LeaveIfError(fs.Connect());
   1.107 +	CleanupClosePushL(fs);
   1.108 +	// Read the object dump
   1.109 +	TParse filename;
   1.110 +	filename.Set(KTComponentTester_DumpName(),NULL,NULL);
   1.111 +	RFileReadStream stream;
   1.112 +	User::LeaveIfError(stream.Open(fs,filename.FullName(), EFileRead));
   1.113 +	CleanupClosePushL(stream);
   1.114 +	InternalizeL(stream, aComponentTester);
   1.115 +	CleanupStack::PopAndDestroy(2);	// stream & fs
   1.116 +	}
   1.117 +
   1.118 +inline void TComponentTester_StateAccessor::ExternalizeL(CComponentTester* aComponentTester)
   1.119 +	{
   1.120 +	RFs fs;
   1.121 +	User::LeaveIfError(fs.Connect());
   1.122 +	CleanupClosePushL(fs);
   1.123 +	// Write out the object dump
   1.124 +	TParse filename;
   1.125 +	filename.Set(KTComponentTester_DumpName(),NULL,NULL);
   1.126 +	RFileWriteStream stream;
   1.127 +	User::LeaveIfError(stream.Replace(fs,filename.FullName(), EFileWrite));
   1.128 +	CleanupClosePushL(stream);
   1.129 +	ExternalizeL(stream, aComponentTester);
   1.130 +	CleanupStack::PopAndDestroy(2);	// stream & fs
   1.131 +	}
   1.132 +