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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Sets compiler switches to control WSERV's build
35 class CWsPluginManager;
36 typedef CDebugLogBase *(*CreateDebugLog)(TBool aIsFirst, TDesC &aParams);
38 class CWsShellLogon : public CActive
43 void ConstructL(RFs &aFs);
44 inline TFullName FullName();
53 RProcess iShellProcess;
59 class CWsRenderOrienationTracker;
62 enum {EShellBootModeReboot=0,EShellBootModeNoReboot=1,EShellBootModeExit=2};
64 class CShellStarter : public CTimer
67 CShellStarter() : CTimer(EPriorityNormal) {CActiveScheduler::Add(this);}
68 void ConstructL() {CTimer::ConstructL();}
70 void RunL() { CWsTop::StartShell(); }
74 static void RunServerL();
75 static void InitStaticsL();
76 static void DeleteStaticsL();
77 static inline CWsWindowGroup *FocusWindowGroup();
78 static CWsClient *FocusWindowGroupOwner();
80 static RWsTextCursor *CurrentTextCursor();
81 static void SetCurrentTextCursor(RWsTextCursor *aCurrentTextCursor);
82 static inline void KillForegroundSession();
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();
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();
125 static inline CWsPluginManager *PluginManager();
126 static void CheckRenderOrientation();
129 static void InitLogging();
130 static void InitScreenL( TInt aScreenNumber) ;
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;
160 NONSHARABLE_CLASS(CWsActiveScheduler): public CActiveScheduler, public MWsActiveSchedulerDebug
163 static CWsActiveScheduler* Static();
164 CWsActiveScheduler();
165 ~CWsActiveScheduler();
167 void CancelPrepare();
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; }
195 mutable TInt64 iErrors;
203 TInt64 iReclaimedIdleTime;
205 // pixels-per-second stats
206 NONSHARABLE_STRUCT(TSample)
212 TInt iFastCounterFreq;
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()
242 inline CWindowServer* CWsTop::WindowServer()
244 inline TBool CWsTop::IsFadeEnabled()
245 {return iFadeEnabled;}
246 inline TBool CWsTop::FinishEveryFlush()
247 {return iFinishEveryFlush;}
248 inline CWsPluginManager *CWsTop::PluginManager()
249 {return iPluginManager;}