1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/mmtestenv/mmtestfw/Source/TestFrameworkServer/TestFrameworkServer.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,167 @@
1.4 +// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// TestFrameworkServer provides a console and/or log
1.18 +// which will handle all output from test threads.
1.19 +//
1.20 +//
1.21 +
1.22 +#ifndef __TESTFRAMEWORKSERVER_H__
1.23 +#define __TESTFRAMEWORKSERVER_H__
1.24 +
1.25 +#include <testframework.h>
1.26 +#include "LogFile.h"
1.27 +#include "ServerConsole.h"
1.28 +
1.29 +#include <mmf/common/mmfipc.h> // for MmfIpc classes
1.30 +#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
1.31 +#include <mmf/common/mmfipcserver.h>
1.32 +#endif
1.33 +
1.34 +class CTestFrameworkServerSession;
1.35 +
1.36 +/**
1.37 + *
1.38 + * A timer used to shut the server down after all clients
1.39 + * have exited.
1.40 + *
1.41 + * @xxxx
1.42 + *
1.43 + */
1.44 +class CTestFrameworkServerShutdown : public CTimer
1.45 + {
1.46 + enum
1.47 + {
1.48 + KTestFrameworkServerShutdownDelay = 5000000 // 5 seconds
1.49 + };
1.50 +public:
1.51 + CTestFrameworkServerShutdown();
1.52 + void ConstructL();
1.53 + void Start();
1.54 +private:
1.55 + void RunL();
1.56 + };
1.57 +
1.58 +/**
1.59 + *
1.60 + * Window helper class, allows client and server to set/
1.61 + * modify (console) windows
1.62 + *
1.63 + * @xxxx
1.64 + *
1.65 + */
1.66 +class TWindow
1.67 + {
1.68 +public:
1.69 + TWindow();
1.70 + TWindow(CTestFrameworkServerSession* aOwner);
1.71 + void SetOwner(CTestFrameworkServerSession* aOwner);
1.72 + void SetWinRectAndNotifyOwner(const TRect& aWinRect);
1.73 + CTestFrameworkServerSession* Owner() {return iOwner;};
1.74 + TBool HasOwner();
1.75 +private:
1.76 + CTestFrameworkServerSession* iOwner;
1.77 + };
1.78 +
1.79 +/**
1.80 + *
1.81 + * Test Framework Server.
1.82 + * Responsible for opening/closing console and writing to it.
1.83 + * Ditto log file.
1.84 + *
1.85 + * To be adapted to write to a COM port.
1.86 + *
1.87 + * @xxxx
1.88 + *
1.89 + */
1.90 +class CTestFrameworkServer : public CMmfIpcServer
1.91 + {
1.92 +public:
1.93 + //construct / destruct
1.94 + static CMmfIpcServer* NewL();
1.95 + ~CTestFrameworkServer();
1.96 +
1.97 + void AddSession();
1.98 + void DropSession();
1.99 +
1.100 + void OpenLogL(const TDesC& aLogName, TInt aLogMode);
1.101 + void WriteLog(const TDesC& aMsg, TInt aLogMode);
1.102 + void CloseLog();
1.103 + TInt LogStatus() const;
1.104 +
1.105 + void AddInputWindowL(CTestFrameworkServerSession* aOwner);
1.106 + void RemoveWindow(CTestFrameworkServerSession* aOwner);
1.107 +
1.108 +private:
1.109 + CTestFrameworkServer();
1.110 + void ConstructL();
1.111 + //open/close a session
1.112 + CMmfIpcSession* NewSessionL(const TVersion &aVersion) const;
1.113 +
1.114 +private:
1.115 + TInt iSessionCount; // The number of sessions
1.116 + CTestFrameworkServerShutdown iShutdown;// A timer used to shut the server down after all clients have exited.
1.117 +
1.118 + // An active console, receiving output from client messages and input from server
1.119 + CServerConsole* iConsole;
1.120 +
1.121 + // logging parms
1.122 + TUint iLogMode;
1.123 + TBuf<KMaxLogFilenameLength> iLogName;
1.124 + CFileLogger* iFileLogger;
1.125 +
1.126 + // last keypress
1.127 + TInt iInputKey;
1.128 +
1.129 + TWindow iInputWindow;
1.130 + };
1.131 +
1.132 +/**
1.133 + *
1.134 + * Test Framework Server Session :
1.135 + * handles message passing between Test Framework client / server
1.136 + *
1.137 + * @xxxx
1.138 + *
1.139 + */
1.140 +class CTestFrameworkServerSession : public CMmfIpcSession
1.141 + {
1.142 +public:
1.143 + CTestFrameworkServerSession();
1.144 + void CreateL(const CMmfIpcServer& aServer);
1.145 + void ConstructL();
1.146 + ~CTestFrameworkServerSession();
1.147 +
1.148 + void ServiceL(const RMmfIpcMessage &aMessage);
1.149 + TInt RunError(const RMmfIpcMessage& aMessage, TInt aError);
1.150 +
1.151 + void NotifyWindowChanged(const TRect& aWinRect);
1.152 +
1.153 +private:
1.154 + // async window message handling
1.155 + void SetOwnCopyOfWindowMessageL(const RMmfIpcMessage& aMessage);
1.156 + void CompleteOwnCopyOfWindowMessage(TInt aReason);
1.157 +
1.158 +private:
1.159 + CTestFrameworkServer* iServer; //<pointer to owning server
1.160 +
1.161 + // async window message data
1.162 + RMmfIpcMessage iWindowMessage;
1.163 + TBool iCanCompleteWindowMessage;
1.164 + TBool iNeedToNotifyClientOfWindowSizeChange;
1.165 + TRectBuf iWinRectBuf;
1.166 + };
1.167 +
1.168 +
1.169 +
1.170 +#endif //__TESTFRAMEWORKSERVER_H__