phonebookengines/contactsmodel/cntsrv/src/CActiveLoop.cpp
changeset 0 e686773b3f54
child 24 0ba2181d7c28
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/phonebookengines/contactsmodel/cntsrv/src/CActiveLoop.cpp	Tue Feb 02 10:12:17 2010 +0200
@@ -0,0 +1,73 @@
+// 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 "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:
+//
+
+#include "CActiveLoop.h"
+
+void CActiveLoop::Register(MActiveLoopCallBack & aCallBack, TBool aUseTimer)
+	{
+	iCallBack = &aCallBack;
+	if (aUseTimer)
+		{ //Timer required for Cancel Asynchronous operation use case.
+		After(0);
+		}
+	else
+		{
+		CActive::SetActive();
+		TRequestStatus* status = &iStatus;
+		User::RequestComplete(status, KErrNone);
+		}
+	}
+
+	
+	
+void CActiveLoop::RunL()
+	{
+	if (iCallBack->DoStepL())
+		{	
+  		CActive::SetActive();
+  		TRequestStatus* status = &iStatus;
+  		User::RequestComplete(status, KErrNone);
+		}
+	}
+	
+CActiveLoop* CActiveLoop::NewL()
+	{
+	CActiveLoop* active = new (ELeave) CActiveLoop();
+	CleanupStack::PushL(active);
+	active->ConstructL();
+	CleanupStack::Pop(active);
+	return active;
+	}
+	
+void CActiveLoop::DoCancel() 
+	{
+	}	
+
+CActiveLoop::CActiveLoop() :CTimer(EPriorityStandard)
+	{
+	CActiveScheduler::Add(this);
+	}
+
+	
+CActiveLoop::~CActiveLoop() 
+	{
+	Cancel();
+	}
+	
+TInt CActiveLoop::RunError(TInt aError)
+	{
+	iCallBack->DoError(aError);
+	return KErrNone;
+	}