common/tools/ats/smoketest/graphics/wserv/src/T_DataWsGraphicFrameRate.cpp
changeset 833 6ffc235847d0
child 872 17498133d9ad
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/smoketest/graphics/wserv/src/T_DataWsGraphicFrameRate.cpp	Fri Dec 18 14:46:04 2009 +0000
@@ -0,0 +1,99 @@
+/*
+* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). 
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "Symbian Foundation License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
+
+#include "T_DataWsGraphicFrameRate.h"
+
+/*@{*/
+///	Commands
+_LIT(KCmdnew,					"new");
+
+///	Logging
+_LIT(KLogError,					"Error=%d");
+/*@}*/
+
+//////////////////////////////////////////////////////////////////////
+// Construction/Destruction
+//////////////////////////////////////////////////////////////////////
+
+CT_DataWsGraphicFrameRate::CT_DataWsGraphicFrameRate()
+:	CT_DataWsGraphicMsgFixedBase()
+,	iWsGraphicFrameRate(NULL)
+	{
+	}
+
+CT_DataWsGraphicFrameRate::~CT_DataWsGraphicFrameRate()
+	{
+	DestroyData();
+	}
+
+void CT_DataWsGraphicFrameRate::DestroyData()
+	{
+	delete iWsGraphicFrameRate;
+	iWsGraphicFrameRate=NULL;
+	}
+
+/**
+ * Return a pointer to the object that the data wraps
+ *
+ * @return pointer to the object that the data wraps
+ */
+TAny* CT_DataWsGraphicFrameRate::GetObject()
+	{
+	return iWsGraphicFrameRate;
+	}
+
+TWsGraphicMsgFixedBase* CT_DataWsGraphicFrameRate::GetWsGraphicMsgFixedBase() const
+	{
+	return iWsGraphicFrameRate;
+	}
+
+/**
+* Process a command read from the ini file
+*
+* @param aCommand			the command to process
+* @param aSection			the entry in the ini file requiring the command to be processed
+* @param aAsyncErrorIndex	index of command. used for async calls
+*
+* @return ETrue if the command is processed
+*/
+TBool CT_DataWsGraphicFrameRate::DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex)
+	{
+	TBool	ret=ETrue;
+
+	if ( aCommand==KCmdnew )
+		{
+		DoCmdnew();
+		}
+	else
+		{
+		ret=CT_DataWsGraphicMsgFixedBase::DoCommandL(aCommand, aSection, aAsyncErrorIndex);
+		}
+
+	return ret;
+	}
+
+void CT_DataWsGraphicFrameRate::DoCmdnew()
+	{
+	INFO_PRINTF1(_L("execute new"));
+	DestroyData();
+	TRAPD(err, iWsGraphicFrameRate=new (ELeave) TWsGraphicFrameRate());
+	if ( err!=KErrNone )
+		{
+		ERR_PRINTF2(KLogError, err);
+		SetError(err);
+		}
+	}