sl@0: // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: #ifndef SQLTRACEDEF_H sl@0: #define SQLTRACEDEF_H sl@0: sl@0: #include sl@0: #include "SqlAssert.h" sl@0: sl@0: ////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: #if defined OST_TRACE_COMPILER_IN_USE && defined _SQL_BORDER_TRACE_ENABLED sl@0: #define __SQLTRACE_BORDERVAR(var) var sl@0: #define __SQLTRACE_BORDEREXPR(expr) expr sl@0: #else sl@0: #define __SQLTRACE_BORDERVAR(var) sl@0: #define __SQLTRACE_BORDEREXPR(expr) sl@0: #endif sl@0: sl@0: #if defined OST_TRACE_COMPILER_IN_USE && defined _SQL_INTERNALS_TRACE_ENABLED sl@0: #define __SQLTRACE_INTERNALSVAR(var) var sl@0: #define __SQLTRACE_INTERNALSEXPR(expr) expr sl@0: #else sl@0: #define __SQLTRACE_INTERNALSVAR(var) sl@0: #define __SQLTRACE_INTERNALSEXPR(expr) sl@0: #endif sl@0: sl@0: #if defined OST_TRACE_COMPILER_IN_USE && defined _SQL_BUR_TRACE_ENABLED sl@0: #define __SQLTRACE_BURVAR(var) var sl@0: #define __SQLTRACE_BUREXPR(expr) expr sl@0: #else sl@0: #define __SQLTRACE_BURVAR(var) sl@0: #define __SQLTRACE_BUREXPR(expr) sl@0: #endif sl@0: sl@0: #if defined OST_TRACE_COMPILER_IN_USE && defined _SQL_COMPACT_TRACE_ENABLED sl@0: #define __SQLTRACE_COMPACTVAR(var) var sl@0: #define __SQLTRACE_COMPACTEXPR(expr) expr sl@0: #else sl@0: #define __SQLTRACE_COMPACTVAR(var) sl@0: #define __SQLTRACE_COMPACTEXPR(expr) sl@0: #endif sl@0: sl@0: #if defined OST_TRACE_COMPILER_IN_USE && defined _SQL_SESSION_TRACE_ENABLED sl@0: #define __SQLTRACE_SESSIONVAR(var) var sl@0: #define __SQLTRACE_SESSIONEXPR(expr) expr sl@0: #else sl@0: #define __SQLTRACE_SESSIONVAR(var) sl@0: #define __SQLTRACE_SESSIONEXPR(expr) sl@0: #endif sl@0: sl@0: #if defined OST_TRACE_COMPILER_IN_USE && defined _SQL_AUTHORIZER_TRACE_ENABLED sl@0: #define __SQLTRACE_AUTHORIZERVAR(var) var sl@0: #define __SQLTRACE_AUTHORIZEREXPR(expr) expr sl@0: #else sl@0: #define __SQLTRACE_AUTHORIZERVAR(var) sl@0: #define __SQLTRACE_AUTHORIZEREXPR(expr) sl@0: #endif sl@0: sl@0: #if defined OST_TRACE_COMPILER_IN_USE && defined _SQL_BLOB_TRACE_ENABLED sl@0: #define __SQLTRACE_BLOBVAR(var) var sl@0: #define __SQLTRACE_BLOBEXPR(expr) expr sl@0: #else sl@0: #define __SQLTRACE_BLOBVAR(var) sl@0: #define __SQLTRACE_BLOBEXPR(expr) sl@0: #endif sl@0: sl@0: ////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: #if defined OST_TRACE_COMPILER_IN_USE && defined _SQL_RDEBUG_PRINT sl@0: #undef OstTrace0 sl@0: #undef OstTrace1 sl@0: #undef OstTraceExt1 sl@0: #undef OstTraceExt2 sl@0: #undef OstTraceExt3 sl@0: #undef OstTraceExt4 sl@0: #undef OstTraceExt5 sl@0: sl@0: void SqlPrintf(TInt aGroupName, TInt aTraceName, const char* aFormat, ...); sl@0: sl@0: #define OstTrace0 SqlPrintf sl@0: #define OstTrace1 SqlPrintf sl@0: #define OstTraceExt1 SqlPrintf sl@0: #define OstTraceExt2 SqlPrintf sl@0: #define OstTraceExt3 SqlPrintf sl@0: #define OstTraceExt4 SqlPrintf sl@0: #define OstTraceExt5 SqlPrintf sl@0: #endif//defined OST_TRACE_COMPILER_IN_USE && defined _SQL_RDEBUG_PRINT sl@0: sl@0: ////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: #endif//SQLTRACEDEF_H