os/kernelhwsrv/kernel/eka/drivers/debug/common/debug_logging.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) 2006-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
// Logging macros for use in debug subsystem
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef DEBUG_LOGGING_H
sl@0
    19
#define DEBUG_LOGGING_H
sl@0
    20
sl@0
    21
/**
sl@0
    22
 * Debug messages
sl@0
    23
 * 
sl@0
    24
 * Debug messages are only generated for debug builds.
sl@0
    25
 * 
sl@0
    26
 * For kernel mode, use __KTRACE_OPT(KDEBUGGER, Kern::Printf(), 
sl@0
    27
 * for user mode use RDebug::Printf(). 
sl@0
    28
 * 
sl@0
    29
 */
sl@0
    30
sl@0
    31
#ifdef _DEBUG
sl@0
    32
sl@0
    33
  #ifdef __KERNEL_MODE__
sl@0
    34
sl@0
    35
	#include <kernel/kernel.h>
sl@0
    36
	#include <nk_trace.h>
sl@0
    37
sl@0
    38
	#define LOG_MSG( a )				__KTRACE_OPT(KDEBUGGER, Kern::Printf( a ))
sl@0
    39
	#define LOG_MSG2( a, b )			__KTRACE_OPT(KDEBUGGER, Kern::Printf( a, b ))
sl@0
    40
	#define LOG_MSG3( a, b, c )			__KTRACE_OPT(KDEBUGGER, Kern::Printf( a, b, c ))
sl@0
    41
	#define LOG_MSG4( a, b, c, d )		__KTRACE_OPT(KDEBUGGER, Kern::Printf( a, b, c, d ))
sl@0
    42
	#define LOG_MSG5( a, b, c, d, e )	__KTRACE_OPT(KDEBUGGER, Kern::Printf( a, b, c, d, e ))
sl@0
    43
sl@0
    44
	#ifdef __LOG_EVENTS__
sl@0
    45
sl@0
    46
	#define LOG_EVENT_MSG( a )				__KTRACE_OPT(KDEBUGGER, Kern::Printf( a ))
sl@0
    47
	#define LOG_EVENT_MSG2( a, b )			__KTRACE_OPT(KDEBUGGER, Kern::Printf( a, b ))
sl@0
    48
	#define LOG_EVENT_MSG3( a, b, c )		__KTRACE_OPT(KDEBUGGER, Kern::Printf( a, b, c ))
sl@0
    49
	#define LOG_EVENT_MSG4( a, b, c, d )	__KTRACE_OPT(KDEBUGGER, Kern::Printf( a, b, c, d ))
sl@0
    50
	#define LOG_EVENT_MSG5( a, b, c, d, e )	__KTRACE_OPT(KDEBUGGER, Kern::Printf( a, b, c, d, e ))
sl@0
    51
	
sl@0
    52
	#else
sl@0
    53
sl@0
    54
	#define LOG_EVENT_MSG( a )
sl@0
    55
	#define LOG_EVENT_MSG2( a, b )
sl@0
    56
	#define LOG_EVENT_MSG3( a, b, c )
sl@0
    57
	#define LOG_EVENT_MSG4( a, b, c, d )
sl@0
    58
	#define LOG_EVENT_MSG5( a, b, c, d, e )
sl@0
    59
sl@0
    60
	#endif
sl@0
    61
sl@0
    62
  #else
sl@0
    63
sl@0
    64
    #include <e32debug.h>
sl@0
    65
sl@0
    66
	#define LOG_MSG( a )				RDebug::Printf( a )
sl@0
    67
	#define LOG_MSG2( a, b )			RDebug::Printf( a, b )
sl@0
    68
	#define LOG_MSG3( a, b, c )			RDebug::Printf( a, b, c )
sl@0
    69
	#define LOG_MSG4( a, b, c, d )		RDebug::Printf( a, b, c, d )
sl@0
    70
	#define LOG_MSG5( a, b, c, d, e )	RDebug::Printf( a, b, c, d, e )
sl@0
    71
sl@0
    72
	#ifdef __LOG_EVENTS__
sl@0
    73
sl@0
    74
	#define LOG_EVENT_MSG( a )					RDebug::Printf( a )
sl@0
    75
	#define LOG_EVENT_MSG2( a, b )				RDebug::Printf( a, b )
sl@0
    76
	#define LOG_EVENT_MSG3( a, b, c )			RDebug::Printf( a, b, c )
sl@0
    77
	#define LOG_EVENT_MSG4( a, b, c, d )		RDebug::Printf( a, b, c, d )
sl@0
    78
	#define LOG_EVENT_MSG5( a, b, c, d, e )		RDebug::Printf( a, b, c, d, e )
sl@0
    79
sl@0
    80
	#else
sl@0
    81
sl@0
    82
	#define LOG_EVENT_MSG( a )
sl@0
    83
	#define LOG_EVENT_MSG2( a, b )
sl@0
    84
	#define LOG_EVENT_MSG3( a, b, c )
sl@0
    85
	#define LOG_EVENT_MSG4( a, b, c, d )
sl@0
    86
	#define LOG_EVENT_MSG5( a, b, c, d, e )
sl@0
    87
sl@0
    88
    #endif
sl@0
    89
sl@0
    90
    #endif
sl@0
    91
#else
sl@0
    92
sl@0
    93
	#define LOG_MSG( a )
sl@0
    94
	#define LOG_MSG2( a, b )
sl@0
    95
	#define LOG_MSG3( a, b, c )
sl@0
    96
	#define LOG_MSG4( a, b, c, d )
sl@0
    97
	#define LOG_MSG5( a, b, c, d, e )
sl@0
    98
sl@0
    99
	#define LOG_EVENT_MSG( a )
sl@0
   100
	#define LOG_EVENT_MSG2( a, b )
sl@0
   101
	#define LOG_EVENT_MSG3( a, b, c )
sl@0
   102
	#define LOG_EVENT_MSG4( a, b, c, d )
sl@0
   103
	#define LOG_EVENT_MSG5( a, b, c, d, e )
sl@0
   104
sl@0
   105
#endif
sl@0
   106
sl@0
   107
#endif //DEBUG_LOGGING_H
sl@0
   108