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.
sl@0
     1
// Copyright (c) 2005-2010 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 "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
//
sl@0
    15
sl@0
    16
#ifndef __SQLASSERT_H__
sl@0
    17
#define __SQLASSERT_H__
sl@0
    18
sl@0
    19
#include <e32std.h>
sl@0
    20
#include "SqlPanic.h"   //TSqlPanic
sl@0
    21
sl@0
    22
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    23
sl@0
    24
//Enable _SQLPROFILER if you want to use the TSqlResourceProfiler functions. Do not forget the same macro declaration in os_symbian.cpp file.
sl@0
    25
sl@0
    26
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    27
sl@0
    28
//All macros in this header will have a non-void definition only if the OST_TRACE_COMPILER_IN_USE macro
sl@0
    29
//is defined. 
sl@0
    30
//In order to get the traces enabled, the OST_TRACE_COMPILER_IN_USE macro has to be defined in
sl@0
    31
//OstTraceDefinitions.h file. 
sl@0
    32
//After that, the trace output can be redirected by defining _SQL_RDEBUG_PRINT or specific categories
sl@0
    33
//of traces can be enabled/disabled.
sl@0
    34
sl@0
    35
//Enable _SQL_RDEBUG_PRINT if you want to redirect the tracing output via RDebug::Print()
sl@0
    36
//#define _SQL_RDEBUG_PRINT
sl@0
    37
sl@0
    38
//Enable _SQL_BORDER_TRACE_ENABLED if you want to get the entry/exit traces compiled in the binary
sl@0
    39
//#define _SQL_BORDER_TRACE_ENABLED
sl@0
    40
sl@0
    41
//Enable _SQL_INTERNALS_TRACE_ENABLED if you want to get the internal traces compiled in the binary
sl@0
    42
//#define _SQL_INTERNALS_TRACE_ENABLED
sl@0
    43
sl@0
    44
//Enable _SQL_BUR_TRACE_ENABLED if you want to get the backup&restore traces compiled in the binary
sl@0
    45
//#define _SQL_BUR_TRACE_ENABLED
sl@0
    46
sl@0
    47
//Enable _SQL_COMPACT_TRACE_ENABLED if you want to get the background compaction traces compiled in the binary
sl@0
    48
//#define _SQL_COMPACT_TRACE_ENABLED
sl@0
    49
sl@0
    50
//Enable _SQL_SESSION_TRACE_ENABLED if you want to get the client and server sessions traces compiled in the binary
sl@0
    51
//#define _SQL_SESSION_TRACE_ENABLED
sl@0
    52
sl@0
    53
//Enable _SQL_AUTHORIZER_TRACE_ENABLED if you want to trace the authorizer parameters
sl@0
    54
//#define _SQL_AUTHORIZER_TRACE_ENABLED
sl@0
    55
sl@0
    56
//Enable _SQL_BLOB_TRACE_ENABLED if you want to trace the server side BLOB calls
sl@0
    57
//#define _SQL_BLOB_TRACE_ENABLED
sl@0
    58
sl@0
    59
#ifdef _DEBUG
sl@0
    60
    //Enable _SQL_PANIC_TRACE_ENABLED if you want to get more detailed output regarding panics
sl@0
    61
    //#define _SQL_PANIC_TRACE_ENABLED
sl@0
    62
sl@0
    63
    //Enable _SQL_LEAVE_TRACE_ENABLED if you want to get more detailed output regarding leaving locations
sl@0
    64
    //#define _SQL_LEAVE_TRACE_ENABLED
sl@0
    65
#endif
sl@0
    66
sl@0
    67
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    68
sl@0
    69
//Wrap every string (file name, file path, etc.) you want to trace, in a __SQLPRNSTR()/__SQLPRNSTR8() macro. 
sl@0
    70
//There is a difference how RDebug::Print() and OstTraceExt<n>() work.
sl@0
    71
