os/persistentdata/persistentstorage/sql/SRC/Server/SqlSrvResourceProfiler.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) 2008-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 <f32file.h>
sl@0
    17
#include "SqlAssert.h"
sl@0
    18
#include "SqlSrvResourceProfiler.h"
sl@0
    19
#include "SqlResourceProfiler.h"
sl@0
    20
#include "SqliteSymbian.h"
sl@0
    21
#include <hal.h>
sl@0
    22
sl@0
    23
#ifdef _SQLPROFILER
sl@0
    24
sl@0
    25
///////////////////////////////// Heap max alloc /////////////////////////////////////
sl@0
    26
sl@0
    27
/**
sl@0
    28
If true the max alloc profiling is enabled.
sl@0
    29
@internalComponent
sl@0
    30
*/
sl@0
    31
TBool TheSqlSrvProfilerMaxAllocEnabled = EFalse;
sl@0
    32
/**
sl@0
    33
The size of the biggest memory block ever allocated by the SQL server.
sl@0
    34
Set only if compiled with _SQLPROFILER macro.
sl@0
    35
@internalComponent
sl@0
    36
*/
sl@0
    37
TInt  TheSqlSrvProfilerMaxAllocSize = 0;
sl@0
    38
sl@0
    39
////////////////////////// IPC & SQL tracing related //////////////////////////////////
sl@0
    40
sl@0
    41
/**
sl@0
    42
If true the tracing is enabled (IPC calls & SQL statements).
sl@0
    43
@internalComponent
sl@0
    44
*/
sl@0
    45
static TBool TheSqlSrvProfilerTraceEnabled = EFalse;
sl@0
    46
/**
sl@0
    47
Trace level:
sl@0
    48
 - 0: no IPC calls traced (default);
sl@0
    49
 - 1: only the 10 most important IPC calls traced - SQL statement execution, ....
sl@0
    50
 - 2: all IPC calls traced; 
sl@0
    51
@internalComponent
sl@0
    52
*/
sl@0
    53
static TInt TheSqlSrvProfilerTraceLevel = 0;
sl@0
    54
/**
sl@0
    55
If true the SQL statement tracing is enabled.
sl@0
    56
@internalComponent
sl@0
    57
*/
sl@0
    58
static TBool TheSqlSrvProfilerSqlTraceEnabled = EFalse;
sl@0
    59
sl@0
    60
/**
sl@0
    61
When KSqlSrvProfilerDbName is with non-zero length, then only traces coming from database identified by
sl@0
    62
KSqlSrvProfilerDbName name are printed out. 
sl@0
    63
@internalComponent
sl@0
    64
*/
sl@0
    65
//_LIT(KSqlSrvProfilerDbName, "default_avacon.dbSQL");
sl@0
    66
_LIT(KSqlSrvProfilerDbName, "");
sl@0
    67
static TUint TheSqlSrvProfilerHandle = 0;
sl@0
    68
sl@0
    69
//File "read", "write", "sync" and "set size" counters, incremented inside the OS porting layer.
sl@0
    70
TInt TheSqlSrvProfilerFileRead = 0;
sl@0
    71
TInt TheSqlSrvProfilerFileWrite = 0;
sl@0
    72
TInt TheSqlSrvProfilerFileSync = 0;
sl@0
    73
TInt TheSqlSrvProfilerFileSetSize = 0;
sl@0
    74
sl@0
    75
//Set it to true if you want traces to be stored into a file.
sl@0
    76
static TBool TheSqlSrvProfilerTraceToFile = EFalse;
sl@0
    77
sl@0
    78
//"Prepared" and "Executed" SQL statement counters
sl@0
    79
static TInt TheSqlSrvProfilerPreparedCnt8 = 0;
sl@0
    80
static TInt TheSqlSrvProfilerPreparedCnt16 = 0;
sl@0
    81
static TInt TheSqlSrvProfilerExecutedCnt8 = 0;
sl@0
    82
static TInt TheSqlSrvProfilerExecutedCnt16 = 0;
sl@0
    83
sl@0
    84
///////////////////////////////// IPC counters ///////////////////////////////////////
sl@0
    85
sl@0
    86
/**
sl@0
    87
If true the IPC profiling is enabled.
sl@0
    88
@internalComponent
sl@0
    89
*/
sl@0
    90
TBool TheSqlSrvProfilerIpcEnabled = EFalse;
sl@0
    91
/**
sl@0
    92
IPC requests, read and write counters.
sl@0
    93
@internalComponent
sl@0
    94
*/
sl@0
    95
TInt  TheSqlSrvProfilerIpc[ESqlIpcLast] = {0};
sl@0
    96
/**
sl@0
    97
IPC read and write - bytes.
sl@0
    98
@internalComponent
sl@0
    99
*/
sl@0
   100
TInt64 TheSqlSrvProfilerIpcBytes[ESqlIpcLast] = {0};
sl@0
   101
sl@0
   102
//////////////////////////////////////////////////////////////////////////////////////
sl@0
   103
sl@0
   104
/**
sl@0
   105
Starts the specified profiling counter.
sl@0
   106
sl@0
   107
@leave KErrNotSupported, The requested profiling type is not supported;
sl@0
   108
                 		 The function may also leave with some other system-wide error codes.
sl@0
   109
sl@0
   110
Usage of the IPC call arguments:
sl@0
   111
 - Arg 0: [in]  profiling counter type, one of the TSqlResourceProfiler::TSqlCounter enum item values.
sl@0
   112
 - Arg 1: [in]  the length of the additional profiling parameters.
sl@0
   113
 - Arg 2: [in]  additional profiling parameters.
sl@0
   114
*/
sl@0
   115
void TSqlSrvResourceProfiler::StartL(const RMessage2& aMessage)
sl@0
   116
	{
sl@0
   117
	const TSqlResourceProfiler::TSqlCounter KCounterType = static_cast <TSqlResourceProfiler::TSqlCounter> (aMessage.Int0());
sl@0
   118
	TInt err = KErrNone;
sl@0
   119
	switch(KCounterType)
sl@0
   120
		{
sl@0
   121
		case TSqlResourceProfiler::ESqlCounterFileIO:
sl@0
   122
		case TSqlResourceProfiler::ESqlCounterOsCall:
sl@0
   123
		case TSqlResourceProfiler::ESqlCounterOsCallTime:
sl@0
   124
		case TSqlResourceProfiler::ESqlCounterOsCallDetails:
sl@0
   125
			err = sqlite3SymbianProfilerStart(KCounterType);
sl@0
   126
			break;
sl@0
   127
		case TSqlResourceProfiler::ESqlCounterIpc:
sl@0
   128
			TheSqlSrvProfilerIpcEnabled = ETrue;
sl@0
   129
			break;
sl@0
   130
		case TSqlResourceProfiler::ESqlCounterMemory:
sl@0
   131
			err = sqlite3SymbianProfilerStart(KCounterType);
sl@0
   132
			break;
sl@0
   133
		case TSqlResourceProfiler::ESqlCounterMaxAlloc:
sl@0
   134
			TheSqlSrvProfilerMaxAllocEnabled = ETrue;
sl@0
   135
			err = sqlite3SymbianProfilerStart(KCounterType);
sl@0
   136
			break;
sl@0
   137
		case TSqlResourceProfiler::ESqlCounterTrace:
sl@0
   138
		    {
sl@0
   139
			TheSqlSrvProfilerTraceEnabled = ETrue;
sl@0
   140
		    TInt len = aMessage.Int1();
sl@0
   141
		    __SQLPANIC_CLIENT2((TUint)len < 64, aMessage, ESqlPanicBadArgument);
sl@0
   142
		    if(len > 0)
sl@0
   143
		        {
sl@0
   144
                TBuf8<64> prmBuf;
sl@0
   145
                aMessage.ReadL(2, prmBuf);
sl@0
   146
                prmBuf.UpperCase();
sl@0
   147
                TPtrC8 ptr(prmBuf);
sl@0
   148
                _LIT8(KLevel0, "L0");
sl@0
   149
                _LIT8(KLevel1, "L1");
sl@0
   150
                _LIT8(KLevel2, "L2");
sl@0
   151
                _LIT8(KSqlStmtTraceOff, "S0");
sl@0
   152
                _LIT8(KSqlStmtTraceOn, "S1");
sl@0
   153
                while(ptr.Length() > 0)
sl@0
   154
                    {
sl@0
   155
                    TInt pos = ptr.Locate(TChar(';'));
sl@0
   156
                    TPtrC8 str = ptr;
sl@0
   157
                    if(pos >= 0)
sl@0
   158
                        {
sl@0
   159
                        str.Set(ptr.Left(pos));
sl@0
   160
                        }
sl@0
   161
                    if(str == KLevel0)
sl@0
   162
                        {
sl@0
   163
                        TheSqlSrvProfilerTraceLevel = 0;
sl@0
   164
                        }
sl@0
   165
                    else if(str == KLevel1)
sl@0
   166
                        {
sl@0
   167
                        TheSqlSrvProfilerTraceLevel = 1;
sl@0
   168
                        }
sl@0
   169
                    else if(str == KLevel2)
sl@0
   170
                        {
sl@0
   171
                        TheSqlSrvProfilerTraceLevel = 2;
sl@0
   172
                        }
sl@0
   173
                    else if(str == KSqlStmtTraceOff)
sl@0
   174
                        {
sl@0
   175
                        TheSqlSrvProfilerSqlTraceEnabled = EFalse;
sl@0
   176
                        }
sl@0
   177
                    else if(str == KSqlStmtTraceOn)
sl@0
   178
                        {
sl@0
   179
                        TheSqlSrvProfilerSqlTraceEnabled = ETrue;
sl@0
   180
                        }
sl@0
   181
                    if((TUint)pos > (ptr.Length() - 1))
sl@0
   182
                        {
sl@0
   183
                        break;
sl@0
   184
                        }
sl@0
   185
                    ptr.Set(ptr.Mid(pos + 1));
sl@0
   186
                    }
sl@0
   187
		        }
sl@0
   188
		    }
sl@0
   189
			break;
sl@0
   190
		default:
sl@0
   191
			err = KErrNotSupported;
sl@0
   192
			break;
sl@0
   193
		}
sl@0
   194
	__SQLLEAVE_IF_ERROR2(err);
sl@0
   195
	}
