multimediacommscontroller/tsrc/TestConsoles/McpSubThreads/DpTests/Inc/TestConsole.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/multimediacommscontroller/tsrc/TestConsoles/McpSubThreads/DpTests/Inc/TestConsole.h Tue Feb 02 01:04:58 2010 +0200
@@ -0,0 +1,113 @@
+/*
+* Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "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: Class definition for CTestAppConsole
+**
+*/
+
+
+
+#ifndef __TESTAPPCONSOLE_H
+#define __TESTAPPCONSOLE_H
+
+#include <e32cons.h>
+#include <mmf/common/mmfcontrollerframework.h>
+
+#include "TestConsole.hrh"
+#include "TestConsoleDef.h"
+#include "rtpapi.h"
+#include "rtpdef.h"
+#include "mccdef.h"
+#include "mccinternaldef.h"
+
+class TTimeIntervalMicroSeconds32;
+class MDataSource;
+class MDataSink;
+class CMccRtpManager;
+
+class CTestAppConsole : public CActive, public MAsyncEventHandler, public MMccEventHandler
+ {
+public:
+ static CTestAppConsole* NewL();
+ virtual ~CTestAppConsole();
+
+ void StartTesting();
+ void DisplayMsg(const TDesC& aMsg);
+
+public: // From MAsyncEventHandler
+
+ TInt SendEventToClient(const TMMFEvent& aEvent);
+
+public: // From MMccEventHandler
+
+ virtual TInt SendMccEventToClient( TMccEvent& aEvent );
+ virtual void ErrorOccured( TInt aError,
+ TUint32 aSessionId,
+ TUint32 aLinkId,
+ TUint32 aStreamId,
+ TUint32 aEndpointId );
+ virtual void StateChange( TInt aState, TUint32 aLink );
+
+private:
+ CTestAppConsole( );
+ void ConstructL();
+
+ void RunL();
+ void DoCancel();
+
+ void ProcessMainInput();
+
+ // create console menus
+ void DisplayConsoleMenu(const TDesC& aInstructions);
+ TKeyCode GetStringFromConsole(TDes& aAddr);
+
+ void DoRead();
+
+ //Test functions
+ void RunTest1();
+ void RunTest2();
+ void RunTest3();
+ void RunTest4();
+
+ void ConstructUlSinkSource();
+ void ConstructDlSinkSource();
+ void DestructSinksSources();
+ void SetUpRtpStack();
+
+private:
+ CConsoleBase* iConsole;
+ HBufC* iInstruct;
+
+ TBool iKeepgoingUL;
+ TBool iKeepgoingDL;
+
+ TInt iUlError;
+ TInt iDlError;
+
+ MDataSink* iUlsink;
+ MDataSink* iDlsink;
+ MDataSource* iUlsource;
+ MDataSource* iDlsource;
+
+ TRtpId iSessionID;
+ TRtpId iStreamId;
+
+ TUint iIapid;
+ TUint iPort;
+ TInetAddr iRemoteAddr;
+
+ CMccRtpManager* iRtpmanager;
+ };
+
+
+#endif __TESTAPPCONSOLE_H