os/kernelhwsrv/kernel/eka/include/drivers/resmanus_trace.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-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 the License "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
// e32\include\drivers\resmanus_trace.h
sl@0
    15
// 
sl@0
    16
// WARNING: This file contains some APIs which are internal and are subject
sl@0
    17
//          to change without notice. Such APIs should therefore not be used
sl@0
    18
//          outside the Kernel and Hardware Services package.
sl@0
    19
//
sl@0
    20
sl@0
    21
/**
sl@0
    22
 @file
sl@0
    23
 @internalComponent
sl@0
    24
*/
sl@0
    25
#ifndef __RESMANUSCONTROL_TRACE_H__
sl@0
    26
#define __RESMANUSCONTROL_TRACE_H__
sl@0
    27
#ifdef BTRACE_RESMANUS
sl@0
    28
sl@0
    29
//Function to format the output.
sl@0
    30
static void UsTraceFormatPrint(TDes8& aBuf, const char* aFmt, ...)
sl@0
    31
	{
sl@0
    32
	if(!(&aBuf))
sl@0
    33
		return;
sl@0
    34
	VA_LIST list;
sl@0
    35
	VA_START(list,aFmt);
sl@0
    36
	Kern::AppendFormat(aBuf,aFmt,list);
sl@0
    37
	}
sl@0
    38
sl@0
    39
//definition of subcategories.
sl@0
    40
#define PRM_US_OPEN_CHANNEL_START				BTrace::EOpenChannelUsStart
sl@0
    41
#define PRM_US_OPEN_CHANNEL_END					BTrace::EOpenChannelUsEnd
sl@0
    42
#define PRM_US_REGISTER_CLIENT_START			BTrace::ERegisterClientUsStart
sl@0
    43
#define PRM_US_REGISTER_CLIENT_END				BTrace::ERegisterClientUsEnd
sl@0
    44
#define PRM_US_DEREGISTER_CLIENT_START			BTrace::EDeRegisterClientUsStart
sl@0
    45
#define PRM_US_DEREGISTER_CLIENT_END			BTrace::EDeRegisterClientUsEnd
sl@0
    46
#define PRM_US_GET_RESOURCE_STATE_START			BTrace::EGetResourceStateUsStart
sl@0
    47
#define PRM_US_GET_RESOURCE_STATE_END			BTrace::EGetResourceStateUsEnd
sl@0
    48
#define PRM_US_SET_RESOURCE_STATE_START			BTrace::ESetResourceStateUsStart
sl@0
    49
#define PRM_US_SET_RESOURCE_STATE_END			BTrace::ESetResourceStateUsEnd
sl@0
    50
#define PRM_US_CANCEL_GET_RESOURCE_STATE_START  BTrace::ECancelGetResourceStateUsStart
sl@0
    51
#define PRM_US_CANCEL_GET_RESOURCE_STATE_END	BTrace::ECancelGetResourceStateUsEnd
sl@0
    52
#define PRM_US_CANCEL_SET_RESOURCE_STATE_START	BTrace::ECancelSetResourceStateUsStart
sl@0
    53
#define PRM_US_CANCEL_SET_RESOURCE_STATE_END	BTrace::ECancelSetResourceStateUsEnd
sl@0
    54
sl@0
    55
// Macro to output identification information provided in a request to open a channel
sl@0
    56
#define PRM_US_OPEN_CHANNEL_START_TRACE						\
sl@0
    57
	{														\
sl@0
    58
    TBuf8<256> printBuf;									\
sl@0
    59
    printBuf.Zero();										\
sl@0
    60
    UsTraceFormatPrint(printBuf, "%S", iUserNameUsed);	\
sl@0
    61
	BTraceContextN(BTrace::EResourceManagerUs, PRM_US_OPEN_CHANNEL_START, 0, (TInt)(iClient), printBuf.Ptr(), printBuf.Length()); \
sl@0
    62
	}
sl@0
    63
sl@0
    64
// Macro to output identification information generated during a request to open a channel
sl@0
    65
#define PRM_US_OPEN_CHANNEL_END_TRACE						\
sl@0
    66
	{														\
sl@0
    67
    TBuf8<256> printBuf;									\
sl@0
    68
    printBuf.Zero();										\
sl@0
    69
    UsTraceFormatPrint(printBuf, "%S", iUserNameUsed);		\
sl@0
    70
	BTraceContextN(BTrace::EResourceManagerUs, PRM_US_OPEN_CHANNEL_END, 0, (TInt)(ClientHandle()), printBuf.Ptr(), printBuf.Length()); \
sl@0
    71
	}
sl@0
    72
sl@0
    73
// Macro to output information provided for a request to register with the Resource Controller
sl@0
    74
