serviceproviders/sapi_location/tsrc/dev/tlocservicetest/src/tstraygetlocationtest.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 27 Aug 2009 07:43:07 +0300
changeset 22 fc9cf246af83
parent 19 989d2f495d90
permissions -rw-r--r--
Revision: 200931 Kit: 200935

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

/*
 * Stray signal test function
 */
 #include "locationservice.h"
 
 #define TRACE 0 
 #define GETLOCATION 1
 
 _LIT(KRequestor,"testapp");
 
class ASyncLocCB : public MLocationCallBack
{
	TInt iCmd ;
	TInt iRetStatus ;
	TInt iCount ;
    TInt iTransactionId;
	CLocationService *iService ;


	public :
		
		
		TInt HandleNotifyL(HPositionGenericInfo* aInfo , TInt aError) ;

		ASyncLocCB() :iCmd(0) , iRetStatus(KErrGeneral) , iCount(0) //Default constructor 
			{
				;
			}
    ASyncLocCB(TInt aCmd , CLocationService *aService,TInt aTransId)	 ;

    inline TUint GetRequestType(void) 
        {
        return iCmd ;
        }


    MLocationCallBack* GetCallBackobj()
		             {
		             return this;  
		             }

    /**
     * GetTransactionId function returns transcation id associated with current async object
     *
     */
    inline TInt32 GetTransactionId(void)
        {
        return iTransactionId ;
        }
};


ASyncLocCB :: ASyncLocCB(TInt aCmd ,CLocationService *aService,TInt aTransId):iCount(0) 
{ 
  iCmd = aCmd ;
  iService = aService ;
    iTransactionId = aTransId;
  	
}

TInt ASyncLocCB :: HandleNotifyL(HPositionGenericInfo* aInfo , TInt Error )
{
	if(iCmd == GETLOCATION)
		{
        //Do nothing
		}

    if(iCount > 2)
        {
        CActiveScheduler *current = CActiveScheduler :: Current() ;
        current->Stop() ;
        }
    iCount++ ;	
    iRetStatus = KErrNone ;
    return iRetStatus ;	
}
  
  
TInt StrayTestGetLocL()
{
    __UHEAP_MARK ;
    CActiveScheduler *Scheduler = new CActiveScheduler ;

    CActiveScheduler :: Install(Scheduler) ;
    CLocationService *CoreObj = CLocationService ::NewL() ;
    ASyncLocCB Updates(TRACE , CoreObj,1000)  ;

    ASyncLocCB GetLoc(GETLOCATION , CoreObj,2000)  ;

    // GelocUpdateCallBack  MyUpdates(&CmdId  , (CLocationService *)NULL) ;
    CoreObj->TraceL(&Updates,EBasicInfo) ;
    CoreObj->GetLocationL(&GetLoc,EBasicInfo) ;

    CActiveScheduler :: Start() ;
    delete CoreObj;
    delete Scheduler;
    __UHEAP_MARKEND ;
	return 0 ; // Controll never reaches here
}


TInt StrayTestGetLoc(TAny */*Arg*/)
{
	CTrapCleanup* cleanup = CTrapCleanup::New();
	//Install a new active scheduler to this thread 
	TRAPD(err , StrayTestGetLocL()) ;
	delete cleanup ;
	return 0 ;
}