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();