1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/sql/SRC/Common/SqlTraceDef.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,103 @@
1.4 +// Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +#ifndef SQLTRACEDEF_H
1.19 +#define SQLTRACEDEF_H
1.20 +
1.21 +#include <e32def.h>
1.22 +#include "SqlAssert.h"
1.23 +
1.24 +//////////////////////////////////////////////////////////////////////////////////////
1.25 +
1.26 +#if defined OST_TRACE_COMPILER_IN_USE && defined _SQL_BORDER_TRACE_ENABLED
1.27 + #define __SQLTRACE_BORDERVAR(var) var
1.28 + #define __SQLTRACE_BORDEREXPR(expr) expr
1.29 +#else
1.30 + #define __SQLTRACE_BORDERVAR(var)
1.31 + #define __SQLTRACE_BORDEREXPR(expr)
1.32 +#endif
1.33 +
1.34 +#if defined OST_TRACE_COMPILER_IN_USE && defined _SQL_INTERNALS_TRACE_ENABLED
1.35 + #define __SQLTRACE_INTERNALSVAR(var) var
1.36 + #define __SQLTRACE_INTERNALSEXPR(expr) expr
1.37 +#else
1.38 + #define __SQLTRACE_INTERNALSVAR(var)
1.39 + #define __SQLTRACE_INTERNALSEXPR(expr)
1.40 +#endif
1.41 +
1.42 +#if defined OST_TRACE_COMPILER_IN_USE && defined _SQL_BUR_TRACE_ENABLED
1.43 + #define __SQLTRACE_BURVAR(var) var
1.44 + #define __SQLTRACE_BUREXPR(expr) expr
1.45 +#else
1.46 + #define __SQLTRACE_BURVAR(var)
1.47 + #define __SQLTRACE_BUREXPR(expr)
1.48 +#endif
1.49 +
1.50 +#if defined OST_TRACE_COMPILER_IN_USE && defined _SQL_COMPACT_TRACE_ENABLED
1.51 + #define __SQLTRACE_COMPACTVAR(var) var
1.52 + #define __SQLTRACE_COMPACTEXPR(expr) expr
1.53 +#else
1.54 + #define __SQLTRACE_COMPACTVAR(var)
1.55 + #define __SQLTRACE_COMPACTEXPR(expr)
1.56 +#endif
1.57 +
1.58 +#if defined OST_TRACE_COMPILER_IN_USE && defined _SQL_SESSION_TRACE_ENABLED
1.59 + #define __SQLTRACE_SESSIONVAR(var) var
1.60 + #define __SQLTRACE_SESSIONEXPR(expr) expr
1.61 +#else
1.62 + #define __SQLTRACE_SESSIONVAR(var)
1.63 + #define __SQLTRACE_SESSIONEXPR(expr)
1.64 +#endif
1.65 +
1.66 +#if defined OST_TRACE_COMPILER_IN_USE && defined _SQL_AUTHORIZER_TRACE_ENABLED
1.67 + #define __SQLTRACE_AUTHORIZERVAR(var) var
1.68 + #define __SQLTRACE_AUTHORIZEREXPR(expr) expr
1.69 +#else
1.70 + #define __SQLTRACE_AUTHORIZERVAR(var)
1.71 + #define __SQLTRACE_AUTHORIZEREXPR(expr)
1.72 +#endif
1.73 +
1.74 +#if defined OST_TRACE_COMPILER_IN_USE && defined _SQL_BLOB_TRACE_ENABLED
1.75 + #define __SQLTRACE_BLOBVAR(var) var
1.76 + #define __SQLTRACE_BLOBEXPR(expr) expr
1.77 +#else
1.78 + #define __SQLTRACE_BLOBVAR(var)
1.79 + #define __SQLTRACE_BLOBEXPR(expr)
1.80 +#endif
1.81 +
1.82 +//////////////////////////////////////////////////////////////////////////////////////
1.83 +
1.84 +#if defined OST_TRACE_COMPILER_IN_USE && defined _SQL_RDEBUG_PRINT
1.85 + #undef OstTrace0
1.86 + #undef OstTrace1
1.87 + #undef OstTraceExt1
1.88 + #undef OstTraceExt2
1.89 + #undef OstTraceExt3
1.90 + #undef OstTraceExt4
1.91 + #undef OstTraceExt5
1.92 +
1.93 + void SqlPrintf(TInt aGroupName, TInt aTraceName, const char* aFormat, ...);
1.94 +
1.95 + #define OstTrace0 SqlPrintf
1.96 + #define OstTrace1 SqlPrintf
1.97 + #define OstTraceExt1 SqlPrintf
1.98 + #define OstTraceExt2 SqlPrintf
1.99 + #define OstTraceExt3 SqlPrintf
1.100 + #define OstTraceExt4 SqlPrintf
1.101 + #define OstTraceExt5 SqlPrintf
1.102 +#endif//defined OST_TRACE_COMPILER_IN_USE && defined _SQL_RDEBUG_PRINT
1.103 +
1.104 +//////////////////////////////////////////////////////////////////////////////////////
1.105 +
1.106 +#endif//SQLTRACEDEF_H