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