os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentInfoTest/ComponentInfoStateAccessor.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// The implementation of the accessor class upon the CComponentInfo
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
// ______________________________________________________________________________
sl@0
    19
//
sl@0
    20
_LIT(KTComponentInfo_DumpName,"C:\\System\\Data\\Logs\\TComponentInfo_StateDump.bin");
sl@0
    21
sl@0
    22
inline TInt TComponentInfo_StateAccessor::InvariantTest(TAny* aTestObject)
sl@0
    23
	{
sl@0
    24
	if(aTestObject)
sl@0
    25
		{
sl@0
    26
		// Nothing to do
sl@0
    27
		}
sl@0
    28
	return KErrNone;
sl@0
    29
	}
sl@0
    30
sl@0
    31
inline TInt TComponentInfo_StateAccessor::Internalize(TAny* aTestObject)
sl@0
    32
	{
sl@0
    33
	TInt error = KErrNone;
sl@0
    34
	if(aTestObject != NULL)
sl@0
    35
		{
sl@0
    36
		CComponentInfo* ComponentInfo = REINTERPRET_CAST(CComponentInfo*, aTestObject);
sl@0
    37
		TRAP(error,InternalizeL(ComponentInfo));
sl@0
    38
		}
sl@0
    39
	return error;
sl@0
    40
	}
sl@0
    41
sl@0
    42
inline TInt TComponentInfo_StateAccessor::Externalize(TAny* aTestObject)
sl@0
    43
	{
sl@0
    44
	TInt error = KErrNone;
sl@0
    45
	if(aTestObject != NULL)
sl@0
    46
		{
sl@0
    47
		CComponentInfo* ComponentInfo = REINTERPRET_CAST(CComponentInfo*, aTestObject);
sl@0
    48
		TRAP(error,ExternalizeL(ComponentInfo));
sl@0
    49
		}
sl@0
    50
	return error;
sl@0
    51
	}
sl@0
    52
sl@0
    53
inline void TComponentInfo_StateAccessor::InternalizeL(RFileReadStream& /* aStream */, CComponentInfo* /* aLoadManager */)
sl@0
    54
	{
sl@0
    55
	// Nothing to do
sl@0
    56
	}
sl@0
    57
sl@0
    58
inline void TComponentInfo_StateAccessor::ExternalizeL(RFileWriteStream& /* aStream */, CComponentInfo* /* aLoadManager */)
sl@0
    59
	{
sl@0
    60
	// Nothing to do
sl@0
    61
	}
sl@0
    62
sl@0
    63
// internal helpers
sl@0
    64
inline void TComponentInfo_StateAccessor::InternalizeL(CComponentInfo* aComponentInfo)
sl@0
    65
	{
sl@0
    66
	// Read in the dumped data
sl@0
    67
	RFs fs;
sl@0
    68
	User::LeaveIfError(fs.Connect());
sl@0
    69
	CleanupClosePushL(fs);
sl@0
    70
	// Read the object dump
sl@0
    71
	TParse filename;
sl@0
    72
	filename.Set(KTComponentInfo_DumpName(),NULL,NULL);
sl@0
    73
	RFileReadStream stream;
sl@0
    74
	User::LeaveIfError(stream.Open(fs,filename.FullName(), EFileRead));
sl@0
    75
	CleanupClosePushL(stream);
sl@0
    76
	InternalizeL(stream, aComponentInfo);
sl@0
    77
	CleanupStack::PopAndDestroy(2);	// stream & fs
sl@0
    78
	}
sl@0
    79
sl@0
    80
inline void TComponentInfo_StateAccessor::ExternalizeL(CComponentInfo* aComponentInfo)
sl@0
    81
	{
sl@0
    82
	RFs fs;
sl@0
    83
	User::LeaveIfError(fs.Connect());
sl@0
    84
	CleanupClosePushL(fs);
sl@0
    85
	// Write out the object dump
sl@0
    86
	TParse filename;
sl@0
    87
	filename.Set(KTComponentInfo_DumpName(),NULL,NULL);
sl@0
    88
	RFileWriteStream stream;
sl@0
    89
	User::LeaveIfError(stream.Replace(fs,filename.FullName(), EFileWrite));
sl@0
    90
	CleanupClosePushL(stream);
sl@0
    91
	ExternalizeL(stream, aComponentInfo);
sl@0
    92
	CleanupStack::PopAndDestroy(2);	// stream & fs
sl@0
    93
	}
sl@0
    94