os/kernelhwsrv/kernel/eka/include/e32utf.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
// Trace API
sl@0
    15
//
sl@0
    16
sl@0
    17
#ifndef E32UTRACE_H
sl@0
    18
#define E32UTRACE_H
sl@0
    19
sl@0
    20
#include <e32utrace_basic_types.h>
sl@0
    21
sl@0
    22
sl@0
    23
/**
sl@0
    24
Methods for tracing from user and kernel side.
sl@0
    25
sl@0
    26
These methods are used to output trace packets.
sl@0
    27
Each trace packet consist of attributes and the user defined payload.
sl@0
    28
The attributes in @see TTraceContext is used to identify and filter the trace packet.
sl@0
    29
sl@0
    30
In order to output trace packets tracing needs to be
sl@0
    31
included and enabled at compile time in the executable,
sl@0
    32
as well as be filtered at run-time.
sl@0
    33
@see e32utrace.mmh
sl@0
    34
@see RUlogger for information on how to filter at run-time
sl@0
    35
sl@0
    36
Trace example:
sl@0
    37
sl@0
    38
To include tracing you need to include the e32utrace.mmh
sl@0
    39
in your executables mmp file. You also need to enable tracing at
sl@0
    40
build time, which you do by defining the
sl@0
    41
SYMBIAN_INCLUDE_EXECUTABLE_TRACE before the mmh is included.
sl@0
    42
sl@0
    43
@code
sl@0
    44
#define SYMBIAN_INCLUDE_EXECUTABLE_TRACE
sl@0
    45
#include <e32utrace.mmh>
sl@0
    46
@endcode
sl@0
    47
sl@0
    48
Example usage of UTrace:
sl@0
    49
sl@0
    50
@code
sl@0
    51
#include <e32utf.h>
sl@0
    52
using namespace UTF;
sl@0
    53
sl@0
    54
TInt E32Main()
sl@0
    55
	{
sl@0
    56
	TFormatId formatId = TMyAppFormatExample::KFilePrintfStringLookupId;
sl@0
    57
	TUint32 myData = SomeData();
sl@0
    58
sl@0
    59
	//One line trace examples
sl@0
    60
	Printf(TTraceContext(EError), "My data %d.", myData);
sl@0
    61
	Printf(TTraceContext(KMyModuleUid, EError), "My data %d.", myData);
sl@0
    62
	Printf(TTraceContext(EError, ENoThreadIdentification, ENoProgramCounter), "My data %d.", myData);
sl@0
    63
	
sl@0
    64
	//In case Printf is overloaded
sl@0
    65
	UTF::Printf(TTraceContext(EError), "My data %d.", myData);
sl@0
    66
	
sl@0
    67
	//Using default ModuleUid, i.e. UID3
sl@0
    68
	TTraceContext context(EError);
sl@0
    69
	if(WouldBeTracedNow(context))
sl@0
    70
		{
sl@0
    71
		Printf(context, "My data %d.", myData);
sl@0
    72
		Trace(context, formatId, myData);	
sl@0
    73
		}
sl@0
    74
		
sl@0
    75
	//Setting the default ModuleUid to something other than UID3
sl@0
    76
	#define EXECUTABLE_DEFAULT_MODULEUID 0x00210D3B
sl@0
    77
	TTraceContext otherDefault(EError);
sl@0
    78
	if(WouldBeTracedNow(otherDefault))
sl@0
    79
		{
sl@0
    80
		Printf(otherDefault, "My data %i.", myData);
sl@0
    81
		Trace(otherDefault, formatId, myData);	
sl@0
    82
		}
sl@0
    83
	
sl@0
    84
	//Setting different ModuleUid for each trace point
sl@0
    85
	static const TModuleUid KTelephony = 0x00210D3B;
sl@0
    86
	static const TModuleUid KConnectivity = 0x0039399A;
sl@0
    87
	TTraceContext telephony(KTelephony, ECallControl);
sl@0
    88
	TTraceContext connectivity(KConnectivity, EBluetooth);
sl@0
    89
	if(WouldBeTracedNow(telephony))
sl@0
    90
		{
sl@0
    91
		Printf(telephony, "My data %i.", myData);
sl@0
    92
		}
sl@0
    93
	if(WouldBeTracedNow(connectivity))
sl@0
    94
		{
sl@0
    95
		Printf(connectivity, "My data %i.", myData);
sl@0
    96
		}
sl@0
    97
		
sl@0
    98
	//Don't add the thread identification into the trace packet
sl@0
    99
	TTraceContext noThreadIdentifier(EError, ENoThreadIdentification, ENoProgramCounter);
sl@0
   100
	if(WouldBeTracedNow(noThreadIdentifier))
sl@0
   101
		{
sl@0
   102
		Printf(noThreadIdentifier, "My data %i.", myData);
sl@0
   103
		Trace(noThreadIdentifier, formatId, myData);	
sl@0
   104
		}
sl@0
   105
	
sl@0
   106
	return KErrNone;
sl@0
   107
	}
sl@0
   108
	
sl@0
   109
@endcode
sl@0
   110
sl@0
   111
sl@0
   112
Note:
sl@0
   113
UTrace does not enforce any security. It is the developer's responsibility
sl@0
   114
to ensure that trace packets do not contain any sensitive information that
sl@0
   115
may undermine platform security.
sl@0
   116
sl@0
   117
@file
sl@0
   118
@publishedPartner
sl@0
   119
@prototype
sl@0
   120
*/
sl@0
   121
