os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestManagerTest/TestManagerStateAccessor.inl
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestManagerTest/TestManagerStateAccessor.inl Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,112 @@
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 CTestManager
1.18 +//
1.19 +//
1.20 +
1.21 +// ______________________________________________________________________________
1.22 +//
1.23 +_LIT(KTTestManager_DumpName,"C:\\System\\Data\\Logs\\TTestManager_StateDump.bin");
1.24 +
1.25 +inline TInt TTestManager_StateAccessor::InvariantTest(TAny* aTestObject)
1.26 + {
1.27 + if(aTestObject)
1.28 + {
1.29 + CTestManager* theTestManager = REINTERPRET_CAST(CTestManager*, aTestObject);
1.30 + if(theTestManager->iTestList == NULL)
1.31 + return KErrArgument;
1.32 + }
1.33 + return KErrNone;
1.34 + }
1.35 +
1.36 +inline TInt TTestManager_StateAccessor::Internalize(TAny* aTestObject)
1.37 + {
1.38 + TInt error = KErrNone;
1.39 + if(aTestObject != NULL)
1.40 + {
1.41 + CTestManager* theTestManager = REINTERPRET_CAST(CTestManager*, aTestObject);
1.42 + TRAP(error,InternalizeL(theTestManager));
1.43 + }
1.44 + return error;
1.45 + }
1.46 +
1.47 +inline TInt TTestManager_StateAccessor::Externalize(TAny* aTestObject)
1.48 + {
1.49 + TInt error = KErrNone;
1.50 + if(aTestObject != NULL)
1.51 + {
1.52 + CTestManager* theTestManager = REINTERPRET_CAST(CTestManager*, aTestObject);
1.53 + TRAP(error,ExternalizeL(theTestManager));
1.54 + }
1.55 + return error;
1.56 + }
1.57 +
1.58 +inline void TTestManager_StateAccessor::InternalizeL(RFileReadStream& /* aStream */, CTestManager* /* aLoadManager */)
1.59 + {
1.60 + // Not required
1.61 + }
1.62 +
1.63 +inline void TTestManager_StateAccessor::ExternalizeL(RFileWriteStream& /* aStream */, CTestManager* /* aLoadManager */)
1.64 + {
1.65 + // Not required
1.66 + }
1.67 +
1.68 +inline void TTestManager_StateAccessor::RunL(CTestManager& aTestMan)
1.69 + {
1.70 + aTestMan.RunL();
1.71 + }
1.72 +
1.73 +inline void TTestManager_StateAccessor::TestComponentL(CTestManager& aTestMan, TInt& aComponentIndex)
1.74 + {
1.75 + aTestMan.TestComponentL(aComponentIndex);
1.76 + }
1.77 +
1.78 +inline void TTestManager_StateAccessor::ActivateManager(CTestManager& aTestMan)
1.79 + {
1.80 + aTestMan.SetActive();
1.81 + aTestMan.iStatus = KRequestPending;
1.82 + }
1.83 +
1.84 +// internal helpers
1.85 +inline void TTestManager_StateAccessor::InternalizeL(CTestManager* aTestManager)
1.86 + {
1.87 + // Read in the dumped data
1.88 + RFs fs;
1.89 + User::LeaveIfError(fs.Connect());
1.90 + CleanupClosePushL(fs);
1.91 + // Read the object dump
1.92 + TParse filename;
1.93 + filename.Set(KTTestManager_DumpName(),NULL,NULL);
1.94 + RFileReadStream stream;
1.95 + User::LeaveIfError(stream.Open(fs,filename.FullName(), EFileRead));
1.96 + CleanupClosePushL(stream);
1.97 + InternalizeL(stream, aTestManager);
1.98 + CleanupStack::PopAndDestroy(2); // stream & fs
1.99 + }
1.100 +
1.101 +inline void TTestManager_StateAccessor::ExternalizeL(CTestManager* aTestManager)
1.102 + {
1.103 + RFs fs;
1.104 + User::LeaveIfError(fs.Connect());
1.105 + CleanupClosePushL(fs);
1.106 + // Write out the object dump
1.107 + TParse filename;
1.108 + filename.Set(KTTestManager_DumpName(),NULL,NULL);
1.109 + RFileWriteStream stream;
1.110 + User::LeaveIfError(stream.Replace(fs,filename.FullName(), EFileWrite));
1.111 + CleanupClosePushL(stream);
1.112 + ExternalizeL(stream, aTestManager);
1.113 + CleanupStack::PopAndDestroy(2); // stream & fs
1.114 + }
1.115 +