#if defined _SQL_RDEBUG_PRINT
sl@0
    72
    const TInt KSqlMaxPrnStrLen = 512;    
sl@0
    73
    #define __SQLPRNSTR(des)  &des
sl@0
    74
    const TDesC* SqlDes8to16Ptr(const TDesC8& aDes, TDes& aOut);
sl@0
    75
	#define __SQLPRNSTR8(des, out)  SqlDes8to16Ptr(des, out) 
sl@0
    76
#else
sl@0
    77
    #define __SQLPRNSTR(des)  des
sl@0
    78
    #define __SQLPRNSTR8(des, out) des
sl@0
    79
#endif
sl@0
    80
sl@0
    81
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    82
sl@0
    83
//Forward declarations
sl@0
    84
class RMessage2;
sl@0
    85
sl@0
    86
/**
sl@0
    87
Set of useful functions to print diagnostic messages on the console when an error/leaving occurs.
sl@0
    88
sl@0
    89
@internalComponent
sl@0
    90
*/
sl@0
    91
class TSqlUtil
sl@0
    92
	{
sl@0
    93
	friend void UtilFileNameTest();
sl@0
    94
	
sl@0
    95
public:
sl@0
    96
	static void GetTimeStr(TDes& aWhere);
sl@0
    97
	static TInt Panic(const TText* aFile, TInt aLine, TInt aPanicCode, TUint aHandle);
sl@0
    98
	static void Leave(const TText* aFile, TInt aLine, TInt aError, TUint aHandle);
sl@0
    99
	static TInt LeaveIfError(const TText* aFile, TInt aLine, TInt aError, TUint aHandle);
sl@0
   100
	static void* LeaveIfNull(const TText* aFile, TInt aLine, void* aPtr, TUint aHandle);
sl@0
   101
	static TInt PanicClientL(const TText* aFile, TInt aLine, const RMessage2& aMessage, TInt aPanicCode, TUint aHandle);
sl@0
   102
	
sl@0
   103
private:
sl@0
   104
	static TPtrC FileName(const TText* aFile);
sl@0
   105
	
sl@0
   106
	};
sl@0
   107
sl@0
   108
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   109
sl@0
   110
#define __SQLSTRING(str) _S(str)
sl@0
   111
sl@0
   112
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   113
sl@0
   114
//__SQLPANIC/__SQLPANIC2 macro is used for printing out additional information when panic occurs in SQL:
sl@0
   115
//source file name, line number, "this" pointer, panic category.
sl@0
   116
#define __SQLPANIC(aPanicCode)      TSqlUtil::Panic(__SQLSTRING(__FILE__), __LINE__, aPanicCode, (TUint)this)
sl@0
   117
#define __SQLPANIC2(aPanicCode)     TSqlUtil::Panic(__SQLSTRING(__FILE__), __LINE__, aPanicCode, 0)
sl@0
   118
sl@0
   119
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   120
sl@0
   121
//This macro should be used to leave with "err" error code.
sl@0
   122
//In debug mode prints the file name and the line number where the leaving occurs and then leaves.
sl@0
   123
//In release mode only leaves.
sl@0
   124
#define __SQLLEAVE(err)             TSqlUtil::Leave(__SQLSTRING(__FILE__), __LINE__, err, (TUint)this)
sl@0
   125
#define __SQLLEAVE2(err)            TSqlUtil::Leave(__SQLSTRING(__FILE__), __LINE__, err, 0)
sl@0
   126
sl@0
   127
//This macro should be used to leave with "err" error code, if the error code is negative.
sl@0
   128
//In debug mode prints the file name and the line number where the leaving occurs and then leaves.
sl@0
   129
//In release mode only leaves.
sl@0
   130
#define __SQLLEAVE_IF_ERROR(err)    TSqlUtil::LeaveIfError(__SQLSTRING(__FILE__), __LINE__, err, (TUint)this)
sl@0
   131
#define __SQLLEAVE_IF_ERROR2(err)   TSqlUtil::LeaveIfError(__SQLSTRING(__FILE__), __LINE__, err, 0)
sl@0
   132