sl@0
   196
	
sl@0
   197
/**
sl@0
   198
Stops the specified profiling counter.
sl@0
   199
sl@0
   200
@leave KErrNotSupported, The requested profiling type is not supported;
sl@0
   201
                 		 The function may also leave with some other system-wide error codes.
sl@0
   202
sl@0
   203
Usage of the IPC call arguments:
sl@0
   204
 - Arg 0: [in]  profiling counter type, one of the TSqlResourceProfiler::TSqlCounter enum item values.
sl@0
   205
*/
sl@0
   206
void TSqlSrvResourceProfiler::StopL(const RMessage2& aMessage)
sl@0
   207
	{
sl@0
   208
	const TSqlResourceProfiler::TSqlCounter KCounterType = static_cast <TSqlResourceProfiler::TSqlCounter> (aMessage.Int0());
sl@0
   209
	TInt err = KErrNone;
sl@0
   210
	switch(KCounterType)
sl@0
   211
		{
sl@0
   212
		case TSqlResourceProfiler::ESqlCounterFileIO:
sl@0
   213
		case TSqlResourceProfiler::ESqlCounterOsCall:
sl@0
   214
		case TSqlResourceProfiler::ESqlCounterOsCallTime:
sl@0
   215
		case TSqlResourceProfiler::ESqlCounterOsCallDetails:
sl@0
   216
			err = sqlite3SymbianProfilerStop(KCounterType);
sl@0
   217
			break;
sl@0
   218
		case TSqlResourceProfiler::ESqlCounterIpc:
sl@0
   219
			TheSqlSrvProfilerIpcEnabled = EFalse;
sl@0
   220
			break;
sl@0
   221
		case TSqlResourceProfiler::ESqlCounterMemory:
sl@0
   222
			err = sqlite3SymbianProfilerStop(KCounterType);
sl@0
   223
			break;
sl@0
   224
		case TSqlResourceProfiler::ESqlCounterMaxAlloc:
sl@0
   225
			TheSqlSrvProfilerMaxAllocEnabled = EFalse;
sl@0
   226
			err = sqlite3SymbianProfilerStop(KCounterType);
sl@0
   227
			break;
sl@0
   228
        case TSqlResourceProfiler::ESqlCounterTrace:
sl@0
   229
            TheSqlSrvProfilerTraceEnabled = EFalse;
sl@0
   230
            TheSqlSrvProfilerSqlTraceEnabled = EFalse;
sl@0
   231
            TheSqlSrvProfilerTraceLevel = 0;
sl@0
   232
            TheSqlSrvProfilerHandle = 0;
sl@0
   233
            break;
sl@0
   234
		default:
sl@0
   235
			err = KErrNotSupported;
sl@0
   236
			break;
sl@0
   237
		}
sl@0
   238
	__SQLLEAVE_IF_ERROR2(err);
sl@0
   239
	}
sl@0
   240
	
sl@0
   241
/**
sl@0
   242
Resets the specified profiling counter.
sl@0
   243
sl@0
   244
@leave KErrNotSupported, The requested profiling type is not supported;
sl@0
   245
                 		 The function may also leave with some other system-wide error codes.
sl@0
   246
sl@0
   247
Usage of the IPC call arguments:
sl@0
   248
 - Arg 0: [in]  profiling counter type, one of the TSqlResourceProfiler::TSqlCounter enum item values.
sl@0
   249
*/
sl@0
   250
void TSqlSrvResourceProfiler::ResetL(const RMessage2& aMessage)
sl@0
   251
	{
sl@0
   252
	const TSqlResourceProfiler::TSqlCounter KCounterType = static_cast <TSqlResourceProfiler::TSqlCounter> (aMessage.Int0());
sl@0
   253
	TInt err = KErrNone;
sl@0
   254
	switch(KCounterType)
sl@0
   255
		{
sl@0
   256
		case TSqlResourceProfiler::ESqlCounterFileIO:
sl@0
   257
		case TSqlResourceProfiler::ESqlCounterOsCall:
sl@0
   258
		case TSqlResourceProfiler::ESqlCounterOsCallTime:
sl@0
   259
		case TSqlResourceProfiler::ESqlCounterOsCallDetails:
sl@0
   260
			err = sqlite3SymbianProfilerReset(KCounterType);
sl@0
   261
			break;
sl@0
   262
		case TSqlResourceProfiler::ESqlCounterIpc:
sl@0
   263
			Mem::FillZ(TheSqlSrvProfilerIpc, sizeof(TheSqlSrvProfilerIpc));
sl@0
   264
			Mem::FillZ(TheSqlSrvProfilerIpcBytes, sizeof(TheSqlSrvProfilerIpcBytes));
sl@0
   265
			break;
sl@0
   266
		case TSqlResourceProfiler::ESqlCounterMemory:
sl@0
   267
			err = sqlite3SymbianProfilerReset(KCounterType);
sl@0
   268
			break;
sl@0
   269
		case TSqlResourceProfiler::ESqlCounterMaxAlloc:
sl@0
   270
			TheSqlSrvProfilerMaxAllocSize = 0;
sl@0
   271
			err = sqlite3SymbianProfilerReset(KCounterType);
sl@0
   272
			break;
sl@0
   273
        case TSqlResourceProfiler::ESqlCounterTrace:
sl@0
   274
            break;
sl@0
   275
		default:
sl@0
   276
			err = KErrNotSupported;
sl@0
   277
			break;
sl@0
   278
		}
sl@0
   279
	__SQLLEAVE_IF_ERROR2(err);
sl@0
   280
	}
sl@0
   281
	
sl@0
   282
/**
sl@0
   283
Retrieves the counter values for the specified profiling counter.
sl@0
   284
sl@0
   285
@leave KErrNotSupported, The requested profiling type is not supported;
sl@0
   286
                 		 The function may also leave with some other system-wide error codes.
sl@0
   287
sl@0
   288
@see TSqlResourceProfiler
sl@0
   289
sl@0
   290
Usage of the IPC call arguments:
sl@0
   291
 - Arg 0: [in]  profiling counter type, one of the TSqlResourceProfiler::TSqlCounter enum item values.
sl@0
   292
 - Arg 1: [in]  the size of the buffer for the profiling counter values.
sl@0
   293
 - Arg 2: [out] the buffer for the profiling counter values.
sl@0
   294
*/
sl@0
   295
