sl@0
|
1 |
// Copyright (c) 1995-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 |
// General utility functions that don't belong anywhere else
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "server.h"
|
sl@0
|
19 |
#include "rootwin.h"
|
sl@0
|
20 |
#include "wstop.h"
|
sl@0
|
21 |
#include "panics.h"
|
sl@0
|
22 |
|
sl@0
|
23 |
GLREF_D CDebugLogBase *wsDebugLog;
|
sl@0
|
24 |
|
sl@0
|
25 |
GLDEF_C RWsRegion *GetRegionFromClientL(CWsClient *aClient, TInt aCount)
|
sl@0
|
26 |
{
|
sl@0
|
27 |
TInt bufSize=sizeof(TRect)*aCount;
|
sl@0
|
28 |
TUint8* rectList=STATIC_CAST(TUint8*,User::Alloc(bufSize));
|
sl@0
|
29 |
User::LeaveIfNull(rectList);
|
sl@0
|
30 |
CleanupStack::PushL(rectList);
|
sl@0
|
31 |
TPtr8 rectBuf(rectList,bufSize);
|
sl@0
|
32 |
aClient->RemoteRead(rectBuf,0);
|
sl@0
|
33 |
RWsRegion* region=new(ELeave) RWsRegion(aCount,REINTERPRET_CAST(TRect*,rectList));
|
sl@0
|
34 |
CleanupStack::Pop(rectList);
|
sl@0
|
35 |
return(region);
|
sl@0
|
36 |
}
|
sl@0
|
37 |
|
sl@0
|
38 |
GLDEF_C TInt ExternalizeRegionL(RWriteStream& aWriteStream, const RWsRegion& aRegion)
|
sl@0
|
39 |
{
|
sl@0
|
40 |
TInt dataLen = sizeof(TRect)*aRegion.Count();
|
sl@0
|
41 |
aWriteStream.WriteInt32L(aRegion.Count());
|
sl@0
|
42 |
aWriteStream.WriteL(REINTERPRET_CAST(const TUint8*,aRegion.RectangleList()),dataLen);
|
sl@0
|
43 |
aWriteStream.CommitL();
|
sl@0
|
44 |
return sizeof(TInt32)+dataLen;
|
sl@0
|
45 |
}
|
sl@0
|
46 |
|
sl@0
|
47 |
GLDEF_C RWsRegion* InternalizeRegionL(RReadStream& aReadStream)
|
sl@0
|
48 |
{
|
sl@0
|
49 |
TInt numRects = aReadStream.ReadInt32L();
|
sl@0
|
50 |
TInt bufSize = sizeof(TRect)*numRects;
|
sl@0
|
51 |
// Allocate buffer for list of clipping rectangles. We leave if we
|
sl@0
|
52 |
// cannot create the buffer
|
sl@0
|
53 |
TUint8* rectList = static_cast<TUint8*>(User::AllocL(bufSize));
|
sl@0
|
54 |
CleanupStack::PushL(rectList);
|
sl@0
|
55 |
// Read the list of rectangles into the buffer
|
sl@0
|
56 |
aReadStream.ReadL(rectList,bufSize);
|
sl@0
|
57 |
// Point member pointer to our new rectangle list buffer
|
sl@0
|
58 |
RWsRegion* region = new(ELeave) RWsRegion(numRects,reinterpret_cast<TRect*>(rectList));
|
sl@0
|
59 |
CleanupStack::Pop(rectList);
|
sl@0
|
60 |
return region;
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
void Panic(TWservPanic aPanic)
|
sl@0
|
64 |
{
|
sl@0
|
65 |
if (wsDebugLog)
|
sl@0
|
66 |
wsDebugLog->Panic(CDebugLogBase::EDummyConnectionId,aPanic); //Dummy value meaning WSERV
|
sl@0
|
67 |
_LIT(KWSERVInternalPanicCategory,"WSERV-INTERNAL");
|
sl@0
|
68 |
User::Panic(KWSERVInternalPanicCategory,aPanic);
|
sl@0
|
69 |
}
|
sl@0
|
70 |
|
sl@0
|
71 |
_LIT(KWSERVPanicDesc1,"WServ internal Panic %S, in file %S @ line %i");
|
sl@0
|
72 |
_LIT(KWSERVPanicDesc2,"Assert condition = \"%S\"");
|
sl@0
|
73 |
|
sl@0
|
74 |
void PanicWithInfo(TWservPanic aPanic, const TDesC& aFileName, const TDesC& aPanicName, TInt aLine)
|
sl@0
|
75 |
{
|
sl@0
|
76 |
TBuf<256> buf;
|
sl@0
|
77 |
buf.Format(KWSERVPanicDesc1, &aPanicName, &aFileName, aLine);
|
sl@0
|
78 |
RDebug::Print(buf);
|
sl@0
|
79 |
if (wsDebugLog)
|
sl@0
|
80 |
{
|
sl@0
|
81 |
wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant, buf);
|
sl@0
|
82 |
}
|
sl@0
|
83 |
Panic(aPanic);
|
sl@0
|
84 |
}
|
sl@0
|
85 |
|
sl@0
|
86 |
void PanicWithCondAndInfo(TWservPanic aPanic, const TDesC& aCondition, const TDesC& aFileName, const TDesC& aPanicName, TInt aLine)
|
sl@0
|
87 |
{
|
sl@0
|
88 |
TBuf<256> buf;
|
sl@0
|
89 |
buf.Format(KWSERVPanicDesc1, &aPanicName, &aFileName, aLine);
|
sl@0
|
90 |
RDebug::Print(buf);
|
sl@0
|
91 |
if (wsDebugLog)
|
sl@0
|
92 |
{
|
sl@0
|
93 |
wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant, buf);
|
sl@0
|
94 |
}
|
sl@0
|
95 |
buf.Format(KWSERVPanicDesc2, &aCondition);
|
sl@0
|
96 |
RDebug::Print(buf);
|
sl@0
|
97 |
if (wsDebugLog)
|
sl@0
|
98 |
{
|
sl@0
|
99 |
wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant, buf);
|
sl@0
|
100 |
}
|
sl@0
|
101 |
Panic(aPanic);
|
sl@0
|
102 |
}
|
sl@0
|
103 |
|
sl@0
|
104 |
|
sl@0
|
105 |
GLDEF_C void StateDump()
|
sl@0
|
106 |
{
|
sl@0
|
107 |
CWsTop::StateDump();
|
sl@0
|
108 |
}
|
sl@0
|
109 |
|
sl@0
|
110 |
GLDEF_C void StateDump(CWsRootWindow* aRootWindow)
|
sl@0
|
111 |
{
|
sl@0
|
112 |
TBool enabled=wsDebugLog!=NULL;
|
sl@0
|
113 |
if (!enabled)
|
sl@0
|
114 |
{
|
sl@0
|
115 |
CWsTop::EnableLogging();
|
sl@0
|
116 |
if (!wsDebugLog)
|
sl@0
|
117 |
return; // Failed to enable logging so give up
|
sl@0
|
118 |
}
|
sl@0
|
119 |
//
|
sl@0
|
120 |
_LIT(LogLine,"===========");
|
sl@0
|
121 |
_LIT(KWSERVStateLogWindowTree,"Window tree");
|
sl@0
|
122 |
TBuf<128> buf;
|
sl@0
|
123 |
wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,LogLine);
|
sl@0
|
124 |
wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,KWSERVStateLogWindowTree);
|
sl@0
|
125 |
wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,LogLine);
|
sl@0
|
126 |
|
sl@0
|
127 |
CWsWindowBase *win=aRootWindow;
|
sl@0
|
128 |
TInt inset=0;
|
sl@0
|
129 |
_LIT(KWSERVStateInsetLevelValue,"%*p");
|
sl@0
|
130 |
FOREVER
|
sl@0
|
131 |
{
|
sl@0
|
132 |
buf.Format(KWSERVStateInsetLevelValue,Min(inset<<1,20));
|
sl@0
|
133 |
win->StatusDump(buf);
|
sl@0
|
134 |
wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,buf);
|
sl@0
|
135 |
if (win->BaseChild())
|
sl@0
|
136 |
{
|
sl@0
|
137 |
++inset;
|
sl@0
|
138 |
win=win->BaseChild();
|
sl@0
|
139 |
continue;
|
sl@0
|
140 |
}
|
sl@0
|
141 |
while(!win->NextSibling() && win!=aRootWindow)
|
sl@0
|
142 |
{
|
sl@0
|
143 |
win=win->BaseParent();
|
sl@0
|
144 |
--inset;
|
sl@0
|
145 |
}
|
sl@0
|
146 |
if (win==aRootWindow)
|
sl@0
|
147 |
break; //Will break here if there is only the root window or the tree walk has returned to it
|
sl@0
|
148 |
win=win->NextSibling();
|
sl@0
|
149 |
}
|
sl@0
|
150 |
wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,LogLine);
|
sl@0
|
151 |
//
|
sl@0
|
152 |
if (!enabled)
|
sl@0
|
153 |
CWsTop::DisableLogging();
|
sl@0
|
154 |
}
|
sl@0
|
155 |
|
sl@0
|
156 |
GLDEF_C void HeapDump()
|
sl@0
|
157 |
{
|
sl@0
|
158 |
TBool enabled=(wsDebugLog!=NULL);
|
sl@0
|
159 |
if (!enabled)
|
sl@0
|
160 |
CWsTop::EnableLogging();
|
sl@0
|
161 |
if (wsDebugLog) // Just in case enable failed
|
sl@0
|
162 |
wsDebugLog->HeapDump();
|
sl@0
|
163 |
if (!enabled)
|
sl@0
|
164 |
CWsTop::DisableLogging();
|
sl@0
|
165 |
}
|
sl@0
|
166 |
|
sl@0
|
167 |
#if defined(_DEBUG)
|
sl@0
|
168 |
//GLREF_C void ForceLog(TInt aPriority,const TDesC &aText,TInt aParam=0);
|
sl@0
|
169 |
//ForceLog(CDebugLogBase::ELogImportant,_L("Value=%d"),345);
|
sl@0
|
170 |
//TLogMessageText buf;
|
sl@0
|
171 |
//_LIT(KLog,"Count=%d, Object=0x%x");
|
sl@0
|
172 |
//buf.Format(KLog,Count(),this);
|
sl@0
|
173 |
//ForceLog(CDebugLogBase::ELogImportant,buf);
|
sl@0
|
174 |
GLDEF_C void ForceLog(TInt aPriority,const TDesC &aText,TInt aParam=0)
|
sl@0
|
175 |
{
|
sl@0
|
176 |
TBool enabled=(wsDebugLog!=NULL);
|
sl@0
|
177 |
if (!enabled)
|
sl@0
|
178 |
CWsTop::EnableLogging();
|
sl@0
|
179 |
if (wsDebugLog) // Just in case enable failed
|
sl@0
|
180 |
{
|
sl@0
|
181 |
wsDebugLog->MiscMessage(aPriority,aText,aParam);
|
sl@0
|
182 |
if (!enabled)
|
sl@0
|
183 |
CWsTop::DisableLogging();
|
sl@0
|
184 |
}
|
sl@0
|
185 |
}
|
sl@0
|
186 |
#endif
|
sl@0
|
187 |
|
sl@0
|
188 |
LOCAL_C TDisplayMode DisplayMode(TBool aIsColor,TInt aNumColors)
|
sl@0
|
189 |
{
|
sl@0
|
190 |
|
sl@0
|
191 |
if (aIsColor)
|
sl@0
|
192 |
{
|
sl@0
|
193 |
switch(aNumColors)
|
sl@0
|
194 |
{
|
sl@0
|
195 |
case 16:
|
sl@0
|
196 |
return EColor16;
|
sl@0
|
197 |
case 256:
|
sl@0
|
198 |
return EColor256;
|
sl@0
|
199 |
case 4096:
|
sl@0
|
200 |
return EColor4K;
|
sl@0
|
201 |
case 65536:
|
sl@0
|
202 |
return EColor64K;
|
sl@0
|
203 |
case 16777216:
|
sl@0
|
204 |
return CFbsDevice::DisplayMode16M();
|
sl@0
|
205 |
default:
|
sl@0
|
206 |
return ENone;
|
sl@0
|
207 |
}
|
sl@0
|
208 |
}
|
sl@0
|
209 |
else
|
sl@0
|
210 |
{
|
sl@0
|
211 |
switch(aNumColors)
|
sl@0
|
212 |
{
|
sl@0
|
213 |
case 2:
|
sl@0
|
214 |
return EGray2;
|
sl@0
|
215 |
case 4:
|
sl@0
|
216 |
return EGray4;
|
sl@0
|
217 |
case 16:
|
sl@0
|
218 |
return EGray16;
|
sl@0
|
219 |
case 256:
|
sl@0
|
220 |
return EGray256;
|
sl@0
|
221 |
default:
|
sl@0
|
222 |
return ENone;
|
sl@0
|
223 |
}
|
sl@0
|
224 |
}
|
sl@0
|
225 |
}
|
sl@0
|
226 |
|
sl@0
|
227 |
GLDEF_C TDisplayMode ParseDisplayMode(const TDesC& aModeName)
|
sl@0
|
228 |
{
|
sl@0
|
229 |
// Not using _LIT because we only want the string temporarily, not permanently on the heap.
|
sl@0
|
230 |
if (!aModeName.CompareF(_L("EColor16MAP")))
|
sl@0
|
231 |
return EColor16MAP;
|
sl@0
|
232 |
else if (!aModeName.CompareF(_L("EColor16MA")))
|
sl@0
|
233 |
return EColor16MA;
|
sl@0
|
234 |
else if (!aModeName.CompareF(_L("EColor16MU")))
|
sl@0
|
235 |
return EColor16MU;
|
sl@0
|
236 |
else if (!aModeName.CompareF(_L("EColor64K")))
|
sl@0
|
237 |
return EColor64K;
|
sl@0
|
238 |
else if (!aModeName.CompareF(_L("EColor4K")))
|
sl@0
|
239 |
return EColor4K;
|
sl@0
|
240 |
else if (!aModeName.CompareF(_L("EColor256")))
|
sl@0
|
241 |
return EColor256;
|
sl@0
|
242 |
else if (!aModeName.CompareF(_L("EColor16")))
|
sl@0
|
243 |
return EColor16;
|
sl@0
|
244 |
else if (!aModeName.CompareF(_L("EGray256")))
|
sl@0
|
245 |
return EGray256;
|
sl@0
|
246 |
else if (!aModeName.CompareF(_L("EGray16")))
|
sl@0
|
247 |
return EGray16;
|
sl@0
|
248 |
else if (!aModeName.CompareF(_L("EGray4")))
|
sl@0
|
249 |
return EGray4;
|
sl@0
|
250 |
else if (!aModeName.CompareF(_L("EGray2")))
|
sl@0
|
251 |
return EGray2;
|
sl@0
|
252 |
else // old wserv magic
|
sl@0
|
253 |
{ // this code supports the old "ColorXXX" and "GrayXXX" formats etc
|
sl@0
|
254 |
TPtrC ptr(aModeName);
|
sl@0
|
255 |
TBool isColor=EFalse;
|
sl@0
|
256 |
|
sl@0
|
257 |
if (ptr[0]=='C' || ptr[0]=='c')
|
sl@0
|
258 |
isColor=ETrue;
|
sl@0
|
259 |
else if (ptr[0]=='A' || ptr[0]=='a')
|
sl@0
|
260 |
return EColor16MA;
|
sl@0
|
261 |
else if (ptr[0]=='P' || ptr[0]=='p')
|
sl@0
|
262 |
return EColor16MAP;
|
sl@0
|
263 |
else if (ptr[0]!='G' && ptr[0]!='g')
|
sl@0
|
264 |
return ENone;
|
sl@0
|
265 |
|
sl@0
|
266 |
TInt pos=0;
|
sl@0
|
267 |
while (!TChar(ptr[++pos]).IsDigit())
|
sl@0
|
268 |
{}
|
sl@0
|
269 |
TLex lex(ptr.Mid(pos));
|
sl@0
|
270 |
TInt numCols;
|
sl@0
|
271 |
if (lex.Val(numCols)!=KErrNone)
|
sl@0
|
272 |
return ENone;
|
sl@0
|
273 |
lex.SkipSpace();
|
sl@0
|
274 |
TChar units=lex.Get();
|
sl@0
|
275 |
if (units=='K' || units=='k')
|
sl@0
|
276 |
numCols<<=10;
|
sl@0
|
277 |
else if (units=='M' || units=='m')
|
sl@0
|
278 |
numCols<<=20;
|
sl@0
|
279 |
TDisplayMode mode = DisplayMode(isColor,numCols);
|
sl@0
|
280 |
|
sl@0
|
281 |
#if defined(__WINS__)
|
sl@0
|
282 |
//This is a special case for the emulator since the default
|
sl@0
|
283 |
//screen packing can be overridden by the wsini.ini setting
|
sl@0
|
284 |
|
sl@0
|
285 |
//This code does nothing is iDefaultDisplayMode is not
|
sl@0
|
286 |
//EColor16M.- see graphics/screendriver/swins/scnew.cpp
|
sl@0
|
287 |
//function CFbsDrawDevice::DisplayMode16M().
|
sl@0
|
288 |
if(mode==EColor16M)
|
sl@0
|
289 |
{
|
sl@0
|
290 |
TChar packed=lex.Get();
|
sl@0
|
291 |
if ((packed=='U')||(packed=='u'))
|
sl@0
|
292 |
{
|
sl@0
|
293 |
mode=EColor16MU;
|
sl@0
|
294 |
}
|
sl@0
|
295 |
}
|
sl@0
|
296 |
|
sl@0
|
297 |
//However setting this will give four shades of grey since
|
sl@0
|
298 |
//the code does not support 16MU and 16M at the same time.
|
sl@0
|
299 |
#endif
|
sl@0
|
300 |
return mode;
|
sl@0
|
301 |
}
|
sl@0
|
302 |
}
|
sl@0
|
303 |
|