os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TransitionTest/TransitionStateAccessor.inl
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TransitionTest/TransitionStateAccessor.inl Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,168 @@
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 CTransition
1.18 +//
1.19 +//
1.20 +
1.21 +// ______________________________________________________________________________
1.22 +//
1.23 +_LIT(KTTransition_DumpName,"C:\\System\\Data\\Logs\\TTransition_StateDump.bin");
1.24 +
1.25 +inline TInt TTransition_StateAccessor::InvariantTest(TAny* aTestObject)
1.26 + {
1.27 + if(aTestObject)
1.28 + {
1.29 + CTransition* theTransition = REINTERPRET_CAST(CTransition*, aTestObject);
1.30 + if(theTransition->iTransitionId.Length() == 0)
1.31 + return KErrArgument;
1.32 + }
1.33 + return KErrNone;
1.34 + }
1.35 +
1.36 +inline TInt TTransition_StateAccessor::Internalize(TAny* aTestObject)
1.37 + {
1.38 + TInt error = KErrNone;
1.39 + if(aTestObject != NULL)
1.40 + {
1.41 + CTransition* theTransition = REINTERPRET_CAST(CTransition*, aTestObject);
1.42 + TRAP(error,InternalizeL(theTransition));
1.43 + }
1.44 + return error;
1.45 + }
1.46 +
1.47 +inline TInt TTransition_StateAccessor::Externalize(TAny* aTestObject)
1.48 + {
1.49 + TInt error = KErrNone;
1.50 + if(aTestObject != NULL)
1.51 + {
1.52 + CTransition* theTransition = REINTERPRET_CAST(CTransition*, aTestObject);
1.53 + TRAP(error,ExternalizeL(theTransition));
1.54 + }
1.55 + return error;
1.56 + }
1.57 +
1.58 +inline TBool TTransition_StateAccessor::IsRepeated(TAny* aTestObject) const
1.59 + {
1.60 + if(aTestObject != NULL)
1.61 + {
1.62 + CTransition* theTransition = REINTERPRET_CAST(CTransition*, aTestObject);
1.63 + return theTransition->iRepeatThis;
1.64 + }
1.65 + return EFalse;
1.66 + }
1.67 +
1.68 +inline const TDesC* TTransition_StateAccessor::TransitionId(TAny* aTestObject) const
1.69 + {
1.70 + if(aTestObject != NULL)
1.71 + {
1.72 + CTransition* theTransition = REINTERPRET_CAST(CTransition*, aTestObject);
1.73 + return &(theTransition->iTransitionId);
1.74 + }
1.75 + return NULL;
1.76 + }
1.77 +
1.78 +inline const TTransitionInfo* TTransition_StateAccessor::TransitionInfo(TAny* aTestObject) const
1.79 + {
1.80 + if(aTestObject != NULL)
1.81 + {
1.82 + CTransition* theTransition = REINTERPRET_CAST(CTransition*, aTestObject);
1.83 + return &(theTransition->iTransitionInfo);
1.84 + }
1.85 + return NULL;
1.86 + }
1.87 +
1.88 +inline TBool TTransition_StateAccessor::BlockingFlag(TAny* aTestObject) const
1.89 + {
1.90 + if(aTestObject != NULL)
1.91 + {
1.92 + CTransition* theTransition = REINTERPRET_CAST(CTransition*, aTestObject);
1.93 + return theTransition->iBlockingTransition;
1.94 + }
1.95 + return EFalse;
1.96 + }
1.97 +
1.98 +inline TInt TTransition_StateAccessor::ErrorCode(TAny* aTestObject) const
1.99 + {
1.100 + if(aTestObject != NULL)
1.101 + {
1.102 + CTransition* theTransition = REINTERPRET_CAST(CTransition*, aTestObject);
1.103 + return theTransition->iLeaveError;
1.104 + }
1.105 + return EFalse;
1.106 + }
1.107 +
1.108 +inline TRequestStatus TTransition_StateAccessor::Status(const TAny* aTestObject) const
1.109 + {
1.110 + TRequestStatus status;
1.111 + Mem::FillZ(&status, sizeof(status));
1.112 + if(aTestObject != NULL)
1.113 + {
1.114 + status = (reinterpret_cast <const CTransition*> (aTestObject))->iStatus;
1.115 + }
1.116 + return status;
1.117 + }
1.118 +
1.119 +inline void TTransition_StateAccessor::InternalizeL(RFileReadStream& aStream, CTransition* aTransition)
1.120 + {
1.121 + aTransition->iRepeatThis = aStream.ReadInt32L();
1.122 + aTransition->iTransitionFinished = aStream.ReadInt32L();
1.123 + aTransition->iLeaveError = aStream.ReadInt32L();
1.124 + aTransition->iBlockingTransition = aStream.ReadInt32L();
1.125 + TPckg<TTransitionInfo> info(aTransition->iTransitionInfo);
1.126 + aStream.ReadL(info);
1.127 + }
1.128 +
1.129 +inline void TTransition_StateAccessor::ExternalizeL(RFileWriteStream& aStream, CTransition* aTransition)
1.130 + {
1.131 + aStream.WriteInt32L(aTransition->iRepeatThis);
1.132 + aStream.WriteInt32L(aTransition->iTransitionFinished);
1.133 + aStream.WriteInt32L(aTransition->iLeaveError);
1.134 + aStream.WriteInt32L(aTransition->iBlockingTransition);
1.135 + TPckg<TTransitionInfo> info(aTransition->iTransitionInfo);
1.136 + aStream.WriteL(info);
1.137 + }
1.138 +
1.139 +// internal helpers
1.140 +inline void TTransition_StateAccessor::InternalizeL(CTransition* aTransition)
1.141 + {
1.142 + // Read in the dumped data
1.143 + RFs fs;
1.144 + User::LeaveIfError(fs.Connect());
1.145 + CleanupClosePushL(fs);
1.146 + // Read the object dump
1.147 + TParse filename;
1.148 + filename.Set(KTTransition_DumpName(),NULL,NULL);
1.149 + RFileReadStream stream;
1.150 + User::LeaveIfError(stream.Open(fs,filename.FullName(), EFileRead));
1.151 + CleanupClosePushL(stream);
1.152 + InternalizeL(stream, aTransition);
1.153 + CleanupStack::PopAndDestroy(2); // stream & fs
1.154 + }
1.155 +
1.156 +inline void TTransition_StateAccessor::ExternalizeL(CTransition* aTransition)
1.157 + {
1.158 + RFs fs;
1.159 + User::LeaveIfError(fs.Connect());
1.160 + CleanupClosePushL(fs);
1.161 + // Write out the object dump
1.162 + TParse filename;
1.163 + filename.Set(KTTransition_DumpName(),NULL,NULL);
1.164 + RFileWriteStream stream;
1.165 + User::LeaveIfError(stream.Replace(fs,filename.FullName(), EFileWrite));
1.166 + CleanupClosePushL(stream);
1.167 + ExternalizeL(stream, aTransition);
1.168 + stream.CommitL();
1.169 + CleanupStack::PopAndDestroy(2); // stream & fs
1.170 + }
1.171 +