void TSqlSrvResourceProfiler::QueryL(const RMessage2& aMessage)
sl@0
   296
	{
sl@0
   297
	const TSqlResourceProfiler::TSqlCounter KCounterType = static_cast <TSqlResourceProfiler::TSqlCounter> (aMessage.Int0());
sl@0
   298
	const TInt KIpcBufLen = 300;
sl@0
   299
	TBuf8<KIpcBufLen> ipcBuf;
sl@0
   300
	TInt err = KErrNone;
sl@0
   301
	switch(KCounterType)
sl@0
   302
		{
sl@0
   303
		case TSqlResourceProfiler::ESqlCounterFileIO:
sl@0
   304
		case TSqlResourceProfiler::ESqlCounterOsCall:
sl@0
   305
		case TSqlResourceProfiler::ESqlCounterOsCallTime:
sl@0
   306
		case TSqlResourceProfiler::ESqlCounterOsCallDetails:
sl@0
   307
			err = sqlite3SymbianProfilerQuery(KCounterType, ipcBuf);
sl@0
   308
			break;
sl@0
   309
		case TSqlResourceProfiler::ESqlCounterIpc:
sl@0
   310
			ipcBuf.AppendNum(TheSqlSrvProfilerIpc[ESqlIpcRq]);
sl@0
   311
			ipcBuf.Append(TChar(';'));
sl@0
   312
			ipcBuf.AppendNum(TheSqlSrvProfilerIpc[ESqlIpcRead]);
sl@0
   313
			ipcBuf.Append(TChar(';'));
sl@0
   314
			ipcBuf.AppendNum(TheSqlSrvProfilerIpc[ESqlIpcWrite]);
sl@0
   315
			ipcBuf.Append(TChar(';'));
sl@0
   316
			ipcBuf.AppendNum(TheSqlSrvProfilerIpcBytes[ESqlIpcRead]);
sl@0
   317
			ipcBuf.Append(TChar(';'));
sl@0
   318
			ipcBuf.AppendNum(TheSqlSrvProfilerIpcBytes[ESqlIpcWrite]);
sl@0
   319
			ipcBuf.Append(TChar(';'));
sl@0
   320
			break;
sl@0
   321
		case TSqlResourceProfiler::ESqlCounterMemory:
sl@0
   322
			{
sl@0
   323
			TInt totalAllocCells = 0;
sl@0
   324
			TInt totalAllocSize = 0;
sl@0
   325
			TInt totalFreeSpace = 0;
sl@0
   326
			TInt biggestBlockSize = 0;
sl@0
   327
			RHeap& heap = User::Heap();;
sl@0
   328
			totalAllocCells = heap.AllocSize(totalAllocSize);
sl@0
   329
			totalFreeSpace = heap.Available(biggestBlockSize);
sl@0
   330
			ipcBuf.AppendNum(totalAllocCells);
sl@0
   331
			ipcBuf.Append(TChar(';'));
sl@0
   332
			ipcBuf.AppendNum(totalAllocSize);
sl@0
   333
			ipcBuf.Append(TChar(';'));
sl@0
   334
			ipcBuf.AppendNum(totalFreeSpace);
sl@0
   335
			ipcBuf.Append(TChar(';'));
sl@0
   336
			ipcBuf.AppendNum(biggestBlockSize);
sl@0
   337
			ipcBuf.Append(TChar(';'));
sl@0
   338
			err = sqlite3SymbianProfilerQuery(KCounterType, ipcBuf);
sl@0
   339
			}
sl@0
   340
			break;
sl@0
   341
		case TSqlResourceProfiler::ESqlCounterMaxAlloc:
sl@0
   342
			ipcBuf.AppendNum(TheSqlSrvProfilerMaxAllocSize);
sl@0
   343
			ipcBuf.Append(TChar(';'));
sl@0
   344
			err = sqlite3SymbianProfilerQuery(KCounterType, ipcBuf);
sl@0
   345
			break;
sl@0
   346
        case TSqlResourceProfiler::ESqlCounterTrace:
sl@0
   347
            break;
sl@0
   348
		default:
sl@0
   349
			err = KErrNotSupported;
sl@0
   350
			break;
sl@0
   351
		}
sl@0
   352
	__SQLLEAVE_IF_ERROR2(err);
sl@0
   353
	aMessage.WriteL(2, ipcBuf);
sl@0
   354
	}
sl@0
   355
	
sl@0
   356
////////////////////////// IPC tracing related ////////////////////////////////////////
sl@0
   357
sl@0
   358
//Max trace line length
sl@0
   359
const TInt KSqlTraceMaxLength = 220;
sl@0
   360
//Trace buffer.
sl@0
   361
static TBuf<KSqlTraceMaxLength> TheSqlTraceBuf;
sl@0
   362
sl@0
   363
//IPC calls names - begin
sl@0
   364
_LIT(KSqlSrvDbCreate, "DbCreate");
sl@0
   365
_LIT(KSqlSrvDbCreateSecure, "DbCreateSecure");
sl@0
   366
_LIT(KSqlSrvDbOpen, "DbOpen");
sl@0
   367
_LIT(KSqlSrvDbOpenFromHandle, "DbOpenFromHandle");
sl@0
   368
_LIT(KSqlSrvDbClose, "DbClose");
sl@0
   369
_LIT(KSqlSrvDbCopy, "DbCopy");
sl@0
   370
_LIT(KSqlSrvDbDelete, "DbDelete");
sl@0
   371
_LIT(KSqlSrvLastErrorMsg, "LastErrorMsg");
sl@0
   372
_LIT(KSqlSrvDbExec8, "DbExec8");
sl@0
   373
_LIT(KSqlSrvDbExec16, "DbExec16");
sl@0
   374
_LIT(KSqlSrvDbSetIsolationLevel, "DbSetIsolationLevel");
sl@0
   375
_LIT(KSqlSrvDbGetSecurityPolicy, "DbGetSecurityPolicy");
sl@0
   376
_LIT(KSqlSrvDbAttach, "DbAttach");
sl@0
   377
_LIT(KSqlSrvDbAttachFromHandle, "DbAttachFromHandle");
sl@0
   378
_LIT(KSqlSrvDbDetach, "DbDetach");
sl@0
   379
_LIT(KSqlSrvDbScalarFullSelect8, "DbScalarFullSelect8");
sl@0
   380
_LIT(KSqlSrvDbScalarFullSelect16, "DbScalarFullSelect16");
sl@0
   381
_LIT(KSqlSrvDbInTransaction, "DbInTransaction");
sl@0
   382
_LIT(KSqlSrvDbSize, "DbSize");
sl@0
   383
_LIT(KSqlSrvDbSize2, "DbSize2");
sl@0
   384
_LIT(KSqlSrvDbBlobSource, "DbBlobSource");
sl@0
   385
_LIT(KSqlSrvDbLastInsertedRowId, "DbLastInsertedRowId");
sl@0
   386
_LIT(KSqlSrvDbCompact, "DbCompact");
sl@0
   387
_LIT(KSqlSrvDbReserveDriveSpace, "DbReserveDriveSpace");
sl@0
   388
_LIT(KSqlSrvDbFreeReservedSpace, "DbFreeReservedSpace");
sl@0
   389
_LIT(KSqlSrvDbGetReserveAccess, "DbGetReserveAccess");
sl@0
   390
_LIT(KSqlSrvDbReleaseReserveAccess, "DbReleaseReserveAccess");
sl@0
   391
_LIT(KSqlSrvStmtPrepare8, "StmtPrepare8");
sl@0
   392
_LIT(KSqlSrvStmtPrepare16, "StmtPrepare16");
sl@0
   393
_LIT(KSqlSrvStmtClose, "StmtClose");
sl@0
   394
_LIT(KSqlSrvStmtReset, "StmtReset");
sl@0
   395
_LIT(KSqlSrvStmtExec, "StmtExec");
sl@0
   396
