os/persistentdata/persistentstorage/sql/OsLayer/SqliteUtil.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 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
#include <e32debug.h>
sl@0
    16
#include "SqliteUtil.h"
sl@0
    17
#include "OstTraceDefinitions.h"
sl@0
    18
#ifdef OST_TRACE_COMPILER_IN_USE
sl@0
    19
#include "SqliteUtilTraces.h"
sl@0
    20
#endif
sl@0
    21
#include "SqliteTraceDef.h"
sl@0
    22
sl@0
    23
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    24
sl@0
    25
#define UNUSED_ARG(arg) arg = arg
sl@0
    26
#define UNUSED_DES(arg) arg
sl@0
    27
sl@0
    28
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    29
sl@0
    30
#if defined OST_TRACE_COMPILER_IN_USE &&  defined _SQLITE_RDEBUG_PRINT
sl@0
    31
sl@0
    32
/**
sl@0
    33
This class has been added here to avoid the crashes when _SQLITE_RDEBUG_PRINT macro is defined but the
sl@0
    34
data to be printed out is too big and cannot fit into the buffer with size KSqliteMaxPrnStrLen.
sl@0
    35
@internalComponent   
sl@0
    36
*/
sl@0
    37
class TSqliteDes16Overflow : public TDes16Overflow
sl@0
    38
    {
sl@0
    39
public:    
sl@0
    40
    virtual void Overflow(TDes16& /*aDes*/)
sl@0
    41
        {
sl@0
    42
        }
sl@0
    43
    };
sl@0
    44
sl@0
    45
//Replaces:
sl@0
    46
// 1) "%lld" with "%ld"
sl@0
    47
// 2) "%s" with "%S"
sl@0
    48
//These are the differences in format specification between RDebig::Print and OST functions.
sl@0
    49
//The new format spec length should be less or equal than the old format spec length.
sl@0
    50
static void ReplaceFmtSpec(TDes& aFormat, const TDesC& aFmtSpec, const TDesC& aNewFmtSpec)
sl@0
    51
	{
sl@0
    52
	TInt fmtLength = aFormat.Length();
sl@0
    53
	const TInt KDiff = aFmtSpec.Length() - aNewFmtSpec.Length();
sl@0
    54
    TPtr ptr((TText*)aFormat.Ptr(), fmtLength, fmtLength);
sl@0
    55
    TInt pos;
sl@0
    56
    while((pos = ptr.Find(aFmtSpec)) >= 0)
sl@0
    57
    	{
sl@0
    58
		ptr.Replace(pos, aFmtSpec.Length(), aNewFmtSpec);
sl@0
    59
		fmtLength -= KDiff;
sl@0
    60
		ptr.Set(ptr.MidTPtr(pos));
sl@0
    61
    	}
sl@0
    62
    aFormat.SetLength(fmtLength);
sl@0
    63
	}
sl@0
    64
sl@0
    65
void SqlitePrintf(TInt /*aGroupName*/, TInt /*aTraceName*/, const char* aFormat, ...)
sl@0
    66
    {
sl@0
    67
    VA_LIST list;
sl@0
    68
    VA_START(list, aFormat);
sl@0
    69
    TBuf<128> format;
sl@0
    70
    _LIT(KTraceIdent, "Sqlite;");
sl@0
    71
    format.Copy(TPtrC8((const TUint8*)aFormat));
sl@0
    72
    format.Insert(0, KTraceIdent);
sl@0
    73
    format.Append(_L("\r\n"));
sl@0
    74
    _LIT(KOstI64Fmt, "%lld");
sl@0
    75
    _LIT(KDbgPrnI64Fmt, "%ld");
sl@0
    76
    ReplaceFmtSpec(format, KOstI64Fmt, KDbgPrnI64Fmt);
sl@0
    77
    _LIT(KOstDes8Fmt, "%s");
sl@0
    78
    _LIT(KDbgPrnDesFmt, "%S");
sl@0
    79
    ReplaceFmtSpec(format, KOstDes8Fmt, KDbgPrnDesFmt);
sl@0
    80
    TBuf<KSqliteMaxPrnStrLen> buf;
sl@0
    81
    TSqliteDes16Overflow overflowHandler;
sl@0
    82
    buf.AppendFormatList(format, list, &overflowHandler);
sl@0
    83
#ifdef _SQLITE_RDEBUG_PRINT    
sl@0
    84
    RDebug::RawPrint(buf);
sl@0
    85
#endif
sl@0
    86
    }
sl@0
    87
sl@0
    88
