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