_LIT(KSqlSrvStmtAsyncExec, "StmtAsyncExec");
sl@0
   397
_LIT(KSqlSrvStmtBindExec, "StmtBindExec");
sl@0
   398
_LIT(KSqlSrvStmtAsyncBindExec, "StmtAsyncBindExec");
sl@0
   399
_LIT(KSqlSrvStmtNext, "StmtNext");
sl@0
   400
_LIT(KSqlSrvStmtBindNext, "StmtBindNext");
sl@0
   401
_LIT(KSqlSrvStmtColumnNames, "StmtColumnNames");
sl@0
   402
_LIT(KSqlSrvStmtParamNames, "StmtParamNames");
sl@0
   403
_LIT(KSqlSrvStmtColumnSource, "StmtColumnSource");
sl@0
   404
_LIT(KSqlSrvStmtBinParamSink, "StmtBinParamSink");
sl@0
   405
_LIT(KSqlSrvStmtTxtParamSink16, "StmtTxtParamSink16");
sl@0
   406
_LIT(KSqlSrvStmtBufFlat, "StmtBufFlat");
sl@0
   407
_LIT(KSqlSrvStmtColumnValue, "StmtColumnValue");
sl@0
   408
_LIT(KSqlSrvStmtDeclColumnTypes, "StmtDeclColumnTypes");
sl@0
   409
_LIT(KSqlSrvStreamRead, "StreamRead");
sl@0
   410
_LIT(KSqlSrvStreamWrite, "StreamWrite");
sl@0
   411
_LIT(KSqlSrvStreamSize, "StreamSize");
sl@0
   412
_LIT(KSqlSrvStreamSynch, "StreamSynch");
sl@0
   413
_LIT(KSqlSrvStreamClose, "StreamClose");
sl@0
   414
//IPC calls names - end
sl@0
   415
sl@0
   416
//Gets as an argument the IPC call type in "aCode" parameter.
sl@0
   417
//Returns: 
sl@0
   418
// 0 or positive integer: the IPC call is one of the 10 most important IPC calls (trace level 0).
sl@0
   419
// KErrNotFound         : the IPC call is some of the other possible call types (trace level 1).
sl@0
   420
// KErrNotSupported     : unknown IPC call type.
sl@0
   421
//
sl@0
   422
// aIpcCallName will always be set to IPC call name descriptor.
sl@0
   423
static TInt SqlIpcTraceIdxAndName(TSqlSrvFunction aCode, TPtrC& aIpcCallName)
sl@0
   424
    {
sl@0
   425
    TInt rc = KErrNotFound;
sl@0
   426
    switch(aCode)
sl@0
   427
        {
sl@0
   428
        case ESqlSrvDbCreate:
sl@0
   429
            aIpcCallName.Set(KSqlSrvDbCreate);
sl@0
   430
            break;
sl@0
   431
        case ESqlSrvDbCreateSecure:
sl@0
   432
            aIpcCallName.Set(KSqlSrvDbCreateSecure);
sl@0
   433
            break;
sl@0
   434
        case ESqlSrvDbOpen:
sl@0
   435
            aIpcCallName.Set(KSqlSrvDbOpen);
sl@0
   436
            break;
sl@0
   437
        case ESqlSrvDbOpenFromHandle:
sl@0
   438
            aIpcCallName.Set(KSqlSrvDbOpenFromHandle);
sl@0
   439
            break;
sl@0
   440
        case ESqlSrvDbClose:
sl@0
   441
            aIpcCallName.Set(KSqlSrvDbClose);
sl@0
   442
            break;
sl@0
   443
        case ESqlSrvDbCopy:
sl@0
   444
            aIpcCallName.Set(KSqlSrvDbCopy);
sl@0
   445
            break;
sl@0
   446
        case ESqlSrvDbDelete:
sl@0
   447
            aIpcCallName.Set(KSqlSrvDbDelete);
sl@0
   448
            break;
sl@0
   449
        case ESqlSrvLastErrorMsg:
sl@0
   450
            aIpcCallName.Set(KSqlSrvLastErrorMsg);
sl@0
   451
            break;
sl@0
   452
        case ESqlSrvDbExec8:
sl@0
   453
            aIpcCallName.Set(KSqlSrvDbExec8);
sl@0
   454
            rc = 0;
sl@0
   455
            break;
sl@0
   456
        case ESqlSrvDbExec16:
sl@0
   457
            aIpcCallName.Set(KSqlSrvDbExec16);
sl@0
   458
            rc = 1;
sl@0
   459
            break;
sl@0
   460
        case ESqlSrvDbSetIsolationLevel:
sl@0
   461
            aIpcCallName.Set(KSqlSrvDbSetIsolationLevel);
sl@0
   462
            break;
sl@0
   463
        case ESqlSrvDbGetSecurityPolicy:
sl@0
   464
            aIpcCallName.Set(KSqlSrvDbGetSecurityPolicy);
sl@0
   465
            break;
sl@0
   466
        case ESqlSrvDbAttach:
sl@0
   467
            aIpcCallName.Set(KSqlSrvDbAttach);
sl@0
   468
            break;
sl@0
   469
        case ESqlSrvDbAttachFromHandle:
sl@0
   470
            aIpcCallName.Set(KSqlSrvDbAttachFromHandle);
sl@0
   471
            break;
sl@0
   472
        case ESqlSrvDbDetach:
sl@0
   473
            aIpcCallName.Set(KSqlSrvDbDetach);
sl@0
   474
            break;
sl@0
   475
        case ESqlSrvDbScalarFullSelect8:
sl@0
   476
            aIpcCallName.Set(KSqlSrvDbScalarFullSelect8);
sl@0
   477
            rc = 2;
sl@0
   478
            break;
sl@0
   479
        case ESqlSrvDbScalarFullSelect16:
sl@0
   480
            aIpcCallName.Set(KSqlSrvDbScalarFullSelect16);
sl@0
   481
            rc = 3;
sl@0
   482
            break;
sl@0
   483
        case ESqlSrvDbInTransaction:
sl@0
   484
            aIpcCallName.Set(KSqlSrvDbInTransaction);
sl@0
   485
            break;
sl@0
   486
        case ESqlSrvDbSize:
sl@0
   487
            aIpcCallName.Set(KSqlSrvDbSize);
sl@0
   488
            break;
sl@0
   489
        case ESqlSrvDbSize2:
sl@0
   490
            aIpcCallName.Set(KSqlSrvDbSize2);
sl@0
   491
            break;
sl@0
   492
        case ESqlSrvDbBlobSource:
sl@0
   493
            aIpcCallName.Set(KSqlSrvDbBlobSource);
sl@0
   494
            break;
sl@0
   495
        case ESqlSrvDbLastInsertedRowId:
sl@0
   496
            aIpcCallName.Set(KSqlSrvDbLastInsertedRowId);
sl@0
   497
            break;
sl@0
   498
        case ESqlSrvDbCompact:
sl@0
   499
            aIpcCallName.Set(KSqlSrvDbCompact);
sl@0
   500
            break;
sl@0
   501
        case ESqlSrvDbReserveDriveSpace:
sl@0
   502
            aIpcCallName.Set(KSqlSrvDbReserveDriveSpace);
sl@0
   503
            break;
sl@0
   504
        case ESqlSrvDbFreeReservedSpace:
sl@0
   505
            aIpcCallName.Set(KSqlSrvDbFreeReservedSpace);
sl@0
   506
            break;
sl@0
   507
        case ESqlSrvDbGetReserveAccess:
sl@0
   508
            aIpcCallName.Set(KSqlSrvDbGetReserveAccess);
sl@0
   509
            break;
sl@0
   510
        case ESqlSrvDbReleaseReserveAccess:
sl@0
   511
            aIpcCallName.Set(KSqlSrvDbReleaseReserveAccess);
sl@0
   512
            break;
sl@0
   513
        case ESqlSrvStmtPrepare8:
sl@0
   514
            aIpcCallName.Set(KSqlSrvStmtPrepare8);
sl@0
   515
            break;
sl@0
   516
        case ESqlSrvStmtPrepare16:
sl@0
   517
            aIpcCallName.Set(KSqlSrvStmtPrepare16);
sl@0
   518
            break;
sl@0
   519
        case ESqlSrvStmtClose:
sl@0
   520
            aIpcCallName.Set(KSqlSrvStmtClose);
sl@0
   521
            break;
sl@0
   522
        case ESqlSrvStmtReset:
sl@0
   523
            aIpcCallName.Set(KSqlSrvStmtReset);
sl@0
   524
            break;
sl@0
   525
        case ESqlSrvStmtExec:
sl@0
   526
            aIpcCallName.Set(KSqlSrvStmtExec);
sl@0
   527
            rc = 4;
sl@0
   528
            break;
sl@0
   529
        case ESqlSrvStmtAsyncExec:
sl@0
   530
            aIpcCallName.Set(KSqlSrvStmtAsyncExec);
sl@0
   531
            rc = 5;
sl@0
   532
            break;
sl@0
   533
        case ESqlSrvStmtBindExec:
sl@0
   534
            aIpcCallName.Set(KSqlSrvStmtBindExec);
sl@0
   535
            rc = 6;
sl@0
   536
            break;
sl@0
   537
        case ESqlSrvStmtAsyncBindExec:
sl@0
   538
            aIpcCallName.Set(KSqlSrvStmtAsyncBindExec);
sl@0
   539
            rc = 7;
sl@0
   540
            break;
sl@0
   541
        case ESqlSrvStmtNext:
sl@0
   542
            aIpcCallName.Set(KSqlSrvStmtNext);
sl@0
   543
            rc = 8;
sl@0
   544
            break;
sl@0
   545
        case ESqlSrvStmtBindNext:
sl@0
   546
            aIpcCallName.Set(KSqlSrvStmtBindNext);
sl@0
   547
            rc = 9;
sl@0
   548
            break;
sl@0
   549
        case ESqlSrvStmtColumnNames:
sl@0
   550
            aIpcCallName.Set(KSqlSrvStmtColumnNames);
sl@0
   551
            break;
sl@0
   552
        case ESqlSrvStmtParamNames:
sl@0
   553
            aIpcCallName.Set(KSqlSrvStmtParamNames);
sl@0
   554
            break;
sl@0
   555
        case ESqlSrvStmtColumnSource:
sl@0
   556
            aIpcCallName.Set(KSqlSrvStmtColumnSource);
sl@0
   557
            break;
sl@0
   558
        case ESqlSrvStmtBinParamSink:
sl@0
   559
            aIpcCallName.Set(KSqlSrvStmtBinParamSink);
sl@0
   560
            break;
sl@0
   561
        case ESqlSrvStmtTxtParamSink16:
sl@0
   562
            aIpcCallName.Set(KSqlSrvStmtTxtParamSink16);
sl@0
   563
            break;
sl@0
   564
        case ESqlSrvStmtBufFlat:
sl@0
   565
            aIpcCallName.Set(KSqlSrvStmtBufFlat);
sl@0
   566
            break;
sl@0
   567
        case ESqlSrvStmtColumnValue:
sl@0
   568
            aIpcCallName.Set(KSqlSrvStmtColumnValue);
sl@0
   569
            break;
sl@0
   570
        case ESqlSrvStmtDeclColumnTypes:
sl@0
   571
            aIpcCallName.Set(KSqlSrvStmtDeclColumnTypes);
sl@0
   572
            break;
sl@0
   573
        case ESqlSrvStreamRead:
sl@0
   574
            aIpcCallName.Set(KSqlSrvStreamRead);
sl@0
   575
            break;
sl@0
   576
        case ESqlSrvStreamWrite:
sl@0
   577
            aIpcCallName.Set(KSqlSrvStreamWrite);
sl@0
   578
            break;
sl@0
   579
        case ESqlSrvStreamSize:
sl@0
   580
            aIpcCallName.Set(KSqlSrvStreamSize);
sl@0
   581
            break;
sl@0
   582
        case ESqlSrvStreamSynch:
sl@0
   583
            aIpcCallName.Set(KSqlSrvStreamSynch);
sl@0
   584
            break;
sl@0
   585
        case ESqlSrvStreamClose:
sl@0
   586
            aIpcCallName.Set(KSqlSrvStreamClose);
sl@0
   587
            break;
sl@0
   588
        default:
sl@0
   589
            return KErrNotSupported;
sl@0
   590
        };
sl@0
   591
    __ASSERT_DEBUG((TUint)rc < KIpcTraceTypeCount || rc == KErrNotFound, __SQLPANIC2(ESqlPanicInternalError));
sl@0
   592
    return rc;
sl@0
   593
    }
