os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/DataLoggerTest/DataLoggerStateAccessor.inl
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/DataLoggerTest/DataLoggerStateAccessor.inl Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,97 @@
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 CDataLogger
1.18 +//
1.19 +//
1.20 +
1.21 +// ______________________________________________________________________________
1.22 +//
1.23 +_LIT(KTDataLogger_DumpName,"C:\\System\\Data\\Logs\\TDataLogger_StateDump.bin");
1.24 +
1.25 +inline TInt TDataLogger_StateAccessor::InvariantTest(TAny* aTestObject)
1.26 + {
1.27 + if(aTestObject)
1.28 + {
1.29 + CDataLogger* theDataLogger = REINTERPRET_CAST(CDataLogger*, aTestObject);
1.30 + if( theDataLogger->iLogOutput == NULL ||
1.31 + theDataLogger->iReportOutput == NULL)
1.32 + return KTestBedFailedInvariant;
1.33 + }
1.34 + return KErrNone;
1.35 + }
1.36 +
1.37 +inline TInt TDataLogger_StateAccessor::Internalize(TAny* aTestObject)
1.38 + {
1.39 + TInt error = KErrNone;
1.40 + if(aTestObject != NULL)
1.41 + {
1.42 + CDataLogger* theDataLogger = REINTERPRET_CAST(CDataLogger*, aTestObject);
1.43 + TRAP(error,InternalizeL(theDataLogger));
1.44 + }
1.45 + return error;
1.46 + }
1.47 +
1.48 +inline TInt TDataLogger_StateAccessor::Externalize(TAny* aTestObject)
1.49 + {
1.50 + TInt error = KErrNone;
1.51 + if(aTestObject != NULL)
1.52 + {
1.53 + CDataLogger* theDataLogger = REINTERPRET_CAST(CDataLogger*, aTestObject);
1.54 + TRAP(error,ExternalizeL(theDataLogger));
1.55 + }
1.56 + return error;
1.57 + }
1.58 +
1.59 +inline void TDataLogger_StateAccessor::InternalizeL(RFileReadStream& /* aStream */, CDataLogger* /* aLoadManager */)
1.60 + {
1.61 + // There is nothing to restore
1.62 + }
1.63 +
1.64 +inline void TDataLogger_StateAccessor::ExternalizeL(RFileWriteStream& /* aStream */, CDataLogger* /* aLoadManager */)
1.65 + {
1.66 + // There is nothing to persist
1.67 + }
1.68 +
1.69 +// internal helpers
1.70 +inline void TDataLogger_StateAccessor::InternalizeL(CDataLogger* aDataLogger)
1.71 + {
1.72 + // Read in the dumped data
1.73 + RFs fs;
1.74 + User::LeaveIfError(fs.Connect());
1.75 + CleanupClosePushL(fs);
1.76 + // Read the object dump
1.77 + TParse filename;
1.78 + filename.Set(KTDataLogger_DumpName(),NULL,NULL);
1.79 + RFileReadStream stream;
1.80 + User::LeaveIfError(stream.Open(fs,filename.FullName(), EFileRead));
1.81 + CleanupClosePushL(stream);
1.82 + InternalizeL(stream, aDataLogger);
1.83 + CleanupStack::PopAndDestroy(2); // stream & fs
1.84 + }
1.85 +
1.86 +inline void TDataLogger_StateAccessor::ExternalizeL(CDataLogger* aDataLogger)
1.87 + {
1.88 + RFs fs;
1.89 + User::LeaveIfError(fs.Connect());
1.90 + CleanupClosePushL(fs);
1.91 + // Write out the object dump
1.92 + TParse filename;
1.93 + filename.Set(KTDataLogger_DumpName(),NULL,NULL);
1.94 + RFileWriteStream stream;
1.95 + User::LeaveIfError(stream.Replace(fs,filename.FullName(), EFileWrite));
1.96 + CleanupClosePushL(stream);
1.97 + ExternalizeL(stream, aDataLogger);
1.98 + CleanupStack::PopAndDestroy(2); // stream & fs
1.99 + }
1.100 +