First public contribution.
1 // Copyright (c) 2008-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.
17 #include "SqlAssert.h"
18 #include "SqlSrvResourceProfiler.h"
19 #include "SqlResourceProfiler.h"
20 #include "SqliteSymbian.h"
25 ///////////////////////////////// Heap max alloc /////////////////////////////////////
28 If true the max alloc profiling is enabled.
31 TBool TheSqlSrvProfilerMaxAllocEnabled = EFalse;
33 The size of the biggest memory block ever allocated by the SQL server.
34 Set only if compiled with _SQLPROFILER macro.
37 TInt TheSqlSrvProfilerMaxAllocSize = 0;
39 ////////////////////////// IPC & SQL tracing related //////////////////////////////////
42 If true the tracing is enabled (IPC calls & SQL statements).
45 static TBool TheSqlSrvProfilerTraceEnabled = EFalse;
48 - 0: no IPC calls traced (default);
49 - 1: only the 10 most important IPC calls traced - SQL statement execution, ....
50 - 2: all IPC calls traced;
53 static TInt TheSqlSrvProfilerTraceLevel = 0;
55 If true the SQL statement tracing is enabled.
58 static TBool TheSqlSrvProfilerSqlTraceEnabled = EFalse;
61 When KSqlSrvProfilerDbName is with non-zero length, then only traces coming from database identified by
62 KSqlSrvProfilerDbName name are printed out.
65 //_LIT(KSqlSrvProfilerDbName, "default_avacon.dbSQL");
66 _LIT(KSqlSrvProfilerDbName, "");
67 static TUint TheSqlSrvProfilerHandle = 0;
69 //File "read", "write", "sync" and "set size" counters, incremented inside the OS porting layer.
70 TInt TheSqlSrvProfilerFileRead = 0;
71 TInt TheSqlSrvProfilerFileWrite = 0;
72 TInt TheSqlSrvProfilerFileSync = 0;
73 TInt TheSqlSrvProfilerFileSetSize = 0;
75 //Set it to true if you want traces to be stored into a file.
76 static TBool TheSqlSrvProfilerTraceToFile = EFalse;
78 //"Prepared" and "Executed" SQL statement counters
79 static TInt TheSqlSrvProfilerPreparedCnt8 = 0;
80 static TInt TheSqlSrvProfilerPreparedCnt16 = 0;
81 static TInt TheSqlSrvProfilerExecutedCnt8 = 0;
82 static TInt TheSqlSrvProfilerExecutedCnt16 = 0;
84 ///////////////////////////////// IPC counters ///////////////////////////////////////
87 If true the IPC profiling is enabled.
90 TBool TheSqlSrvProfilerIpcEnabled = EFalse;
92 IPC requests, read and write counters.
95 TInt TheSqlSrvProfilerIpc[ESqlIpcLast] = {0};
97 IPC read and write - bytes.
100 TInt64 TheSqlSrvProfilerIpcBytes[ESqlIpcLast] = {0};
102 //////////////////////////////////////////////////////////////////////////////////////
105 Starts the specified profiling counter.
107 @leave KErrNotSupported, The requested profiling type is not supported;
108 The function may also leave with some other system-wide error codes.
110 Usage of the IPC call arguments:
111 - Arg 0: [in] profiling counter type, one of the TSqlResourceProfiler::TSqlCounter enum item values.
112 - Arg 1: [in] the length of the additional profiling parameters.
113 - Arg 2: [in] additional profiling parameters.
115 void TSqlSrvResourceProfiler::StartL(const RMessage2& aMessage)
117 const TSqlResourceProfiler::TSqlCounter KCounterType = static_cast <TSqlResourceProfiler::TSqlCounter> (aMessage.Int0());
121 case TSqlResourceProfiler::ESqlCounterFileIO:
122 case TSqlResourceProfiler::ESqlCounterOsCall:
123 case TSqlResourceProfiler::ESqlCounterOsCallTime:
124 case TSqlResourceProfiler::ESqlCounterOsCallDetails:
125 err = sqlite3SymbianProfilerStart(KCounterType);
127 case TSqlResourceProfiler::ESqlCounterIpc:
128 TheSqlSrvProfilerIpcEnabled = ETrue;
130 case TSqlResourceProfiler::ESqlCounterMemory:
131 err = sqlite3SymbianProfilerStart(KCounterType);
133 case TSqlResourceProfiler::ESqlCounterMaxAlloc:
134 TheSqlSrvProfilerMaxAllocEnabled = ETrue;
135 err = sqlite3SymbianProfilerStart(KCounterType);
137 case TSqlResourceProfiler::ESqlCounterTrace:
139 TheSqlSrvProfilerTraceEnabled = ETrue;
140 TInt len = aMessage.Int1();
141 __SQLPANIC_CLIENT2((TUint)len < 64, aMessage, ESqlPanicBadArgument);
145 aMessage.ReadL(2, prmBuf);
148 _LIT8(KLevel0, "L0");
149 _LIT8(KLevel1, "L1");
150 _LIT8(KLevel2, "L2");
151 _LIT8(KSqlStmtTraceOff, "S0");
152 _LIT8(KSqlStmtTraceOn, "S1");
153 while(ptr.Length() > 0)
155 TInt pos = ptr.Locate(TChar(';'));
159 str.Set(ptr.Left(pos));
163 TheSqlSrvProfilerTraceLevel = 0;
165 else if(str == KLevel1)
167 TheSqlSrvProfilerTraceLevel = 1;
169 else if(str == KLevel2)
171 TheSqlSrvProfilerTraceLevel = 2;
173 else if(str == KSqlStmtTraceOff)
175 TheSqlSrvProfilerSqlTraceEnabled = EFalse;
177 else if(str == KSqlStmtTraceOn)
179 TheSqlSrvProfilerSqlTraceEnabled = ETrue;
181 if((TUint)pos > (ptr.Length() - 1))
185 ptr.Set(ptr.Mid(pos + 1));
191 err = KErrNotSupported;
194 __SQLLEAVE_IF_ERROR2(err);
198 Stops the specified profiling counter.
200 @leave KErrNotSupported, The requested profiling type is not supported;
201 The function may also leave with some other system-wide error codes.
203 Usage of the IPC call arguments:
204 - Arg 0: [in] profiling counter type, one of the TSqlResourceProfiler::TSqlCounter enum item values.
206 void TSqlSrvResourceProfiler::StopL(const RMessage2& aMessage)
208 const TSqlResourceProfiler::TSqlCounter KCounterType = static_cast <TSqlResourceProfiler::TSqlCounter> (aMessage.Int0());
212 case TSqlResourceProfiler::ESqlCounterFileIO:
213 case TSqlResourceProfiler::ESqlCounterOsCall:
214 case TSqlResourceProfiler::ESqlCounterOsCallTime:
215 case TSqlResourceProfiler::ESqlCounterOsCallDetails:
216 err = sqlite3SymbianProfilerStop(KCounterType);
218 case TSqlResourceProfiler::ESqlCounterIpc:
219 TheSqlSrvProfilerIpcEnabled = EFalse;
221 case TSqlResourceProfiler::ESqlCounterMemory:
222 err = sqlite3SymbianProfilerStop(KCounterType);
224 case TSqlResourceProfiler::ESqlCounterMaxAlloc:
225 TheSqlSrvProfilerMaxAllocEnabled = EFalse;
226 err = sqlite3SymbianProfilerStop(KCounterType);
228 case TSqlResourceProfiler::ESqlCounterTrace:
229 TheSqlSrvProfilerTraceEnabled = EFalse;
230 TheSqlSrvProfilerSqlTraceEnabled = EFalse;
231 TheSqlSrvProfilerTraceLevel = 0;
232 TheSqlSrvProfilerHandle = 0;
235 err = KErrNotSupported;
238 __SQLLEAVE_IF_ERROR2(err);
242 Resets the specified profiling counter.
244 @leave KErrNotSupported, The requested profiling type is not supported;
245 The function may also leave with some other system-wide error codes.
247 Usage of the IPC call arguments:
248 - Arg 0: [in] profiling counter type, one of the TSqlResourceProfiler::TSqlCounter enum item values.
250 void TSqlSrvResourceProfiler::ResetL(const RMessage2& aMessage)
252 const TSqlResourceProfiler::TSqlCounter KCounterType = static_cast <TSqlResourceProfiler::TSqlCounter> (aMessage.Int0());
256 case TSqlResourceProfiler::ESqlCounterFileIO:
257 case TSqlResourceProfiler::ESqlCounterOsCall:
258 case TSqlResourceProfiler::ESqlCounterOsCallTime:
259 case TSqlResourceProfiler::ESqlCounterOsCallDetails:
260 err = sqlite3SymbianProfilerReset(KCounterType);
262 case TSqlResourceProfiler::ESqlCounterIpc:
263 Mem::FillZ(TheSqlSrvProfilerIpc, sizeof(TheSqlSrvProfilerIpc));
264 Mem::FillZ(TheSqlSrvProfilerIpcBytes, sizeof(TheSqlSrvProfilerIpcBytes));
266 case TSqlResourceProfiler::ESqlCounterMemory:
267 err = sqlite3SymbianProfilerReset(KCounterType);
269 case TSqlResourceProfiler::ESqlCounterMaxAlloc:
270 TheSqlSrvProfilerMaxAllocSize = 0;
271 err = sqlite3SymbianProfilerReset(KCounterType);
273 case TSqlResourceProfiler::ESqlCounterTrace:
276 err = KErrNotSupported;
279 __SQLLEAVE_IF_ERROR2(err);
283 Retrieves the counter values for the specified profiling counter.
285 @leave KErrNotSupported, The requested profiling type is not supported;
286 The function may also leave with some other system-wide error codes.
288 @see TSqlResourceProfiler
290 Usage of the IPC call arguments:
291 - Arg 0: [in] profiling counter type, one of the TSqlResourceProfiler::TSqlCounter enum item values.
292 - Arg 1: [in] the size of the buffer for the profiling counter values.
293 - Arg 2: [out] the buffer for the profiling counter values.
295 void TSqlSrvResourceProfiler::QueryL(const RMessage2& aMessage)
297 const TSqlResourceProfiler::TSqlCounter KCounterType = static_cast <TSqlResourceProfiler::TSqlCounter> (aMessage.Int0());
298 const TInt KIpcBufLen = 300;
299 TBuf8<KIpcBufLen> ipcBuf;
303 case TSqlResourceProfiler::ESqlCounterFileIO:
304 case TSqlResourceProfiler::ESqlCounterOsCall:
305 case TSqlResourceProfiler::ESqlCounterOsCallTime:
306 case TSqlResourceProfiler::ESqlCounterOsCallDetails:
307 err = sqlite3SymbianProfilerQuery(KCounterType, ipcBuf);
309 case TSqlResourceProfiler::ESqlCounterIpc:
310 ipcBuf.AppendNum(TheSqlSrvProfilerIpc[ESqlIpcRq]);
311 ipcBuf.Append(TChar(';'));
312 ipcBuf.AppendNum(TheSqlSrvProfilerIpc[ESqlIpcRead]);
313 ipcBuf.Append(TChar(';'));
314 ipcBuf.AppendNum(TheSqlSrvProfilerIpc[ESqlIpcWrite]);
315 ipcBuf.Append(TChar(';'));
316 ipcBuf.AppendNum(TheSqlSrvProfilerIpcBytes[ESqlIpcRead]);
317 ipcBuf.Append(TChar(';'));
318 ipcBuf.AppendNum(TheSqlSrvProfilerIpcBytes[ESqlIpcWrite]);
319 ipcBuf.Append(TChar(';'));
321 case TSqlResourceProfiler::ESqlCounterMemory:
323 TInt totalAllocCells = 0;
324 TInt totalAllocSize = 0;
325 TInt totalFreeSpace = 0;
326 TInt biggestBlockSize = 0;
327 RHeap& heap = User::Heap();;
328 totalAllocCells = heap.AllocSize(totalAllocSize);
329 totalFreeSpace = heap.Available(biggestBlockSize);
330 ipcBuf.AppendNum(totalAllocCells);
331 ipcBuf.Append(TChar(';'));
332 ipcBuf.AppendNum(totalAllocSize);
333 ipcBuf.Append(TChar(';'));
334 ipcBuf.AppendNum(totalFreeSpace);
335 ipcBuf.Append(TChar(';'));
336 ipcBuf.AppendNum(biggestBlockSize);
337 ipcBuf.Append(TChar(';'));
338 err = sqlite3SymbianProfilerQuery(KCounterType, ipcBuf);
341 case TSqlResourceProfiler::ESqlCounterMaxAlloc:
342 ipcBuf.AppendNum(TheSqlSrvProfilerMaxAllocSize);
343 ipcBuf.Append(TChar(';'));
344 err = sqlite3SymbianProfilerQuery(KCounterType, ipcBuf);
346 case TSqlResourceProfiler::ESqlCounterTrace:
349 err = KErrNotSupported;
352 __SQLLEAVE_IF_ERROR2(err);
353 aMessage.WriteL(2, ipcBuf);
356 ////////////////////////// IPC tracing related ////////////////////////////////////////
358 //Max trace line length
359 const TInt KSqlTraceMaxLength = 220;
361 static TBuf<KSqlTraceMaxLength> TheSqlTraceBuf;
363 //IPC calls names - begin
364 _LIT(KSqlSrvDbCreate, "DbCreate");
365 _LIT(KSqlSrvDbCreateSecure, "DbCreateSecure");
366 _LIT(KSqlSrvDbOpen, "DbOpen");
367 _LIT(KSqlSrvDbOpenFromHandle, "DbOpenFromHandle");
368 _LIT(KSqlSrvDbClose, "DbClose");
369 _LIT(KSqlSrvDbCopy, "DbCopy");
370 _LIT(KSqlSrvDbDelete, "DbDelete");
371 _LIT(KSqlSrvLastErrorMsg, "LastErrorMsg");
372 _LIT(KSqlSrvDbExec8, "DbExec8");
373 _LIT(KSqlSrvDbExec16, "DbExec16");
374 _LIT(KSqlSrvDbSetIsolationLevel, "DbSetIsolationLevel");
375 _LIT(KSqlSrvDbGetSecurityPolicy, "DbGetSecurityPolicy");
376 _LIT(KSqlSrvDbAttach, "DbAttach");
377 _LIT(KSqlSrvDbAttachFromHandle, "DbAttachFromHandle");
378 _LIT(KSqlSrvDbDetach, "DbDetach");
379 _LIT(KSqlSrvDbScalarFullSelect8, "DbScalarFullSelect8");
380 _LIT(KSqlSrvDbScalarFullSelect16, "DbScalarFullSelect16");
381 _LIT(KSqlSrvDbInTransaction, "DbInTransaction");
382 _LIT(KSqlSrvDbSize, "DbSize");
383 _LIT(KSqlSrvDbSize2, "DbSize2");
384 _LIT(KSqlSrvDbBlobSource, "DbBlobSource");
385 _LIT(KSqlSrvDbLastInsertedRowId, "DbLastInsertedRowId");
386 _LIT(KSqlSrvDbCompact, "DbCompact");
387 _LIT(KSqlSrvDbReserveDriveSpace, "DbReserveDriveSpace");
388 _LIT(KSqlSrvDbFreeReservedSpace, "DbFreeReservedSpace");
389 _LIT(KSqlSrvDbGetReserveAccess, "DbGetReserveAccess");
390 _LIT(KSqlSrvDbReleaseReserveAccess, "DbReleaseReserveAccess");
391 _LIT(KSqlSrvStmtPrepare8, "StmtPrepare8");
392 _LIT(KSqlSrvStmtPrepare16, "StmtPrepare16");
393 _LIT(KSqlSrvStmtClose, "StmtClose");
394 _LIT(KSqlSrvStmtReset, "StmtReset");
395 _LIT(KSqlSrvStmtExec, "StmtExec");
396 _LIT(KSqlSrvStmtAsyncExec, "StmtAsyncExec");
397 _LIT(KSqlSrvStmtBindExec, "StmtBindExec");
398 _LIT(KSqlSrvStmtAsyncBindExec, "StmtAsyncBindExec");
399 _LIT(KSqlSrvStmtNext, "StmtNext");
400 _LIT(KSqlSrvStmtBindNext, "StmtBindNext");
401 _LIT(KSqlSrvStmtColumnNames, "StmtColumnNames");
402 _LIT(KSqlSrvStmtParamNames, "StmtParamNames");
403 _LIT(KSqlSrvStmtColumnSource, "StmtColumnSource");
404 _LIT(KSqlSrvStmtBinParamSink, "StmtBinParamSink");
405 _LIT(KSqlSrvStmtTxtParamSink16, "StmtTxtParamSink16");
406 _LIT(KSqlSrvStmtBufFlat, "StmtBufFlat");
407 _LIT(KSqlSrvStmtColumnValue, "StmtColumnValue");
408 _LIT(KSqlSrvStmtDeclColumnTypes, "StmtDeclColumnTypes");
409 _LIT(KSqlSrvStreamRead, "StreamRead");
410 _LIT(KSqlSrvStreamWrite, "StreamWrite");
411 _LIT(KSqlSrvStreamSize, "StreamSize");
412 _LIT(KSqlSrvStreamSynch, "StreamSynch");
413 _LIT(KSqlSrvStreamClose, "StreamClose");
414 //IPC calls names - end
416 //Gets as an argument the IPC call type in "aCode" parameter.
418 // 0 or positive integer: the IPC call is one of the 10 most important IPC calls (trace level 0).
419 // KErrNotFound : the IPC call is some of the other possible call types (trace level 1).
420 // KErrNotSupported : unknown IPC call type.
422 // aIpcCallName will always be set to IPC call name descriptor.
423 static TInt SqlIpcTraceIdxAndName(TSqlSrvFunction aCode, TPtrC& aIpcCallName)
425 TInt rc = KErrNotFound;
428 case ESqlSrvDbCreate:
429 aIpcCallName.Set(KSqlSrvDbCreate);
431 case ESqlSrvDbCreateSecure:
432 aIpcCallName.Set(KSqlSrvDbCreateSecure);
435 aIpcCallName.Set(KSqlSrvDbOpen);
437 case ESqlSrvDbOpenFromHandle:
438 aIpcCallName.Set(KSqlSrvDbOpenFromHandle);
441 aIpcCallName.Set(KSqlSrvDbClose);
444 aIpcCallName.Set(KSqlSrvDbCopy);
446 case ESqlSrvDbDelete:
447 aIpcCallName.Set(KSqlSrvDbDelete);
449 case ESqlSrvLastErrorMsg:
450 aIpcCallName.Set(KSqlSrvLastErrorMsg);
453 aIpcCallName.Set(KSqlSrvDbExec8);
456 case ESqlSrvDbExec16:
457 aIpcCallName.Set(KSqlSrvDbExec16);
460 case ESqlSrvDbSetIsolationLevel:
461 aIpcCallName.Set(KSqlSrvDbSetIsolationLevel);
463 case ESqlSrvDbGetSecurityPolicy:
464 aIpcCallName.Set(KSqlSrvDbGetSecurityPolicy);
466 case ESqlSrvDbAttach:
467 aIpcCallName.Set(KSqlSrvDbAttach);
469 case ESqlSrvDbAttachFromHandle:
470 aIpcCallName.Set(KSqlSrvDbAttachFromHandle);
472 case ESqlSrvDbDetach:
473 aIpcCallName.Set(KSqlSrvDbDetach);
475 case ESqlSrvDbScalarFullSelect8:
476 aIpcCallName.Set(KSqlSrvDbScalarFullSelect8);
479 case ESqlSrvDbScalarFullSelect16:
480 aIpcCallName.Set(KSqlSrvDbScalarFullSelect16);
483 case ESqlSrvDbInTransaction:
484 aIpcCallName.Set(KSqlSrvDbInTransaction);
487 aIpcCallName.Set(KSqlSrvDbSize);
490 aIpcCallName.Set(KSqlSrvDbSize2);
492 case ESqlSrvDbBlobSource:
493 aIpcCallName.Set(KSqlSrvDbBlobSource);
495 case ESqlSrvDbLastInsertedRowId:
496 aIpcCallName.Set(KSqlSrvDbLastInsertedRowId);
498 case ESqlSrvDbCompact:
499 aIpcCallName.Set(KSqlSrvDbCompact);
501 case ESqlSrvDbReserveDriveSpace:
502 aIpcCallName.Set(KSqlSrvDbReserveDriveSpace);
504 case ESqlSrvDbFreeReservedSpace:
505 aIpcCallName.Set(KSqlSrvDbFreeReservedSpace);
507 case ESqlSrvDbGetReserveAccess:
508 aIpcCallName.Set(KSqlSrvDbGetReserveAccess);
510 case ESqlSrvDbReleaseReserveAccess:
511 aIpcCallName.Set(KSqlSrvDbReleaseReserveAccess);
513 case ESqlSrvStmtPrepare8:
514 aIpcCallName.Set(KSqlSrvStmtPrepare8);
516 case ESqlSrvStmtPrepare16:
517 aIpcCallName.Set(KSqlSrvStmtPrepare16);
519 case ESqlSrvStmtClose:
520 aIpcCallName.Set(KSqlSrvStmtClose);
522 case ESqlSrvStmtReset:
523 aIpcCallName.Set(KSqlSrvStmtReset);
525 case ESqlSrvStmtExec:
526 aIpcCallName.Set(KSqlSrvStmtExec);
529 case ESqlSrvStmtAsyncExec:
530 aIpcCallName.Set(KSqlSrvStmtAsyncExec);
533 case ESqlSrvStmtBindExec:
534 aIpcCallName.Set(KSqlSrvStmtBindExec);
537 case ESqlSrvStmtAsyncBindExec:
538 aIpcCallName.Set(KSqlSrvStmtAsyncBindExec);
541 case ESqlSrvStmtNext:
542 aIpcCallName.Set(KSqlSrvStmtNext);
545 case ESqlSrvStmtBindNext:
546 aIpcCallName.Set(KSqlSrvStmtBindNext);
549 case ESqlSrvStmtColumnNames:
550 aIpcCallName.Set(KSqlSrvStmtColumnNames);
552 case ESqlSrvStmtParamNames:
553 aIpcCallName.Set(KSqlSrvStmtParamNames);
555 case ESqlSrvStmtColumnSource:
556 aIpcCallName.Set(KSqlSrvStmtColumnSource);
558 case ESqlSrvStmtBinParamSink:
559 aIpcCallName.Set(KSqlSrvStmtBinParamSink);
561 case ESqlSrvStmtTxtParamSink16:
562 aIpcCallName.Set(KSqlSrvStmtTxtParamSink16);
564 case ESqlSrvStmtBufFlat:
565 aIpcCallName.Set(KSqlSrvStmtBufFlat);
567 case ESqlSrvStmtColumnValue:
568 aIpcCallName.Set(KSqlSrvStmtColumnValue);
570 case ESqlSrvStmtDeclColumnTypes:
571 aIpcCallName.Set(KSqlSrvStmtDeclColumnTypes);
573 case ESqlSrvStreamRead:
574 aIpcCallName.Set(KSqlSrvStreamRead);
576 case ESqlSrvStreamWrite:
577 aIpcCallName.Set(KSqlSrvStreamWrite);
579 case ESqlSrvStreamSize:
580 aIpcCallName.Set(KSqlSrvStreamSize);
582 case ESqlSrvStreamSynch:
583 aIpcCallName.Set(KSqlSrvStreamSynch);
585 case ESqlSrvStreamClose:
586 aIpcCallName.Set(KSqlSrvStreamClose);
589 return KErrNotSupported;
591 __ASSERT_DEBUG((TUint)rc < KIpcTraceTypeCount || rc == KErrNotFound, __SQLPANIC2(ESqlPanicInternalError));
595 //Calculates and returns the time difference between aStartTicks and aEndTicks in microseconds.
596 static TInt SqlConvertTicks2Us(TUint32 aStartTicks, TUint32 aEndTicks)
598 static TInt freq = 0;
601 TInt err = HAL::Get(HAL::EFastCounterFrequency, freq);
604 __SQLPANIC2((TSqlPanic)err);
607 TInt64 diffTicks = (TInt64)aEndTicks - (TInt64)aStartTicks;
610 diffTicks = KMaxTUint32 + diffTicks + 1;
612 const TInt KMicroSecIn1Sec = 1000000;
613 TInt32 us = (diffTicks * KMicroSecIn1Sec) / freq;
617 //Calculates the time since the first time this function has been called.
618 static TInt64 SqlTimeFromStartUs()
624 iTime.UniversalTime();
628 static TStartTime startTime;
630 time.UniversalTime();
631 TTimeIntervalMicroSeconds us = time.MicroSecondsFrom(startTime.iTime);
632 const TInt64 KMaxDiff = 999999999999LL;//999999999999 is the max number that can be printed out using %12ld format spec
633 if(us.Int64() < 0 || us.Int64() >= KMaxDiff)
635 startTime.iTime = time;
642 //Tracing data buffer
643 const TInt KSqlSrvProfilePrnBufSize = 300;
644 static TBuf<KSqlSrvProfilePrnBufSize> TheSqlSrvProfileTraceBuf;
645 static TBuf8<KSqlSrvProfilePrnBufSize> TheSqlSrvProfileTraceBuf8;
647 static RFs TheSqlSrvTraceFs;
648 static RFile TheTheSqlSrvTraceFile;
649 _LIT(KSqlSrvTraceFileName, "C:\\SQLTRACE");
651 //Prints out a time stamp
652 static void SqlSrvProfileTimePrintf()
654 static TInt64 prevTimeDiff = 0;;
655 TInt64 timeDiff = SqlTimeFromStartUs();
656 const TInt64 KTimeInterval = 1000000;
657 if((timeDiff - prevTimeDiff) >= KTimeInterval || timeDiff < prevTimeDiff)
659 prevTimeDiff = timeDiff;
661 time.UniversalTime();
662 TDateTime dt = time.DateTime();
663 TheSqlSrvProfileTraceBuf8.Format(_L8("[SQL]¬\"%X\"¬¬TME¬¬¬¬¬¬¬¬¬¬¬¬%02d:%02d:%02d:%06d¬Prep8¬%d¬Prep16¬%d¬Ex8¬%d¬Ex16¬%d"),
664 timeDiff, dt.Hour(), dt.Minute(), dt.Second(), dt.MicroSecond(),
665 TheSqlSrvProfilerPreparedCnt8, TheSqlSrvProfilerPreparedCnt16,
666 TheSqlSrvProfilerExecutedCnt8, TheSqlSrvProfilerExecutedCnt16);
667 if(TheSqlSrvProfilerTraceToFile)
669 TheSqlSrvProfileTraceBuf8.Append(_L8("\r\n"));
670 (void)TheTheSqlSrvTraceFile.Write(TheSqlSrvProfileTraceBuf8);
674 TheSqlSrvProfileTraceBuf8.Append(_L8("\n"));
675 RDebug::RawPrint(TheSqlSrvProfileTraceBuf8);
681 enum TSqlSrvProfilerTraceType
683 ESqlSrvProfilerNonSqlTrace,
684 ESqlSrvProfilerMiddleLineSqlTrace,
685 ESqlSrvProfilerLastLineSqlTrace
688 //Prints out the data that is in TheSqlSrvProfileTraceBuf.
689 // aType = ESqlSrvProfilerNonSqlTrace - non-SQL trace
690 // aType = ESqlSrvProfilerMiddleLineSqlTrace - not last line of an SQL trace
691 // aType = ESqlSrvProfilerLastLineSqlTrace - last line of an SQL trace
692 static void SqlSrvProfilePrintf(TSqlSrvProfilerTraceType aType)
694 SqlSrvProfileTimePrintf();
695 TheSqlSrvProfileTraceBuf8.Copy(TheSqlSrvProfileTraceBuf);
696 if(TheSqlSrvProfilerTraceToFile)
698 if(aType == 0 || aType == 2)
700 TheSqlSrvProfileTraceBuf8.Append(_L8("\r\n"));
702 (void)TheTheSqlSrvTraceFile.Write(TheSqlSrvProfileTraceBuf8);
706 TheSqlSrvProfileTraceBuf8.Append(_L8("\n"));
707 RDebug::RawPrint(TheSqlSrvProfileTraceBuf8);
711 //Called at the beginning of CSqlSrvSession::ServiceL().
712 void SqlIpcStart(TUint& aIpcCounter, TUint32& aStartTicks, TUint aDbHandle)
714 if(TheSqlSrvProfilerTraceEnabled)
716 TheSqlSrvProfilerFileRead = TheSqlSrvProfilerFileWrite = TheSqlSrvProfilerFileSync = TheSqlSrvProfilerFileSetSize = 0;
717 if(TheSqlSrvProfilerTraceLevel == 0)
721 if(KSqlSrvProfilerDbName().Length() > 0 && (aDbHandle == 0 || TheSqlSrvProfilerHandle != aDbHandle))
726 aStartTicks = User::FastCounter();
730 //Called at the end of CSqlSrvSession::ServiceL().
731 void SqlIpcEnd(TUint aIpcCounter, TUint32 aStartTicks, TSqlSrvFunction aFuncCode,
732 TUint aDbHandle, TSqlSrvIpcTraceData aIpcTraceData[], TInt aRetCode)
734 if(TheSqlSrvProfilerTraceEnabled)
736 if(TheSqlSrvProfilerTraceLevel == 0)
740 if(KSqlSrvProfilerDbName().Length() > 0 && (aDbHandle == 0 || TheSqlSrvProfilerHandle != aDbHandle))
744 TUint32 endTicks = User::FastCounter();
745 TInt executionTime = SqlConvertTicks2Us(aStartTicks, endTicks);
747 TInt ipcCallIdx = SqlIpcTraceIdxAndName(aFuncCode, ipcCallName);
748 TInt64 timeFromStart = SqlTimeFromStartUs();
749 TInt64 ttlExecTime = 0;
753 aIpcTraceData[ipcCallIdx].iExecutionTime += executionTime;
754 ttlExecTime = aIpcTraceData[ipcCallIdx].iExecutionTime;
755 count = ++aIpcTraceData[ipcCallIdx].iCount;
757 if(ipcCallIdx >= 0 || (ipcCallIdx == KErrNotFound && TheSqlSrvProfilerTraceLevel == 2))
759 TheSqlSrvProfileTraceBuf.Format(_L("[SQL]¬\"%X\"¬%ld¬IPC¬%u¬%S¬%ld¬%d¬%d¬%d¬%d¬%d¬%d¬rc¬%d"),
761 aDbHandle, //Database handle
762 timeFromStart, //Time from start, microseconds
764 aIpcCounter, //IPC sequence counter for this database (connection)
765 &ipcCallName, //IPC call name
766 ttlExecTime, //All time spent in this IPC call type for this database (connection)
767 executionTime, //This IPC call execution time
768 count, //This IPC call sequence counter for this database (connection)
769 TheSqlSrvProfilerFileRead, //File read count, performed during this IPC
770 TheSqlSrvProfilerFileWrite, //File write count, performed during this IPC
771 TheSqlSrvProfilerFileSync, //File flush count, performed during this IPC
772 TheSqlSrvProfilerFileSetSize, //File set size count, performed during this IPC
773 aRetCode); //IPC call - return code
774 SqlSrvProfilePrintf(ESqlSrvProfilerNonSqlTrace);
779 //Called at the end of CSqlSrvSession::ServiceError().
780 void SqlIpcError(TUint aIpcCounter, TSqlSrvFunction aFuncCode, TUint aDbHandle, TInt aError)
782 if(TheSqlSrvProfilerTraceEnabled)
784 if(KSqlSrvProfilerDbName().Length() > 0 && (aDbHandle == 0 || TheSqlSrvProfilerHandle != aDbHandle))
789 (void)SqlIpcTraceIdxAndName(aFuncCode, ipcCallName);
790 TInt64 timeFromStart = SqlTimeFromStartUs();
791 TheSqlSrvProfileTraceBuf.Format(_L("[SQL]¬\"%X\"¬%ld¬ERR¬%u¬%S¬¬¬¬¬¬¬¬err¬%d"),
793 aDbHandle, //Database (connection) handle
794 timeFromStart, //Time from start, microseconds
796 aIpcCounter, //IPC sequence counter for this database (connection)
797 &ipcCallName, //IPC call name
798 aError); //IPC call - return code
799 SqlSrvProfilePrintf(ESqlSrvProfilerNonSqlTrace);
803 //Prints the passed as a parameter 16-bit SQL statement.
804 void SqlPrintSql16(TUint aDbHandle, const TDesC& aSql, TBool aPrepare)
806 if(!TheSqlSrvProfilerTraceEnabled || !TheSqlSrvProfilerSqlTraceEnabled)
810 if(KSqlSrvProfilerDbName().Length() > 0 && (aDbHandle == 0 || TheSqlSrvProfilerHandle != aDbHandle))
815 aPrepare ? ++TheSqlSrvProfilerPreparedCnt16 : ++TheSqlSrvProfilerExecutedCnt16;
817 TInt64 timeFromStart = SqlTimeFromStartUs();
818 TPtr line((TUint16*)TheSqlTraceBuf.Ptr(), 0, TheSqlTraceBuf.MaxLength());
819 TInt len = aSql.Length();
823 _LIT(KPrepare, "Prepare16");
824 _LIT(KExec, "Exec16");
828 line.Format(_L("[SQL]¬\"%X\"¬%ld¬SQL¬¬%S¬¬¬¬¬¬¬¬¬¬"), aDbHandle, timeFromStart, aPrepare ? &KPrepare : &KExec);
832 if(!TheSqlSrvProfilerTraceToFile)
834 line.Format(_L("[SQL]¬\"%X\"¬%ld¬SQL¬¬%S¬¬¬¬¬¬¬¬¬¬"), aDbHandle, timeFromStart, &KEmptyStr);
837 TInt l = Min(len, (line.MaxLength() - line.Length()));
838 TPtrC ptr(aSql.Ptr() + pos, l);
842 TheSqlSrvProfileTraceBuf.Format(_L("%S"), &line);
843 SqlSrvProfilePrintf(len > 0 ? ESqlSrvProfilerMiddleLineSqlTrace : ESqlSrvProfilerLastLineSqlTrace);
848 //Prints the passed as a parameter 8-bit SQL statement.
849 void SqlPrintSql8(TUint aDbHandle, const TDesC8& aSql, TBool aPrepare)
851 if(!TheSqlSrvProfilerTraceEnabled || !TheSqlSrvProfilerSqlTraceEnabled)
855 if(KSqlSrvProfilerDbName().Length() > 0 && (aDbHandle == 0 || TheSqlSrvProfilerHandle != aDbHandle))
860 aPrepare ? ++TheSqlSrvProfilerPreparedCnt8 : ++TheSqlSrvProfilerExecutedCnt8;
862 TInt64 timeFromStart = SqlTimeFromStartUs();
863 TPtr line((TUint16*)TheSqlTraceBuf.Ptr(), 0, TheSqlTraceBuf.MaxLength());
864 TInt len = aSql.Length();
868 _LIT(KPrepare, "Prepare8");
869 _LIT(KExec, "Exec8");
873 line.Format(_L("[SQL]¬\"%X\"¬%ld¬SQL¬¬%S¬¬¬¬¬¬¬¬¬¬"), aDbHandle, timeFromStart, aPrepare ? &KPrepare : &KExec);
877 if(!TheSqlSrvProfilerTraceToFile)
879 line.Format(_L("[SQL]¬\"%X\"¬%ld¬SQL¬¬%S¬¬¬¬¬¬¬¬¬¬"), aDbHandle, timeFromStart, &KEmptyStr);
882 TInt l = Min(len, (line.MaxLength() - line.Length()));
883 TPtrC8 ptr(aSql.Ptr() + pos, l);
886 TPtr p2((TUint16*)line.Ptr() + line.Length(), 0, l);
888 line.SetLength(line.Length() + p2.Length());
889 TheSqlSrvProfileTraceBuf.Format(_L("%S"), &line);
890 SqlSrvProfilePrintf(len > 0 ? ESqlSrvProfilerMiddleLineSqlTrace : ESqlSrvProfilerLastLineSqlTrace);
895 //Prints the name of the just created database.
896 void SqlPrintDbCreate(TUint aDbHandle, const TDesC& aDbName)
898 if(TheSqlSrvProfilerTraceEnabled)
900 if(KSqlSrvProfilerDbName().Length() > 0 && aDbName.FindF(KSqlSrvProfilerDbName) >= 0)
902 TheSqlSrvProfilerHandle = aDbHandle;
904 if(KSqlSrvProfilerDbName().Length() > 0 && (aDbHandle == 0 || TheSqlSrvProfilerHandle != aDbHandle))
908 TInt64 timeFromStart = SqlTimeFromStartUs();
909 TheSqlSrvProfileTraceBuf.Format(_L("[SQL]¬\"%X\"¬%ld¬CRE¬¬¬¬¬¬¬¬¬¬¬¬%S"),
913 SqlSrvProfilePrintf(ESqlSrvProfilerNonSqlTrace);
917 //Prints the name of the just opened database.
918 void SqlPrintDbOpen(TUint aDbHandle, const TDesC& aDbName)
920 if(TheSqlSrvProfilerTraceEnabled)
922 if(KSqlSrvProfilerDbName().Length() > 0 && aDbName.FindF(KSqlSrvProfilerDbName) >= 0)
924 TheSqlSrvProfilerHandle = aDbHandle;
926 if(KSqlSrvProfilerDbName().Length() > 0 && (aDbHandle == 0 || TheSqlSrvProfilerHandle != aDbHandle))
930 TInt64 timeFromStart = SqlTimeFromStartUs();
931 TheSqlSrvProfileTraceBuf.Format(_L("[SQL]¬\"%X\"¬%ld¬OPN¬¬¬¬¬¬¬¬¬¬¬¬%S"),
935 SqlSrvProfilePrintf(ESqlSrvProfilerNonSqlTrace);
939 //Prints the handle of the just closed database.
940 void SqlPrintDbClose(TUint aDbHandle)
942 if(TheSqlSrvProfilerTraceEnabled)
944 if(KSqlSrvProfilerDbName().Length() > 0 && (aDbHandle == 0 || TheSqlSrvProfilerHandle != aDbHandle))
948 TInt64 timeFromStart = SqlTimeFromStartUs();
949 TheSqlSrvProfileTraceBuf.Format(_L("[SQL]¬\"%X\"¬%ld¬CSE"),
952 SqlSrvProfilePrintf(ESqlSrvProfilerNonSqlTrace);
953 if(aDbHandle == TheSqlSrvProfilerHandle)
955 TheSqlSrvProfilerHandle = 0;
960 //Prints a trace when the SQL server starts
961 void SqlPrintServerStart()
963 TInt64 timeFromStart = SqlTimeFromStartUs();
964 if(TheSqlSrvProfilerTraceToFile)
966 TInt err = TheSqlSrvTraceFs.Connect();
971 while(++fileNum < 1000 && err != KErrNone)
974 ftrname.Copy(KSqlSrvTraceFileName);
975 ftrname.AppendNum(fileNum);
976 ftrname.Append(_L(".txt"));
977 err = TheTheSqlSrvTraceFile.Create(TheSqlSrvTraceFs, ftrname, EFileRead | EFileWrite);
986 TheSqlSrvTraceFs.Close();
987 TheSqlSrvProfilerTraceToFile = EFalse;
988 RDebug::Print(_L("SQL trace file creation failed with err=%d"), err);
991 TheSqlSrvProfileTraceBuf.Format(_L("[SQL]¬¬%ld¬SRV¬¬Start"), timeFromStart);
992 SqlSrvProfilePrintf(ESqlSrvProfilerNonSqlTrace);
995 //Prints a trace when the SQL server stops
996 void SqlPrintServerStop()
998 TInt64 timeFromStart = SqlTimeFromStartUs();
999 TheSqlSrvProfileTraceBuf.Format(_L("[SQL]¬¬%ld¬SRV¬¬Stop"), timeFromStart);
1000 SqlSrvProfilePrintf(ESqlSrvProfilerNonSqlTrace);
1001 if(TheSqlSrvProfilerTraceToFile)
1003 TheTheSqlSrvTraceFile.Close();
1004 TheSqlSrvTraceFs.Close();
1008 #else //_SQLPROFILER
1010 void TSqlSrvResourceProfiler::StartL(const RMessage2&)
1012 __SQLLEAVE2(KErrNotSupported);
1015 void TSqlSrvResourceProfiler::StopL(const RMessage2&)
1017 __SQLLEAVE2(KErrNotSupported);
1020 void TSqlSrvResourceProfiler::ResetL(const RMessage2&)
1022 __SQLLEAVE2(KErrNotSupported);
1025 void TSqlSrvResourceProfiler::QueryL(const RMessage2&)
1027 __SQLLEAVE2(KErrNotSupported);
1030 #endif//_SQLPROFILER