sl@0
   594
sl@0
   595
//Calculates and returns the time difference between aStartTicks and aEndTicks in microseconds.  
sl@0
   596
static TInt SqlConvertTicks2Us(TUint32 aStartTicks, TUint32 aEndTicks)
sl@0
   597
    {
sl@0
   598
    static TInt freq = 0;
sl@0
   599
    if(freq == 0)
sl@0
   600
        {
sl@0
   601
        TInt err = HAL::Get(HAL::EFastCounterFrequency, freq);
sl@0
   602
        if(err != KErrNone)
sl@0
   603
            {
sl@0
   604
            __SQLPANIC2((TSqlPanic)err);
sl@0
   605
            }
sl@0
   606
        }
sl@0
   607
    TInt64 diffTicks = (TInt64)aEndTicks - (TInt64)aStartTicks;
sl@0
   608
    if(diffTicks < 0)
sl@0
   609
        {
sl@0
   610
        diffTicks = KMaxTUint32 + diffTicks + 1;
sl@0
   611
        }
sl@0
   612
    const TInt KMicroSecIn1Sec = 1000000;
sl@0
   613
    TInt32 us = (diffTicks * KMicroSecIn1Sec) / freq;
sl@0
   614
    return us;
sl@0
   615
    }
sl@0
   616
sl@0
   617
//Calculates the time since the first time this function has been called.
sl@0
   618
static TInt64 SqlTimeFromStartUs()
sl@0
   619
    {
sl@0
   620
    struct TStartTime
sl@0
   621
        {
sl@0
   622
        inline TStartTime()
sl@0
   623
            {
sl@0
   624
            iTime.UniversalTime();
sl@0
   625
            }
sl@0
   626
        TTime iTime;
sl@0
   627
        };
sl@0
   628
    static TStartTime startTime;
sl@0
   629
    TTime time;
sl@0
   630
    time.UniversalTime();
sl@0
   631
    TTimeIntervalMicroSeconds us = time.MicroSecondsFrom(startTime.iTime);
sl@0
   632
    const TInt64 KMaxDiff = 999999999999LL;//999999999999 is the max number that can be printed out using %12ld format spec
sl@0
   633
    if(us.Int64() < 0 || us.Int64() >= KMaxDiff)
sl@0
   634
        {
sl@0
   635
        startTime.iTime = time;
sl@0
   636
        us = 0;
sl@0
   637
        }
sl@0
   638
    return us.Int64();
sl@0
   639
    }
sl@0
   640
sl@0
   641
sl@0
   642
//Tracing data buffer
sl@0
   643
const TInt KSqlSrvProfilePrnBufSize = 300;
sl@0
   644
static TBuf<KSqlSrvProfilePrnBufSize> TheSqlSrvProfileTraceBuf;
sl@0
   645
static TBuf8<KSqlSrvProfilePrnBufSize> TheSqlSrvProfileTraceBuf8;
sl@0
   646
sl@0
   647
static RFs TheSqlSrvTraceFs;
sl@0
   648
static RFile TheTheSqlSrvTraceFile;
sl@0
   649
_LIT(KSqlSrvTraceFileName, "C:\\SQLTRACE");
sl@0
   650
sl@0
   651
//Prints out a time stamp
sl@0
   652
