First public contribution.
1 // Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __SQLASSERT_H__
17 #define __SQLASSERT_H__
20 #include "SqlPanic.h" //TSqlPanic
22 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
24 //Enable _SQLPROFILER if you want to use the TSqlResourceProfiler functions. Do not forget the same macro declaration in os_symbian.cpp file.
26 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
28 //All macros in this header will have a non-void definition only if the OST_TRACE_COMPILER_IN_USE macro
30 //In order to get the traces enabled, the OST_TRACE_COMPILER_IN_USE macro has to be defined in
31 //OstTraceDefinitions.h file.
32 //After that, the trace output can be redirected by defining _SQL_RDEBUG_PRINT or specific categories
33 //of traces can be enabled/disabled.
35 //Enable _SQL_RDEBUG_PRINT if you want to redirect the tracing output via RDebug::Print()
36 //#define _SQL_RDEBUG_PRINT
38 //Enable _SQL_BORDER_TRACE_ENABLED if you want to get the entry/exit traces compiled in the binary
39 //#define _SQL_BORDER_TRACE_ENABLED
41 //Enable _SQL_INTERNALS_TRACE_ENABLED if you want to get the internal traces compiled in the binary
42 //#define _SQL_INTERNALS_TRACE_ENABLED
44 //Enable _SQL_BUR_TRACE_ENABLED if you want to get the backup&restore traces compiled in the binary
45 //#define _SQL_BUR_TRACE_ENABLED
47 //Enable _SQL_COMPACT_TRACE_ENABLED if you want to get the background compaction traces compiled in the binary
48 //#define _SQL_COMPACT_TRACE_ENABLED
50 //Enable _SQL_SESSION_TRACE_ENABLED if you want to get the client and server sessions traces compiled in the binary
51 //#define _SQL_SESSION_TRACE_ENABLED
53 //Enable _SQL_AUTHORIZER_TRACE_ENABLED if you want to trace the authorizer parameters
54 //#define _SQL_AUTHORIZER_TRACE_ENABLED
56 //Enable _SQL_BLOB_TRACE_ENABLED if you want to trace the server side BLOB calls
57 //#define _SQL_BLOB_TRACE_ENABLED
60 //Enable _SQL_PANIC_TRACE_ENABLED if you want to get more detailed output regarding panics
61 //#define _SQL_PANIC_TRACE_ENABLED
63 //Enable _SQL_LEAVE_TRACE_ENABLED if you want to get more detailed output regarding leaving locations
64 //#define _SQL_LEAVE_TRACE_ENABLED
67 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
69 //Wrap every string (file name, file path, etc.) you want to trace, in a __SQLPRNSTR()/__SQLPRNSTR8() macro.
70 //There is a difference how RDebug::Print() and OstTraceExt<n>() work.
71 #if defined _SQL_RDEBUG_PRINT
72 const TInt KSqlMaxPrnStrLen = 512;
73 #define __SQLPRNSTR(des) &des
74 const TDesC* SqlDes8to16Ptr(const TDesC8& aDes, TDes& aOut);
75 #define __SQLPRNSTR8(des, out) SqlDes8to16Ptr(des, out)
77 #define __SQLPRNSTR(des) des
78 #define __SQLPRNSTR8(des, out) des
81 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
83 //Forward declarations
87 Set of useful functions to print diagnostic messages on the console when an error/leaving occurs.
93 friend void UtilFileNameTest();
96 static void GetTimeStr(TDes& aWhere);
97 static TInt Panic(const TText* aFile, TInt aLine, TInt aPanicCode, TUint aHandle);
98 static void Leave(const TText* aFile, TInt aLine, TInt aError, TUint aHandle);
99 static TInt LeaveIfError(const TText* aFile, TInt aLine, TInt aError, TUint aHandle);
100 static void* LeaveIfNull(const TText* aFile, TInt aLine, void* aPtr, TUint aHandle);
101 static TInt PanicClientL(const TText* aFile, TInt aLine, const RMessage2& aMessage, TInt aPanicCode, TUint aHandle);
104 static TPtrC FileName(const TText* aFile);
108 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
110 #define __SQLSTRING(str) _S(str)
112 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
114 //__SQLPANIC/__SQLPANIC2 macro is used for printing out additional information when panic occurs in SQL:
115 //source file name, line number, "this" pointer, panic category.
116 #define __SQLPANIC(aPanicCode) TSqlUtil::Panic(__SQLSTRING(__FILE__), __LINE__, aPanicCode, (TUint)this)
117 #define __SQLPANIC2(aPanicCode) TSqlUtil::Panic(__SQLSTRING(__FILE__), __LINE__, aPanicCode, 0)
119 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
121 //This macro should be used to leave with "err" error code.
122 //In debug mode prints the file name and the line number where the leaving occurs and then leaves.
123 //In release mode only leaves.
124 #define __SQLLEAVE(err) TSqlUtil::Leave(__SQLSTRING(__FILE__), __LINE__, err, (TUint)this)
125 #define __SQLLEAVE2(err) TSqlUtil::Leave(__SQLSTRING(__FILE__), __LINE__, err, 0)
127 //This macro should be used to leave with "err" error code, if the error code is negative.
128 //In debug mode prints the file name and the line number where the leaving occurs and then leaves.
129 //In release mode only leaves.
130 #define __SQLLEAVE_IF_ERROR(err) TSqlUtil::LeaveIfError(__SQLSTRING(__FILE__), __LINE__, err, (TUint)this)
131 #define __SQLLEAVE_IF_ERROR2(err) TSqlUtil::LeaveIfError(__SQLSTRING(__FILE__), __LINE__, err, 0)
133 //This macro should be used to leave with KErrNoMemory if "ptr" argument is NULL.
134 //In debug mode prints the file name and the line number where the leaving occurs and then leaves.
135 //In release mode only leaves.
136 #define __SQLLEAVE_IF_NULL(ptr) TSqlUtil::LeaveIfNull(__SQLSTRING(__FILE__), __LINE__, ptr, (TUint)this)
138 //This macro should be used to panic the client and leave if "expr" condition is not satisfied.
139 //In debug mode prints the file name and the line number where the leaving occurs and then
140 //panics the client and leaves.
141 //In release mode only panics the client and leaves.
142 #define __SQLPANIC_CLIENT(expr, msg, panicCode) (void)((expr) || TSqlUtil::PanicClientL(__SQLSTRING(__FILE__), __LINE__, msg, panicCode, (TUint)this))
143 #define __SQLPANIC_CLIENT2(expr, msg, panicCode) (void)((expr) || TSqlUtil::PanicClientL(__SQLSTRING(__FILE__), __LINE__, msg, panicCode, 0))
145 //===================================================================================
147 #ifdef _SQL_BORDER_TRACE_ENABLED
148 #define SQL_TRACE_BORDER(trace) trace
150 #define SQL_TRACE_BORDER(trace) do {} while(0)
153 #ifdef _SQL_INTERNALS_TRACE_ENABLED
154 #define SQL_TRACE_INTERNALS(trace) trace
156 #define SQL_TRACE_INTERNALS(trace) do {} while(0)
159 #ifdef _SQL_BUR_TRACE_ENABLED
160 #define SQL_TRACE_BUR(trace) trace
162 #define SQL_TRACE_BUR(trace) do {} while(0)
165 #ifdef _SQL_COMPACT_TRACE_ENABLED
166 #define SQL_TRACE_COMPACT(trace) trace
168 #define SQL_TRACE_COMPACT(trace) do {} while(0)
171 #ifdef _SQL_SESSION_TRACE_ENABLED
172 #define SQL_TRACE_SESSION(trace) trace
174 #define SQL_TRACE_SESSION(trace) do {} while(0)
177 #ifdef _SQL_AUTHORIZER_TRACE_ENABLED
178 #define SQL_TRACE_AUTHORIZER(trace) trace
180 #define SQL_TRACE_AUTHORIZER(trace) do {} while(0)
183 #ifdef _SQL_BLOB_TRACE_ENABLED
184 #define SQL_TRACE_BLOB(trace) trace
186 #define SQL_TRACE_BLOB(trace) do {} while(0)
189 //===================================================================================
191 #endif//__SQLASSERT_H__