#define PRM_US_REGISTER_CLIENT_START_TRACE					\
sl@0
    75
	{														\
sl@0
    76
    TBuf8<256> printBuf;									\
sl@0
    77
    printBuf.Zero();										\
sl@0
    78
    UsTraceFormatPrint(printBuf, "%S 0x%x %d", iUserNameUsed, (TInt)(ClientHandle()),(TInt)(stateRes[0]));	\
sl@0
    79
	BTraceContextN(BTrace::EResourceManagerUs, PRM_US_REGISTER_CLIENT_START, (TInt)(stateRes[1]), (TInt)(stateRes[2]), printBuf.Ptr(), printBuf.Length()); \
sl@0
    80
	}
sl@0
    81
sl@0
    82
// Macro to output information after issuing a request to register with the Resource Controller
sl@0
    83
#define PRM_US_REGISTER_CLIENT_END_TRACE					\
sl@0
    84
	{														\
sl@0
    85
	BTraceContext8(BTrace::EResourceManagerUs, PRM_US_REGISTER_CLIENT_END, (TInt)(ClientHandle()), r);	\
sl@0
    86
	}
sl@0
    87
sl@0
    88
// Macro to output information provided for a request to de-register with the Resource Controller
sl@0
    89
#define PRM_US_DEREGISTER_CLIENT_START_TRACE				\
sl@0
    90
	{														\
sl@0
    91
    TBuf8<256> printBuf;									\
sl@0
    92
    printBuf.Zero();										\
sl@0
    93
    UsTraceFormatPrint(printBuf, "%S ", iUserNameUsed);		\
sl@0
    94
	BTraceContextN(BTrace::EResourceManagerUs, PRM_US_DEREGISTER_CLIENT_START, 0, (TInt)(ClientHandle()), printBuf.Ptr(), printBuf.Length()); \
sl@0
    95
	}
sl@0
    96
sl@0
    97
// Macro to output information after issuing a request to de-register with the Resource Controller
sl@0
    98
#define PRM_US_DEREGISTER_CLIENT_END_TRACE					\
sl@0
    99
	{														\
sl@0
   100
	BTraceContext4(BTrace::EResourceManagerUs, PRM_US_DEREGISTER_CLIENT_END, (TInt)(ClientHandle()));	\
sl@0
   101
	}
sl@0
   102
sl@0
   103
// Macro to output information provided for a request to get the state of a resource
sl@0
   104
#define PRM_US_GET_RESOURCE_STATE_START_TRACE				\
sl@0
   105
	{														\
sl@0
   106
    TBuf8<256> printBuf;									\
sl@0
   107
    printBuf.Zero();										\
sl@0
   108
    UsTraceFormatPrint(printBuf, "%S ", iUserNameUsed);		\
sl@0
   109
	BTraceContextN(BTrace::EResourceManagerUs, PRM_US_GET_RESOURCE_STATE_START, resourceId, (TInt)(ClientHandle()), printBuf.Ptr(), printBuf.Length()); \
sl@0
   110
	}
sl@0
   111
sl@0
   112
// Macro to output information on completion of a request to get the state of a resource
sl@0
   113
#define PRM_US_GET_RESOURCE_STATE_END_TRACE					\
sl@0
   114
	{														\
sl@0
   115
    TBuf8<256> printBuf;									\
sl@0
   116
    printBuf.Zero();										\
sl@0
   117
    UsTraceFormatPrint(printBuf, "%d %d", aClient, aResult);	\
sl@0
   118
	BTraceContextN(BTrace::EResourceManagerUs, PRM_US_GET_RESOURCE_STATE_END, aResourceId, aLevel, printBuf.Ptr(), printBuf.Length()); \
sl@0
   119
	}
sl@0
   120
sl@0
   121
// Macro to output information provided for a request to set the state of a resource
sl@0
   122
#define PRM_US_SET_RESOURCE_STATE_START_TRACE				\
sl@0
   123
	{														\
sl@0
   124
    TBuf8<256> printBuf;									\
sl@0
   125
    printBuf.Zero();										\
sl@0
   126
    UsTraceFormatPrint(printBuf, "%S %d", iUserNameUsed, (TInt)(ClientHandle()));	\
sl@0
   127
	BTraceContextN(BTrace::EResourceManagerUs, PRM_US_SET_RESOURCE_STATE_START, resourceId, newState, printBuf.Ptr(), printBuf.Length()); \
sl@0
   128
	}
sl@0
   129
sl@0
   130
// Macro to output information on completion of a request to set the state of a resource
sl@0
   131
#define PRM_US_SET_RESOURCE_STATE_END_TRACE					\
sl@0
   132
	{														\
sl@0
   133
    TBuf8<256> printBuf;									\
sl@0
   134
    printBuf.Zero();										\
sl@0
   135
    UsTraceFormatPrint(printBuf, "%d %d", aClient, aResult);	\
sl@0
   136
	BTraceContextN(BTrace::EResourceManagerUs, PRM_US_SET_RESOURCE_STATE_END, aResourceId, aLevel, printBuf.Ptr(), printBuf.Length()); \
sl@0
   137
	}