static void SqlSrvProfileTimePrintf()
sl@0
   653
    {
sl@0
   654
    static TInt64 prevTimeDiff = 0;;
sl@0
   655
    TInt64 timeDiff = SqlTimeFromStartUs();
sl@0
   656
    const TInt64 KTimeInterval = 1000000; 
sl@0
   657
    if((timeDiff - prevTimeDiff) >= KTimeInterval || timeDiff < prevTimeDiff)
sl@0
   658
        {
sl@0
   659
        prevTimeDiff = timeDiff;
sl@0
   660
        TTime time;
sl@0
   661
        time.UniversalTime();
sl@0
   662
        TDateTime dt = time.DateTime();
sl@0
   663
        TheSqlSrvProfileTraceBuf8.Format(_L8("[SQL]¬\"%X\"¬¬TME¬¬¬¬¬¬¬¬¬¬¬¬%02d:%02d:%02d:%06d¬Prep8¬%d¬Prep16¬%d¬Ex8¬%d¬Ex16¬%d"),
sl@0
   664
                timeDiff, dt.Hour(), dt.Minute(), dt.Second(), dt.MicroSecond(),
sl@0
   665
                TheSqlSrvProfilerPreparedCnt8, TheSqlSrvProfilerPreparedCnt16, 
sl@0
   666
                TheSqlSrvProfilerExecutedCnt8, TheSqlSrvProfilerExecutedCnt16);
sl@0
   667
        if(TheSqlSrvProfilerTraceToFile)
sl@0
   668
            {
sl@0
   669
            TheSqlSrvProfileTraceBuf8.Append(_L8("\r\n"));
sl@0
   670
            (void)TheTheSqlSrvTraceFile.Write(TheSqlSrvProfileTraceBuf8);
sl@0
   671
            }
sl@0
   672
        else
sl@0
   673
            {
sl@0
   674
            TheSqlSrvProfileTraceBuf8.Append(_L8("\n"));
sl@0
   675
            RDebug::RawPrint(TheSqlSrvProfileTraceBuf8);
sl@0
   676
            }
sl@0
   677
        }
sl@0
   678
    }
sl@0
   679
sl@0
   680
//Trace types
sl@0
   681
enum TSqlSrvProfilerTraceType
sl@0
   682
    {
sl@0
   683
    ESqlSrvProfilerNonSqlTrace,
sl@0
   684
    ESqlSrvProfilerMiddleLineSqlTrace,
sl@0
   685
    ESqlSrvProfilerLastLineSqlTrace
sl@0
   686
    };
sl@0
   687
sl@0
   688
//Prints out the data that is in TheSqlSrvProfileTraceBuf.
sl@0
   689
// aType = ESqlSrvProfilerNonSqlTrace       - non-SQL trace
sl@0
   690
// aType = ESqlSrvProfilerMiddleLineSqlTrace - not last line of an SQL trace
sl@0
   691
// aType = ESqlSrvProfilerLastLineSqlTrace  - last line of an SQL trace
sl@0
   692
static void SqlSrvProfilePrintf(TSqlSrvProfilerTraceType aType)
sl@0
   693
    {
sl@0
   694
    SqlSrvProfileTimePrintf();
sl@0
   695
    TheSqlSrvProfileTraceBuf8.Copy(TheSqlSrvProfileTraceBuf);
sl@0
   696
    if(TheSqlSrvProfilerTraceToFile)
sl@0
   697
        {
sl@0
   698
        if(aType == 0 || aType == 2)
sl@0
   699
            {
sl@0
   700
            TheSqlSrvProfileTraceBuf8.Append(_L8("\r\n"));
sl@0
   701
            }
sl@0
   702
        (void)TheTheSqlSrvTraceFile.Write(TheSqlSrvProfileTraceBuf8);
sl@0
   703
        }
sl@0
   704
    else
sl@0
   705
        {
sl@0
   706
        TheSqlSrvProfileTraceBuf8.Append(_L8("\n"));
sl@0
   707
        RDebug::RawPrint(TheSqlSrvProfileTraceBuf8);
sl@0
   708
        }
sl@0
   709
    }
sl@0
   710
sl@0
   711
//Called at the beginning of CSqlSrvSession::ServiceL().
sl@0
   712
void SqlIpcStart(TUint& aIpcCounter, TUint32& aStartTicks, TUint aDbHandle)
sl@0
   713
    {
sl@0
   714
    if(TheSqlSrvProfilerTraceEnabled)
sl@0
   715
        {
sl@0
   716
        TheSqlSrvProfilerFileRead = TheSqlSrvProfilerFileWrite = TheSqlSrvProfilerFileSync = TheSqlSrvProfilerFileSetSize = 0;
sl@0
   717
        if(TheSqlSrvProfilerTraceLevel == 0)
sl@0
   718
            {
sl@0
   719
            return;
sl@0
   720
            }
sl@0
   721
        if(KSqlSrvProfilerDbName().Length() > 0 && (aDbHandle == 0 || TheSqlSrvProfilerHandle != aDbHandle))
sl@0
   722
            {
sl@0
   723
            return;
sl@0
   724
            }
sl@0
   725
        ++aIpcCounter;
sl@0
   726
        aStartTicks = User::FastCounter();
sl@0
   727
        }
sl@0
   728
    }
sl@0
   729
sl@0
   730
//Called at the end of CSqlSrvSession::ServiceL().
sl@0
   731
void SqlIpcEnd(TUint aIpcCounter, TUint32 aStartTicks, TSqlSrvFunction aFuncCode, 
sl@0
   732
               TUint aDbHandle, TSqlSrvIpcTraceData aIpcTraceData[], TInt aRetCode)
sl@0
   733
    {
sl@0
   734
    if(TheSqlSrvProfilerTraceEnabled)
sl@0
   735
        {
sl@0
   736
        if(TheSqlSrvProfilerTraceLevel == 0)
sl@0
   737
            {
sl@0
   738
            return;
sl@0
   739
            }
sl@0
   740
        if(KSqlSrvProfilerDbName().Length() > 0 &&  (aDbHandle == 0 || TheSqlSrvProfilerHandle != aDbHandle))
sl@0
   741
            {
sl@0
   742
            return;
sl@0
   743
            }
sl@0
   744
        TUint32 endTicks = User::FastCounter();
sl@0
   745
        TInt executionTime = SqlConvertTicks2Us(aStartTicks, endTicks);
sl@0
   746
        TPtrC ipcCallName;
sl@0
   747
        TInt ipcCallIdx = SqlIpcTraceIdxAndName(aFuncCode, ipcCallName); 
sl@0
   748
        TInt64 timeFromStart = SqlTimeFromStartUs();
sl@0
   749
        TInt64 ttlExecTime = 0;
sl@0
   750
        TInt count = 0;
sl@0
   751
        if(ipcCallIdx >= 0)
sl@0
   752
            {
sl@0
   753
            aIpcTraceData[ipcCallIdx].iExecutionTime += executionTime;
sl@0
   754
            ttlExecTime = aIpcTraceData[ipcCallIdx].iExecutionTime;
sl@0
   755
            count = ++aIpcTraceData[ipcCallIdx].iCount;
sl@0
   756
            }
sl@0
   757
        if(ipcCallIdx >= 0  || (ipcCallIdx == KErrNotFound && TheSqlSrvProfilerTraceLevel == 2))
sl@0
   758
            {
sl@0
   759
            TheSqlSrvProfileTraceBuf.Format(_L("[SQL]¬\"%X\"¬%ld¬IPC¬%u¬%S¬%ld¬%d¬%d¬%d¬%d¬%d¬%d¬rc¬%d"),  
sl@0
   760
														//[SQL]
sl@0
   761
                    aDbHandle,							//Database handle
sl@0
   762
                    timeFromStart,						//Time from start, microseconds
sl@0
   763
														//IPC
sl@0
   764
                    aIpcCounter,						//IPC sequence counter for this database (connection)
sl@0
   765
                    &ipcCallName,						//IPC call name
sl@0
   766
                    ttlExecTime,						//All time spent in this IPC call type for this database (connection)
sl@0
   767
                    executionTime,						//This IPC call execution time
sl@0
   768
                    count,								//This IPC call sequence counter for this database (connection)
sl@0
   769
                    TheSqlSrvProfilerFileRead,			//File read count, performed during this IPC
sl@0
   770
                    TheSqlSrvProfilerFileWrite,			//File write count, performed during this IPC
sl@0
   771
                    TheSqlSrvProfilerFileSync,			//File flush count, performed during this IPC
sl@0
   772
                    TheSqlSrvProfilerFileSetSize,		//File set size count, performed during this IPC
sl@0
   773
                    aRetCode);							//IPC call - return code
sl@0
   774
            SqlSrvProfilePrintf(ESqlSrvProfilerNonSqlTrace);
sl@0
   775
            }
sl@0
   776
        }
sl@0
   777
    }
