diff -r 22de2e391156 -r 20ac952a623c remotecontrol/remotecontrolfw/server/src/activehelper.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/remotecontrol/remotecontrolfw/server/src/activehelper.cpp Wed Oct 13 16:20:29 2010 +0300 @@ -0,0 +1,65 @@ +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// Active helper implementation. +// +// + +/** + @file + @internalComponent +*/ + +#include +#include "activehelper.h" +#include "controllersession.h" + +#ifdef __FLOG_ACTIVE +_LIT8(KLogComponent, LOG_COMPONENT_REMCON_SERVER); +#endif + +CActiveHelper::CActiveHelper(CRemConControllerSession &aSession) : + CActive(CActive::EPriorityStandard), + iSession(aSession) + { + LOG_FUNC + CActiveScheduler::Add(this); + } + +void CActiveHelper::RunL() + { + LOG_FUNC; + iSession.ProcessPendingMsgL(); + } + +void CActiveHelper::DoCancel() + { + LOG_FUNC; + } + +CActiveHelper::~CActiveHelper() + { + LOG(KNullDesC8); + LOG_FUNC; + Cancel(); + } + +void CActiveHelper::Complete() + { + LOG_FUNC; + iStatus = KRequestPending; + SetActive(); + + TRequestStatus *p = &iStatus; + User::RequestComplete(p, KErrNone); + }