lbs/common/inc/LbsExternalLocateLogEvent.h
author Maciej Seroka <maciejs@symbian.org>
Thu, 21 Jan 2010 12:53:44 +0000
branchSymbian2
changeset 1 8758140453c0
child 6 c108117318cb
permissions -rw-r--r--
Added Symbian2 smoketests from FBF at changeset bde28f2b1d99

/**
* 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
 @publishedPartner
 @released
*/

#ifndef LBS_EXTERNAL_LOCATE_LOG_EVENT_H
#define LBS_EXTERNAL_LOCATE_LOG_EVENT_H

#include <lbs/lbslogevent.h>
#include <lbs/lbsnetprotocolbase.h>

#include <lbs/lbsloccommon.h> 			// For TLbsExternalRequestInfo
#include "lbsnetcommon.h"			// For TLbsNetSessionId

/**
the privacy request parameter structure
*/
class TLbsLoggingPrivacyRequestParams
    {
public:    
	TLbsNetSessionId			iSessionId;  
	TLbsExternalRequestInfo		iRequestInfo;
	TLbsNetPosRequestPrivacy	iRequestPrivacy;
    };

/**
the privacy response parameter structure
*/
class TLbsLoggingPrivacyResponseParams
	{
public:	
	TLbsNetSessionId iSessionId;
	/** verification result to the privacy request */
	CLbsNetworkProtocolBase::TLbsPrivacyResponse iResult;
	} ;

/** log event object for external locate request */
class CLbsExternalLocateLogEvent : public CLbsLogEvent
	{
public:
	IMPORT_C static CLbsExternalLocateLogEvent* NewL(TUid aRequestOriginator,TPositionInfoBase* aRefPosInfo, TPositionInfoBase* aPosInfo);
	IMPORT_C void SetPrivacyRequestParams(const TLbsLoggingPrivacyRequestParams& aParams);
	IMPORT_C void SetPrivacyResponseParams(const TLbsLoggingPrivacyResponseParams& aParams);
	IMPORT_C void SetReferenceLocation(TPositionInfoBase* aPosInfo);
	~CLbsExternalLocateLogEvent();

	// for external locate
	IMPORT_C TPositionInfoBase* ReferenceLocation() const;
	IMPORT_C void SetRequestOriginator(TUid aRequestor);
	IMPORT_C TUid RequestOriginator() const;
	IMPORT_C TLbsLoggingPrivacyRequestParams PrivacyRequestParams() const;
	IMPORT_C TLbsLoggingPrivacyResponseParams PrivacyResponseParams() const;

protected:
	void DoExternalizeL(RWriteStream& aWriteStream) const;
	void DoInternalizeL(RReadStream& aReadStream);
	void DoUpdateL(const CLbsLogEvent& aSourceLogEvent);
	void DoCopyL(CLbsLogEvent*& aTargetLogEvent) const;
	TInt DataSize() const;
private:
	CLbsExternalLocateLogEvent();
	void ConstructL(TUid aRequestOriginator, TPositionInfoBase* aRefPosInfo, TPositionInfoBase* aPosInfo);
	void CopyPrivacyRequestParams(TLbsLoggingPrivacyRequestParams& aTargetPrivacyInfo, 
						   const TLbsLoggingPrivacyRequestParams& aSourcePrivacyInfo);
	void CopyPrivacyResponseParams(TLbsLoggingPrivacyResponseParams& aTargetPrivacyInfo, 
						   const TLbsLoggingPrivacyResponseParams& aSourcePrivacyInfo);
private:
	/** Descriptor of the request originator */
	TUid							iRequestOriginator;
	/** Privacy request/response info */
	TLbsLoggingPrivacyRequestParams	iPrivacyReqInfo;
	/** Indicate whether the MT-LR access is granted or not */
	TLbsLoggingPrivacyResponseParams			iPrivacyResInfo;
	/** The calculation method indicates MS-Based or Autonomous GPS is withint TPositionInfoBase */
	/** The positioning mode used to calculate this location fix. */
	// TPositionModuleInfo::TTechnologyType iPositionMode;
	/** The returned reference location information if the request is completed successfully */
	TPositionInfo* 					iRefPosInfo;
	}; // class CLbsExternalLocateLogEvent

#endif // LBS_EXTERNAL_LOCATE_LOG_EVENT_H