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