sl@0
|
1 |
// Copyright (c) 2003-2010 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 |
// Window server panics
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __PANICS_H__
|
sl@0
|
19 |
#define __PANICS_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <e32def.h>
|
sl@0
|
22 |
#include <e32cmn.h>
|
sl@0
|
23 |
|
sl@0
|
24 |
enum TWservPanic
|
sl@0
|
25 |
{
|
sl@0
|
26 |
EWsPanicTemp = 0, // Used for panics that aren't intended to be left in the code
|
sl@0
|
27 |
EWsPanicInvalidInvalidArea = 1,
|
sl@0
|
28 |
EWsPanicArea = 2,
|
sl@0
|
29 |
EWsPanicRegion = 3,
|
sl@0
|
30 |
EWsPanicQueueUpdateCount = 4,
|
sl@0
|
31 |
EWsPanicUnknownCaptureKey = 5,
|
sl@0
|
32 |
EWsPanicInvalidCursorType = 6,
|
sl@0
|
33 |
EWsPanicInvalidRegion = 7,
|
sl@0
|
34 |
EWsPanicInvalidArea = 8,
|
sl@0
|
35 |
EWsPanicTextCursorFocus = 9,
|
sl@0
|
36 |
|
sl@0
|
37 |
EWsPanicWindowType = 10,
|
sl@0
|
38 |
EWsPanicRootCommand = 11,
|
sl@0
|
39 |
EWsPanicWindowCheck = 12,
|
sl@0
|
40 |
EWsPanicFailedToInitialise = 13,
|
sl@0
|
41 |
EWsPanicBadActiveGcList = 14,
|
sl@0
|
42 |
//EWsPanicShadowLockingError = 15,
|
sl@0
|
43 |
EWsPanicBackupRegion = 16,
|
sl@0
|
44 |
EWsPanicKeyRepeat = 17 ,
|
sl@0
|
45 |
EWsPanicErrorInRegion = 18,
|
sl@0
|
46 |
EWsPanicRedrawQueueError = 19,
|
sl@0
|
47 |
|
sl@0
|
48 |
EWsPanicRegionErrorCheck = 20, // NOT USED
|
sl@0
|
49 |
EWsPanicPointerRepeatTimerStatus = 21,
|
sl@0
|
50 |
EWsPanicCheckEventQueue = 22,
|
sl@0
|
51 |
EWsPanicEventQueueCopy = 23,
|
sl@0
|
52 |
EWsPanicFontCacheCount = 24,
|
sl@0
|
53 |
//EWsPanicNegativeShadow = 25,
|
sl@0
|
54 |
EWsPanicPointerClaimGrab = 26,
|
sl@0
|
55 |
EWsPanicPointerCursorAccessCount = 27,
|
sl@0
|
56 |
EWsPanicSetOrdinalPos = 28,
|
sl@0
|
57 |
EWsPanicGcStructSizeError = 29,
|
sl@0
|
58 |
|
sl@0
|
59 |
EWsPanicPointerTimer = 30,
|
sl@0
|
60 |
EWsPanicNullDeviceHandle = 31, //A function returned a NULL device handle unexpectantly
|
sl@0
|
61 |
EWsPanicColorModeInconsitency = 32, //Logic error while analysing the nature of Color Modes
|
sl@0
|
62 |
EWsPanicCurrentlyFaded = 33, //Should not do while window is fadded
|
sl@0
|
63 |
EWsPanicEventType = 34, //Must be a pointer event
|
sl@0
|
64 |
EWsPanicObjectIndexError = 35, //Object being removed has wrong type
|
sl@0
|
65 |
EWsPanicAnimHasNoWindow = 36, //This AnimDLL function needs the Anim to have a window
|
sl@0
|
66 |
EWsPanicSpriteAlreadyActive = 37, //An attempt to activate an active sprite
|
sl@0
|
67 |
EWsPanicAlreadyHaveBackup = 38, //Getting backup behind when already got it
|
sl@0
|
68 |
EWsPanicSpriteHiddenCount = 39, //The Sprite's hidden count is inconsistent with the action being performed on it
|
sl@0
|
69 |
|
sl@0
|
70 |
EWsPanicRawEventsTypeChanged = 40, //Changes to the Raw Event Type List will probably break this code
|
sl@0
|
71 |
EWsPanicEventHandlerInconsistency = 41, //The number of things claiming to be event handlers doesn't make sence
|
sl@0
|
72 |
EWsPanicBackupStateError = 42, //Something has gone wrong with the state of the Backup classes
|
sl@0
|
73 |
EWsPanicRegionNull = 43, //A region shouldn't be NULL or set to the nullRegion at this point
|
sl@0
|
74 |
//EWsPanicShadowError = 44, //The shadows have not be updated correctly
|
sl@0
|
75 |
EWsPanicDirectScreenAccess = 45, //Error in the state machine of or logic error in Direct Screen Access code
|
sl@0
|
76 |
EWsPanicClickPluginNotLoaded = 46, //Trying to call function in Click PlugIn when there isn't one loaded
|
sl@0
|
77 |
EWsPanicChangeClickPlugin = 47, //Trying to change keyclick plugin when it's fixed
|
sl@0
|
78 |
EWsPanicInvalidScreenSizeMode = 48, //The current screen size mode is one that does not exist
|
sl@0
|
79 |
EWsPanicDrawCommandsBufferCorrupt = 49, //The draw commands buffer contains some inconsistent information
|
sl@0
|
80 |
|
sl@0
|
81 |
EWsPanicDrawCommandsInvalidState = 50, //The draw commands state doesn't match with the action that is occuring
|
sl@0
|
82 |
EWsPanicDrawCommandsNullSession = 51, //Session NULL when it shouldn't be
|
sl@0
|
83 |
EWsPanicBitmapOpcodeInvalid = 52, //At least one of the bitmap opcodes is invalid
|
sl@0
|
84 |
EWsPanicNoDisplayModeFound = 53, //No display mode has been found when creating the off-screen bitmap
|
sl@0
|
85 |
EWsCreatedOffScreenBitmapInWrongDimensions = 54, //There is not enough memory to swap the width and the height as the bitmap was not created with the right dimensions
|
sl@0
|
86 |
EWsFailedToAllocateForOffScreenBitmapDevice = 55, //Couldn't allocate memory for the device after deleting it
|
sl@0
|
87 |
EWsPanicTransparentInvalidState = 56, //Something required for transparency is not available
|
sl@0
|
88 |
EWsPanicBadDescriptor = 57, //The descriptor has been badly constructed
|
sl@0
|
89 |
EWsPanicAlphaBlendBadParams = 58, //Bad parameters were passed in our call to the Alpha Blending function
|
sl@0
|
90 |
EWsPanicInvalidMessageHandle = 59, //The current screen size mode is one that does not exist
|
sl@0
|
91 |
|
sl@0
|
92 |
EWsPanicWindowNull = 60, //Window handle NULL when it shouldn't be
|
sl@0
|
93 |
EWsPanicPanicFlagError = 61, //The panic flag setting is inconsistent with other information
|
sl@0
|
94 |
EWsPanicGCDrawingToWrongDevice = 62, //The device a GC is drawing to has been changed unexpectantly.
|
sl@0
|
95 |
EWsPanicScreenInformationError = 63, //Conflict between number of screens defined in INI file and HAL
|
sl@0
|
96 |
EWsPanicGroupWindowChainError = 64, //An error has occured in the group window chain algorithms
|
sl@0
|
97 |
EWsPanicNoScreen = 65, //There is no screen when there should be one
|
sl@0
|
98 |
EWsPanicWrongNumberBitmapDevices = 66, //The number of OSB bitmap devices does not match the number of screen modes
|
sl@0
|
99 |
EWsPanicHiddenInvalidError = 67, //The Hidden Invalid contains area outside of the FullRect of the window
|
sl@0
|
100 |
EWsPanicWsGraphic = 68, //An issue in internal state in the CWsGraphicDrawer mechanisms, thrown in debug builds only
|
sl@0
|
101 |
EWsPanicOffScreenBitmapMissing = 69, //Found an unexpected NULL pointer to an OffScreenBitmap
|
sl@0
|
102 |
|
sl@0
|
103 |
EWsPanicGCDrawRegionError = 70,//NOT USED//A logic error in the code to decide which region to be drawing too
|
sl@0
|
104 |
EWsPanicFailedToSetThread = 71, //Setting wserv thread to system permananent is failed
|
sl@0
|
105 |
EWsPanicAnimationNotScheduled = 72, //Animation ran when not scheduled
|
sl@0
|
106 |
EWsPanicAnimationAlreadyAnimating = 73, //Animation already marked as animating
|
sl@0
|
107 |
EWsPanicSpriteBitmapSizeChange = 74, //A sprite member bitmap has been made larger, since the sprite was activated, without calling UpdateMember
|
sl@0
|
108 |
EWsPanicMsgQueueError = 75, //Error occurs if inactive message queue doesn't have expected number of messages
|
sl@0
|
109 |
EWsPanicRedrawRegionArrayEmpty = 76, //Trying to retrieve the current redraw region when the redraw region array is empty
|
sl@0
|
110 |
EWsPanicIllegalInvalidArea = 77, //Invalid area includes region outside visible area of the window.
|
sl@0
|
111 |
// EWsPanicTransparencyManagerNotFreed = 78, // incorrect session shutdown
|
sl@0
|
112 |
// EWsPanicFailedToSetProcess = 79, //For future extention
|
sl@0
|
113 |
EWsPanicDebugRegionMemoryLeak = 80, //Panic code for RRegionWserv memory leak
|
sl@0
|
114 |
EWsPanicDefaultHotKeyNotFound = 81, //Default hot key was not found
|
sl@0
|
115 |
// EWsPanicInvalidRedrawStoreDiscardParameter = 82, // Invalid parameter specified for redraw store discard detection algorithm.
|
sl@0
|
116 |
// EWsPanicOverflowRedrawStoreDiscardParameter = 83, // Parameter specified for redraw store discard detection algorithm will cause overflow.
|
sl@0
|
117 |
EwsPanicDisplayModeNotSupported = 84, //Display mode is not supported by screen
|
sl@0
|
118 |
EWsPanicCommandBufferStillBeingProcessed = 85, //Previous command buffer still being processed when another one arrives
|
sl@0
|
119 |
EWsPanicNullClientMessage = 86, //Processing a client message that is NULL
|
sl@0
|
120 |
EWsPanicNoWindowElement = 87, //Element not found for window
|
sl@0
|
121 |
EWsPanicInvalidNotificationFlag = 88, //Invalid Notification event
|
sl@0
|
122 |
EWsPanicNotificationTableIsNull = 89, //Notification table is unexpectedly NULL
|
sl@0
|
123 |
EWsPanicInvalidOperation = 90, //An internal use of an operation was invalid
|
sl@0
|
124 |
EWsPanicCompositionNotSupported = 91, //An attempt to use compositor on a screen which doesn't support it XXX UNUSED??
|
sl@0
|
125 |
EWsPanicCompositionErrorIgnored = 92, //In release the composition error would have been ignored. Occurs in debug builds only. XXX UNUSED??
|
sl@0
|
126 |
EWsPanicExpectedSurfaceChange = 93, //Surfaces returned by different screen devices unexpectedly match
|
sl@0
|
127 |
EWsPanicSurfaceMapError = 94, //There was a problem when unregistering a surface from the registered surface map.
|
sl@0
|
128 |
EWsPanicScheduledRedraw = 95, //Something went horribly wrong in the redraw scheduling code
|
sl@0
|
129 |
EWsPanicRedrawSegmentsInvalidState = 96, //The redraw segments are in a state they should never be able to reach
|
sl@0
|
130 |
EWsPanicMemoryManager = 97, //The memory manager encountered an inconsistant environment somehow
|
sl@0
|
131 |
EWsPanicAccessList = 98, //The access list is invalid
|
sl@0
|
132 |
EWsPanicScreenFallback = 99, //The screens low memory fallback system has failed
|
sl@0
|
133 |
|
sl@0
|
134 |
EWsPanicActiveScheduler = 100, //The active scheduler encountered an inconsistant environment somehow
|
sl@0
|
135 |
EWsPanicDrawFailure = 101, //A draw function which can't leave left
|
sl@0
|
136 |
EWsPanicMemoryLock = 102, //The memory lock/unlock for memory management failed
|
sl@0
|
137 |
|
sl@0
|
138 |
EWsPanicRecycleElement = 103, //No element to recycle
|
sl@0
|
139 |
EWsPanicUnexpectedOpacity = 104, //Unexpected opacity being set on a window
|
sl@0
|
140 |
EWsPanicMaxPointersOutOfRange = 105, //HALData::EPointerMaxPointers is out of range
|
sl@0
|
141 |
EWsPanicMaxPointersInconsistent = 106, //HALData::EPointerMaxPointers is inconsistent with TXYInputType reported by HAL
|
sl@0
|
142 |
EWsPanicPointer3DInconsistent = 107, //HALData::EPointer3D is inconsistent with TXYInputType reported by HAL
|
sl@0
|
143 |
EWsPanicProxThresholdsInconsist = 108, //HALData::EPointer3DEnterCloseProximityThreshold is settable, but EPointer3DExitCloseProximityThreshold is not
|
sl@0
|
144 |
EWsPanicPressThresholdsInconsist = 109, //HALData::EPointer3DEnterHighPressureThreshold is settable, EPointer3DExitHighPressureThreshold is not
|
sl@0
|
145 |
EWsPanicScreenDeviceMissing = 110, //Can't find an instance of MWsScreenDevice
|
sl@0
|
146 |
EWsPanicSceneMissing = 111, //Can't find an instance of MWsScene
|
sl@0
|
147 |
EWsPanicNoRenderStagePipeline = 112, //Failed to create/connect the render stage pipeline
|
sl@0
|
148 |
EWsPanicInvalidChromaKeyColor = 113, //Chroma key color has to be fully opaque
|
sl@0
|
149 |
EWsPanicTextCursorInterfaceMissing = 114, //The interface in the Render Stage to support Text Cursors is missing
|
sl@0
|
150 |
EWsPanicSceneErrorIgnored = 115, //In release the scene error would have been ignored. Occurs in debug builds only.
|
sl@0
|
151 |
EWsPanicNoDisplayControl = 116, //Display control expected
|
sl@0
|
152 |
EWsPanicVisibleRegionTracking = 117,
|
sl@0
|
153 |
EWsPanicNoChangetracking = 118, //CHANGETRACKING mode is expected to be set
|
sl@0
|
154 |
EWsPanicNoSprite = 119,
|
sl@0
|
155 |
EWsPanicAnim = 120,
|
sl@0
|
156 |
EWsPanicFloatingSprite = 121,
|
sl@0
|
157 |
EWsPanicRenderstageAPIs = 122,
|
sl@0
|
158 |
EWsPanicBitmapArrayNotEmpty = 123, //Bitmap array is not empty, when it is expected to be empty
|
sl@0
|
159 |
EWsPanicCounterValue = 124, //Counter value is not the expected one
|
sl@0
|
160 |
EWsPanicUnexpectedBitmapHandleInArray = 125, //Bitmap handle in array with no matching bitmap object in bitmap ref array
|
sl@0
|
161 |
EWsPanicBitmapNotFound = 126, //Failed to find a bitmap in the bitmap ref array
|
sl@0
|
162 |
EWsPanicInvalidRotation = 127, //Invalid rotation used
|
sl@0
|
163 |
EWsPanicInvalidPointerOffset = 128, //The pointer offset value in wsini.ini is invalid.
|
sl@0
|
164 |
EWsPanicArrayInsertFailed = 129, //Array insert failed.
|
sl@0
|
165 |
EWsPanicAccessBeyondCommandBuf = 130, //Access beyond wserv command buffer
|
sl@0
|
166 |
EWsPanicKeyEventRouterBadResult = 131, // Invalid result code from key event routing plug-in
|
sl@0
|
167 |
EWsPanicKeyEventRouterBadWindowGroup = 132, // Invalid destination window group from key event routing plug-in
|
sl@0
|
168 |
EWsPanicKeyEventRouterLeave = 133, // Invalid leave from Key event routing plug-in
|
sl@0
|
169 |
};
|
sl@0
|
170 |
|
sl@0
|
171 |
void Panic(TWservPanic aPanic);
|
sl@0
|
172 |
void PanicWithInfo(TWservPanic aPanic, const TDesC& aFileName, const TDesC& aPanicName, TInt aLine);
|
sl@0
|
173 |
void PanicWithCondAndInfo(TWservPanic aPanic, const TDesC& aCondition, const TDesC& aFileName, const TDesC& aPanicName, TInt aLine);
|
sl@0
|
174 |
|
sl@0
|
175 |
// helper macros
|
sl@0
|
176 |
#define WS_ASSERT_FILENAME(f) _LIT(KPanicFileName, f);
|
sl@0
|
177 |
#define WS_ASSERT_PANICNAME(p) _LIT(KPanicEnum ## p, # p);
|
sl@0
|
178 |
#define WS_ASSERT_CONDITION(c) _LIT(KPanicCondition, c);
|
sl@0
|
179 |
|
sl@0
|
180 |
|
sl@0
|
181 |
/* Use these macros for WServ server Asserts & Panics with diagnostic logging:
|
sl@0
|
182 |
WS_ASSERT_ALWAYS, WS_PANIC_ALWAYS, WS_ASSERT_DEBUG and WS_PANIC_DEBUG
|
sl@0
|
183 |
Note that the "do { ... } while (0)" construction forces the invocation to have a ';'
|
sl@0
|
184 |
and makes the macro expansion safe in nested "if ... else ..." clauses that forget to use the
|
sl@0
|
185 |
{ braces } in the Coding Standard.
|
sl@0
|
186 |
*/
|
sl@0
|
187 |
#define WS_ASSERT_ALWAYS(c, p) \
|
sl@0
|
188 |
do { \
|
sl@0
|
189 |
if (!(c)) \
|
sl@0
|
190 |
{ \
|
sl@0
|
191 |
WS_ASSERT_FILENAME(__FILE__); \
|
sl@0
|
192 |
WS_ASSERT_PANICNAME(p); \
|
sl@0
|
193 |
WS_ASSERT_CONDITION(#c); \
|
sl@0
|
194 |
PanicWithCondAndInfo(p, KPanicCondition, KPanicFileName, KPanicEnum ## p, __LINE__); \
|
sl@0
|
195 |
} \
|
sl@0
|
196 |
} while (0)
|
sl@0
|
197 |
|
sl@0
|
198 |
#define WS_PANIC_ALWAYS(p) \
|
sl@0
|
199 |
do { \
|
sl@0
|
200 |
WS_ASSERT_FILENAME(__FILE__); \
|
sl@0
|
201 |
WS_ASSERT_PANICNAME(p); \
|
sl@0
|
202 |
PanicWithInfo(p, KPanicFileName, KPanicEnum ## p, __LINE__); \
|
sl@0
|
203 |
} while (0)
|
sl@0
|
204 |
|
sl@0
|
205 |
|
sl@0
|
206 |
#if defined(_DEBUG)
|
sl@0
|
207 |
#define WS_ASSERT_DEBUG(c, p) \
|
sl@0
|
208 |
do { \
|
sl@0
|
209 |
if (!(c)) \
|
sl@0
|
210 |
{ \
|
sl@0
|
211 |
WS_ASSERT_FILENAME(__FILE__); \
|
sl@0
|
212 |
WS_ASSERT_PANICNAME(p); \
|
sl@0
|
213 |
WS_ASSERT_CONDITION(#c); \
|
sl@0
|
214 |
PanicWithCondAndInfo(p, KPanicCondition, KPanicFileName, KPanicEnum ## p, __LINE__); \
|
sl@0
|
215 |
} \
|
sl@0
|
216 |
} while (0)
|
sl@0
|
217 |
|
sl@0
|
218 |
#define WS_PANIC_DEBUG(p) \
|
sl@0
|
219 |
do { \
|
sl@0
|
220 |
WS_ASSERT_FILENAME(__FILE__); \
|
sl@0
|
221 |
WS_ASSERT_PANICNAME(p); \
|
sl@0
|
222 |
PanicWithInfo(p, KPanicFileName, KPanicEnum ## p, __LINE__); \
|
sl@0
|
223 |
} while (0)
|
sl@0
|
224 |
#else
|
sl@0
|
225 |
#define WS_ASSERT_DEBUG(c, p)
|
sl@0
|
226 |
#define WS_PANIC_DEBUG(p)
|
sl@0
|
227 |
#endif
|
sl@0
|
228 |
|
sl@0
|
229 |
|
sl@0
|
230 |
#endif
|