sl@0
   778
sl@0
   779
//Called at the end of CSqlSrvSession::ServiceError().
sl@0
   780
void SqlIpcError(TUint aIpcCounter, TSqlSrvFunction aFuncCode, TUint aDbHandle, TInt aError)
sl@0
   781
    {
sl@0
   782
    if(TheSqlSrvProfilerTraceEnabled)
sl@0
   783
        {
sl@0
   784
        if(KSqlSrvProfilerDbName().Length() > 0 &&  (aDbHandle == 0 || TheSqlSrvProfilerHandle != aDbHandle))
sl@0
   785
            {
sl@0
   786
            return;
sl@0
   787
            }
sl@0
   788
        TPtrC ipcCallName;
sl@0
   789
        (void)SqlIpcTraceIdxAndName(aFuncCode, ipcCallName); 
sl@0
   790
        TInt64 timeFromStart = SqlTimeFromStartUs();
sl@0
   791
        TheSqlSrvProfileTraceBuf.Format(_L("[SQL]¬\"%X\"¬%ld¬ERR¬%u¬%S¬¬¬¬¬¬¬¬err¬%d"), 
sl@0
   792
									//[SQL]
sl@0
   793
                aDbHandle,			//Database (connection) handle
sl@0
   794
                timeFromStart,		//Time from start, microseconds
sl@0
   795
									//ERR
sl@0
   796
                aIpcCounter,		//IPC sequence counter for this database (connection)
sl@0
   797
                &ipcCallName,		//IPC call name
sl@0
   798
                aError);			//IPC call - return code
sl@0
   799
        SqlSrvProfilePrintf(ESqlSrvProfilerNonSqlTrace);
sl@0
   800
        }
sl@0
   801
    }
sl@0
   802
sl@0
   803
//Prints the passed as a parameter 16-bit SQL statement.
sl@0
   804
void SqlPrintSql16(TUint aDbHandle, const TDesC& aSql, TBool aPrepare)
sl@0
   805
    {
sl@0
   806
    if(!TheSqlSrvProfilerTraceEnabled || !TheSqlSrvProfilerSqlTraceEnabled)
sl@0
   807
        {
sl@0
   808
        return;
sl@0
   809
        }
sl@0
   810
    if(KSqlSrvProfilerDbName().Length() > 0 &&  (aDbHandle == 0 || TheSqlSrvProfilerHandle != aDbHandle))
sl@0
   811
        {
sl@0
   812
        return;
sl@0
   813
        }
sl@0
   814
    
sl@0
   815
    aPrepare ? ++TheSqlSrvProfilerPreparedCnt16 : ++TheSqlSrvProfilerExecutedCnt16;
sl@0
   816
    
sl@0
   817
    TInt64 timeFromStart = SqlTimeFromStartUs();
sl@0
   818
    TPtr line((TUint16*)TheSqlTraceBuf.Ptr(), 0, TheSqlTraceBuf.MaxLength());
sl@0
   819
    TInt len = aSql.Length();
sl@0
   820
    TInt pos = 0;
sl@0
   821
    do
sl@0
   822
        {
sl@0
   823
        _LIT(KPrepare,  "Prepare16");
sl@0
   824
        _LIT(KExec,     "Exec16");
sl@0
   825
        _LIT(KEmptyStr,  "");
sl@0
   826
        if(pos == 0)
sl@0
   827
            {
sl@0
   828
            line.Format(_L("[SQL]¬\"%X\"¬%ld¬SQL¬¬%S¬¬¬¬¬¬¬¬¬¬"), aDbHandle, timeFromStart, aPrepare ? &KPrepare : &KExec);
sl@0
   829
            }
sl@0
   830
        else
sl@0
   831
            {
sl@0
   832
            if(!TheSqlSrvProfilerTraceToFile)
sl@0
   833
                {
sl@0
   834
                line.Format(_L("[SQL]¬\"%X\"¬%ld¬SQL¬¬%S¬¬¬¬¬¬¬¬¬¬"), aDbHandle, timeFromStart, &KEmptyStr);
sl@0
   835
                }
sl@0
   836
            }
sl@0
   837
        TInt l = Min(len, (line.MaxLength() - line.Length()));
sl@0
   838
        TPtrC ptr(aSql.Ptr() + pos, l);
sl@0
   839
        pos += l;
sl@0
   840
        len -= l;
sl@0
   841
        line.Append(ptr);
sl@0
   842
        TheSqlSrvProfileTraceBuf.Format(_L("%S"), &line); 
sl@0
   843
        SqlSrvProfilePrintf(len > 0 ? ESqlSrvProfilerMiddleLineSqlTrace : ESqlSrvProfilerLastLineSqlTrace);
sl@0
   844
        line.Zero();
sl@0
   845
        } while(len > 0);
sl@0
   846
    }
sl@0
   847
 
sl@0
   848
//Prints the passed as a parameter 8-bit SQL statement.
sl@0
   849
void SqlPrintSql8(TUint aDbHandle, const TDesC8& aSql, TBool aPrepare)
sl@0
   850
    {
sl@0
   851
    if(!TheSqlSrvProfilerTraceEnabled || !TheSqlSrvProfilerSqlTraceEnabled)
sl@0
   852
        {
sl@0
   853
        return;
sl@0
   854
        }
sl@0
   855
    if(KSqlSrvProfilerDbName().Length() > 0 &&  (aDbHandle == 0 || TheSqlSrvProfilerHandle != aDbHandle))
sl@0
   856
        {
sl@0
   857
        return;
sl@0
   858
        }
sl@0
   859
    
sl@0
   860
    aPrepare ? ++TheSqlSrvProfilerPreparedCnt8 : ++TheSqlSrvProfilerExecutedCnt8;
sl@0
   861
    
sl@0
   862
    TInt64 timeFromStart = SqlTimeFromStartUs();
sl@0
   863
    TPtr line((TUint16*)TheSqlTraceBuf.Ptr(), 0, TheSqlTraceBuf.MaxLength());
sl@0
   864
    TInt len = aSql.Length();
sl@0
   865
    TInt pos = 0;
sl@0
   866
    do
sl@0
   867
        {
sl@0
   868
        _LIT(KPrepare,   "Prepare8");
sl@0
   869
        _LIT(KExec,      "Exec8");
sl@0
   870
        _LIT(KEmptyStr,  "");
sl@0
   871
        if(pos == 0)
sl@0
   872
            {
sl@0
   873
            line.Format(_L("[SQL]¬\"%X\"¬%ld¬SQL¬¬%S¬¬¬¬¬¬¬¬¬¬"), aDbHandle, timeFromStart, aPrepare ? &KPrepare : &KExec);
sl@0
   874
            }
sl@0
   875
        else
sl@0
   876
            {
sl@0
   877
            if(!TheSqlSrvProfilerTraceToFile)
sl@0
   878
                {
sl@0
   879
                line.Format(_L("[SQL]¬\"%X\"¬%ld¬SQL¬¬%S¬¬¬¬¬¬¬¬¬¬"), aDbHandle, timeFromStart, &KEmptyStr);
sl@0
   880
                }
sl@0
   881
            }
sl@0
   882
        TInt l = Min(len, (line.MaxLength() - line.Length()));
sl@0
   883
        TPtrC8 ptr(aSql.Ptr() + pos, l);
sl@0
   884
        pos += l;
sl@0
   885
        len -= l;
sl@0
   886
        TPtr p2((TUint16*)line.Ptr() + line.Length(), 0, l);  
sl@0
   887
        p2.Copy(ptr);
sl@0
   888
        line.SetLength(line.Length() + p2.Length());
sl@0
   889
        TheSqlSrvProfileTraceBuf.Format(_L("%S"), &line); 
sl@0
   890
        SqlSrvProfilePrintf(len > 0 ? ESqlSrvProfilerMiddleLineSqlTrace : ESqlSrvProfilerLastLineSqlTrace);
sl@0
   891
        line.Zero();
sl@0
   892
        } while(len > 0);
sl@0
   893
    }
sl@0
   894
sl@0
   895
