sl@0: // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: #include sl@0: #include "SqliteUtil.h" sl@0: #include "OstTraceDefinitions.h" sl@0: #ifdef OST_TRACE_COMPILER_IN_USE sl@0: #include "SqliteUtilTraces.h" sl@0: #endif sl@0: #include "SqliteTraceDef.h" sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: #define UNUSED_ARG(arg) arg = arg sl@0: #define UNUSED_DES(arg) arg sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: #if defined OST_TRACE_COMPILER_IN_USE && defined _SQLITE_RDEBUG_PRINT sl@0: sl@0: /** sl@0: This class has been added here to avoid the crashes when _SQLITE_RDEBUG_PRINT macro is defined but the sl@0: data to be printed out is too big and cannot fit into the buffer with size KSqliteMaxPrnStrLen. sl@0: @internalComponent sl@0: */ sl@0: class TSqliteDes16Overflow : public TDes16Overflow sl@0: { sl@0: public: sl@0: virtual void Overflow(TDes16& /*aDes*/) sl@0: { sl@0: } sl@0: }; sl@0: sl@0: //Replaces: sl@0: // 1) "%lld" with "%ld" sl@0: // 2) "%s" with "%S" sl@0: //These are the differences in format specification between RDebig::Print and OST functions. sl@0: //The new format spec length should be less or equal than the old format spec length. sl@0: static void ReplaceFmtSpec(TDes& aFormat, const TDesC& aFmtSpec, const TDesC& aNewFmtSpec) sl@0: { sl@0: TInt fmtLength = aFormat.Length(); sl@0: const TInt KDiff = aFmtSpec.Length() - aNewFmtSpec.Length(); sl@0: TPtr ptr((TText*)aFormat.Ptr(), fmtLength, fmtLength); sl@0: TInt pos; sl@0: while((pos = ptr.Find(aFmtSpec)) >= 0) sl@0: { sl@0: ptr.Replace(pos, aFmtSpec.Length(), aNewFmtSpec); sl@0: fmtLength -= KDiff; sl@0: ptr.Set(ptr.MidTPtr(pos)); sl@0: } sl@0: aFormat.SetLength(fmtLength); sl@0: } sl@0: sl@0: void SqlitePrintf(TInt /*aGroupName*/, TInt /*aTraceName*/, const char* aFormat, ...) sl@0: { sl@0: VA_LIST list; sl@0: VA_START(list, aFormat); sl@0: TBuf<128> format; sl@0: _LIT(KTraceIdent, "Sqlite;"); sl@0: format.Copy(TPtrC8((const TUint8*)aFormat)); sl@0: format.Insert(0, KTraceIdent); sl@0: format.Append(_L("\r\n")); sl@0: _LIT(KOstI64Fmt, "%lld"); sl@0: _LIT(KDbgPrnI64Fmt, "%ld"); sl@0: ReplaceFmtSpec(format, KOstI64Fmt, KDbgPrnI64Fmt); sl@0: _LIT(KOstDes8Fmt, "%s"); sl@0: _LIT(KDbgPrnDesFmt, "%S"); sl@0: ReplaceFmtSpec(format, KOstDes8Fmt, KDbgPrnDesFmt); sl@0: TBuf buf; sl@0: TSqliteDes16Overflow overflowHandler; sl@0: buf.AppendFormatList(format, list, &overflowHandler); sl@0: #ifdef _SQLITE_RDEBUG_PRINT sl@0: RDebug::RawPrint(buf); sl@0: #endif sl@0: } sl@0: sl@0: const TDesC* SqliteDes8to16Ptr(const TDesC8& aDes) sl@0: { sl@0: const TInt KBufSize = 100; sl@0: static TBuf buf; sl@0: TPtrC8 ptr(aDes.Ptr(), Min(aDes.Length(), buf.MaxLength())); sl@0: buf.Copy(ptr); sl@0: return &buf; sl@0: } sl@0: sl@0: #endif//defined OST_TRACE_COMPILER_IN_USE && defined _SQLITE_RDEBUG_PRINT sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: /** sl@0: SQLite panic category. sl@0: sl@0: @internalComponent sl@0: */ sl@0: _LIT(KSqlitePanicCategory, "Sqlite"); sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: /** sl@0: Panics the caller with aPanicCode panic code. sl@0: The call will terminate the thread where it is called from. sl@0: sl@0: @param aPanicCode Panic code. sl@0: sl@0: @internalComponent sl@0: */ sl@0: static void SqlitePanic(TSqlitePanic aPanicCode) sl@0: { sl@0: User::Panic(KSqlitePanicCategory, aPanicCode); sl@0: } sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: /** sl@0: The function prints out a "SQLite" panic message to the console and panics the thread where it is called from. sl@0: It gives a useful information about the found error together with the source file name and line number where sl@0: it occurred. sl@0: sl@0: Note: this function will output information regarding the panic only if _SQLITE_PANIC_TRACE_ENABLED macro is defined sl@0: sl@0: @param aFile Source file name sl@0: @param aLine Source line number sl@0: @param aPanicCode Panic code sl@0: @param aHandle Numeric value, uniquely identfying the leaving location (the "this" pointer for example) sl@0: sl@0: @return KErrNone sl@0: sl@0: @internalComponent sl@0: */ sl@0: TInt TSqliteUtil::Panic(const TText* aFile, TInt aLine, TInt aPanicCode, TUint aHandle) sl@0: { sl@0: #if defined OST_TRACE_COMPILER_IN_USE && defined _SQLITE_PANIC_TRACE_ENABLED sl@0: TPtrC fname(FileName(aFile)); sl@0: OstTraceExt5(TRACE_FATAL, TSQLUTIL_PANIC, "SQLite-Panic;0x%X;%S;%d;%S;%d", aHandle, __SQLITEPRNSTR(fname), aLine, __SQLITEPRNSTR(KSqlitePanicCategory), aPanicCode); sl@0: #else sl@0: UNUSED_ARG(aFile); sl@0: UNUSED_ARG(aLine); sl@0: UNUSED_ARG(aHandle); sl@0: #endif sl@0: ::SqlitePanic(static_cast (aPanicCode)); sl@0: return KErrNone; sl@0: } sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: #if defined OST_TRACE_COMPILER_IN_USE && defined _SQLITE_PANIC_TRACE_ENABLED sl@0: sl@0: /** sl@0: The function creates and returns TPtrC object which points to aFile parameter. sl@0: sl@0: @param aFile File name sl@0: @return TPtrC object pointing to aFile parameter. sl@0: sl@0: @internalComponent sl@0: */ sl@0: TPtrC TSqliteUtil::FileName(const TText* aFile) sl@0: { sl@0: TPtrC p(aFile); sl@0: TInt ix = p.LocateReverse('\\'); sl@0: if(ix<0) sl@0: ix=p.LocateReverse('/'); sl@0: if(ix>=0) sl@0: p.Set(p.Mid(1+ix)); sl@0: return p; sl@0: } sl@0: sl@0: #endif //defined OST_TRACE_COMPILER_IN_USE && defined _SQLITE_PANIC_TRACE_ENABLED sl@0: sl@0: ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////