Update contrib.
1 // Copyright (c) 2007-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 the License "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 // e32\include\drivers\resmanus_trace.h
16 // WARNING: This file contains some APIs which are internal and are subject
17 // to change without notice. Such APIs should therefore not be used
18 // outside the Kernel and Hardware Services package.
25 #ifndef __RESMANUSCONTROL_TRACE_H__
26 #define __RESMANUSCONTROL_TRACE_H__
27 #ifdef BTRACE_RESMANUS
29 //Function to format the output.
30 static void UsTraceFormatPrint(TDes8& aBuf, const char* aFmt, ...)
36 Kern::AppendFormat(aBuf,aFmt,list);
39 //definition of subcategories.
40 #define PRM_US_OPEN_CHANNEL_START BTrace::EOpenChannelUsStart
41 #define PRM_US_OPEN_CHANNEL_END BTrace::EOpenChannelUsEnd
42 #define PRM_US_REGISTER_CLIENT_START BTrace::ERegisterClientUsStart
43 #define PRM_US_REGISTER_CLIENT_END BTrace::ERegisterClientUsEnd
44 #define PRM_US_DEREGISTER_CLIENT_START BTrace::EDeRegisterClientUsStart
45 #define PRM_US_DEREGISTER_CLIENT_END BTrace::EDeRegisterClientUsEnd
46 #define PRM_US_GET_RESOURCE_STATE_START BTrace::EGetResourceStateUsStart
47 #define PRM_US_GET_RESOURCE_STATE_END BTrace::EGetResourceStateUsEnd
48 #define PRM_US_SET_RESOURCE_STATE_START BTrace::ESetResourceStateUsStart
49 #define PRM_US_SET_RESOURCE_STATE_END BTrace::ESetResourceStateUsEnd
50 #define PRM_US_CANCEL_GET_RESOURCE_STATE_START BTrace::ECancelGetResourceStateUsStart
51 #define PRM_US_CANCEL_GET_RESOURCE_STATE_END BTrace::ECancelGetResourceStateUsEnd
52 #define PRM_US_CANCEL_SET_RESOURCE_STATE_START BTrace::ECancelSetResourceStateUsStart
53 #define PRM_US_CANCEL_SET_RESOURCE_STATE_END BTrace::ECancelSetResourceStateUsEnd
55 // Macro to output identification information provided in a request to open a channel
56 #define PRM_US_OPEN_CHANNEL_START_TRACE \
58 TBuf8<256> printBuf; \
60 UsTraceFormatPrint(printBuf, "%S", iUserNameUsed); \
61 BTraceContextN(BTrace::EResourceManagerUs, PRM_US_OPEN_CHANNEL_START, 0, (TInt)(iClient), printBuf.Ptr(), printBuf.Length()); \
64 // Macro to output identification information generated during a request to open a channel
65 #define PRM_US_OPEN_CHANNEL_END_TRACE \
67 TBuf8<256> printBuf; \
69 UsTraceFormatPrint(printBuf, "%S", iUserNameUsed); \
70 BTraceContextN(BTrace::EResourceManagerUs, PRM_US_OPEN_CHANNEL_END, 0, (TInt)(ClientHandle()), printBuf.Ptr(), printBuf.Length()); \
73 // Macro to output information provided for a request to register with the Resource Controller
74 #define PRM_US_REGISTER_CLIENT_START_TRACE \
76 TBuf8<256> printBuf; \
78 UsTraceFormatPrint(printBuf, "%S 0x%x %d", iUserNameUsed, (TInt)(ClientHandle()),(TInt)(stateRes[0])); \
79 BTraceContextN(BTrace::EResourceManagerUs, PRM_US_REGISTER_CLIENT_START, (TInt)(stateRes[1]), (TInt)(stateRes[2]), printBuf.Ptr(), printBuf.Length()); \
82 // Macro to output information after issuing a request to register with the Resource Controller
83 #define PRM_US_REGISTER_CLIENT_END_TRACE \
85 BTraceContext8(BTrace::EResourceManagerUs, PRM_US_REGISTER_CLIENT_END, (TInt)(ClientHandle()), r); \
88 // Macro to output information provided for a request to de-register with the Resource Controller
89 #define PRM_US_DEREGISTER_CLIENT_START_TRACE \
91 TBuf8<256> printBuf; \
93 UsTraceFormatPrint(printBuf, "%S ", iUserNameUsed); \
94 BTraceContextN(BTrace::EResourceManagerUs, PRM_US_DEREGISTER_CLIENT_START, 0, (TInt)(ClientHandle()), printBuf.Ptr(), printBuf.Length()); \
97 // Macro to output information after issuing a request to de-register with the Resource Controller
98 #define PRM_US_DEREGISTER_CLIENT_END_TRACE \
100 BTraceContext4(BTrace::EResourceManagerUs, PRM_US_DEREGISTER_CLIENT_END, (TInt)(ClientHandle())); \
103 // Macro to output information provided for a request to get the state of a resource
104 #define PRM_US_GET_RESOURCE_STATE_START_TRACE \
106 TBuf8<256> printBuf; \
108 UsTraceFormatPrint(printBuf, "%S ", iUserNameUsed); \
109 BTraceContextN(BTrace::EResourceManagerUs, PRM_US_GET_RESOURCE_STATE_START, resourceId, (TInt)(ClientHandle()), printBuf.Ptr(), printBuf.Length()); \
112 // Macro to output information on completion of a request to get the state of a resource
113 #define PRM_US_GET_RESOURCE_STATE_END_TRACE \
115 TBuf8<256> printBuf; \
117 UsTraceFormatPrint(printBuf, "%d %d", aClient, aResult); \
118 BTraceContextN(BTrace::EResourceManagerUs, PRM_US_GET_RESOURCE_STATE_END, aResourceId, aLevel, printBuf.Ptr(), printBuf.Length()); \
121 // Macro to output information provided for a request to set the state of a resource
122 #define PRM_US_SET_RESOURCE_STATE_START_TRACE \
124 TBuf8<256> printBuf; \
126 UsTraceFormatPrint(printBuf, "%S %d", iUserNameUsed, (TInt)(ClientHandle())); \
127 BTraceContextN(BTrace::EResourceManagerUs, PRM_US_SET_RESOURCE_STATE_START, resourceId, newState, printBuf.Ptr(), printBuf.Length()); \
130 // Macro to output information on completion of a request to set the state of a resource
131 #define PRM_US_SET_RESOURCE_STATE_END_TRACE \
133 TBuf8<256> printBuf; \
135 UsTraceFormatPrint(printBuf, "%d %d", aClient, aResult); \
136 BTraceContextN(BTrace::EResourceManagerUs, PRM_US_SET_RESOURCE_STATE_END, aResourceId, aLevel, printBuf.Ptr(), printBuf.Length()); \
139 // Macro to output information provided for a request to cancel the get resource state requests for a resource
140 #define PRM_US_CANCEL_GET_RESOURCE_STATE_START_TRACE \
142 TBuf8<256> printBuf; \
144 UsTraceFormatPrint(printBuf, "%S ", iUserNameUsed); \
145 BTraceContextN(BTrace::EResourceManagerUs, PRM_US_CANCEL_GET_RESOURCE_STATE_START, aResourceId, (TInt)(ClientHandle()), printBuf.Ptr(), printBuf.Length()); \
148 // Macro to output information on completion of a request to cancel the get resource state requests for a resource
149 #define PRM_US_CANCEL_GET_RESOURCE_STATE_END_TRACE \
151 TBuf8<256> printBuf; \
153 UsTraceFormatPrint(printBuf, "%S ", iUserNameUsed); \
154 BTraceContextN(BTrace::EResourceManagerUs, PRM_US_CANCEL_GET_RESOURCE_STATE_END, aResourceId, (TInt)(ClientHandle()), printBuf.Ptr(), printBuf.Length()); \
157 // Macro to output information provided for a request to cancel the set resource state requests for a resource
158 #define PRM_US_CANCEL_SET_RESOURCE_STATE_START_TRACE \
160 TBuf8<256> printBuf; \
162 UsTraceFormatPrint(printBuf, "%S ", iUserNameUsed); \
163 BTraceContextN(BTrace::EResourceManagerUs, PRM_US_CANCEL_SET_RESOURCE_STATE_START, aResourceId, (TInt)(ClientHandle()), printBuf.Ptr(), printBuf.Length()); \
166 // Macro to output information on completion of a request to cancel the get resource state requests for a resource
167 #define PRM_US_CANCEL_SET_RESOURCE_STATE_END_TRACE \
169 TBuf8<256> printBuf; \
171 UsTraceFormatPrint(printBuf, "%S ", iUserNameUsed); \
172 BTraceContextN(BTrace::EResourceManagerUs, PRM_US_CANCEL_SET_RESOURCE_STATE_END, aResourceId, (TInt)(ClientHandle()), printBuf.Ptr(), printBuf.Length()); \
178 #define PRM_US_OPEN_CHANNEL_START_TRACE
179 #define PRM_US_OPEN_CHANNEL_END_TRACE
180 #define PRM_US_REGISTER_CLIENT_START_TRACE
181 #define PRM_US_REGISTER_CLIENT_END_TRACE
182 #define PRM_US_DEREGISTER_CLIENT_START_TRACE
183 #define PRM_US_DEREGISTER_CLIENT_END_TRACE
184 #define PRM_US_GET_RESOURCE_STATE_START_TRACE
185 #define PRM_US_GET_RESOURCE_STATE_END_TRACE
186 #define PRM_US_SET_RESOURCE_STATE_START_TRACE
187 #define PRM_US_SET_RESOURCE_STATE_END_TRACE
188 #define PRM_US_CANCEL_GET_RESOURCE_STATE_START_TRACE
189 #define PRM_US_CANCEL_GET_RESOURCE_STATE_END_TRACE
190 #define PRM_US_CANCEL_SET_RESOURCE_STATE_START_TRACE
191 #define PRM_US_CANCEL_SET_RESOURCE_STATE_END_TRACE
193 #endif //BTRACE_RESMANUS
195 #endif //__RESMANUSCONTROL_TRACE_H__