os/persistentdata/persistentstorage/sql/SRC/Common/SqlUtil.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
#include <e32svr.h>
sl@0
    17
#include "SqlAssert.h"
sl@0
    18
#include <sqldb.h>		//ESqlAtRow, ESqlAtEnd, ESqlErrGeneral
sl@0
    19
#include "sqlite3.h"	//SQLITE_OK, SQLITE_ROW, SQLITE_DONE
sl@0
    20
#include "OstTraceDefinitions.h"
sl@0
    21
#ifdef OST_TRACE_COMPILER_IN_USE
sl@0
    22
#include "SqlUtilTraces.h"
sl@0
    23
#endif
sl@0
    24
#include "SqlTraceDef.h"
sl@0
    25
sl@0
    26
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    27
sl@0
    28
const TInt KSqlLeavePanic = -359;//The (last-1) error code from the reserved area for the SQL component.
sl@0
    29
sl@0
    30
#define UNUSED_ARG(arg) arg = arg
sl@0
    31
#define UNUSED_DES(arg) arg
sl@0
    32
sl@0
    33
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    34
sl@0
    35
#if defined OST_TRACE_COMPILER_IN_USE &&  defined _SQL_RDEBUG_PRINT
sl@0
    36
sl@0
    37
/**
sl@0
    38
This class has been added here to avoid the crashes when _SQL_RDEBUG_PRINT macro is defined but the
sl@0
    39
data to be printed out is too big and cannot fit into the buffer with size KSqlMaxPrnStrLen.
sl@0
    40
@internalComponent   
sl@0
    41
*/
sl@0
    42
class TSqlDes16Overflow : public TDes16Overflow
sl@0
    43
    {
sl@0
    44
public:    
sl@0
    45
    virtual void Overflow(TDes16& /*aDes*/)
sl@0
    46
        {
sl@0
    47
        }
sl@0
    48
    };
sl@0
    49
sl@0
    50
//Replaces:
sl@0
    51
// 1) "%lld" with "%ld"
sl@0
    52
// 2) "%s" with "%S"
sl@0
    53
//These are the differences in format specification between RDebig::Print and OST functions.
sl@0
    54
//The new format spec length should be less or equal than the old format spec length.
sl@0
    55
static void ReplaceFmtSpec(TDes& aFormat, const TDesC& aFmtSpec, const TDesC& aNewFmtSpec)
sl@0
    56
	{
sl@0
    57
	TInt fmtLength = aFormat.Length();
sl@0
    58
	const TInt KDiff = aFmtSpec.Length() - aNewFmtSpec.Length();
sl@0
    59
    TPtr ptr((TText*)aFormat.Ptr(), fmtLength, fmtLength);
sl@0
    60
    TInt pos;
sl@0
    61
    while((pos = ptr.Find(aFmtSpec)) >= 0)
sl@0
    62
    	{
sl@0
    63
		ptr.Replace(pos, aFmtSpec.Length(), aNewFmtSpec);
sl@0
    64
		fmtLength -= KDiff;
sl@0
    65
		ptr.Set(ptr.MidTPtr(pos));
sl@0
    66
    	}
sl@0
    67
    aFormat.SetLength(fmtLength);
sl@0
    68
	}
sl@0
    69
sl@0
    70
