Update contrib.
2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
26 #ifndef OPENSYSTEMTRACE_INL
27 #define OPENSYSTEMTRACE_INL
30 OST maximum data length
31 The length of Component, Group and Trace IDs are subtracted from it
33 const TUint KOstMaxDataLength = 512;
36 BTrace maximum data length is defined in e32btrace.h
37 The length of Component, Group and Trace IDs are subtracted from it
39 const TUint KBTraceMaxDataLength = KMaxBTraceDataArray - 2 * sizeof(TUint32);
42 * The TraceName is an amalgamation of two separate identifiers:
43 * Group ID and Trace ID.
45 * These defines help get back the relevant bits from the
48 * Note that whilst the Group ID is defined as 16 bits we are
49 * only taking the first 8 bits here.
51 #define GROUPIDMASK 0x00ff0000
52 #define GROUPIDSHIFT 16
53 #define TRACEIDMASK 0x0000ffff
54 #define TRACEIDSHIFT 0
55 #define EXTRACT_GROUP_ID(aTraceName) static_cast<TGroupId>((aTraceName & GROUPIDMASK) >> GROUPIDSHIFT)
58 ---------------TTraceContext-----------------------
59 Define the context of a trace packet by setting its attributes.
61 The Component ID is defaulted according to the FW_DEFAULT_COMPONENTID definition.
62 The HasThreadIdentification is defaulted to the FW_DEFAULT_HAS_THREAD_IDENTIFICATION definition.
63 The HasProgramCounter is defaulted to the FW_DEFAULT_HAS_PC definition.
67 @param aGroupId @see TGroupId
70 TTraceContext::TTraceContext(const TGroupId aGroupId)
71 :iComponentId(FW_DEFAULT_COMPONENTID), iGroupId(aGroupId), iHasThreadIdentification(FW_DEFAULT_HAS_THREAD_IDENTIFICATION), iHasProgramCounter(FW_DEFAULT_HAS_PC), iReserved1(0), iReserved2(0)
76 * Define the context of a trace packet by setting its attributes.
78 * The HasThreadIdentification is defaulted to the FW_DEFAULT_HAS_THREAD_IDENTIFICATION definition.
79 * The HasProgramCounter is defaulted to the FW_DEFAULT_HAS_PC definition.
84 * @param aComponentId @see TComponentId
85 * @param aGroupId @see TGroupId
87 TTraceContext::TTraceContext(const TComponentId aComponentId, const TGroupId aGroupId)
88 :iComponentId(aComponentId), iGroupId(aGroupId), iHasThreadIdentification(FW_DEFAULT_HAS_THREAD_IDENTIFICATION), iHasProgramCounter(FW_DEFAULT_HAS_PC), iReserved1(0), iReserved2(0)
93 * Define the context of a trace packet by setting its attributes.
95 * The Component ID is defaulted according to the FW_DEFAULT_COMPONENTID definition.
99 * @param aGroupId @see TGroupId
100 * @param aHasThreadIdentification Set whether to add thread identification automatically in the trace packet.
101 * @param aHasProgramCounter Set whether to add PC (program counter) automatically in the trace packet.
103 TTraceContext::TTraceContext(const TGroupId aGroupId, const THasThreadIdentification aHasThreadIdentification, const THasProgramCounter aHasProgramCounter)
104 :iComponentId(FW_DEFAULT_COMPONENTID), iGroupId(aGroupId), iHasThreadIdentification(aHasThreadIdentification), iHasProgramCounter(aHasProgramCounter), iReserved1(0), iReserved2(0)
110 * Define the context of a trace packet by setting its attributes.
114 * @param aComponentId @see TComponentId
115 * @param aGroupId @see TGroupId
116 * @param aHasThreadIdentification Set whether to add thread identification automatically in the trace packet.
117 * @param aHasProgramCounter Set whether to add PC (program counter) automatically in the trace packet.
119 TTraceContext::TTraceContext(const TComponentId aComponentId, const TGroupId aGroupId, const THasThreadIdentification aHasThreadIdentification, const THasProgramCounter aHasProgramCounter)
120 :iComponentId(aComponentId), iGroupId(aGroupId), iHasThreadIdentification(aHasThreadIdentification), iHasProgramCounter(aHasProgramCounter), iReserved1(0), iReserved2(0)
124 //------------------ Trace -----------------------
126 Outputs a trace packet containing variable length data.
128 If the specified data is too big to fit into a single
129 trace record a multipart trace is generated.
133 @param aContext Attributes of the trace point.
134 @param aTraceId A format identifier as specified by @see TTraceId
135 @param aData Additional data to add to trace packet.
136 Must be word aligned, i.e. a multiple of 4.
138 @return The trace packet was/was not logged.
140 @See BTrace::TMultipart
143 TBool OstTrace(const TTraceContext& aContext, TTraceId aTraceId, const T& aData)
145 return OstTrace(aContext, aTraceId, &aData, sizeof(aData));
152 @param aGroupId The Group ID of the trace packet. @see TGroupId
153 @param aEOstTrace BTrace sub-category. Value between 0 and 255. The meaning of this is dependent on the Category
154 @param aKOstTraceComponentID The Component ID of the trace
155 @param aTraceName The Trace ID of the trace
156 @param aPtr Address of addition data to add to trace.
157 @param aLength Number of bytes of additional data.
158 @return The trace packet was/was not logged.
160 inline TBool OstSendNBytes( TUint8 aGroupId, TUint8 aEOstTrace, TUint32 aKOstTraceComponentID, TUint32 aTraceName, const TAny* aPtr, TInt aLength )
164 if (aLength <= (TInt)KBTraceMaxDataLength)
166 // Data length is less than BTrace max. data length, so we can directly call BTraceFilteredContextN macro.
167 retval = BTraceFilteredContextN( aGroupId, aEOstTrace, aKOstTraceComponentID, aTraceName, aPtr, aLength );
171 // Data length is greater than BTrace max. data length, so we need to call BTraceContextBig macro
172 TUint32 data[ KOstMaxDataLength / sizeof(TUint32)+ 1 ];
174 TUint8* ptr = (TUint8*)((TUint32*)data+1); // First word holds Trace ID
176 // Write Trace ID to data part because BTraceFilteredContextBig macro takes one parameter less than BTraceFilteredContextN macro
177 data[0] = aTraceName;
179 // If there is more data than we can show
180 if (aLength > (TInt)KOstMaxDataLength)
182 aLength = KOstMaxDataLength;
185 // Copy the data to the buffer
186 memcpy( ptr, aPtr, aLength );
189 // Fillers are written to get 32-bit alignment
190 TInt lengthAligned = ( aLength + (sizeof(TUint32)-1) ) & ~(sizeof(TUint32)-1);
191 while ( aLength++ < lengthAligned )
196 retval = BTraceFilteredContextBig( aGroupId, aEOstTrace, aKOstTraceComponentID, data, lengthAligned + sizeof(TUint32));
203 #endif //OPENSYSTEMTRACE_INL