Update contrib.
1 // Copyright (c) 1995-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 // General utility functions that don't belong anywhere else
23 GLREF_D CDebugLogBase *wsDebugLog;
25 GLDEF_C RWsRegion *GetRegionFromClientL(CWsClient *aClient, TInt aCount)
27 TInt bufSize=sizeof(TRect)*aCount;
28 TUint8* rectList=STATIC_CAST(TUint8*,User::Alloc(bufSize));
29 User::LeaveIfNull(rectList);
30 CleanupStack::PushL(rectList);
31 TPtr8 rectBuf(rectList,bufSize);
32 aClient->RemoteRead(rectBuf,0);
33 RWsRegion* region=new(ELeave) RWsRegion(aCount,REINTERPRET_CAST(TRect*,rectList));
34 CleanupStack::Pop(rectList);
38 GLDEF_C TInt ExternalizeRegionL(RWriteStream& aWriteStream, const RWsRegion& aRegion)
40 TInt dataLen = sizeof(TRect)*aRegion.Count();
41 aWriteStream.WriteInt32L(aRegion.Count());
42 aWriteStream.WriteL(REINTERPRET_CAST(const TUint8*,aRegion.RectangleList()),dataLen);
43 aWriteStream.CommitL();
44 return sizeof(TInt32)+dataLen;
47 GLDEF_C RWsRegion* InternalizeRegionL(RReadStream& aReadStream)
49 TInt numRects = aReadStream.ReadInt32L();
50 TInt bufSize = sizeof(TRect)*numRects;
51 // Allocate buffer for list of clipping rectangles. We leave if we
52 // cannot create the buffer
53 TUint8* rectList = static_cast<TUint8*>(User::AllocL(bufSize));
54 CleanupStack::PushL(rectList);
55 // Read the list of rectangles into the buffer
56 aReadStream.ReadL(rectList,bufSize);
57 // Point member pointer to our new rectangle list buffer
58 RWsRegion* region = new(ELeave) RWsRegion(numRects,reinterpret_cast<TRect*>(rectList));
59 CleanupStack::Pop(rectList);
63 void Panic(TWservPanic aPanic)
66 wsDebugLog->Panic(CDebugLogBase::EDummyConnectionId,aPanic); //Dummy value meaning WSERV
67 _LIT(KWSERVInternalPanicCategory,"WSERV-INTERNAL");
68 User::Panic(KWSERVInternalPanicCategory,aPanic);
71 _LIT(KWSERVPanicDesc1,"WServ internal Panic %S, in file %S @ line %i");
72 _LIT(KWSERVPanicDesc2,"Assert condition = \"%S\"");
74 void PanicWithInfo(TWservPanic aPanic, const TDesC& aFileName, const TDesC& aPanicName, TInt aLine)
77 buf.Format(KWSERVPanicDesc1, &aPanicName, &aFileName, aLine);
81 wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant, buf);
86 void PanicWithCondAndInfo(TWservPanic aPanic, const TDesC& aCondition, const TDesC& aFileName, const TDesC& aPanicName, TInt aLine)
89 buf.Format(KWSERVPanicDesc1, &aPanicName, &aFileName, aLine);
93 wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant, buf);
95 buf.Format(KWSERVPanicDesc2, &aCondition);
99 wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant, buf);
105 GLDEF_C void StateDump()
110 GLDEF_C void StateDump(CWsRootWindow* aRootWindow)
112 TBool enabled=wsDebugLog!=NULL;
115 CWsTop::EnableLogging();
117 return; // Failed to enable logging so give up
120 _LIT(LogLine,"===========");
121 _LIT(KWSERVStateLogWindowTree,"Window tree");
123 wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,LogLine);
124 wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,KWSERVStateLogWindowTree);
125 wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,LogLine);
127 CWsWindowBase *win=aRootWindow;
129 _LIT(KWSERVStateInsetLevelValue,"%*p");
132 buf.Format(KWSERVStateInsetLevelValue,Min(inset<<1,20));
133 win->StatusDump(buf);
134 wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,buf);
135 if (win->BaseChild())
138 win=win->BaseChild();
141 while(!win->NextSibling() && win!=aRootWindow)
143 win=win->BaseParent();
146 if (win==aRootWindow)
147 break; //Will break here if there is only the root window or the tree walk has returned to it
148 win=win->NextSibling();
150 wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,LogLine);
153 CWsTop::DisableLogging();
156 GLDEF_C void HeapDump()
158 TBool enabled=(wsDebugLog!=NULL);
160 CWsTop::EnableLogging();
161 if (wsDebugLog) // Just in case enable failed
162 wsDebugLog->HeapDump();
164 CWsTop::DisableLogging();
168 //GLREF_C void ForceLog(TInt aPriority,const TDesC &aText,TInt aParam=0);
169 //ForceLog(CDebugLogBase::ELogImportant,_L("Value=%d"),345);
170 //TLogMessageText buf;
171 //_LIT(KLog,"Count=%d, Object=0x%x");
172 //buf.Format(KLog,Count(),this);
173 //ForceLog(CDebugLogBase::ELogImportant,buf);
174 GLDEF_C void ForceLog(TInt aPriority,const TDesC &aText,TInt aParam=0)
176 TBool enabled=(wsDebugLog!=NULL);
178 CWsTop::EnableLogging();
179 if (wsDebugLog) // Just in case enable failed
181 wsDebugLog->MiscMessage(aPriority,aText,aParam);
183 CWsTop::DisableLogging();
188 LOCAL_C TDisplayMode DisplayMode(TBool aIsColor,TInt aNumColors)
204 return CFbsDevice::DisplayMode16M();
227 GLDEF_C TDisplayMode ParseDisplayMode(const TDesC& aModeName)
229 // Not using _LIT because we only want the string temporarily, not permanently on the heap.
230 if (!aModeName.CompareF(_L("EColor16MAP")))
232 else if (!aModeName.CompareF(_L("EColor16MA")))
234 else if (!aModeName.CompareF(_L("EColor16MU")))
236 else if (!aModeName.CompareF(_L("EColor64K")))
238 else if (!aModeName.CompareF(_L("EColor4K")))
240 else if (!aModeName.CompareF(_L("EColor256")))
242 else if (!aModeName.CompareF(_L("EColor16")))
244 else if (!aModeName.CompareF(_L("EGray256")))
246 else if (!aModeName.CompareF(_L("EGray16")))
248 else if (!aModeName.CompareF(_L("EGray4")))
250 else if (!aModeName.CompareF(_L("EGray2")))
252 else // old wserv magic
253 { // this code supports the old "ColorXXX" and "GrayXXX" formats etc
254 TPtrC ptr(aModeName);
255 TBool isColor=EFalse;
257 if (ptr[0]=='C' || ptr[0]=='c')
259 else if (ptr[0]=='A' || ptr[0]=='a')
261 else if (ptr[0]=='P' || ptr[0]=='p')
263 else if (ptr[0]!='G' && ptr[0]!='g')
267 while (!TChar(ptr[++pos]).IsDigit())
269 TLex lex(ptr.Mid(pos));
271 if (lex.Val(numCols)!=KErrNone)
274 TChar units=lex.Get();
275 if (units=='K' || units=='k')
277 else if (units=='M' || units=='m')
279 TDisplayMode mode = DisplayMode(isColor,numCols);
281 #if defined(__WINS__)
282 //This is a special case for the emulator since the default
283 //screen packing can be overridden by the wsini.ini setting
285 //This code does nothing is iDefaultDisplayMode is not
286 //EColor16M.- see graphics/screendriver/swins/scnew.cpp
287 //function CFbsDrawDevice::DisplayMode16M().
290 TChar packed=lex.Get();
291 if ((packed=='U')||(packed=='u'))
297 //However setting this will give four shades of grey since
298 //the code does not support 16MU and 16M at the same time.