os/persistentdata/persistentstorage/sql/SRC/Common/SqlAssert.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #ifndef __SQLASSERT_H__
    17 #define __SQLASSERT_H__
    18 
    19 #include <e32std.h>
    20 #include "SqlPanic.h"   //TSqlPanic
    21 
    22 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    23 
    24 //Enable _SQLPROFILER if you want to use the TSqlResourceProfiler functions. Do not forget the same macro declaration in os_symbian.cpp file.
    25 
    26 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    27 
    28 //All macros in this header will have a non-void definition only if the OST_TRACE_COMPILER_IN_USE macro
    29 //is defined. 
    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.
    34 
    35 //Enable _SQL_RDEBUG_PRINT if you want to redirect the tracing output via RDebug::Print()
    36 //#define _SQL_RDEBUG_PRINT
    37 
    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
    40 
    41 //Enable _SQL_INTERNALS_TRACE_ENABLED if you want to get the internal traces compiled in the binary
    42 //#define _SQL_INTERNALS_TRACE_ENABLED
    43 
    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
    46 
    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
    49 
    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
    52 
    53 //Enable _SQL_AUTHORIZER_TRACE_ENABLED if you want to trace the authorizer parameters
    54 //#define _SQL_AUTHORIZER_TRACE_ENABLED
    55 
    56 //Enable _SQL_BLOB_TRACE_ENABLED if you want to trace the server side BLOB calls
    57 //#define _SQL_BLOB_TRACE_ENABLED
    58 
    59 #ifdef _DEBUG
    60     //Enable _SQL_PANIC_TRACE_ENABLED if you want to get more detailed output regarding panics
    61     //#define _SQL_PANIC_TRACE_ENABLED
    62 
    63     //Enable _SQL_LEAVE_TRACE_ENABLED if you want to get more detailed output regarding leaving locations
    64     //#define _SQL_LEAVE_TRACE_ENABLED
    65 #endif
    66 
    67 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    68 
    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) 
    76 #else
    77     #define __SQLPRNSTR(des)  des
    78     #define __SQLPRNSTR8(des, out) des
    79 #endif
    80 
    81 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    82 
    83 //Forward declarations
    84 class RMessage2;
    85 
    86 /**
    87 Set of useful functions to print diagnostic messages on the console when an error/leaving occurs.
    88 
    89 @internalComponent
    90 */
    91 class TSqlUtil
    92 	{
    93 	friend void UtilFileNameTest();
    94 	
    95 public:
    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);
   102 	
   103 private:
   104 	static TPtrC FileName(const TText* aFile);
   105 	
   106 	};
   107 
   108 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
   109 
   110 #define __SQLSTRING(str) _S(str)
   111 
   112 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
   113 
   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)
   118 
   119 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
   120 
   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)
   126 
   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)
   132 
   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)
   137 
   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))
   144 
   145 //===================================================================================
   146 
   147 #ifdef _SQL_BORDER_TRACE_ENABLED
   148     #define SQL_TRACE_BORDER(trace)   trace
   149 #else
   150     #define SQL_TRACE_BORDER(trace)   do {} while(0)
   151 #endif
   152 
   153 #ifdef _SQL_INTERNALS_TRACE_ENABLED
   154     #define SQL_TRACE_INTERNALS(trace)   trace
   155 #else
   156     #define SQL_TRACE_INTERNALS(trace)   do {} while(0)
   157 #endif
   158 
   159 #ifdef _SQL_BUR_TRACE_ENABLED
   160     #define SQL_TRACE_BUR(trace)   trace
   161 #else
   162     #define SQL_TRACE_BUR(trace)   do {} while(0)
   163 #endif
   164 
   165 #ifdef _SQL_COMPACT_TRACE_ENABLED
   166     #define SQL_TRACE_COMPACT(trace)   trace
   167 #else
   168     #define SQL_TRACE_COMPACT(trace)   do {} while(0)
   169 #endif
   170 
   171 #ifdef _SQL_SESSION_TRACE_ENABLED
   172     #define SQL_TRACE_SESSION(trace)   trace
   173 #else
   174     #define SQL_TRACE_SESSION(trace)   do {} while(0)
   175 #endif
   176 
   177 #ifdef _SQL_AUTHORIZER_TRACE_ENABLED
   178     #define SQL_TRACE_AUTHORIZER(trace)   trace
   179 #else
   180     #define SQL_TRACE_AUTHORIZER(trace)   do {} while(0)
   181 #endif
   182 
   183 #ifdef _SQL_BLOB_TRACE_ENABLED
   184     #define SQL_TRACE_BLOB(trace)   trace
   185 #else
   186     #define SQL_TRACE_BLOB(trace)   do {} while(0)
   187 #endif
   188 
   189 //===================================================================================
   190 
   191 #endif//__SQLASSERT_H__