void SqlPrintf(TInt /*aGroupName*/, TInt /*aTraceName*/, const char* aFormat, ...)
sl@0
    71
    {
sl@0
    72
    VA_LIST list;
sl@0
    73
    VA_START(list, aFormat);
sl@0
    74
    TBuf<128> format;
sl@0
    75
    _LIT(KTraceIdent, "SQL;");
sl@0
    76
    format.Copy(TPtrC8((const TUint8*)aFormat));
sl@0
    77
    format.Insert(0, KTraceIdent);
sl@0
    78
    format.Append(_L("\r\n"));
sl@0
    79
    _LIT(KOstI64Fmt, "%lld");
sl@0
    80
    _LIT(KDbgPrnI64Fmt, "%ld");
sl@0
    81
    ReplaceFmtSpec(format, KOstI64Fmt, KDbgPrnI64Fmt);
sl@0
    82
    _LIT(KOstDes8Fmt, "%s");
sl@0
    83
    _LIT(KDbgPrnDesFmt, "%S");
sl@0
    84
    ReplaceFmtSpec(format, KOstDes8Fmt, KDbgPrnDesFmt);
sl@0
    85
    TBuf<KSqlMaxPrnStrLen> buf;
sl@0
    86
    TSqlDes16Overflow overflowHandler;
sl@0
    87
    buf.AppendFormatList(format, list, &overflowHandler);
sl@0
    88
#ifdef _SQL_RDEBUG_PRINT    
sl@0
    89
    RDebug::RawPrint(buf);
sl@0
    90
#endif
sl@0
    91
    }
sl@0
    92
sl@0
    93
const TDesC* SqlDes8to16Ptr(const TDesC8& aDes, TDes& aOut)
sl@0
    94
	{
sl@0
    95
	TPtrC8 ptr(aDes.Ptr(), Min(aDes.Length(), aOut.MaxLength()));
sl@0
    96
	aOut.Copy(ptr);
sl@0
    97
	return &aOut;
sl@0
    98
	}
sl@0
    99
sl@0
   100
#endif//defined OST_TRACE_COMPILER_IN_USE &&  defined _SQL_RDEBUG_PRINT 
sl@0
   101
sl@0
   102
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   103
sl@0
   104
/**
sl@0
   105
SQL panic category.
sl@0
   106
sl@0
   107
@internalComponent
sl@0
   108
*/
sl@0
   109
_LIT(KPanicCategory, "SqlDb");
sl@0
   110
sl@0
   111
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   112
sl@0
   113
/**
sl@0
   114
Panics the caller with aPanicCode panic code.
sl@0
   115
The call will terminate the thread where it is called from.
sl@0
   116
sl@0
   117
@param aPanicCode Panic code.
sl@0
   118
sl@0
   119
@internalComponent
sl@0
   120
*/
sl@0
   121
static void SqlPanic(TSqlPanic aPanicCode)
sl@0
   122
	{
sl@0
   123
	User::Panic(KPanicCategory, aPanicCode);
sl@0
   124
	}
sl@0
   125
	
sl@0
   126
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   127
sl@0
   128
/**
sl@0
   129
Panics the client with aPanicCode panic code.
sl@0
   130
This function is used by the SQL server to panic the caller (the client).
sl@0
   131
sl@0
   132
@param aMessage Client's message
sl@0
   133
@param aPanicCode Panic code.
sl@0
   134
sl@0
   135
@leave KSqlLeavePanic
sl@0
   136
sl@0
   137
@return KErrNone
sl@0
   138
sl@0
   139
@internalComponent
sl@0
   140
*/
sl@0
   141
static TInt SqlPanicClientL(const RMessage2& aMessage, TSqlPanic aPanicCode)
sl@0
   142
	{
sl@0
   143
	aMessage.Panic(KPanicCategory, aPanicCode);
sl@0
   144
	__SQLLEAVE2(KSqlLeavePanic);
sl@0
   145
	return KErrNone;
sl@0
   146
	}	
sl@0
   147
sl@0
   148
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   149
sl@0
   150
/**
sl@0
   151
The function prints out a "SQL panic" message to the console and panics the thread where it is called from.
sl@0
   152
It gives a useful information about the found error together with the source file name and line number where
sl@0
   153
it occurred.
sl@0
   154
sl@0
   155
Note: this function  will output information regarding the panic only if _SQL_PANIC_TRACE_ENABLED macro is defined  
sl@0
   156
sl@0
   157
@param aFile Source file name
sl@0
   158
@param aLine Source line number
sl@0
   159
@param aPanicCode Panic code
sl@0
   160
@param aHandle Numeric value, uniquely identfying the leaving location (the "this" pointer for example)
sl@0
   161
sl@0
   162
@return KErrNone
sl@0
   163
sl@0
   164
@internalComponent
sl@0
   165
*/  
sl@0
   166
