1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nga/SERVER/openwfc/wstop.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,251 @@
1.4 +// Copyright (c) 2003-2010 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 +// Sets compiler switches to control WSERV's build
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __WSTOP_H__
1.22 +#define __WSTOP_H__
1.23 +
1.24 +#include <e32std.h>
1.25 +#include <e32base.h>
1.26 +#include <f32file.h>
1.27 +#include <w32debug.h>
1.28 +#include "w32cmd.h"
1.29 +#include "server.h"
1.30 +#include "tcursor.h"
1.31 +#include "ScrDev.H"
1.32 +#include "Direct.H"
1.33 +
1.34 +/**
1.35 +@internalTechnology
1.36 +*/
1.37 +class CWsRootWindow;
1.38 +class CWsPluginManager;
1.39 +typedef CDebugLogBase *(*CreateDebugLog)(TBool aIsFirst, TDesC &aParams);
1.40 +
1.41 +class CWsShellLogon : public CActive
1.42 + {
1.43 +public:
1.44 + CWsShellLogon();
1.45 + ~CWsShellLogon();
1.46 + void ConstructL(RFs &aFs);
1.47 + inline TFullName FullName();
1.48 +private:
1.49 + void DoCancel();
1.50 + void RunL();
1.51 + void Request();
1.52 +private:
1.53 +#if defined(__WINS__)
1.54 + RLibrary iLib;
1.55 + RThread iShellThread;
1.56 + RProcess iShellProcess;
1.57 +#else
1.58 + RProcess iShell;
1.59 +#endif
1.60 + };
1.61 +
1.62 +class CWsRenderOrienationTracker;
1.63 +class CWsTop
1.64 + {
1.65 + enum {EShellBootModeReboot=0,EShellBootModeNoReboot=1,EShellBootModeExit=2};
1.66 +private:
1.67 + class CShellStarter : public CTimer
1.68 + {
1.69 + public:
1.70 + CShellStarter() : CTimer(EPriorityNormal) {CActiveScheduler::Add(this);}
1.71 + void ConstructL() {CTimer::ConstructL();}
1.72 + private:
1.73 + void RunL() { CWsTop::StartShell(); }
1.74 + };
1.75 +
1.76 +public:
1.77 + static void RunServerL();
1.78 + static void InitStaticsL();
1.79 + static void DeleteStaticsL();
1.80 + static inline CWsWindowGroup *FocusWindowGroup();
1.81 + static CWsClient *FocusWindowGroupOwner();
1.82 +
1.83 + static RWsTextCursor *CurrentTextCursor();
1.84 + static void SetCurrentTextCursor(RWsTextCursor *aCurrentTextCursor);
1.85 + static inline void KillForegroundSession();
1.86 +//
1.87 + static void TriggerRedraws(CWsRootWindow* aRootWindow);
1.88 + static void ClientDestroyed(const CWsClient *aClient);
1.89 + static void NewSession(const CWsClient *aClient);
1.90 + static inline TBool ShuttingDown();
1.91 + static void StartShell();
1.92 + static void SessionExited(CWsClient *aClient);
1.93 + static void ShellExited();
1.94 + static void Exit();
1.95 + enum TReloadWsIni
1.96 + {
1.97 + EDoReloadWsIni,
1.98 + EDoNotReloadWsIni
1.99 + };
1.100 + static void EnableLogging(TReloadWsIni aSetting = EDoReloadWsIni);
1.101 + static void DisableLogging();
1.102 + static TInt SetSendOffEventsToShell(CWsClient *aClient,const TWsClCmdOffEventsToShell &aData);
1.103 + static void StopWindowGettingOffEvents(CWsWindowBase* aWindow);
1.104 + static void HandleSwitchOff(TInt aEvent,TBool aDoSwitchOff);
1.105 + static inline CScreen* Screen();
1.106 + static inline CScreen* Screen(TInt aScreenId);
1.107 + static inline TInt NumberOfScreens();
1.108 + static void RedrawScreens();
1.109 + static void ClearAllRedrawStores();
1.110 + static void LogCommand(RWsSession::TLoggingCommand aCommand);
1.111 + static inline RTimer& Timer();
1.112 + static void StateDump();
1.113 + static void SetCurrentFocusScreen(CScreen* aScreen);
1.114 + static inline CScreen* CurrentFocusScreen();
1.115 + static TInt SetCurrentFocusScreen(TInt aScreenNo);
1.116 + static inline CWindowServer* WindowServer();
1.117 + static void SetCheckHeapOnDisconnectClient(const CWsClient* aClient);
1.118 + static void SetCheckHeapOnDisconnectMode(TWsCheckHeapOnDisconnectMode aCheckHeapOnDisconnectMode);
1.119 + static TInt FetchCheckHeapResult();
1.120 + static TBool NeedsHeapCheckAndRestart(TInt aStartHeapCount);
1.121 + static TBool ReleaseMemory();
1.122 + static inline TBool IsFadeEnabled();
1.123 + static inline TBool FinishEveryFlush();
1.124 + static void ClearSurfaceMap(CWsClient* aClient);
1.125 + static TBool SearchDuplicateSurfaceId(const TSurfaceId& aSurfaceId);
1.126 + static TBool MultiFocusPolicy();
1.127 +
1.128 + static inline CWsPluginManager *PluginManager();
1.129 + static void CheckRenderOrientation();
1.130 +
1.131 +private:
1.132 + static void InitLogging();
1.133 + static void InitScreenL( TInt aScreenNumber) ;
1.134 +
1.135 +private:
1.136 +// Data
1.137 + static CShellStarter *iShellStarter;
1.138 + static CWindowServer *iServer;
1.139 + static RLibrary iDebugLib;
1.140 + static CWsShellLogon *iShell;
1.141 + static const CWsClient *iShellClient;
1.142 + static TBool iPreviousShellClient;
1.143 + static TInt iShellBootMode;
1.144 + static TBool iShuttingDown;
1.145 + static TBool iIsFirstLog;
1.146 + static CWsWindowBase *iWindowToSendOffEventsTo;
1.147 + static CArrayPtrFlat<CScreen>* iScreens ;
1.148 + static CScreen* iCurrentFocusScreen;
1.149 + static TInt iNumberOfScreens ;
1.150 + static RTimer iTimer;
1.151 + static TBool iIgnoreSwitchOffEvent;
1.152 + static TBool iFadeEnabled;
1.153 + static TBool iFinishEveryFlush;
1.154 + static TBool iMultiFocusPolicy;
1.155 + static const CWsClient* iTriggerHeapCheckOnClientExit;
1.156 + static TWsCheckHeapOnDisconnectMode iHeapCheckMode;
1.157 + static TInt iCheckHeapResult;
1.158 + static TBool iDoHeapCheckAndRestart;
1.159 + static CWsPluginManager *iPluginManager;
1.160 + static CWsRenderOrienationTracker* iRenderOrientationTracker;
1.161 + };
1.162 +
1.163 +NONSHARABLE_CLASS(CWsActiveScheduler): public CActiveScheduler, public MWsActiveSchedulerDebug
1.164 + {
1.165 +public:
1.166 + static CWsActiveScheduler* Static();
1.167 + CWsActiveScheduler();
1.168 + ~CWsActiveScheduler();
1.169 + void PrepareDraw();
1.170 + void CancelPrepare();
1.171 + void StartDraw();
1.172 + void StopDraw(TInt aPixelsUpdated);
1.173 + void DrawStats(TInt& aUpdatesPerSecond,TInt64& aPixelsPerSecond,TInt aWindowInSeconds) const;
1.174 + void WaitForAnyRequest();
1.175 + void Error(TInt aError) const;
1.176 + void AccumReclaimedIdleTime(TInt64 aMicroSeconds);
1.177 + TInt64 ReclaimedIdleTime() const { return iReclaimedIdleTime; }
1.178 + TInt64 Requests() const { return iRequests; }
1.179 + TInt64 Errors() const { return iErrors; }
1.180 + virtual TInt64 Draws() const { return iDraws; }
1.181 + virtual TInt64 Total() const { return iTotal; }
1.182 + virtual TInt64 Preparing() const { return iPreparing; }
1.183 + virtual TInt64 Drawing() const { return iDrawing; }
1.184 + virtual TInt64 Idle() const { return iIdle; }
1.185 +private:
1.186 +#ifdef _DEBUG
1.187 + enum TState
1.188 + {
1.189 + ENormal,
1.190 + EPreparingDraw,
1.191 + EDrawing,
1.192 + EDrawn
1.193 + };
1.194 + TState iState;
1.195 +#endif
1.196 + // request stats
1.197 + TInt64 iRequests;
1.198 + mutable TInt64 iErrors;
1.199 + TInt64 iDraws;
1.200 + TTime iRun;
1.201 + TTime iRunDraw;
1.202 + TInt64 iTotal;
1.203 + TInt64 iPreparing;
1.204 + TInt64 iDrawing;
1.205 + TInt64 iIdle;
1.206 + TInt64 iReclaimedIdleTime;
1.207 + //TBool iPaused;
1.208 + // pixels-per-second stats
1.209 + NONSHARABLE_STRUCT(TSample)
1.210 + {
1.211 + TTime iStart;
1.212 + TUint64 iDuration;
1.213 + TUint32 iPixels;
1.214 + };
1.215 + TInt iFastCounterFreq;
1.216 + TUint iNumSamples;
1.217 + TUint iCurrent;
1.218 + TSample* iData;
1.219 + };
1.220 +
1.221 +
1.222 +//
1.223 +// inlines //
1.224 +//
1.225 +
1.226 +//
1.227 +// CWsTop
1.228 +//
1.229 +inline TBool CWsTop::ShuttingDown()
1.230 + {return(iShuttingDown);}
1.231 +inline CWsWindowGroup *CWsTop::FocusWindowGroup()
1.232 + {return(iCurrentFocusScreen->FocusWindowGroup());}
1.233 +inline void CWsTop::KillForegroundSession()
1.234 + {iCurrentFocusScreen->KillForegroundSession();}
1.235 +inline CScreen* CWsTop::Screen()
1.236 + {return CWsTop::Screen( 0 ) ;}
1.237 +inline CScreen* CWsTop::Screen(TInt aScreen)
1.238 + {return (*iScreens)[aScreen];}
1.239 +inline TInt CWsTop::NumberOfScreens()
1.240 + {return iNumberOfScreens;}
1.241 +inline CScreen* CWsTop::CurrentFocusScreen()
1.242 + {return iCurrentFocusScreen;}
1.243 +inline RTimer& CWsTop::Timer()
1.244 + {return iTimer;}
1.245 +inline CWindowServer* CWsTop::WindowServer()
1.246 + {return iServer;}
1.247 +inline TBool CWsTop::IsFadeEnabled()
1.248 + {return iFadeEnabled;}
1.249 +inline TBool CWsTop::FinishEveryFlush()
1.250 + {return iFinishEveryFlush;}
1.251 +inline CWsPluginManager *CWsTop::PluginManager()
1.252 + {return iPluginManager;}
1.253 +
1.254 +#endif