os/persistentdata/persistentstorage/sql/INC/SqlResourceProfiler.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2008-2009 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
// Symbian SQL Resource Profiler header file
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @internalComponent
sl@0
    21
*/
sl@0
    22
#ifndef __SQLRESOURCEPROFILER_H__
sl@0
    23
#define __SQLRESOURCEPROFILER_H__
sl@0
    24
sl@0
    25
#include <sqldb.h>
sl@0
    26
sl@0
    27
/**
sl@0
    28
Symbian SQL profiling interface.
sl@0
    29
TSqlResourceProfiler class is used for:
sl@0
    30
sl@0
    31
@code
sl@0
    32
sl@0
    33
 -	Retrieving the current state of the SQL server heap and SQLite heap stats.
sl@0
    34
   	Example:
sl@0
    35
		RSqlDatabase db;
sl@0
    36
		//initialize the db object....
sl@0
    37
		...
sl@0
    38
		TSqlResourceProfiler profiler(db);
sl@0
    39
		profiler.Start(TSqlResourceProfiler::ESqlCounterMemory);//Start the profiling
sl@0
    40
		profiler.Reset(TSqlResourceProfiler::ESqlCounterMemory);//Zero the porfiling counters
sl@0
    41
		....
sl@0
    42
		profiler.Stop(TSqlResourceProfiler::ESqlCounterMemory); //Stop the profiling
sl@0
    43
		TBuf8<128> res;
sl@0
    44
		profiler.Query(TSqlResourceProfiler::ESqlCounterMemory, res);
sl@0
    45
	The format of the retrieved counters is:   
sl@0
    46
		"<Allocated cells count>;<Allocated size>;<Free space>;<Largest block size>;
sl@0
    47
		 <SQLite: allocated cnt>;<SQLite: reallocated cnt>;<SQLite: freed cnt>;
sl@0
    48
		 <SQLite: allocated bytes>;<SQLite: freed bytes>;
sl@0
    49
		 <SQLite: time spent in alloc(), us>;<SQLite: time spent in realloc(), us>;<SQLite: time spent in free(), us>;";
sl@0
    50
	This service can be used only if the SQL code is compiled with the _SQLPROFILER macro.
sl@0
    51
		
sl@0
    52
 - Retrieving the size of the biggest memory block ever allocated by the Symbian SQL server and SQLite.
sl@0
    53
   	Example:
sl@0
    54
		RSqlDatabase db;
sl@0
    55
		//initialize the db object....
sl@0
    56
		...
sl@0
    57
		TSqlResourceProfiler profiler(db);
sl@0
    58
		.....
sl@0
    59
		profiler.Start(TSqlResourceProfiler::ESqlCounterMaxAlloc);//Start the profiling
sl@0
    60
		.....
sl@0
    61
		TBuf8<32> res;
sl@0
    62
		profiler.Query(TSqlResourceProfiler::ESqlCounterMaxAlloc, res);
sl@0
    63
		...
sl@0
    64
		profiler.Reset(TSqlResourceProfiler::ESqlCounterMaxAlloc);//Reset the profiling 
sl@0
    65
		....
sl@0
    66
		profiler.Stop(TSqlResourceProfiler::ESqlCounterMaxAlloc);
sl@0
    67
	The format of the retrieved counters is: 
sl@0
    68
		"<SQL server - max alloc size>;<SQLite - max alloc size>";
sl@0
    69
	This service can be used only if the SQL code is compiled with the _SQLPROFILER macro.
sl@0
    70
sl@0
    71
 - Retrieving the number of the file system calls made by the OS porting layer and the amount of written/read data.
sl@0
    72
  	Example:
sl@0
    73
		RSqlDatabase db;
sl@0
    74
		//initialize the db object....
sl@0
    75
		...
sl@0
    76
		TSqlResourceProfiler profiler(db);
sl@0
    77
		.....
sl@0
    78
		profiler.Start(TSqlResourceProfiler::ESqlCounterFileIO);//Start the profiling
sl@0
    79
		.....
sl@0
    80
		TBuf8<300> res;
sl@0
    81
		profiler.Query(TSqlResourceProfiler::ESqlCounterFileIO, res);
sl@0
    82
		.....
sl@0
    83
		profiler.Reset(TSqlResourceProfiler::ESqlCounterFileIO);//Reset the profiling 
sl@0
    84
		....
sl@0
    85
		profiler.Stop(TSqlResourceProfiler::ESqlCounterFileIO);
sl@0
    86
	The format of the retrieved data is: 
sl@0
    87
	"<RFileBuf64::Create() cnt>;<RFileBuf64::Open() cnt>;<RFileBuf64::Close() cnt>;<RFs::Delete() cnt>;
sl@0
    88
	 <RFileBuf64::Read() cnt>;<RFileBuf64::Write() cnt>;<RFileBuf64::Seek() cnt>;<RFileBuf64::Size() cnt>;<RFileBuf64::SetSize() cnt>;
sl@0
    89
	 <RFileBuf64::Flush() cnt>;<RFile64::Drive() cnt>;<RFileBuf64::AdoptFromClient() cnt>;<RFs::Close() cnt>;
sl@0
    90
	 <RFs::Connect() cnt>;<RFs::GetSystemDrive() cnt>;<RFs::CreatePrivatePath() cnt>;<RFs::PrivatePath() cnt>;
sl@0
    91
	 <RFs::VolumeIoParam() cnt>;<RFs::Entry() cnt>;<RFs::Att() cnt>;<RFileBuf64::Temp() cnt>;<0>;
sl@0
    92
	 <bytes written>;<bytes read>;"
sl@0
    93
	Note that currently the file operations are buffered, so the retrieved results will be about the operations executed on a
sl@0
    94
	RFileBuf64 objects.
sl@0
    95
	This service can be used only if the SQL code is compiled with the _SQLPROFILER macro.
sl@0
    96
sl@0
    97
 - Retrieving information regading the current SQL/SQLite configuration.
sl@0
    98
  	Example:
sl@0
    99
		RSqlDatabase db;
sl@0
   100
		//initialize the db object....
sl@0
   101
		...
sl@0
   102
		TSqlResourceProfiler profiler(db);
sl@0
   103
		TBuf8<128> res;
sl@0
   104
		profiler.Query(TSqlResourceProfiler::ESqlCounterConfig, res);
sl@0
   105
	The format of the retrieved numbers is:   
sl@0
   106
		"<Cache size in pages>;<Page size in bytes>;<Database encoding>;<Default soft heap limit>;<SQLite vacuum mode>";
sl@0
   107
sl@0
   108
 - Retrieving the number of the OS porting layer calls made by SQLite.
sl@0
   109
  	Example:
sl@0
   110
		RSqlDatabase db;
sl@0
   111
		//initialize the db object....
sl@0
   112
		...
sl@0
   113
		TSqlResourceProfiler profiler(db);
sl@0
   114
		.....
sl@0
   115
		profiler.Start(TSqlResourceProfiler::ESqlCounterOsCall);//Start the profiling
sl@0
   116
		.....
sl@0
   117
		TBuf8<300> res;
sl@0
   118
		profiler.Query(TSqlResourceProfiler::ESqlCounterOsCall, res);
sl@0
   119
		.....
sl@0
   120
		profiler.Reset(TSqlResourceProfiler::ESqlCounterOsCall);//Reset the profiling 
sl@0
   121
		....
sl@0
   122
		profiler.Stop(TSqlResourceProfiler::ESqlCounterOsCall);
sl@0
   123
	The format of the retrieved data is: 
sl@0
   124
	"<file close cnt>;<file read cnt>;<file write cnt>;<file truncate cnt>;
sl@0
   125
	 <file sync cnt>;<file size cnt>;<file lock cnt>;<file unlock cnt>;<file check reserved lock cnt>;
sl@0
   126
	 <file i/o control cnt>;<file sector size cnt>;<file device characteristics cnt>;<vfs open cnt>;
sl@0
   127
	 <vfs delete cnt>;<vfs access cnt>;<vfs full path name cnt>;<vfs randomness cnt>;
sl@0
   128
	 <vfs sleep cnt>;<vfs current time cnt>;<vfs get last error cnt>;"
sl@0
   129
	This service can be used only if the SQL code is compiled with the _SQLPROFILER macro.
sl@0
   130
   	
sl@0
   131
 - Retrieving the OS porting layer call times in microseconds per call type.
sl@0
   132
  	Example:
sl@0
   133
		RSqlDatabase db;
sl@0
   134
		//initialize the db object....
sl@0
   135
		...
sl@0
   136
		TSqlResourceProfiler profiler(db);
sl@0
   137
		.....
sl@0
   138
		profiler.Start(TSqlResourceProfiler::ESqlCounterOsCallTime);//Start the profiling
sl@0
   139
		.....
sl@0
   140
		TBuf8<300> res;
sl@0
   141
		profiler.Query(TSqlResourceProfiler::ESqlCounterOsCallTime, res);
sl@0
   142
		.....
sl@0
   143
		profiler.Reset(TSqlResourceProfiler::ESqlCounterOsCallTime);//Reset the profiling 
sl@0
   144
		....
sl@0
   145
		profiler.Stop(TSqlResourceProfiler::ESqlCounterOsCallTime);
sl@0
   146
	The format of the retrieved data is: 
sl@0
   147
	"<file close time>;<file read time>;<file write time>;<file truncate time>;
sl@0
   148
	 <file sync time>;<file size time>;<file lock time>;<file unlock time>;<file check reserved lock time>;
sl@0
   149
	 <file i/o control time>;<file sector size time>;<file device characteristics time>;<vfs open time>;
sl@0
   150
	 <vfs delete time>;<vfs access time>;<vfs full path name time>;<vfs randomness time>;
sl@0
   151
	 <vfs sleep time>;<vfs current time time>;<vfs get last error time>;"
sl@0
   152
	This service can be used only if the SQL code is compiled with the _SQLPROFILER macro.
sl@0
   153
sl@0
   154
 - Retrieving the OS porting layer call times in microseconds per call type plus adding a log entry 
sl@0
   155
   for each call. The returned information is the same as for the previous profiling type.
sl@0
   156
   But for each OS porting layer call an entry is added to the log file (epocwind.out).
sl@0
   157
   The format of the log entry is:
sl@0
   158
   	<'M'/'J'>,<'Call Id'>,<#Counter>,<Call Counter>,<File Offset>,<Bytes>,<Ticks>,<Bytes Total>,<Ticks Total>
sl@0
   159
   Note: ESqlCounterOsCallDetails and ESqlCounterOsCallTime profiles cannot be used together.
sl@0
   160
sl@0
   161
 - Retrieving the number of the IPC calls and IPC read/write operations.
sl@0
   162
  	Example:
sl@0
   163
		RSqlDatabase db;
sl@0
   164
		//initialize the db object....
sl@0
   165
		...
sl@0
   166
		TSqlResourceProfiler profiler(db);
sl@0
   167
		.....
sl@0
   168
		profiler.Start(TSqlResourceProfiler::ESqlCounterIpc);//Start the profiling
sl@0
   169
		.....
sl@0
   170
		TBuf8<300> res;
sl@0
   171
		profiler.Query(TSqlResourceProfiler::ESqlCounterIpc, res);
sl@0
   172
		.....
sl@0
   173
		profiler.Reset(TSqlResourceProfiler::ESqlCounterIpc);//Reset the profiling 
sl@0
   174
		....
sl@0
   175
		profiler.Stop(TSqlResourceProfiler::ESqlCounterIpc);
sl@0
   176
	The format of the retrieved data is: 
sl@0
   177
	"<IPC call cnt>;<IPC write cnt>;<IPC read cnt>;<IPC write bytes>;<IPC read bytes>;
sl@0
   178
	This service can be used only if the SQL code is compiled with the _SQLPROFILER macro.
sl@0
   179
   	
sl@0
   180
 - Tracing the executed SQL statements and IPC calls.
sl@0
   181
   The folowing tracing configurations can be used (pased as a configuration parameter in TSqlResourceProfiler::Start()):
sl@0
   182
   - "L0" - [default] tracing level 0. IPC traces disabled;
sl@0
   183
   - "L1" - tracing level 1. Only the most important IPC calls are traced:
sl@0
   184
            ESqlSrvDbExec8, ESqlSrvDbExec16, ESqlSrvDbScalarFullSelect16, ESqlSrvStmtExec,
sl@0
   185
            ESqlSrvStmtAsyncExec, ESqlSrvStmtBindExec, ESqlSrvStmtAsyncBindExec, ESqlSrvStmtNext,
sl@0
   186
            ESqlSrvStmtBindNext;
sl@0
   187
   - "L2" - tracing level 2. All IPC calls traced;
sl@0
   188
   - "S0" - [default] SQL statement tracing is off; 
sl@0
   189
   - "S1" - SQL statement tracing is on;
sl@0
   190
    Example:
sl@0
   191
        RSqlDatabase db;
sl@0
   192
        //initialize the db object....
sl@0
   193
        ...
sl@0
   194
        TSqlResourceProfiler profiler(db);
sl@0
   195
        .....
sl@0
   196
        _LIT8(KConfig, "<config string>");
sl@0
   197
        profiler.Start(TSqlResourceProfiler::ESqlCounterTrace, &KConfig);//Start the profiling
sl@0
   198
        .....
sl@0
   199
        profiler.Stop(TSqlResourceProfiler::ESqlCounterTrace);
sl@0
   200
    The format of the traces is:
sl@0
   201
    - SQL statement trace:
sl@0
   202
      <DbHandle>¬<TimeFromStart>¬SQL¬Prepare/Exec¬<SQL statemment>
sl@0
   203
    - "Database create" trace:
sl@0
   204
      <DbHandle>¬<TimeFromStart>¬CRE¬<database file path>
sl@0
   205
    - "Database open" trace:
sl@0
   206
      <DbHandle>¬<TimeFromStart>¬OPN¬<database file path>
sl@0
   207
    - "Database close" trace:
sl@0
   208
      <DbHandle>¬<TimeFromStart>¬CSE
sl@0
   209
    - "IPC call error" trace:
sl@0
   210
      <DbHandle>¬<TimeFromStart>¬ERR¬<IPC counter>¬<IPC call name>¬err=<error code>
sl@0
   211
    - "IPC call level 1 or level 2" trace:
sl@0
   212
      <DbHandle>¬<TimeFromStart>¬IPC¬<IPC counter>¬<IPC call name>¬<TotalExecTime>¬<ExecTime>¬<ThisCallIpcCount>¬..¬rc=<ret code>
sl@0
   213
    This service can be used only if the SQL code is compiled with the _SQLPROFILER macro.
sl@0
   214
@endcode
sl@0
   215
sl@0
   216
@internalComponent
sl@0
   217
*/
sl@0
   218