sl@0
   138
sl@0
   139
// Macro to output information provided for a request to cancel the get resource state requests for a resource
sl@0
   140
#define PRM_US_CANCEL_GET_RESOURCE_STATE_START_TRACE		\
sl@0
   141
	{														\
sl@0
   142
    TBuf8<256> printBuf;									\
sl@0
   143
    printBuf.Zero();										\
sl@0
   144
    UsTraceFormatPrint(printBuf, "%S ", iUserNameUsed);		\
sl@0
   145
	BTraceContextN(BTrace::EResourceManagerUs, PRM_US_CANCEL_GET_RESOURCE_STATE_START, aResourceId, (TInt)(ClientHandle()), printBuf.Ptr(), printBuf.Length()); \
sl@0
   146
	}
sl@0
   147
sl@0
   148
// Macro to output information on completion of a request to cancel the get resource state requests for a resource
sl@0
   149
#define PRM_US_CANCEL_GET_RESOURCE_STATE_END_TRACE			\
sl@0
   150
	{														\
sl@0
   151
    TBuf8<256> printBuf;									\
sl@0
   152
    printBuf.Zero();										\
sl@0
   153
    UsTraceFormatPrint(printBuf, "%S ", iUserNameUsed);		\
sl@0
   154
	BTraceContextN(BTrace::EResourceManagerUs, PRM_US_CANCEL_GET_RESOURCE_STATE_END, aResourceId, (TInt)(ClientHandle()), printBuf.Ptr(), printBuf.Length()); \
sl@0
   155
	}
sl@0
   156
sl@0
   157
// Macro to output information provided for a request to cancel the set resource state requests for a resource
sl@0
   158
#define PRM_US_CANCEL_SET_RESOURCE_STATE_START_TRACE		\
sl@0
   159
	{														\
sl@0
   160
    TBuf8<256> printBuf;									\
sl@0
   161
    printBuf.Zero();										\
sl@0
   162
    UsTraceFormatPrint(printBuf, "%S ", iUserNameUsed);		\
sl@0
   163
	BTraceContextN(BTrace::EResourceManagerUs, PRM_US_CANCEL_SET_RESOURCE_STATE_START, aResourceId, (TInt)(ClientHandle()), printBuf.Ptr(), printBuf.Length()); \
sl@0
   164
	}
sl@0
   165
sl@0
   166
// Macro to output information on completion of a request to cancel the get resource state requests for a resource
sl@0
   167
#define PRM_US_CANCEL_SET_RESOURCE_STATE_END_TRACE			\
sl@0
   168
	{														\
sl@0
   169
    TBuf8<256> printBuf;									\
sl@0
   170
    printBuf.Zero();										\
sl@0
   171
    UsTraceFormatPrint(printBuf, "%S ", iUserNameUsed);		\
sl@0
   172
	BTraceContextN(BTrace::EResourceManagerUs, PRM_US_CANCEL_SET_RESOURCE_STATE_END, aResourceId, (TInt)(ClientHandle()), printBuf.Ptr(), printBuf.Length()); \
sl@0
   173
	}
sl@0
   174
sl@0
   175
sl@0
   176
#else
sl@0
   177
sl@0
   178
#define PRM_US_OPEN_CHANNEL_START_TRACE
sl@0
   179
#define PRM_US_OPEN_CHANNEL_END_TRACE
sl@0
   180
#define PRM_US_REGISTER_CLIENT_START_TRACE
sl@0
   181
#define PRM_US_REGISTER_CLIENT_END_TRACE
sl@0
   182
#define PRM_US_DEREGISTER_CLIENT_START_TRACE
sl@0
   183
#define PRM_US_DEREGISTER_CLIENT_END_TRACE
sl@0
   184
#define PRM_US_GET_RESOURCE_STATE_START_TRACE
sl@0
   185
#define PRM_US_GET_RESOURCE_STATE_END_TRACE
sl@0
   186
#define PRM_US_SET_RESOURCE_STATE_START_TRACE
sl@0
   187
#define PRM_US_SET_RESOURCE_STATE_END_TRACE
sl@0
   188
#define PRM_US_CANCEL_GET_RESOURCE_STATE_START_TRACE
sl@0
   189
#define PRM_US_CANCEL_GET_RESOURCE_STATE_END_TRACE
sl@0
   190
#define PRM_US_CANCEL_SET_RESOURCE_STATE_START_TRACE
sl@0
   191
#define PRM_US_CANCEL_SET_RESOURCE_STATE_END_TRACE
sl@0
   192
sl@0
   193
#endif //BTRACE_RESMANUS
sl@0
   194
sl@0
   195
#endif //__RESMANUSCONTROL_TRACE_H__
sl@0
   196