const TDesC* SqliteDes8to16Ptr(const TDesC8& aDes)
sl@0
    89
	{
sl@0
    90
	const TInt KBufSize = 100;
sl@0
    91
	static TBuf<KBufSize> buf;
sl@0
    92
	TPtrC8 ptr(aDes.Ptr(), Min(aDes.Length(), buf.MaxLength()));
sl@0
    93
	buf.Copy(ptr);
sl@0
    94
	return &buf;
sl@0
    95
	}
sl@0
    96
sl@0
    97
#endif//defined OST_TRACE_COMPILER_IN_USE &&  defined _SQLITE_RDEBUG_PRINT 
sl@0
    98
sl@0
    99
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   100
sl@0
   101
/**
sl@0
   102
SQLite panic category.
sl@0
   103
sl@0
   104
@internalComponent
sl@0
   105
*/
sl@0
   106
_LIT(KSqlitePanicCategory, "Sqlite");
sl@0
   107
sl@0
   108
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   109
sl@0
   110
/**
sl@0
   111
Panics the caller with aPanicCode panic code.
sl@0
   112
The call will terminate the thread where it is called from.
sl@0
   113
sl@0
   114
@param aPanicCode Panic code.
sl@0
   115
sl@0
   116
@internalComponent
sl@0
   117
*/
sl@0
   118
static void SqlitePanic(TSqlitePanic aPanicCode)
sl@0
   119
	{
sl@0
   120
	User::Panic(KSqlitePanicCategory, aPanicCode);
sl@0
   121
	}
sl@0
   122
	
sl@0
   123
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   124
sl@0
   125
/**
sl@0
   126
The function prints out a "SQLite" panic message to the console and panics the thread where it is called from.
sl@0
   127
It gives a useful information about the found error together with the source file name and line number where
sl@0
   128
it occurred.
sl@0
   129
sl@0
   130
Note: this function  will output information regarding the panic only if _SQLITE_PANIC_TRACE_ENABLED macro is defined  
sl@0
   131
sl@0
   132
@param aFile Source file name
sl@0
   133
@param aLine Source line number
sl@0
   134
@param aPanicCode Panic code
sl@0
   135
@param aHandle Numeric value, uniquely identfying the leaving location (the "this" pointer for example)
sl@0
   136
sl@0
   137
@return KErrNone
sl@0
   138
sl@0
   139
@internalComponent
sl@0
   140
*/  
sl@0
   141
TInt TSqliteUtil::Panic(const TText* aFile, TInt aLine, TInt aPanicCode, TUint aHandle)
sl@0
   142
    {
sl@0
   143
#if defined OST_TRACE_COMPILER_IN_USE && defined _SQLITE_PANIC_TRACE_ENABLED
sl@0
   144
    TPtrC fname(FileName(aFile));
sl@0
   145
    OstTraceExt5(TRACE_FATAL, TSQLUTIL_PANIC, "SQLite-Panic;0x%X;%S;%d;%S;%d", aHandle, __SQLITEPRNSTR(fname), aLine, __SQLITEPRNSTR(KSqlitePanicCategory), aPanicCode);
sl@0
   146
#else
sl@0
   147
    UNUSED_ARG(aFile);
sl@0
   148
    UNUSED_ARG(aLine);
sl@0
   149
    UNUSED_ARG(aHandle);
sl@0
   150
#endif      
sl@0
   151
    ::SqlitePanic(static_cast <TSqlitePanic> (aPanicCode));
sl@0
   152
    return KErrNone;
sl@0
   153
    }
sl@0
   154
sl@0
   155
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   156
sl@0
   157
#if defined OST_TRACE_COMPILER_IN_USE && defined _SQLITE_PANIC_TRACE_ENABLED
sl@0
   158
sl@0
   159
/**
sl@0
   160
The function creates and returns TPtrC object which points to aFile parameter.
sl@0
   161
sl@0
   162
@param aFile File name
sl@0
   163
@return TPtrC object pointing to aFile parameter.
sl@0
   164
sl@0
   165
@internalComponent
sl@0
   166
*/	
sl@0
   167
TPtrC TSqliteUtil::FileName(const TText* aFile)
sl@0
   168
	{
sl@0
   169
	TPtrC p(aFile);
sl@0
   170
	TInt ix = p.LocateReverse('\\');
sl@0
   171
	if(ix<0)
sl@0
   172
		ix=p.LocateReverse('/');
sl@0
   173
	if(ix>=0)
sl@0
   174
		p.Set(p.Mid(1+ix));
sl@0
   175
	return p;
sl@0
   176
	}
sl@0
   177
sl@0
   178
#endif //defined OST_TRACE_COMPILER_IN_USE && defined _SQLITE_PANIC_TRACE_ENABLED
sl@0
   179
sl@0
   180
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////