sl@0
   133
//This macro should be used to leave with KErrNoMemory if "ptr" argument is NULL.
sl@0
   134
//In debug mode prints the file name and the line number where the leaving occurs and then leaves.
sl@0
   135
//In release mode only leaves.
sl@0
   136
#define __SQLLEAVE_IF_NULL(ptr)     TSqlUtil::LeaveIfNull(__SQLSTRING(__FILE__), __LINE__, ptr, (TUint)this)
sl@0
   137
sl@0
   138
//This macro should be used to panic the client and leave if "expr" condition is not satisfied.
sl@0
   139
//In debug mode prints the file name and the line number where the leaving occurs and then 
sl@0
   140
//panics the client and leaves.
sl@0
   141
//In release mode only panics the client and leaves.
sl@0
   142
#define __SQLPANIC_CLIENT(expr, msg, panicCode)  (void)((expr) || TSqlUtil::PanicClientL(__SQLSTRING(__FILE__), __LINE__, msg, panicCode, (TUint)this))
sl@0
   143
#define __SQLPANIC_CLIENT2(expr, msg, panicCode) (void)((expr) || TSqlUtil::PanicClientL(__SQLSTRING(__FILE__), __LINE__, msg, panicCode, 0))
sl@0
   144
sl@0
   145
//===================================================================================
sl@0
   146
sl@0
   147
#ifdef _SQL_BORDER_TRACE_ENABLED
sl@0
   148
    #define SQL_TRACE_BORDER(trace)   trace
sl@0
   149
#else
sl@0
   150
    #define SQL_TRACE_BORDER(trace)   do {} while(0)
sl@0
   151
#endif
sl@0
   152
sl@0
   153
#ifdef _SQL_INTERNALS_TRACE_ENABLED
sl@0
   154
    #define SQL_TRACE_INTERNALS(trace)   trace
sl@0
   155
#else
sl@0
   156
    #define SQL_TRACE_INTERNALS(trace)   do {} while(0)
sl@0
   157
#endif
sl@0
   158
sl@0
   159
#ifdef _SQL_BUR_TRACE_ENABLED
sl@0
   160
    #define SQL_TRACE_BUR(trace)   trace
sl@0
   161
#else
sl@0
   162
    #define SQL_TRACE_BUR(trace)   do {} while(0)
sl@0
   163
#endif
sl@0
   164
sl@0
   165
#ifdef _SQL_COMPACT_TRACE_ENABLED
sl@0
   166
    #define SQL_TRACE_COMPACT(trace)   trace
sl@0
   167
#else
sl@0
   168
    #define SQL_TRACE_COMPACT(trace)   do {} while(0)
sl@0
   169
#endif
sl@0
   170
sl@0
   171
#ifdef _SQL_SESSION_TRACE_ENABLED
sl@0
   172
    #define SQL_TRACE_SESSION(trace)   trace
sl@0
   173
#else
sl@0
   174
    #define SQL_TRACE_SESSION(trace)   do {} while(0)
sl@0
   175
#endif
sl@0
   176
sl@0
   177
#ifdef _SQL_AUTHORIZER_TRACE_ENABLED
sl@0
   178
    #define SQL_TRACE_AUTHORIZER(trace)   trace
sl@0
   179
#else
sl@0
   180
    #define SQL_TRACE_AUTHORIZER(trace)   do {} while(0)
sl@0
   181
#endif
sl@0
   182
sl@0
   183
#ifdef _SQL_BLOB_TRACE_ENABLED
sl@0
   184
    #define SQL_TRACE_BLOB(trace)   trace
sl@0
   185
#else
sl@0
   186
    #define SQL_TRACE_BLOB(trace)   do {} while(0)
sl@0
   187
#endif
sl@0
   188
sl@0
   189
//===================================================================================
sl@0
   190
sl@0
   191
#endif//__SQLASSERT_H__