epoc32/include/push/ccontenthandlerbase.inl
branchSymbian2
changeset 2 2fe1408b6811
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/epoc32/include/push/ccontenthandlerbase.inl	Tue Mar 16 16:12:26 2010 +0000
@@ -0,0 +1,112 @@
+// Copyright (c) 2001-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" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
+// which accompanies this distribution, and is available
+// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
+//
+// Initial Contributors:
+// Nokia Corporation - initial contribution.
+//
+// Contributors:
+//
+// Description:
+// Local includes
+// 
+//
+
+
+
+/**
+ @file
+ @publishedPartner
+ @released
+*/
+
+// System includes
+//
+#include <ecom/ecom.h>
+#include <push/ccontenthandlerbase.h>
+#include <push/pushlog.h>
+#include <push/pluginkiller.h>
+
+
+/** 
+Constructor. 
+*/
+inline CContentHandlerBase::CContentHandlerBase()
+: CPushHandlerBase()
+	{
+	}
+
+
+/** 
+Destructor. 
+*/
+inline CContentHandlerBase::~CContentHandlerBase()
+	{
+	__LOG_PTR_DEBUG("CContentHandlerBase:: Destructor Called");
+	Cancel();
+	delete iMessage;
+	}
+
+
+/** 
+Finds and instantiates an ECom WAP Push Content Handler plug-in that matches 
+the specified media type.
+
+@param aMatchData 
+Media type.
+
+@return 
+WAP Push plug-in that handles the specified media type.
+*/
+inline CContentHandlerBase* CContentHandlerBase::NewL(const TDesC& aMatchData)
+	{
+	// Call base class interface CPushHandlerBase::NewL()
+	return REINTERPRET_CAST(CContentHandlerBase*, 
+							CPushHandlerBase::NewL(aMatchData, KUidPushContentHandlerBase));
+	}
+
+
+/** 
+Sets a parent message server entry for any output to be saved in the message 
+server.
+
+@param aParentID 
+ID of the parent message server entry. This is stored in iParentID. 
+*/
+inline void CContentHandlerBase::SetParent(TMsvId aParentID)
+	{
+	iParentID = aParentID;
+	}
+
+
+/** 
+Provides clean-up for the plug-in.
+
+A derived class calls this when handling of the message is complete: it deletes 
+the plug-in, and if the asynchronous request iAcknowledge flag is set, sets 
+the status with the passed error code.
+
+@param aError 
+Error code. 
+*/
+inline void CContentHandlerBase::Complete(TInt aError)
+	{
+	__LOG_PTR_DEBUG("CContentHandlerPluginBase:: Complete Called");
+	if (iAcknowledge)
+		SignalConfirmationStatus(aError);
+	iPluginKiller->KillPushPlugin();
+	}	
+
+
+/** 
+Utility that completes this active object with KErrNone. 
+*/
+inline void CContentHandlerBase::IdleComplete()
+	{
+	TRequestStatus* pS = &iStatus;
+	User::RequestComplete(pS,KErrNone);
+	SetActive();
+	}