common/tools/ats/smoketest/lbs/lbstestutils/inc/ctlbsagpshandler.h
changeset 748 e13acd883fbe
child 872 17498133d9ad
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/smoketest/lbs/lbstestutils/inc/ctlbsagpshandler.h	Tue Nov 10 13:50:58 2009 +0000
@@ -0,0 +1,93 @@
+// Copyright (c) 2007-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:
+// Definition of Test Harness request handler component.
+// 
+//
+
+
+
+/**
+ @file
+ @internalTechnology
+ @test
+*/
+
+#ifndef CTLBSAGPSHANDLER_H
+#define CTLBSAGPSHANDLER_H
+
+#include <e32hashtab.h>
+#include <lbs/test/tlbschannel.h>
+
+
+///////////////////////////////////////////////////////////////////////////////
+// Test Harness Request Handler Channel
+///////////////////////////////////////////////////////////////////////////////
+
+/** Observer for TH Request Handler interface
+*/
+class MT_ResponseObserver
+	{
+public:
+	virtual void ProcessAGpsResponseMessage(const TT_LbsAGpsResponseMsg::TModuleResponseType aResponse) = 0;
+	};
+
+/** Manager for the TH channel.
+
+This class handles sending and receiving messages on the Test Harness channel.
+It is implemented as an active object to allow it to asnychronously wait for 
+messages to arrive. Sending is synchronous.
+*/
+class CT_LbsAGpsHandler : public CActive, 
+						  public MT_LbsChannelObserver
+	{
+public:
+	IMPORT_C static CT_LbsAGpsHandler* NewL(MT_ResponseObserver* aObserver);
+	~CT_LbsAGpsHandler();
+
+	IMPORT_C void SendRequestUpdateInitMsg(const TDesC& aConfigFileName, 
+								  const TDesC& aConfigSection);
+	IMPORT_C void SendRequestTimeOutMsg(const TTimeIntervalMicroSeconds& aTimeOut);
+	IMPORT_C void SendRequestSetAllModuleOptions();
+	IMPORT_C void SendRequestClearAllModuleOptions();
+	IMPORT_C void SendRequestModuleOption(TLbsHybridModuleOptions aOption, TBool aValue);
+	IMPORT_C void SendRequestForcedUpdate();
+	IMPORT_C void SendRequestError(TInt aError);
+
+			
+private:
+	CT_LbsAGpsHandler(MT_ResponseObserver* aObserver);
+	void ConstructL();
+	
+	// from CActive
+	void RunL();
+	void DoCancel();
+	TInt RunError(TInt aError);
+	
+	// Send a message.
+	void SendRequestMessage(const TT_LbsMsgBase* aMessage);
+
+	// Buffer a message.
+	void BufferMessage(const TT_LbsMsgBase* aMessage);
+	
+	// from MT_LbsChannelObserver
+	void ProcessChannelMessage(RT_LbsChannel::TT_LbsChannelId aChannelId, const TT_LbsMsgBase& aMessage);
+
+private:
+	MT_ResponseObserver* iObserver;
+	RT_LbsChannel iTHChannel;
+	RPointerArray<TT_LbsMsgBase> iMsgBuffer;
+	};
+
+
+#endif // CTLBSAGPSHANDLER_H