namespace UTF
sl@0
   122
{
sl@0
   123
/**
sl@0
   124
Class used to encapsulate the context of a trace point.
sl@0
   125
For more information about the attributes please @see e32utrace_basic_types.h.
sl@0
   126
*/
sl@0
   127
NONSHARABLE_CLASS(TTraceContext)
sl@0
   128
	{
sl@0
   129
public:
sl@0
   130
	inline TTraceContext(const TClassification aClassification);	
sl@0
   131
	inline TTraceContext(const TClassification aClassification, const THasThreadIdentification aHasThreadIdentification, const THasProgramCounter aHasProgramCounter);
sl@0
   132
	
sl@0
   133
	inline TTraceContext(const TModuleUid aModuleUid, const TClassification aClassification);
sl@0
   134
	inline TTraceContext(const TModuleUid aModuleUid, const TClassification aClassification, const THasThreadIdentification aHasThreadIdentification, const THasProgramCounter aHasProgramCounter);
sl@0
   135
sl@0
   136
	IMPORT_C TModuleUid					ModuleUid() const;
sl@0
   137
	IMPORT_C TClassification 			Classification() const;
sl@0
   138
	IMPORT_C THasThreadIdentification	HasThreadIdentification()  const;
sl@0
   139
	IMPORT_C THasProgramCounter 		HasProgramCounter()  const;
sl@0
   140
	IMPORT_C static TModuleUid			DefaultModuleUid();
sl@0
   141
private:
sl@0
   142
	inline TTraceContext(){};
sl@0
   143
private:
sl@0
   144
	TModuleUid					iModuleUid;			//@see TModuleUid
sl@0
   145
	TClassification 			iClassification;	//@see TClassification
sl@0
   146
	THasThreadIdentification	iHasThreadIdentification;	//@see THasThreadIdentification
sl@0
   147
	THasProgramCounter			iHasProgramCounter;			//@see THasProgramCounter
sl@0
   148
	TUint32			 			iReserved1;			//Reserved for future use
sl@0
   149
	TUint32			 			iReserved2;			//Reserved for future use
sl@0
   150
	};
sl@0
   151
sl@0
   152
	IMPORT_C TBool Printf(const TTraceContext& aContext, const char* aFmt, ...);
sl@0
   153
	IMPORT_C TBool Print(const TTraceContext& aContext, const TDesC8& aDes);
sl@0
   154
	IMPORT_C TBool Printf(const TTraceContext& aContext, TRefByValue<const TDesC8> aFmt,...);
sl@0
   155
	#ifndef  __KERNEL_MODE__
sl@0
   156
	IMPORT_C TBool Print(const TTraceContext& aContext, const TDesC16& aDes);
sl@0
   157
	IMPORT_C TBool Printf(const TTraceContext& aContext, TRefByValue<const TDesC16> aFmt,...);
sl@0
   158
	#endif //__KERNEL_MODE__
sl@0
   159
	
sl@0
   160
	IMPORT_C TBool Trace(const TTraceContext& aContext, const TFormatId aFormatId);
sl@0
   161
	IMPORT_C TBool Trace(const TTraceContext& aContext, const TFormatId aFormatId, const TUint8 aData);
sl@0
   162
	IMPORT_C TBool Trace(const TTraceContext& aContext, const TFormatId aFormatId, const TUint16 aData);
sl@0
   163
	IMPORT_C TBool Trace(const TTraceContext& aContext, const TFormatId aFormatId, const TUint32 aData);
sl@0
   164
	IMPORT_C TBool Trace(const TTraceContext& aContext, const TFormatId aFormatId, const TUint32 aData1, const TUint32 aData2);
sl@0
   165
	IMPORT_C TBool Trace(const TTraceContext& aContext, const TFormatId aFormatId, const TDesC8& aData);
sl@0
   166
	#ifndef __KERNEL_MODE__
sl@0
   167
	IMPORT_C TBool Trace(const TTraceContext& aContext, const TFormatId aFormatId, const TDesC16& aData);
sl@0
   168
	#endif
sl@0
   169
	template<typename T>
sl@0
   170
	static inline TBool Trace(const TTraceContext& aContext, const TFormatId aFormatId, const T& aData);
sl@0
   171
	IMPORT_C TBool Trace(const TTraceContext& aContext, const TFormatId aFormatId, const TAny* aData, const TInt aDataSize);
sl@0
   172
	
sl@0
   173
	IMPORT_C TBool WouldBeTracedNow(const TTraceContext& aContext);
sl@0
   174
sl@0
   175
	
sl@0
   176
#include <e32utrace.inl>
sl@0
   177
}//end of UTF namespace
sl@0
   178
sl@0
   179
sl@0
   180
#endif //E32UTRACE_H