Update contrib.
1 // Copyright (c) 2003-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 // Sets compiler switches to control WSERV's build
35 typedef CDebugLogBase *(*CreateDebugLog)(TBool aIsFirst, TDesC &aParams);
37 class CWsShellLogon : public CActive
42 void ConstructL(RFs &aFs);
43 inline TFullName FullName();
52 RProcess iShellProcess;
60 enum {EShellBootModeReboot=0,EShellBootModeNoReboot=1,EShellBootModeExit=2};
62 class CShellStarter : public CTimer
65 CShellStarter() : CTimer(EPriorityNormal) {CActiveScheduler::Add(this);}
66 void ConstructL() {CTimer::ConstructL();}
68 void RunL() { CWsTop::StartShell(); }
72 static void RunServerL();
73 static void InitStaticsL();
74 static void DeleteStaticsL();
75 static inline CWsWindowGroup *FocusWindowGroup();
76 static CWsClient *FocusWindowGroupOwner();
78 static RWsTextCursor *CurrentTextCursor();
79 static void SetCurrentTextCursor(RWsTextCursor *aCurrentTextCursor);
80 static inline void KillForegroundSession();
82 static void TriggerRedraws(CWsRootWindow* aRootWindow);
83 static void ClientDestroyed(const CWsClient *aClient);
84 static void NewSession(const CWsClient *aClient);
85 static inline TBool ShuttingDown();
86 static void StartShell();
87 static void SessionExited(CWsClient *aClient);
88 static void ShellExited();
95 static void EnableLogging(TReloadWsIni aSetting = EDoReloadWsIni);
96 static void DisableLogging();
97 static TInt SetSendOffEventsToShell(CWsClient *aClient,const TWsClCmdOffEventsToShell &aData);
98 static void StopWindowGettingOffEvents(CWsWindowBase* aWindow);
99 static void HandleSwitchOff(TInt aEvent,TBool aDoSwitchOff);
100 static inline CScreen* Screen();
101 static inline CScreen* Screen(TInt aScreenId);
102 static inline TInt NumberOfScreens();
103 static void RedrawScreens();
104 static void UpdateAllScreens();
105 static void ClearAllRedrawStores();
106 static void LogCommand(RWsSession::TLoggingCommand aCommand);
107 static inline RTimer& Timer();
108 static void StateDump();
109 static void SetCurrentFocusScreen(CScreen* aScreen);
110 static inline CScreen* CurrentFocusScreen();
111 static TInt SetCurrentFocusScreen(TInt aScreenNo);
112 static inline CWindowServer* WindowServer();
113 static void SetCheckHeapOnDisconnectClient(const CWsClient* aClient);
114 static void SetCheckHeapOnDisconnectMode(TWsCheckHeapOnDisconnectMode aCheckHeapOnDisconnectMode);
115 static TInt FetchCheckHeapResult();
116 static TBool NeedsHeapCheckAndRestart(TInt aStartHeapCount);
117 static TBool ReleaseMemory();
118 static inline TBool IsFadeEnabled();
119 static inline TBool FinishEveryFlush();
120 static TBool MultiFocusPolicy();
123 static void InitLogging();
124 static void InitScreenL( TInt aScreenNumber) ;
128 static CShellStarter *iShellStarter;
129 static CWindowServer *iServer;
130 static RLibrary iDebugLib;
131 static CWsShellLogon *iShell;
132 static const CWsClient *iShellClient;
133 static TBool iPreviousShellClient;
134 static TInt iShellBootMode;
135 static TBool iShuttingDown;
136 static TBool iIsFirstLog;
137 static CWsWindowBase *iWindowToSendOffEventsTo;
138 static CArrayPtrFlat<CScreen>* iScreens ;
139 static CScreen* iCurrentFocusScreen;
140 static TInt iNumberOfScreens ;
141 static RTimer iTimer;
142 static TBool iIgnoreSwitchOffEvent;
143 static TBool iFadeEnabled;
144 static TBool iFinishEveryFlush;
145 static TBool iMultiFocusPolicy;
146 static const CWsClient* iTriggerHeapCheckOnClientExit;
147 static TWsCheckHeapOnDisconnectMode iHeapCheckMode;
148 static TInt iCheckHeapResult;
149 static TBool iDoHeapCheckAndRestart;
152 NONSHARABLE_CLASS(CWsActiveScheduler): public CActiveScheduler, public MWsActiveSchedulerDebug
155 static CWsActiveScheduler* Static();
156 CWsActiveScheduler();
157 ~CWsActiveScheduler();
159 void CancelPrepare();
161 void StopDraw(TInt aPixelsUpdated);
162 void DrawStats(TInt& aUpdatesPerSecond,TInt64& aPixelsPerSecond,TInt aWindowInSeconds) const;
163 void WaitForAnyRequest();
164 void Error(TInt aError) const;
165 void AccumReclaimedIdleTime(TInt64 aMicroSeconds);
166 TInt64 ReclaimedIdleTime() const { return iReclaimedIdleTime; }
167 TInt64 Requests() const { return iRequests; }
168 TInt64 Errors() const { return iErrors; }
169 virtual TInt64 Draws() const { return iDraws; }
170 virtual TInt64 Total() const { return iTotal; }
171 virtual TInt64 Preparing() const { return iPreparing; }
172 virtual TInt64 Drawing() const { return iDrawing; }
173 virtual TInt64 Idle() const { return iIdle; }
187 mutable TInt64 iErrors;
195 TInt64 iReclaimedIdleTime;
197 // pixels-per-second stats
198 NONSHARABLE_STRUCT(TSample)
204 TInt iFastCounterFreq;
218 inline TBool CWsTop::ShuttingDown()
219 {return(iShuttingDown);}
220 inline CWsWindowGroup *CWsTop::FocusWindowGroup()
221 {return(iCurrentFocusScreen->FocusWindowGroup());}
222 inline void CWsTop::KillForegroundSession()
223 {iCurrentFocusScreen->KillForegroundSession();}
224 inline CScreen* CWsTop::Screen()
225 {return CWsTop::Screen( 0 ) ;}
226 inline CScreen* CWsTop::Screen(TInt aScreen)
227 {return (*iScreens)[aScreen];}
228 inline TInt CWsTop::NumberOfScreens()
229 {return iNumberOfScreens;}
230 inline CScreen* CWsTop::CurrentFocusScreen()
231 {return iCurrentFocusScreen;}
232 inline RTimer& CWsTop::Timer()
234 inline CWindowServer* CWsTop::WindowServer()
236 inline TBool CWsTop::IsFadeEnabled()
237 {return iFadeEnabled;}
238 inline TBool CWsTop::FinishEveryFlush()
239 {return iFinishEveryFlush;}