diff -r 76f9aaeefbab -r e13acd883fbe common/tools/ats/smoketest/lbs/common/inc/ctlbsdoposupdate.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/smoketest/lbs/common/inc/ctlbsdoposupdate.h Tue Nov 10 13:50:58 2009 +0000 @@ -0,0 +1,83 @@ +/** +* 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 the License "Symbian Foundation License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* +*/ + + + + + +/** + @file ctlbsdoposupd.h +*/ +#ifndef __CT_LBS_DOPOS_UPDATE_H__ +#define __CT_LBS_DOPOS_UPDATE_H__ + +#include +#include + + +_LIT(KCT_LbsDoPosUpdate, "CT_LbsDoPosUpdate"); + + +// Async callbacks +class MT_LbsDoPosUpdateObserver + { +public: + virtual void MT_LbsDoPosUpdateCallback(TRequestStatus& aStatus) = 0; // do we need the aStatus... + }; + + +class CT_LbsDoPosUpdate: public CActive + { +public: + ~CT_LbsDoPosUpdate(); + static CT_LbsDoPosUpdate* NewL(MT_LbsDoPosUpdateObserver* aObserver, TPositionModuleInfo::TTechnologyType aTechnologyType = TPositionModuleInfo::ETechnologyUnknown); + static CT_LbsDoPosUpdate* NewL(MT_LbsDoPosUpdateObserver* aObserver, const TPositionCriteriaBase& aCriteria); + TInt SetOptions(const TPositionUpdateOptionsBase& aPosOption); + void StartL(TPositionInfo& aPosInfo); + void CancelRequest(); + void OpenPositioner(TPositionModuleInfo::TTechnologyType aTechnologyType = TPositionModuleInfo::ETechnologyUnknown); + void ClosePositioner(void); + void ConnectServer(void); + void CloseServer(void); + TInt CompleteRequest(TInt aRequestId); + +protected: + // Functions from CActive: + virtual void DoCancel(); + virtual void RunL(); + virtual TInt RunError(TInt aError); + +private: + enum TOpenSubSessionType + { + EOpenSubSessionByModuleId, //Open subsession with the location server by module id + EOpenSubSessionByCriteria //Open subsession with the location server by criteria + }; + + CT_LbsDoPosUpdate(MT_LbsDoPosUpdateObserver* aObserver); + + void CT_LbsDoPosUpdate::ConstructL(TOpenSubSessionType aOpenSubSessionType,TPositionModuleInfo::TTechnologyType aTechnologyType, const TPositionCriteriaBase& aCriteria); + + // caller + MT_LbsDoPosUpdateObserver* iObserver; + + // Self locate server. + RPositionServer iServer; + RPositioner iPositioner; + }; + +#endif // __CT_LBS_DOPOS_UPDATE_H__