os/persistentdata/persistentstorage/sql/SRC/Server/SqlSrvResourceProfiler.h
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
#ifndef __SQLSRVRESOURCEPROFILER_H__
sl@0
    17
#define __SQLSRVRESOURCEPROFILER_H__
sl@0
    18
sl@0
    19
#include <e32cmn.h>
sl@0
    20
#include "SqlUtil.h"
sl@0
    21
sl@0
    22
#ifdef _SQLPROFILER
sl@0
    23
sl@0
    24
///////////////////////////////// Heap max alloc /////////////////////////////////////
sl@0
    25
sl@0
    26
extern TBool TheSqlSrvProfilerMaxAllocEnabled;
sl@0
    27
extern TInt  TheSqlSrvProfilerMaxAllocSize;
sl@0
    28
sl@0
    29
#define SQLPROFILER_REPORT_ALLOC(size) 													\
sl@0
    30
	do																					\
sl@0
    31
		{																				\
sl@0
    32
		if(TheSqlSrvProfilerMaxAllocEnabled && (size) > TheSqlSrvProfilerMaxAllocSize) 	\
sl@0
    33
			{																			\
sl@0
    34
			TheSqlSrvProfilerMaxAllocSize = (size);										\
sl@0
    35
			}																			\
sl@0
    36
		}																				\
sl@0
    37
	while(0)
sl@0
    38
sl@0
    39
///////////////////////////////// IPC counters ///////////////////////////////////////
sl@0
    40
sl@0
    41
enum TSqlIpcType
sl@0
    42
		{
sl@0
    43
		ESqlIpcRq,
sl@0
    44
		ESqlIpcRead,
sl@0
    45
		ESqlIpcWrite,
sl@0
    46
		//	
sl@0
    47
		ESqlIpcLast
sl@0
    48
		};
sl@0
    49
sl@0
    50
extern TBool TheSqlSrvProfilerIpcEnabled;
sl@0
    51
extern TInt  TheSqlSrvProfilerIpc[];
sl@0
    52
extern TInt64 TheSqlSrvProfilerIpcBytes[];
sl@0
    53
sl@0
    54
#define SQLPROFILER_REPORT_IPC(type, bytes) 				\
sl@0
    55
		do													\
sl@0
    56
			{												\
sl@0
    57
			if(TheSqlSrvProfilerIpcEnabled)					\
sl@0
    58
				{											\
sl@0
    59
				++TheSqlSrvProfilerIpc[type];				\
sl@0
    60
				TheSqlSrvProfilerIpcBytes[type] += bytes;	\
sl@0
    61
				}											\
sl@0
    62
			}												\
sl@0
    63
		while(0)
sl@0
    64
sl@0
    65
////////////////////////// IPC & SQL tracing related /////////////////////////////////
sl@0
    66
sl@0
    67
//Level 1 IPC calls count. IPC calls types included:
sl@0
    68
// ESqlSrvDbExec8, ESqlSrvDbExec16, ESqlSrvDbScalarFullSelect16, ESqlSrvStmtExec,
sl@0
    69
// ESqlSrvStmtAsyncExec, ESqlSrvStmtBindExec, ESqlSrvStmtAsyncBindExec, ESqlSrvStmtNext,
sl@0
    70
// ESqlSrvStmtBindNext;
sl@0
    71
const TInt KIpcTraceTypeCount = 10; 
sl@0
    72
sl@0
    73
//A TSqlIpcTraceData array of KIpcTraceTypeCount elements is a member of the CSqlSrvSession class.
sl@0
    74
//During the tracing, if level 1 or level 2 is enabled, all relevant information is summarized there.
sl@0
    75
struct TSqlSrvIpcTraceData
sl@0
    76
    {
sl@0
    77
    TInt64  iExecutionTime;     //The summary of the execution time spent in particular level 1 IPC call
sl@0
    78
    TInt    iCount;             //The IPC call count for particular level 1 call               
sl@0
    79
    };
sl@0
    80
sl@0
    81
///////////////////  IPC & SQL tracing functions and macros ///////////////////////////////
sl@0
    82
sl@0
    83
void   SqlIpcStart(TUint& aIpcCounter, TUint32& aStartTicks, TUint aDbHandle);
sl@0
    84
void   SqlIpcEnd(TUint aIpcCounter, TUint32 aStartTicks, TSqlSrvFunction aFuncCode, 
sl@0
    85
                 TUint aDbHandle, TSqlSrvIpcTraceData aIpcTraceData[], TInt aRetCode);
sl@0
    86
void   SqlIpcError(TUint aIpcCounter, TSqlSrvFunction aFuncCode, TUint aDbHandle, TInt aError);
sl@0
    87
void   SqlPrintSql16(TUint aDbHandle, const TDesC& aSql, TBool aPrepare);
sl@0
    88
void   SqlPrintSql8(TUint aDbHandle, const TDesC8& aSql, TBool aPrepare);
sl@0
    89
sl@0
    90
void   SqlPrintDbCreate(TUint aDbHandle, const TDesC& aDbName);
sl@0
    91