TInt TSqlUtil::Panic(const TText* aFile, TInt aLine, TInt aPanicCode, TUint aHandle)
sl@0
   167
    {
sl@0
   168
#if defined OST_TRACE_COMPILER_IN_USE && defined _SQL_PANIC_TRACE_ENABLED
sl@0
   169
    TPtrC fname(FileName(aFile));
sl@0
   170
    OstTraceExt5(TRACE_FATAL, TSQLUTIL_PANIC, "Panic;0x%X;%S;%d;%S;%d", aHandle, __SQLPRNSTR(fname), aLine, __SQLPRNSTR(KPanicCategory), aPanicCode);
sl@0
   171
#else
sl@0
   172
    UNUSED_ARG(aFile);
sl@0
   173
    UNUSED_ARG(aLine);
sl@0
   174
    UNUSED_ARG(aHandle);
sl@0
   175
#endif      
sl@0
   176
    ::SqlPanic(static_cast <TSqlPanic> (aPanicCode));
sl@0
   177
    return KErrNone;
sl@0
   178
    }
sl@0
   179
sl@0
   180
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   181
sl@0
   182
/**
sl@0
   183
The function prints out a "SQL leave" message to the console and leaves with aError error code.
sl@0
   184
It gives a usefull information about the found error together with the source file name and line number where
sl@0
   185
it occured.
sl@0
   186
sl@0
   187
Note: this function  will output information regarding the panic only if _SQL_LEAVE_TRACE_ENABLED macro is defined  
sl@0
   188
sl@0
   189
@param aFile Source file name
sl@0
   190
@param aLine Source line number
sl@0
   191
@param aError Error code
sl@0
   192
@param aHandle Numeric value, uniquely identfying the leaving location (the "this" pointer for example)
sl@0
   193
sl@0
   194
@internalComponent
sl@0
   195
*/  
sl@0
   196
void TSqlUtil::Leave(const TText* aFile, TInt aLine, TInt aError, TUint aHandle)
sl@0
   197
    {
sl@0
   198
#if defined OST_TRACE_COMPILER_IN_USE && defined _SQL_LEAVE_TRACE_ENABLED     
sl@0
   199
    TPtrC fname(FileName(aFile));
sl@0
   200
    OstTraceExt4(TRACE_ERROR, TSQLUTIL_LEAVE, "Leave;0x%X;%S;%d;Error=%d", aHandle, __SQLPRNSTR(fname), aLine, aError);
sl@0
   201
#else
sl@0
   202
    UNUSED_ARG(aFile);
sl@0
   203
    UNUSED_ARG(aLine);
sl@0
   204
    UNUSED_ARG(aHandle);
sl@0
   205
#endif
sl@0
   206
    User::Leave(aError);
sl@0
   207
    }
sl@0
   208
sl@0
   209
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   210
sl@0
   211
/**
sl@0
   212
The function prints out a "SQL leave" message to the console and leaves with aError error code, if it is 
sl@0
   213
negative.
sl@0
   214
It gives a usefull information about the found error together with the source file name and line number where
sl@0
   215
it occured.
sl@0
   216
sl@0
   217
Note: this function  will output information regarding the panic only if _SQL_LEAVE_TRACE_ENABLED macro is defined  
sl@0
   218
sl@0
   219
@param aFile Source file name
sl@0
   220
@param aLine Source line number
sl@0
   221
@param aError Error code
sl@0
   222
sl@0
   223
@internalComponent
sl@0
   224
*/  
sl@0
   225
