Update contrib.
1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // TestFrameworkServer provides a console and/or log
15 // which will handle all output from test threads.
19 #ifndef __TESTFRAMEWORKSERVER_H__
20 #define __TESTFRAMEWORKSERVER_H__
22 #include <testframework.h>
24 #include "ServerConsole.h"
26 #include <mmf/common/mmfipc.h> // for MmfIpc classes
27 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
28 #include <mmf/common/mmfipcserver.h>
31 class CTestFrameworkServerSession;
35 * A timer used to shut the server down after all clients
41 class CTestFrameworkServerShutdown : public CTimer
45 KTestFrameworkServerShutdownDelay = 5000000 // 5 seconds
48 CTestFrameworkServerShutdown();
57 * Window helper class, allows client and server to set/
58 * modify (console) windows
67 TWindow(CTestFrameworkServerSession* aOwner);
68 void SetOwner(CTestFrameworkServerSession* aOwner);
69 void SetWinRectAndNotifyOwner(const TRect& aWinRect);
70 CTestFrameworkServerSession* Owner() {return iOwner;};
73 CTestFrameworkServerSession* iOwner;
78 * Test Framework Server.
79 * Responsible for opening/closing console and writing to it.
82 * To be adapted to write to a COM port.
87 class CTestFrameworkServer : public CMmfIpcServer
90 //construct / destruct
91 static CMmfIpcServer* NewL();
92 ~CTestFrameworkServer();
97 void OpenLogL(const TDesC& aLogName, TInt aLogMode);
98 void WriteLog(const TDesC& aMsg, TInt aLogMode);
100 TInt LogStatus() const;
102 void AddInputWindowL(CTestFrameworkServerSession* aOwner);
103 void RemoveWindow(CTestFrameworkServerSession* aOwner);
106 CTestFrameworkServer();
108 //open/close a session
109 CMmfIpcSession* NewSessionL(const TVersion &aVersion) const;
112 TInt iSessionCount; // The number of sessions
113 CTestFrameworkServerShutdown iShutdown;// A timer used to shut the server down after all clients have exited.
115 // An active console, receiving output from client messages and input from server
116 CServerConsole* iConsole;
120 TBuf<KMaxLogFilenameLength> iLogName;
121 CFileLogger* iFileLogger;
126 TWindow iInputWindow;
131 * Test Framework Server Session :
132 * handles message passing between Test Framework client / server
137 class CTestFrameworkServerSession : public CMmfIpcSession
140 CTestFrameworkServerSession();
141 void CreateL(const CMmfIpcServer& aServer);
143 ~CTestFrameworkServerSession();
145 void ServiceL(const RMmfIpcMessage &aMessage);
146 TInt RunError(const RMmfIpcMessage& aMessage, TInt aError);
148 void NotifyWindowChanged(const TRect& aWinRect);
151 // async window message handling
152 void SetOwnCopyOfWindowMessageL(const RMmfIpcMessage& aMessage);
153 void CompleteOwnCopyOfWindowMessage(TInt aReason);
156 CTestFrameworkServer* iServer; //<pointer to owning server
158 // async window message data
159 RMmfIpcMessage iWindowMessage;
160 TBool iCanCompleteWindowMessage;
161 TBool iNeedToNotifyClientOfWindowSizeChange;
162 TRectBuf iWinRectBuf;
167 #endif //__TESTFRAMEWORKSERVER_H__