void   SqlPrintDbOpen(TUint aDbHandle, const TDesC& aDbName);
sl@0
    92
void   SqlPrintDbClose(TUint aDbHandle);
sl@0
    93
sl@0
    94
void   SqlPrintServerStart();
sl@0
    95
void   SqlPrintServerStop();
sl@0
    96
sl@0
    97
#define SQLPROFILER_IPC_START(aIpcCounter, aDbHandle) \
sl@0
    98
    TUint32 startTicks = 0;\
sl@0
    99
    SqlIpcStart(aIpcCounter, startTicks, aDbHandle)
sl@0
   100
sl@0
   101
#define SQLPROFILER_IPC_END(aIpcCounter, aFuncCode, aDbHandle, aIpcTraceData, aRetCode) \
sl@0
   102
    SqlIpcEnd(aIpcCounter, startTicks, aFuncCode, aDbHandle, aIpcTraceData, aRetCode)
sl@0
   103
sl@0
   104
#define SQLPROFILER_IPC_ERROR(aIpcCounter, aFuncCode, aDbHandle, aError) \
sl@0
   105
    SqlIpcError(aIpcCounter, aFuncCode, aDbHandle, aError)
sl@0
   106
sl@0
   107
#define SQLPROFILER_SQL16_PRINT(aDbHandle, aSql, aPrepare) \
sl@0
   108
    SqlPrintSql16(aDbHandle, aSql, aPrepare)
sl@0
   109
sl@0
   110
#define SQLPROFILER_SQL8_PRINT(aDbHandle, aSql, aPrepare) \
sl@0
   111
    SqlPrintSql8(aDbHandle, aSql, aPrepare)
sl@0
   112
sl@0
   113
#define SQLPROFILER_DB_CREATE(aDbHandle, aDbName) \
sl@0
   114
    SqlPrintDbCreate(aDbHandle, aDbName)
sl@0
   115
sl@0
   116
#define SQLPROFILER_DB_OPEN(aDbHandle, aDbName) \
sl@0
   117
    SqlPrintDbOpen(aDbHandle, aDbName)
sl@0
   118
sl@0
   119
#define SQLPROFILER_DB_CLOSE(aDbHandle) \
sl@0
   120
    SqlPrintDbClose(aDbHandle)
sl@0
   121
sl@0
   122
#define SQLPROFILER_SERVER_START() \
sl@0
   123
    SqlPrintServerStart()
sl@0
   124
sl@0
   125
#define SQLPROFILER_SERVER_STOP() \
sl@0
   126
    SqlPrintServerStop()
sl@0
   127
sl@0
   128
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   129
sl@0
   130
#else//_SQLPROFILER
sl@0
   131
sl@0
   132
#define SQLPROFILER_REPORT_ALLOC(size) do {} while(0)
sl@0
   133
#define SQLPROFILER_REPORT_IPC(type, bytes) do {} while(0)
sl@0
   134
sl@0
   135
#define SQLPROFILER_IPC_START(aIpcCounter, aDbHandle) do {} while(0)
sl@0
   136
#define SQLPROFILER_IPC_END(aIpcCounter, aFuncCode, aDbHandle, aIpcTraceData, aRetCode) do {} while(0)
sl@0
   137
#define SQLPROFILER_IPC_ERROR(aIpcCounter, aFuncCode, aDbHandle, aError) do {} while(0)
sl@0
   138
#define SQLPROFILER_SQL16_PRINT(aDbHandle, aSql, aPrepare) do {} while(0)
sl@0
   139
#define SQLPROFILER_SQL8_PRINT(aDbHandle, aSql, aPrepare) do {} while(0)
sl@0
   140
sl@0
   141
#define SQLPROFILER_DB_CREATE(aDbHandle, aDbName) do {} while(0)
sl@0
   142
#define SQLPROFILER_DB_OPEN(aDbHandle, aDbName) do {} while(0)
sl@0
   143
#define SQLPROFILER_DB_CLOSE(aDbHandle) do {} while(0)
sl@0
   144
sl@0
   145
#define SQLPROFILER_SERVER_START() do {} while(0) 
sl@0
   146
#define SQLPROFILER_SERVER_STOP() do {} while(0)
sl@0
   147
sl@0
   148
#endif//_SQLPROFILER
sl@0
   149
sl@0
   150
/**
sl@0
   151
This class can be used for collecting information regarding the SQL server resources usage.
sl@0
   152
sl@0
   153
@see TSqlResourceProfiler
sl@0
   154
@internalComponent
sl@0
   155
*/
sl@0
   156
NONSHARABLE_CLASS(TSqlSrvResourceProfiler)
sl@0
   157
	{
sl@0
   158
public:
sl@0
   159
	static void StartL(const RMessage2&);
sl@0
   160
	static void StopL(const RMessage2&);
sl@0
   161
	static void ResetL(const RMessage2&);
sl@0
   162
	static void QueryL(const RMessage2&);
sl@0
   163
	
sl@0
   164
	};
sl@0
   165
	
sl@0
   166
#endif//__SQLSRVRESOURCEPROFILER_H__