TInt TSqlUtil::LeaveIfError(const TText* aFile, TInt aLine, TInt aError, TUint aHandle)
sl@0
   226
    {
sl@0
   227
    if(aError < 0)
sl@0
   228
        {
sl@0
   229
        TSqlUtil::Leave(aFile, aLine, aError, aHandle);
sl@0
   230
        }
sl@0
   231
    return aError;
sl@0
   232
    }
sl@0
   233
sl@0
   234
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   235
sl@0
   236
/**
sl@0
   237
The function prints out a "SQL leave" message to the console and leaves with KErrNoMemory if 
sl@0
   238
aPtr parameter is NULL.
sl@0
   239
sl@0
   240
Note: this function  will output information regarding the panic only if _SQL_LEAVE_TRACE_ENABLED macro is defined  
sl@0
   241
sl@0
   242
@param aFile Source file name
sl@0
   243
@param aLine Source line number
sl@0
   244
@param aPtr The pointer to be tested against NULL value.
sl@0
   245
sl@0
   246
@internalComponent
sl@0
   247
*/  
sl@0
   248
void* TSqlUtil::LeaveIfNull(const TText* aFile, TInt aLine, void* aPtr, TUint aHandle)
sl@0
   249
    {
sl@0
   250
    if(!aPtr)
sl@0
   251
        {
sl@0
   252
        TSqlUtil::Leave(aFile, aLine, KErrNoMemory, aHandle);
sl@0
   253
        }
sl@0
   254
    return aPtr;
sl@0
   255
    }
sl@0
   256
sl@0
   257
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   258
sl@0
   259
/**
sl@0
   260
The function is used by the SQL server.
sl@0
   261
It prints out a "SQL panic" message to the console and panic the client.
sl@0
   262
It gives a usefull information about the found error together with the source file name and line number where
sl@0
   263
it occured.
sl@0
   264
sl@0
   265
Note: this function  will output information regarding the panic only if _SQL_PANIC_TRACE_ENABLED macro is defined  
sl@0
   266
sl@0
   267
@param aFile Source file name
sl@0
   268
@param aLine Source line number
sl@0
   269
@param aMessage The client message, which processing caused the panic.
sl@0
   270
@param aPanicCode Error code
sl@0
   271
sl@0
   272
@leave KSqlLeavePanic
sl@0
   273
sl@0
   274
@return KErrNone;
sl@0
   275
sl@0
   276
@internalComponent
sl@0
   277
*/  
sl@0
   278
TInt TSqlUtil::PanicClientL(const TText* aFile, TInt aLine, const RMessage2& aMessage, TInt aPanicCode, TUint aHandle)
sl@0
   279
    {
sl@0
   280
#if defined OST_TRACE_COMPILER_IN_USE && defined  _SQL_PANIC_TRACE_ENABLED
sl@0
   281
    TPtrC fname(FileName(aFile));
sl@0
   282
    OstTraceExt5(TRACE_FATAL, TSQLUTIL_PANICCLIENTL, "Panic;%X;%S;%d;%S;%d", aHandle, __SQLPRNSTR(fname), aLine, __SQLPRNSTR(KPanicCategory), aPanicCode);
sl@0
   283
#else
sl@0
   284
    UNUSED_ARG(aFile);
sl@0
   285
    UNUSED_ARG(aLine);
sl@0
   286
    UNUSED_ARG(aHandle);
sl@0
   287
#endif      
sl@0
   288
    return ::SqlPanicClientL(aMessage, static_cast <TSqlPanic> (aPanicCode));
sl@0
   289
    }
sl@0
   290
sl@0
   291
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   292
sl@0
   293