//Prints the name of the just created database.
sl@0
   896
void SqlPrintDbCreate(TUint aDbHandle, const TDesC& aDbName)
sl@0
   897
    {
sl@0
   898
    if(TheSqlSrvProfilerTraceEnabled)
sl@0
   899
        {
sl@0
   900
        if(KSqlSrvProfilerDbName().Length() > 0 && aDbName.FindF(KSqlSrvProfilerDbName) >= 0)
sl@0
   901
            {
sl@0
   902
            TheSqlSrvProfilerHandle = aDbHandle;
sl@0
   903
            }
sl@0
   904
        if(KSqlSrvProfilerDbName().Length() > 0 &&  (aDbHandle == 0 || TheSqlSrvProfilerHandle != aDbHandle))
sl@0
   905
            {
sl@0
   906
            return;
sl@0
   907
            }
sl@0
   908
        TInt64 timeFromStart = SqlTimeFromStartUs();
sl@0
   909
        TheSqlSrvProfileTraceBuf.Format(_L("[SQL]¬\"%X\"¬%ld¬CRE¬¬¬¬¬¬¬¬¬¬¬¬%S"), 
sl@0
   910
                aDbHandle, 
sl@0
   911
                timeFromStart,
sl@0
   912
                &aDbName);
sl@0
   913
        SqlSrvProfilePrintf(ESqlSrvProfilerNonSqlTrace);
sl@0
   914
        }
sl@0
   915
    }
sl@0
   916
sl@0
   917
//Prints the name of the just opened database.
sl@0
   918
void SqlPrintDbOpen(TUint aDbHandle, const TDesC& aDbName)
sl@0
   919
    {
sl@0
   920
    if(TheSqlSrvProfilerTraceEnabled)
sl@0
   921
        {
sl@0
   922
        if(KSqlSrvProfilerDbName().Length() > 0 && aDbName.FindF(KSqlSrvProfilerDbName) >= 0)
sl@0
   923
            {
sl@0
   924
            TheSqlSrvProfilerHandle = aDbHandle;
sl@0
   925
            }
sl@0
   926
        if(KSqlSrvProfilerDbName().Length() > 0 &&  (aDbHandle == 0 || TheSqlSrvProfilerHandle != aDbHandle))
sl@0
   927
            {
sl@0
   928
            return;
sl@0
   929
            }
sl@0
   930
        TInt64 timeFromStart = SqlTimeFromStartUs();
sl@0
   931
        TheSqlSrvProfileTraceBuf.Format(_L("[SQL]¬\"%X\"¬%ld¬OPN¬¬¬¬¬¬¬¬¬¬¬¬%S"), 
sl@0
   932
                aDbHandle, 
sl@0
   933
                timeFromStart,
sl@0
   934
                &aDbName);
sl@0
   935
        SqlSrvProfilePrintf(ESqlSrvProfilerNonSqlTrace);
sl@0
   936
        }
sl@0
   937
    }
sl@0
   938
sl@0
   939
//Prints the handle of the just closed database.
sl@0
   940
void SqlPrintDbClose(TUint aDbHandle)
sl@0
   941
    {
sl@0
   942
    if(TheSqlSrvProfilerTraceEnabled)
sl@0
   943
        {
sl@0
   944
        if(KSqlSrvProfilerDbName().Length() > 0 &&  (aDbHandle == 0 || TheSqlSrvProfilerHandle != aDbHandle))
sl@0
   945
            {
sl@0
   946
            return;
sl@0
   947
            }
sl@0
   948
        TInt64 timeFromStart = SqlTimeFromStartUs();
sl@0
   949
        TheSqlSrvProfileTraceBuf.Format(_L("[SQL]¬\"%X\"¬%ld¬CSE"),  
sl@0
   950
                aDbHandle, 
sl@0
   951
                timeFromStart);
sl@0
   952
        SqlSrvProfilePrintf(ESqlSrvProfilerNonSqlTrace);
sl@0
   953
        if(aDbHandle == TheSqlSrvProfilerHandle)
sl@0
   954
            {
sl@0
   955
            TheSqlSrvProfilerHandle = 0;
sl@0
   956
            }
sl@0
   957
        }
sl@0
   958
    }
sl@0
   959
sl@0
   960
//Prints a trace when the SQL server starts
sl@0
   961
void SqlPrintServerStart()
sl@0
   962
    {
sl@0
   963
    TInt64 timeFromStart = SqlTimeFromStartUs();
sl@0
   964
    if(TheSqlSrvProfilerTraceToFile)
sl@0
   965
        {
sl@0
   966
        TInt err = TheSqlSrvTraceFs.Connect();
sl@0
   967
        if(err == KErrNone)
sl@0
   968
            {
sl@0
   969
            TInt fileNum = 0;
sl@0
   970
            err = KErrGeneral;
sl@0
   971
            while(++fileNum < 1000 && err != KErrNone)
sl@0
   972
                {
sl@0
   973
                TBuf<80> ftrname;
sl@0
   974
                ftrname.Copy(KSqlSrvTraceFileName);
sl@0
   975
                ftrname.AppendNum(fileNum);
sl@0
   976
                ftrname.Append(_L(".txt"));
sl@0
   977
                err = TheTheSqlSrvTraceFile.Create(TheSqlSrvTraceFs, ftrname, EFileRead | EFileWrite);
sl@0
   978
                if(err == KErrNone)
sl@0
   979
                    {
sl@0
   980
                    break;
sl@0
   981
                    }
sl@0
   982
                }
sl@0
   983
            }
sl@0
   984
        if(err != KErrNone)
sl@0
   985
            {
sl@0
   986
            TheSqlSrvTraceFs.Close();
sl@0
   987
            TheSqlSrvProfilerTraceToFile = EFalse;
sl@0
   988
            RDebug::Print(_L("SQL trace file creation failed with err=%d"), err);
sl@0
   989
            }
sl@0
   990
        }
sl@0
   991
    TheSqlSrvProfileTraceBuf.Format(_L("[SQL]¬¬%ld¬SRV¬¬Start"), timeFromStart); 
sl@0
   992
    SqlSrvProfilePrintf(ESqlSrvProfilerNonSqlTrace);
sl@0
   993
    }
sl@0
   994
sl@0
   995
//Prints a trace when the SQL server stops
sl@0
   996
void SqlPrintServerStop()
sl@0
   997
    {
sl@0
   998
    TInt64 timeFromStart = SqlTimeFromStartUs();
sl@0
   999
    TheSqlSrvProfileTraceBuf.Format(_L("[SQL]¬¬%ld¬SRV¬¬Stop"), timeFromStart); 
sl@0
  1000
    SqlSrvProfilePrintf(ESqlSrvProfilerNonSqlTrace);
sl@0
  1001
    if(TheSqlSrvProfilerTraceToFile)
sl@0
  1002
        {
sl@0
  1003
        TheTheSqlSrvTraceFile.Close();
sl@0
  1004
        TheSqlSrvTraceFs.Close();
sl@0
  1005
        }
sl@0
  1006
    }
sl@0
  1007
sl@0
  1008
#else //_SQLPROFILER
sl@0
  1009
sl@0
  1010
void TSqlSrvResourceProfiler::StartL(const RMessage2&)
sl@0
  1011
	{
sl@0
  1012
	__SQLLEAVE2(KErrNotSupported);
sl@0
  1013
	}
sl@0
  1014
	
sl@0
  1015
void TSqlSrvResourceProfiler::StopL(const RMessage2&)
sl@0
  1016
	{
sl@0
  1017
	__SQLLEAVE2(KErrNotSupported);
sl@0
  1018
	}
sl@0
  1019
	
sl@0
  1020
void TSqlSrvResourceProfiler::ResetL(const RMessage2&)
sl@0
  1021
	{
sl@0
  1022
	__SQLLEAVE2(KErrNotSupported);
sl@0
  1023
	}
sl@0
  1024
	
sl@0
  1025
void TSqlSrvResourceProfiler::QueryL(const RMessage2&)
sl@0
  1026
	{
sl@0
  1027
	__SQLLEAVE2(KErrNotSupported);
sl@0
  1028
	}
sl@0
  1029
	
sl@0
  1030
#endif//_SQLPROFILER