os/graphics/windowing/windowserver/nga/SERVER/openwfc/wstop.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.
     1 // Copyright (c) 2003-2010 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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Sets compiler switches to control WSERV's build
    15 // 
    16 //
    17 
    18 #ifndef __WSTOP_H__
    19 #define __WSTOP_H__
    20 
    21 #include <e32std.h>
    22 #include <e32base.h>
    23 #include <f32file.h>
    24 #include <w32debug.h>
    25 #include "w32cmd.h"
    26 #include "server.h"
    27 #include "tcursor.h"
    28 #include "ScrDev.H"
    29 #include "Direct.H"
    30 
    31 /**
    32 @internalTechnology
    33 */
    34 class CWsRootWindow;
    35 class CWsPluginManager;
    36 typedef CDebugLogBase *(*CreateDebugLog)(TBool aIsFirst, TDesC &aParams);
    37 
    38 class CWsShellLogon : public CActive
    39 	{
    40 public:
    41 	CWsShellLogon();
    42 	~CWsShellLogon();
    43 	void ConstructL(RFs &aFs);
    44 	inline TFullName FullName();
    45 private:
    46 	void DoCancel();
    47 	void RunL();
    48 	void Request();
    49 private:
    50 #if defined(__WINS__)
    51 	RLibrary iLib;
    52 	RThread iShellThread;
    53 	RProcess iShellProcess;
    54 #else
    55 	RProcess iShell;
    56 #endif
    57 	};
    58 
    59 class CWsRenderOrienationTracker;
    60 class CWsTop
    61 	{
    62 	enum {EShellBootModeReboot=0,EShellBootModeNoReboot=1,EShellBootModeExit=2};
    63 private:
    64 	class CShellStarter : public CTimer
    65 		{
    66 		public:
    67 			CShellStarter() : CTimer(EPriorityNormal) {CActiveScheduler::Add(this);}
    68 			void ConstructL() {CTimer::ConstructL();}
    69 		private:
    70 			void RunL() { CWsTop::StartShell(); }
    71 		};
    72 	
    73 public:
    74 	static void RunServerL();
    75 	static void InitStaticsL();
    76 	static void DeleteStaticsL();
    77 	static inline CWsWindowGroup *FocusWindowGroup();
    78 	static CWsClient *FocusWindowGroupOwner();
    79 
    80 	static RWsTextCursor *CurrentTextCursor();
    81 	static void SetCurrentTextCursor(RWsTextCursor *aCurrentTextCursor);
    82 	static inline void KillForegroundSession();
    83 //
    84 	static void TriggerRedraws(CWsRootWindow* aRootWindow);
    85 	static void ClientDestroyed(const CWsClient *aClient);
    86 	static void NewSession(const CWsClient *aClient);
    87 	static inline TBool ShuttingDown();
    88 	static void StartShell();
    89 	static void SessionExited(CWsClient *aClient);
    90 	static void ShellExited();
    91 	static void Exit();
    92     enum TReloadWsIni 
    93         {
    94         EDoReloadWsIni,
    95         EDoNotReloadWsIni
    96         };
    97     static void EnableLogging(TReloadWsIni aSetting = EDoReloadWsIni);
    98 	static void DisableLogging();
    99 	static TInt SetSendOffEventsToShell(CWsClient *aClient,const TWsClCmdOffEventsToShell &aData);
   100 	static void StopWindowGettingOffEvents(CWsWindowBase* aWindow);
   101 	static void HandleSwitchOff(TInt aEvent,TBool aDoSwitchOff);
   102 	static inline CScreen* Screen();
   103 	static inline CScreen* Screen(TInt aScreenId);
   104 	static inline TInt NumberOfScreens();
   105 	static void RedrawScreens();
   106 	static void ClearAllRedrawStores();
   107 	static void LogCommand(RWsSession::TLoggingCommand aCommand);
   108 	static inline RTimer& Timer();
   109 	static void StateDump();
   110 	static void SetCurrentFocusScreen(CScreen* aScreen);
   111 	static inline CScreen* CurrentFocusScreen();
   112 	static TInt SetCurrentFocusScreen(TInt aScreenNo);
   113 	static inline CWindowServer* WindowServer();
   114 	static void SetCheckHeapOnDisconnectClient(const CWsClient* aClient);
   115 	static void SetCheckHeapOnDisconnectMode(TWsCheckHeapOnDisconnectMode aCheckHeapOnDisconnectMode);
   116 	static TInt FetchCheckHeapResult();
   117 	static TBool NeedsHeapCheckAndRestart(TInt aStartHeapCount);
   118 	static TBool ReleaseMemory();
   119 	static inline TBool IsFadeEnabled();
   120 	static inline TBool FinishEveryFlush();
   121 	static void ClearSurfaceMap(CWsClient* aClient);
   122 	static TBool SearchDuplicateSurfaceId(const TSurfaceId& aSurfaceId);
   123 	static TBool MultiFocusPolicy();
   124 	
   125 	static inline CWsPluginManager *PluginManager();
   126 	static void CheckRenderOrientation();
   127 	
   128 private:
   129 	static void InitLogging();
   130 	static void InitScreenL( TInt aScreenNumber)  ; 	
   131 
   132 private:
   133 // Data
   134 	static CShellStarter *iShellStarter;
   135 	static CWindowServer *iServer;
   136 	static RLibrary iDebugLib;
   137 	static CWsShellLogon *iShell;
   138 	static const CWsClient *iShellClient;
   139 	static TBool iPreviousShellClient;
   140 	static TInt iShellBootMode;
   141 	static TBool iShuttingDown;
   142 	static TBool iIsFirstLog;
   143 	static CWsWindowBase *iWindowToSendOffEventsTo;
   144 	static CArrayPtrFlat<CScreen>* iScreens ;
   145 	static CScreen* iCurrentFocusScreen;
   146 	static TInt iNumberOfScreens ;
   147 	static RTimer iTimer;
   148 	static TBool iIgnoreSwitchOffEvent;
   149 	static TBool iFadeEnabled;
   150 	static TBool iFinishEveryFlush;
   151 	static TBool iMultiFocusPolicy;
   152 	static const CWsClient* iTriggerHeapCheckOnClientExit;
   153 	static TWsCheckHeapOnDisconnectMode iHeapCheckMode;
   154 	static TInt iCheckHeapResult;
   155 	static TBool iDoHeapCheckAndRestart;
   156 	static CWsPluginManager *iPluginManager;
   157     static CWsRenderOrienationTracker* iRenderOrientationTracker;	
   158 	};
   159 	
   160 NONSHARABLE_CLASS(CWsActiveScheduler): public CActiveScheduler, public MWsActiveSchedulerDebug
   161 	{
   162 public:
   163 	static CWsActiveScheduler* Static();
   164 	CWsActiveScheduler();
   165 	~CWsActiveScheduler();
   166 	void PrepareDraw();
   167 	void CancelPrepare();
   168 	void StartDraw();
   169 	void StopDraw(TInt aPixelsUpdated);
   170 	void DrawStats(TInt& aUpdatesPerSecond,TInt64& aPixelsPerSecond,TInt aWindowInSeconds) const;
   171 	void WaitForAnyRequest();
   172 	void Error(TInt aError) const;
   173 	void AccumReclaimedIdleTime(TInt64 aMicroSeconds);
   174 	TInt64 ReclaimedIdleTime() const { return iReclaimedIdleTime; }
   175 	TInt64 Requests() const { return iRequests; }
   176 	TInt64 Errors() const { return iErrors; }
   177 	virtual TInt64 Draws() const { return iDraws; }
   178 	virtual TInt64 Total() const { return iTotal; }
   179 	virtual TInt64 Preparing() const { return iPreparing; }
   180 	virtual TInt64 Drawing() const { return iDrawing; }
   181 	virtual TInt64 Idle() const { return iIdle;	}
   182 private:
   183 #ifdef _DEBUG
   184 	enum TState
   185 		{
   186 		ENormal,
   187 		EPreparingDraw,
   188 		EDrawing,
   189 		EDrawn
   190 		};
   191 	TState iState;
   192 #endif
   193 	// request stats
   194 	TInt64 iRequests;
   195 	mutable TInt64 iErrors;
   196 	TInt64 iDraws;
   197 	TTime iRun;
   198 	TTime iRunDraw;
   199 	TInt64 iTotal;
   200 	TInt64 iPreparing;
   201 	TInt64 iDrawing;
   202 	TInt64 iIdle;
   203 	TInt64 iReclaimedIdleTime;
   204 	//TBool iPaused;
   205 	// pixels-per-second stats
   206 	NONSHARABLE_STRUCT(TSample)
   207 		{
   208 		TTime iStart;
   209 		TUint64 iDuration;
   210 		TUint32 iPixels;
   211 		};
   212 	TInt iFastCounterFreq;
   213 	TUint iNumSamples;
   214 	TUint iCurrent;
   215 	TSample* iData;	
   216 	};
   217 
   218 
   219 //
   220 // inlines			//
   221 //
   222 
   223 //
   224 // CWsTop
   225 //
   226 inline TBool CWsTop::ShuttingDown()
   227 	{return(iShuttingDown);}
   228 inline CWsWindowGroup *CWsTop::FocusWindowGroup()
   229 	{return(iCurrentFocusScreen->FocusWindowGroup());}
   230 inline void CWsTop::KillForegroundSession()
   231 	{iCurrentFocusScreen->KillForegroundSession();}
   232 inline CScreen* CWsTop::Screen()
   233 	{return CWsTop::Screen( 0 ) ;}
   234 inline CScreen* CWsTop::Screen(TInt aScreen)
   235 	{return (*iScreens)[aScreen];}
   236 inline TInt CWsTop::NumberOfScreens()
   237 	{return iNumberOfScreens;}
   238 inline CScreen* CWsTop::CurrentFocusScreen()	
   239 	{return iCurrentFocusScreen;}
   240 inline RTimer& CWsTop::Timer()
   241 	{return iTimer;}
   242 inline CWindowServer* CWsTop::WindowServer()
   243 	{return iServer;}
   244 inline TBool CWsTop::IsFadeEnabled()
   245 	{return iFadeEnabled;}
   246 inline TBool CWsTop::FinishEveryFlush()
   247 	{return iFinishEveryFlush;}
   248 inline CWsPluginManager *CWsTop::PluginManager()
   249 	{return iPluginManager;}
   250 
   251 #endif