sl@0: // Copyright (c) 2008-2009 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: // Symbian SQL Resource Profiler header file sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @internalComponent sl@0: */ sl@0: #ifndef __SQLRESOURCEPROFILER_H__ sl@0: #define __SQLRESOURCEPROFILER_H__ sl@0: sl@0: #include sl@0: sl@0: /** sl@0: Symbian SQL profiling interface. sl@0: TSqlResourceProfiler class is used for: sl@0: sl@0: @code sl@0: sl@0: - Retrieving the current state of the SQL server heap and SQLite heap stats. sl@0: Example: sl@0: RSqlDatabase db; sl@0: //initialize the db object.... sl@0: ... sl@0: TSqlResourceProfiler profiler(db); sl@0: profiler.Start(TSqlResourceProfiler::ESqlCounterMemory);//Start the profiling sl@0: profiler.Reset(TSqlResourceProfiler::ESqlCounterMemory);//Zero the porfiling counters sl@0: .... sl@0: profiler.Stop(TSqlResourceProfiler::ESqlCounterMemory); //Stop the profiling sl@0: TBuf8<128> res; sl@0: profiler.Query(TSqlResourceProfiler::ESqlCounterMemory, res); sl@0: The format of the retrieved counters is: sl@0: ";;;; sl@0: ;;; sl@0: ;; sl@0: ;;;"; sl@0: This service can be used only if the SQL code is compiled with the _SQLPROFILER macro. sl@0: sl@0: - Retrieving the size of the biggest memory block ever allocated by the Symbian SQL server and SQLite. sl@0: Example: sl@0: RSqlDatabase db; sl@0: //initialize the db object.... sl@0: ... sl@0: TSqlResourceProfiler profiler(db); sl@0: ..... sl@0: profiler.Start(TSqlResourceProfiler::ESqlCounterMaxAlloc);//Start the profiling sl@0: ..... sl@0: TBuf8<32> res; sl@0: profiler.Query(TSqlResourceProfiler::ESqlCounterMaxAlloc, res); sl@0: ... sl@0: profiler.Reset(TSqlResourceProfiler::ESqlCounterMaxAlloc);//Reset the profiling sl@0: .... sl@0: profiler.Stop(TSqlResourceProfiler::ESqlCounterMaxAlloc); sl@0: The format of the retrieved counters is: sl@0: ";"; sl@0: This service can be used only if the SQL code is compiled with the _SQLPROFILER macro. sl@0: sl@0: - Retrieving the number of the file system calls made by the OS porting layer and the amount of written/read data. sl@0: Example: sl@0: RSqlDatabase db; sl@0: //initialize the db object.... sl@0: ... sl@0: TSqlResourceProfiler profiler(db); sl@0: ..... sl@0: profiler.Start(TSqlResourceProfiler::ESqlCounterFileIO);//Start the profiling sl@0: ..... sl@0: TBuf8<300> res; sl@0: profiler.Query(TSqlResourceProfiler::ESqlCounterFileIO, res); sl@0: ..... sl@0: profiler.Reset(TSqlResourceProfiler::ESqlCounterFileIO);//Reset the profiling sl@0: .... sl@0: profiler.Stop(TSqlResourceProfiler::ESqlCounterFileIO); sl@0: The format of the retrieved data is: sl@0: ";;;; sl@0: ;;;;; sl@0: ;;;; sl@0: ;;;; sl@0: ;;;;<0>; sl@0: ;;" sl@0: Note that currently the file operations are buffered, so the retrieved results will be about the operations executed on a sl@0: RFileBuf64 objects. sl@0: This service can be used only if the SQL code is compiled with the _SQLPROFILER macro. sl@0: sl@0: - Retrieving information regading the current SQL/SQLite configuration. sl@0: Example: sl@0: RSqlDatabase db; sl@0: //initialize the db object.... sl@0: ... sl@0: TSqlResourceProfiler profiler(db); sl@0: TBuf8<128> res; sl@0: profiler.Query(TSqlResourceProfiler::ESqlCounterConfig, res); sl@0: The format of the retrieved numbers is: sl@0: ";;;;"; sl@0: sl@0: - Retrieving the number of the OS porting layer calls made by SQLite. sl@0: Example: sl@0: RSqlDatabase db; sl@0: //initialize the db object.... sl@0: ... sl@0: TSqlResourceProfiler profiler(db); sl@0: ..... sl@0: profiler.Start(TSqlResourceProfiler::ESqlCounterOsCall);//Start the profiling sl@0: ..... sl@0: TBuf8<300> res; sl@0: profiler.Query(TSqlResourceProfiler::ESqlCounterOsCall, res); sl@0: ..... sl@0: profiler.Reset(TSqlResourceProfiler::ESqlCounterOsCall);//Reset the profiling sl@0: .... sl@0: profiler.Stop(TSqlResourceProfiler::ESqlCounterOsCall); sl@0: The format of the retrieved data is: sl@0: ";;;; sl@0: ;;;;; sl@0: ;;;; sl@0: ;;;; sl@0: ;;;" sl@0: This service can be used only if the SQL code is compiled with the _SQLPROFILER macro. sl@0: sl@0: - Retrieving the OS porting layer call times in microseconds per call type. sl@0: Example: sl@0: RSqlDatabase db; sl@0: //initialize the db object.... sl@0: ... sl@0: TSqlResourceProfiler profiler(db); sl@0: ..... sl@0: profiler.Start(TSqlResourceProfiler::ESqlCounterOsCallTime);//Start the profiling sl@0: ..... sl@0: TBuf8<300> res; sl@0: profiler.Query(TSqlResourceProfiler::ESqlCounterOsCallTime, res); sl@0: ..... sl@0: profiler.Reset(TSqlResourceProfiler::ESqlCounterOsCallTime);//Reset the profiling sl@0: .... sl@0: profiler.Stop(TSqlResourceProfiler::ESqlCounterOsCallTime); sl@0: The format of the retrieved data is: sl@0: ";;;; sl@0: ;;;;; sl@0: ;;;; sl@0: ;;;; sl@0: ;;;" sl@0: This service can be used only if the SQL code is compiled with the _SQLPROFILER macro. sl@0: sl@0: - Retrieving the OS porting layer call times in microseconds per call type plus adding a log entry sl@0: for each call. The returned information is the same as for the previous profiling type. sl@0: But for each OS porting layer call an entry is added to the log file (epocwind.out). sl@0: The format of the log entry is: sl@0: <'M'/'J'>,<'Call Id'>,<#Counter>,,,,,, sl@0: Note: ESqlCounterOsCallDetails and ESqlCounterOsCallTime profiles cannot be used together. sl@0: sl@0: - Retrieving the number of the IPC calls and IPC read/write operations. sl@0: Example: sl@0: RSqlDatabase db; sl@0: //initialize the db object.... sl@0: ... sl@0: TSqlResourceProfiler profiler(db); sl@0: ..... sl@0: profiler.Start(TSqlResourceProfiler::ESqlCounterIpc);//Start the profiling sl@0: ..... sl@0: TBuf8<300> res; sl@0: profiler.Query(TSqlResourceProfiler::ESqlCounterIpc, res); sl@0: ..... sl@0: profiler.Reset(TSqlResourceProfiler::ESqlCounterIpc);//Reset the profiling sl@0: .... sl@0: profiler.Stop(TSqlResourceProfiler::ESqlCounterIpc); sl@0: The format of the retrieved data is: sl@0: ";;;;; sl@0: This service can be used only if the SQL code is compiled with the _SQLPROFILER macro. sl@0: sl@0: - Tracing the executed SQL statements and IPC calls. sl@0: The folowing tracing configurations can be used (pased as a configuration parameter in TSqlResourceProfiler::Start()): sl@0: - "L0" - [default] tracing level 0. IPC traces disabled; sl@0: - "L1" - tracing level 1. Only the most important IPC calls are traced: sl@0: ESqlSrvDbExec8, ESqlSrvDbExec16, ESqlSrvDbScalarFullSelect16, ESqlSrvStmtExec, sl@0: ESqlSrvStmtAsyncExec, ESqlSrvStmtBindExec, ESqlSrvStmtAsyncBindExec, ESqlSrvStmtNext, sl@0: ESqlSrvStmtBindNext; sl@0: - "L2" - tracing level 2. All IPC calls traced; sl@0: - "S0" - [default] SQL statement tracing is off; sl@0: - "S1" - SQL statement tracing is on; sl@0: Example: sl@0: RSqlDatabase db; sl@0: //initialize the db object.... sl@0: ... sl@0: TSqlResourceProfiler profiler(db); sl@0: ..... sl@0: _LIT8(KConfig, ""); sl@0: profiler.Start(TSqlResourceProfiler::ESqlCounterTrace, &KConfig);//Start the profiling sl@0: ..... sl@0: profiler.Stop(TSqlResourceProfiler::ESqlCounterTrace); sl@0: The format of the traces is: sl@0: - SQL statement trace: sl@0: ¬¬SQL¬Prepare/Exec¬ sl@0: - "Database create" trace: sl@0: ¬¬CRE¬ sl@0: - "Database open" trace: sl@0: ¬¬OPN¬ sl@0: - "Database close" trace: sl@0: ¬¬CSE sl@0: - "IPC call error" trace: sl@0: ¬¬ERR¬¬¬err= sl@0: - "IPC call level 1 or level 2" trace: sl@0: ¬¬IPC¬¬¬¬¬¬..¬rc= sl@0: This service can be used only if the SQL code is compiled with the _SQLPROFILER macro. sl@0: @endcode sl@0: sl@0: @internalComponent sl@0: */ sl@0: class TSqlResourceProfiler sl@0: { sl@0: public: sl@0: enum TSqlCounter sl@0: { sl@0: ESqlCounterFileIO, sl@0: ESqlCounterOsCall, sl@0: ESqlCounterOsCallTime, sl@0: ESqlCounterOsCallDetails, sl@0: ESqlCounterIpc, sl@0: ESqlCounterMemory, sl@0: ESqlCounterMaxAlloc, sl@0: ESqlCounterConfig, sl@0: ESqlCounterTrace sl@0: }; sl@0: IMPORT_C TSqlResourceProfiler(RSqlDatabase& aDatabase); sl@0: IMPORT_C TInt Start(TSqlCounter aCounterType, const TDesC8* aParam = NULL); sl@0: IMPORT_C TInt Stop(TSqlCounter aCounterType); sl@0: IMPORT_C TInt Reset(TSqlCounter aCounterType); sl@0: IMPORT_C TInt Query(TSqlCounter aCounterType, TDes8& aResult); sl@0: sl@0: private: sl@0: RSqlDatabase iDatabase; sl@0: sl@0: }; sl@0: sl@0: #endif //__SQLRESOURCEPROFILER_H__