class TSqlResourceProfiler
sl@0
   219
	{
sl@0
   220
public:
sl@0
   221
	enum TSqlCounter
sl@0
   222
		{
sl@0
   223
		ESqlCounterFileIO,
sl@0
   224
		ESqlCounterOsCall,
sl@0
   225
		ESqlCounterOsCallTime,
sl@0
   226
		ESqlCounterOsCallDetails,
sl@0
   227
		ESqlCounterIpc,
sl@0
   228
		ESqlCounterMemory,
sl@0
   229
		ESqlCounterMaxAlloc,
sl@0
   230
		ESqlCounterConfig,
sl@0
   231
		ESqlCounterTrace
sl@0
   232
		};
sl@0
   233
	IMPORT_C TSqlResourceProfiler(RSqlDatabase& aDatabase);
sl@0
   234
	IMPORT_C TInt Start(TSqlCounter aCounterType, const TDesC8* aParam = NULL);
sl@0
   235
	IMPORT_C TInt Stop(TSqlCounter aCounterType);
sl@0
   236
	IMPORT_C TInt Reset(TSqlCounter aCounterType);
sl@0
   237
	IMPORT_C TInt Query(TSqlCounter aCounterType, TDes8& aResult);
sl@0
   238
	
sl@0
   239
private:	
sl@0
   240
	RSqlDatabase iDatabase;
sl@0
   241
	
sl@0
   242
	};
sl@0
   243
sl@0
   244
#endif //__SQLRESOURCEPROFILER_H__