serviceproviders/sapi_landmarks/landmarksservice/inc/clandmarkmanageobjects.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 17 Dec 2009 09:09:50 +0200
changeset 37 5d0ec8b709be
parent 19 989d2f495d90
permissions -rw-r--r--
Revision: 200949 Kit: 200951

/*
* Copyright (c) 2005-2006 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 "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:  CLandmarkManageObjects class
 *
*/


#ifndef __CLANDMARKMANAGEOBJECTS_H__
#define __CLANDMARKMANAGEOBJECTS_H__

// INCLUDES
#include <e32base.h>

//FORWARD DECLARATION
class CLandmarkCmdBase;
class CLandmarkDummyAO;
class CLandmarkOperation;
/**
 * CLandmarkManageObjects
 * This class inherits from CActive. This acts as a garbage collector for inactive 
 * active objects.
 */
// CLASS DECLARATION
NONSHARABLE_CLASS(CLandmarkManageObjects) : public CActive
	{
public: // New methods

	/**
	 * NewL.
	 * Two-phased constructor.
	 * Create a CLandmarkManageObjects object.
	 * @return a pointer to the created instance of CLandmarkManageObjects.
	 */
	static CLandmarkManageObjects* NewL();

	/**
	 * ~CLandmarkManageObjects
	 * Destructor.
	 */
	~CLandmarkManageObjects();

public:

	/**
	 * Start
	 * This functions proceeds with the search for inactive active objects.
	 */
	void Start();

	/**
	 * AppendL
	 * This functions appends a newly created active object to its internal array.
	 * @param aObject The pointer to the newly created active object.
	 */
	void AppendL( CLandmarkCmdBase* aObject );
	void AppendL( CLandmarkDummyAO* aObject );
	void AppendL( CLandmarkOperation* aObject );

	/**
	 * CancelObject
	 * This functions cancels an ongoing asynchronous request.
	 * @param aTransactionId The transaction id of the asynchronous request to be cancelled.
	 */
	void CancelObject( TInt32 aTransactionId );

private://from CActive

	// RunL.
	// This functions gets called after completion of async request.
	void RunL();

	// DoCancel.
	// This function will cancel ongoing async call.
	void DoCancel();

private: // Constructors

	/**
	 * CLandmarkManageObjects.
	 * C++ default constructor.
	 */
	CLandmarkManageObjects();

private://Data

	/**
	 * iObjects
	 * Array of active object pointers.
	 */
	RPointerArray<CLandmarkCmdBase> iObjects;
	RPointerArray<CLandmarkDummyAO> iDummyObjects;
	RPointerArray<CLandmarkOperation> iOrgObjects;
	};

#endif // __CLANDMARKMANAGEOBJECTS_H__

// End of File