os/mm/mmtestenv/mmtestfw/Source/TestFrameworkServer/TestFrameworkServer.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// TestFrameworkServer provides a console and/or log
sl@0
    15
// which will handle all output from test threads.
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#ifndef __TESTFRAMEWORKSERVER_H__
sl@0
    20
#define __TESTFRAMEWORKSERVER_H__
sl@0
    21
sl@0
    22
#include <testframework.h>
sl@0
    23
#include "LogFile.h"
sl@0
    24
#include "ServerConsole.h"
sl@0
    25
sl@0
    26
#include <mmf/common/mmfipc.h> // for MmfIpc classes
sl@0
    27
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    28
#include <mmf/common/mmfipcserver.h>
sl@0
    29
#endif
sl@0
    30
sl@0
    31
class CTestFrameworkServerSession;
sl@0
    32
sl@0
    33
/**
sl@0
    34
 *
sl@0
    35
 * A timer used to shut the server down after all clients 
sl@0
    36
 * have exited.
sl@0
    37
 *
sl@0
    38
 * @xxxx
sl@0
    39
 *
sl@0
    40
 */
sl@0
    41
class CTestFrameworkServerShutdown : public CTimer
sl@0
    42
	{
sl@0
    43
	enum
sl@0
    44
		{
sl@0
    45
		KTestFrameworkServerShutdownDelay = 5000000 // 5 seconds
sl@0
    46
		};	
sl@0
    47
public:
sl@0
    48
	CTestFrameworkServerShutdown();
sl@0
    49
	void ConstructL();
sl@0
    50
	void Start();
sl@0
    51
private:
sl@0
    52
	void RunL();
sl@0
    53
	};
sl@0
    54
sl@0
    55
/**
sl@0
    56
 *
sl@0
    57
 * Window helper class, allows client and server to set/
sl@0
    58
 * modify (console) windows
sl@0
    59
 *
sl@0
    60
 * @xxxx
sl@0
    61
 *
sl@0
    62
 */
sl@0
    63
class TWindow
sl@0
    64
	{
sl@0
    65
public:
sl@0
    66
	TWindow();
sl@0
    67
	TWindow(CTestFrameworkServerSession* aOwner);
sl@0
    68
	void SetOwner(CTestFrameworkServerSession* aOwner);
sl@0
    69
	void SetWinRectAndNotifyOwner(const TRect& aWinRect);
sl@0
    70
	CTestFrameworkServerSession* Owner() {return iOwner;};
sl@0
    71
	TBool HasOwner();
sl@0
    72
private:
sl@0
    73
	CTestFrameworkServerSession* iOwner;
sl@0
    74
	};
sl@0
    75
sl@0
    76
/**
sl@0
    77
 *
sl@0
    78
 * Test Framework Server.
sl@0
    79
 * Responsible for opening/closing console and writing to it.
sl@0
    80
 * Ditto log file.
sl@0
    81
 *
sl@0
    82
 * To be adapted to write to a COM port.
sl@0
    83
 *
sl@0
    84
 * @xxxx
sl@0
    85
 *
sl@0
    86
 */
sl@0
    87
class CTestFrameworkServer : public CMmfIpcServer
sl@0
    88
	{
sl@0
    89
public:
sl@0
    90
	//construct / destruct
sl@0
    91
	static CMmfIpcServer* NewL();
sl@0
    92
	~CTestFrameworkServer();
sl@0
    93
sl@0
    94
	void AddSession();
sl@0
    95
	void DropSession();
sl@0
    96
sl@0
    97
	void OpenLogL(const TDesC& aLogName, TInt aLogMode);
sl@0
    98
	void WriteLog(const TDesC& aMsg, TInt aLogMode);
sl@0
    99
	void CloseLog();
sl@0
   100
	TInt LogStatus() const;
sl@0
   101
sl@0
   102
	void AddInputWindowL(CTestFrameworkServerSession* aOwner);
sl@0
   103
	void RemoveWindow(CTestFrameworkServerSession* aOwner);
sl@0
   104
sl@0
   105
private:
sl@0
   106
	CTestFrameworkServer();
sl@0
   107
	void ConstructL();
sl@0
   108
	//open/close a session
sl@0
   109
	CMmfIpcSession* NewSessionL(const TVersion &aVersion) const;
sl@0
   110
sl@0
   111
private:
sl@0
   112
	TInt iSessionCount;	// The number of sessions
sl@0
   113
	CTestFrameworkServerShutdown iShutdown;// A timer used to shut the server down after all clients have exited.
sl@0
   114
sl@0
   115
	// An active console, receiving output from client messages and input from server
sl@0
   116
	CServerConsole* iConsole;
sl@0
   117
sl@0
   118
	// logging parms
sl@0
   119
	TUint iLogMode;
sl@0
   120
	TBuf<KMaxLogFilenameLength> iLogName;
sl@0
   121
	CFileLogger* iFileLogger;
sl@0
   122
sl@0
   123
	// last keypress
sl@0
   124
	TInt iInputKey;
sl@0
   125
sl@0
   126
	TWindow iInputWindow;
sl@0
   127
	};
sl@0
   128
sl@0
   129
/**
sl@0
   130
 *
sl@0
   131
 * Test Framework Server Session :
sl@0
   132
 * handles message passing between Test Framework client / server
sl@0
   133
 *
sl@0
   134
 * @xxxx
sl@0
   135
 *
sl@0
   136
 */
sl@0
   137
class CTestFrameworkServerSession : public CMmfIpcSession
sl@0
   138
	{
sl@0
   139
public:
sl@0
   140
	CTestFrameworkServerSession();
sl@0
   141
	void CreateL(const CMmfIpcServer& aServer);
sl@0
   142
	void ConstructL();
sl@0
   143
	~CTestFrameworkServerSession();
sl@0
   144
sl@0
   145
	void ServiceL(const RMmfIpcMessage &aMessage);
sl@0
   146
	TInt RunError(const RMmfIpcMessage& aMessage, TInt aError);
sl@0
   147
sl@0
   148
	void NotifyWindowChanged(const TRect& aWinRect);
sl@0
   149
sl@0
   150
private:
sl@0
   151
	// async window message handling
sl@0
   152
	void SetOwnCopyOfWindowMessageL(const RMmfIpcMessage& aMessage);
sl@0
   153
	void CompleteOwnCopyOfWindowMessage(TInt aReason);
sl@0
   154
sl@0
   155
private:
sl@0
   156
	CTestFrameworkServer* iServer;	//<pointer to owning server
sl@0
   157
sl@0
   158
	// async window message data
sl@0
   159
	RMmfIpcMessage iWindowMessage;
sl@0
   160
	TBool iCanCompleteWindowMessage;
sl@0
   161
	TBool iNeedToNotifyClientOfWindowSizeChange;
sl@0
   162
	TRectBuf iWinRectBuf;
sl@0
   163
	};
sl@0
   164
sl@0
   165
sl@0
   166
sl@0
   167
#endif //__TESTFRAMEWORKSERVER_H__