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