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 |
|