/**
sl@0
   294
Processes SQL database error code and OS error code and returns unified error code.
sl@0
   295
If aSqlError == SQLITE_ROW then the function returns KSqlAtRow.
sl@0
   296
If aSqlError == SQLITE_DONE then the function returns KSqlAtEnd.
sl@0
   297
If aSqlError == SQLITE_NOMEM then the function returns KErrNoMemory.
sl@0
   298
If aOsError != KErrNone then the function returns aOsError.
sl@0
   299
Otherwise the function converts aSqlError to one of error codes in [KSqlErrGeneral..KSqlErrStmtExpired] range.
sl@0
   300
sl@0
   301
@param aSqlError SQL database error code.
sl@0
   302
@param aOsError OS error code.
sl@0
   303
sl@0
   304
@return Database specific error code.
sl@0
   305
sl@0
   306
@panic SqlDb 4 in debug mode - if aSqlError < 0
sl@0
   307
@panic SqlDb 4 in debug mode - if aOsError > 0
sl@0
   308
sl@0
   309
@internalComponent
sl@0
   310
*/
sl@0
   311
TInt Sql2OsErrCode(TInt aSqlError, TInt aOsError)
sl@0
   312
	{
sl@0
   313
sl@0
   314
	__ASSERT_DEBUG(aSqlError >= SQLITE_OK && aOsError <= KErrNone, __SQLPANIC2(ESqlPanicBadArgument));
sl@0
   315
	TInt err = KErrNone;
sl@0
   316
	if(aOsError == KErrDiskFull)
sl@0
   317
		{//Whatever is the aSqlError value, even SQLITE_OK, never ignore KErrDiskFull errors
sl@0
   318
		 //(For example: ROLLBACK statement execution, when the disk is full).
sl@0
   319
		err = aOsError;
sl@0
   320
		}
sl@0
   321
	else if(aSqlError == SQLITE_ROW)
sl@0
   322
		{
sl@0
   323
		err = KSqlAtRow;
sl@0
   324
		}
sl@0
   325
	else if(aSqlError == SQLITE_DONE)
sl@0
   326
		{
sl@0
   327
		err = KSqlAtEnd;
sl@0
   328
		}
sl@0
   329
	else if(aSqlError == SQLITE_NOMEM)
sl@0
   330
		{
sl@0
   331
		err = KErrNoMemory;
sl@0
   332
		}
sl@0
   333
	else if(aSqlError == SQLITE_AUTH)
sl@0
   334
		{
sl@0
   335
		err = KErrPermissionDenied;
sl@0
   336
		}
sl@0
   337
	else if(aSqlError == SQLITE_NOTADB)
sl@0
   338
		{
sl@0
   339
		err = KSqlErrNotDb;	
sl@0
   340
		}
sl@0
   341
	else if(aSqlError > SQLITE_OK)
sl@0
   342
		{
sl@0
   343
		err = aOsError != KErrNone ? aOsError : KSqlErrGeneral - aSqlError + 1;
sl@0
   344
		}
sl@0
   345
	return err;
sl@0
   346
	}
sl@0
   347
sl@0
   348
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   349
sl@0
   350
#if defined OST_TRACE_COMPILER_IN_USE && (defined _SQL_PANIC_TRACE_ENABLED || defined _SQL_LEAVE_TRACE_ENABLED) 
sl@0
   351
sl@0
   352
/**
sl@0
   353
The function creates and returns TPtrC object which points to aFile parameter.
sl@0
   354
sl@0
   355
@param aFile File name
sl@0
   356
@return TPtrC object pointing to aFile parameter.
sl@0
   357
sl@0
   358
@internalComponent
sl@0
   359
*/	
sl@0
   360
TPtrC TSqlUtil::FileName(const TText* aFile)
sl@0
   361
	{
sl@0
   362
	TPtrC p(aFile);
sl@0
   363
	TInt ix = p.LocateReverse('\\');
sl@0
   364
	if(ix<0)
sl@0
   365
		ix=p.LocateReverse('/');
sl@0
   366
	if(ix>=0)
sl@0
   367
		p.Set(p.Mid(1+ix));
sl@0
   368
	return p;
sl@0
   369
	}
sl@0
   370
sl@0
   371
#endif //defined OST_TRACE_COMPILER_IN_USE && (defined _SQL_PANIC_TRACE_ENABLED || defined _SQL_LEAVE_TRACE_ENABLED)