Update contrib.
1 // Copyright (c) 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 #include "SqliteUtil.h"
17 #include "OstTraceDefinitions.h"
18 #ifdef OST_TRACE_COMPILER_IN_USE
19 #include "SqliteUtilTraces.h"
21 #include "SqliteTraceDef.h"
23 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
25 #define UNUSED_ARG(arg) arg = arg
26 #define UNUSED_DES(arg) arg
28 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
30 #if defined OST_TRACE_COMPILER_IN_USE && defined _SQLITE_RDEBUG_PRINT
33 This class has been added here to avoid the crashes when _SQLITE_RDEBUG_PRINT macro is defined but the
34 data to be printed out is too big and cannot fit into the buffer with size KSqliteMaxPrnStrLen.
37 class TSqliteDes16Overflow : public TDes16Overflow
40 virtual void Overflow(TDes16& /*aDes*/)
46 // 1) "%lld" with "%ld"
48 //These are the differences in format specification between RDebig::Print and OST functions.
49 //The new format spec length should be less or equal than the old format spec length.
50 static void ReplaceFmtSpec(TDes& aFormat, const TDesC& aFmtSpec, const TDesC& aNewFmtSpec)
52 TInt fmtLength = aFormat.Length();
53 const TInt KDiff = aFmtSpec.Length() - aNewFmtSpec.Length();
54 TPtr ptr((TText*)aFormat.Ptr(), fmtLength, fmtLength);
56 while((pos = ptr.Find(aFmtSpec)) >= 0)
58 ptr.Replace(pos, aFmtSpec.Length(), aNewFmtSpec);
60 ptr.Set(ptr.MidTPtr(pos));
62 aFormat.SetLength(fmtLength);
65 void SqlitePrintf(TInt /*aGroupName*/, TInt /*aTraceName*/, const char* aFormat, ...)
68 VA_START(list, aFormat);
70 _LIT(KTraceIdent, "Sqlite;");
71 format.Copy(TPtrC8((const TUint8*)aFormat));
72 format.Insert(0, KTraceIdent);
73 format.Append(_L("\r\n"));
74 _LIT(KOstI64Fmt, "%lld");
75 _LIT(KDbgPrnI64Fmt, "%ld");
76 ReplaceFmtSpec(format, KOstI64Fmt, KDbgPrnI64Fmt);
77 _LIT(KOstDes8Fmt, "%s");
78 _LIT(KDbgPrnDesFmt, "%S");
79 ReplaceFmtSpec(format, KOstDes8Fmt, KDbgPrnDesFmt);
80 TBuf<KSqliteMaxPrnStrLen> buf;
81 TSqliteDes16Overflow overflowHandler;
82 buf.AppendFormatList(format, list, &overflowHandler);
83 #ifdef _SQLITE_RDEBUG_PRINT
84 RDebug::RawPrint(buf);
88 const TDesC* SqliteDes8to16Ptr(const TDesC8& aDes)
90 const TInt KBufSize = 100;
91 static TBuf<KBufSize> buf;
92 TPtrC8 ptr(aDes.Ptr(), Min(aDes.Length(), buf.MaxLength()));
97 #endif//defined OST_TRACE_COMPILER_IN_USE && defined _SQLITE_RDEBUG_PRINT
99 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
102 SQLite panic category.
106 _LIT(KSqlitePanicCategory, "Sqlite");
108 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
111 Panics the caller with aPanicCode panic code.
112 The call will terminate the thread where it is called from.
114 @param aPanicCode Panic code.
118 static void SqlitePanic(TSqlitePanic aPanicCode)
120 User::Panic(KSqlitePanicCategory, aPanicCode);
123 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
126 The function prints out a "SQLite" panic message to the console and panics the thread where it is called from.
127 It gives a useful information about the found error together with the source file name and line number where
130 Note: this function will output information regarding the panic only if _SQLITE_PANIC_TRACE_ENABLED macro is defined
132 @param aFile Source file name
133 @param aLine Source line number
134 @param aPanicCode Panic code
135 @param aHandle Numeric value, uniquely identfying the leaving location (the "this" pointer for example)
141 TInt TSqliteUtil::Panic(const TText* aFile, TInt aLine, TInt aPanicCode, TUint aHandle)
143 #if defined OST_TRACE_COMPILER_IN_USE && defined _SQLITE_PANIC_TRACE_ENABLED
144 TPtrC fname(FileName(aFile));
145 OstTraceExt5(TRACE_FATAL, TSQLUTIL_PANIC, "SQLite-Panic;0x%X;%S;%d;%S;%d", aHandle, __SQLITEPRNSTR(fname), aLine, __SQLITEPRNSTR(KSqlitePanicCategory), aPanicCode);
151 ::SqlitePanic(static_cast <TSqlitePanic> (aPanicCode));
155 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
157 #if defined OST_TRACE_COMPILER_IN_USE && defined _SQLITE_PANIC_TRACE_ENABLED
160 The function creates and returns TPtrC object which points to aFile parameter.
162 @param aFile File name
163 @return TPtrC object pointing to aFile parameter.
167 TPtrC TSqliteUtil::FileName(const TText* aFile)
170 TInt ix = p.LocateReverse('\\');
172 ix=p.LocateReverse('/');
178 #endif //defined OST_TRACE_COMPILER_IN_USE && defined _SQLITE_PANIC_TRACE_ENABLED
180 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////