os/persistentdata/persistentstorage/sql/SRC/Client/SqlResourceProfiler.cpp
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-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 "SqlResourceProfiler.h"
sl@0
    17
#include "SqlAssert.h"
sl@0
    18
#include "SqlDatabaseImpl.h"
sl@0
    19
sl@0
    20
sl@0
    21
#pragma BullseyeCoverage off
sl@0
    22
sl@0
    23
/**
sl@0
    24
Initializes TSqlResourceProfiler data members with their default values.
sl@0
    25
sl@0
    26
@param aDatabase The RSqlDatabase object that will be profiled.
sl@0
    27
*/
sl@0
    28
EXPORT_C TSqlResourceProfiler::TSqlResourceProfiler(RSqlDatabase& aDatabase) :
sl@0
    29
	iDatabase(aDatabase)
sl@0
    30
	{
sl@0
    31
	}
sl@0
    32
sl@0
    33
#ifdef _SQLPROFILER
sl@0
    34
	
sl@0
    35
/**
sl@0
    36
Starts the specified profiling counter.
sl@0
    37
sl@0
    38
@param aCounterType Profiling counter type.
sl@0
    39
@param aPrm Additional profiling parameters.
sl@0
    40
sl@0
    41
@capability None
sl@0
    42
sl@0
    43
@return KErrNone, the operation completed successfully;
sl@0
    44
                  One of the other system-wide error codes may also be returned.
sl@0
    45
sl@0
    46
Usage of the IPC call arguments:
sl@0
    47
 - Arg 0: [out]  profiling counter type, one of the TSqlResourceProfiler::TSqlCounter enum item values.
sl@0
    48
 
sl@0
    49
When the counter type is ESqlCounterTrace, then the optional aPrm argument can contain the follwing 
sl@0
    50
configuration parameters, split with ";":
sl@0
    51
   - "L0" - [default] tracing level 0. IPC traces disabled;
sl@0
    52
   - "L1" - tracing level 1. Only the most important IPC calls are traced:
sl@0
    53
            ESqlSrvDbExec8, ESqlSrvDbExec16, ESqlSrvDbScalarFullSelect16, ESqlSrvStmtExec,
sl@0
    54
            ESqlSrvStmtAsyncExec, ESqlSrvStmtBindExec, ESqlSrvStmtAsyncBindExec, ESqlSrvStmtNext,
sl@0
    55
            ESqlSrvStmtBindNext;
sl@0
    56
   - "L2" - tracing level 2. All IPC calls traced;
sl@0
    57
   - "S0" - [default] SQL statement tracing is off; 
sl@0
    58
   - "S1" - SQL statement tracing is on;
sl@0
    59
*/
sl@0
    60
EXPORT_C TInt TSqlResourceProfiler::Start(TSqlResourceProfiler::TSqlCounter aCounterType, const TDesC8* aPrm)
sl@0
    61
	{
sl@0
    62
	TIpcArgs ipcArgs;
sl@0
    63
	ipcArgs.Set(0, aCounterType);
sl@0
    64
    ipcArgs.Set(1, 0);
sl@0
    65
	if(aPrm)
sl@0
    66
	    {
sl@0
    67
        ipcArgs.Set(1, aPrm->Length());
sl@0
    68
        ipcArgs.Set(2, aPrm);
sl@0
    69
	    }
sl@0
    70
	return iDatabase.Impl().Session().SendReceive(ESqlSrvProfilerStart, ipcArgs);
sl@0
    71
	}
sl@0
    72
	
sl@0
    73
/**
sl@0
    74
Stops the specified profiling counter.
sl@0
    75
sl@0
    76
@param aCounterType Profiling counter type.
sl@0
    77
sl@0
    78
@capability None
sl@0
    79
sl@0
    80
@return KErrNone, the operation completed successfully;
sl@0
    81
                  One of the other system-wide error codes may also be returned.
sl@0
    82
sl@0
    83
Usage of the IPC call arguments:
sl@0
    84
 - Arg 0: [out]  profiling counter type, one of the TSqlResourceProfiler::TSqlCounter enum item values.
sl@0
    85
*/
sl@0
    86
EXPORT_C TInt TSqlResourceProfiler::Stop(TSqlResourceProfiler::TSqlCounter aCounterType)
sl@0
    87
	{
sl@0
    88
	return iDatabase.Impl().Session().SendReceive(ESqlSrvProfilerStop, TIpcArgs(aCounterType));
sl@0
    89
	}
sl@0
    90
	
sl@0
    91
/**
sl@0
    92
Sets to zero the specified profiling counter.
sl@0
    93
sl@0
    94
@param aCounterType Profiling counter type.
sl@0
    95
sl@0
    96
@capability None
sl@0
    97
sl@0
    98
@return KErrNone, the operation completed successfully;
sl@0
    99
                  One of the other system-wide error codes may also be returned.
sl@0
   100
sl@0
   101
Usage of the IPC call arguments:
sl@0
   102
 - Arg 0: [out]  profiling counter type, one of the TSqlResourceProfiler::TSqlCounter enum item values.
sl@0
   103
*/
sl@0
   104
EXPORT_C TInt TSqlResourceProfiler::Reset(TSqlResourceProfiler::TSqlCounter aCounterType)
sl@0
   105
	{
sl@0
   106
	return iDatabase.Impl().Session().SendReceive(ESqlSrvProfilerReset, TIpcArgs(aCounterType));
sl@0
   107
	}
sl@0
   108
	
sl@0
   109
/**
sl@0
   110
Retrieves the profiling counter(s) values for the aCounterType.
sl@0
   111
sl@0
   112
@param aCounterType Profiling counter type.
sl@0
   113
@param aResult Buffer, where the results will be copied.
sl@0
   114
sl@0
   115
@capability None
sl@0
   116
sl@0
   117
@return KErrNone, the operation completed successfully;
sl@0
   118
                  One of the other system-wide error codes may also be returned.
sl@0
   119
                  
sl@0
   120
@see TSqlResourceProfiler
sl@0
   121
sl@0
   122
Usage of the IPC call arguments:
sl@0
   123
 - Arg 0: [out]  profiling counter type, one of the TSqlResourceProfiler::TSqlCounter enum item values.
sl@0
   124
 - Arg 1: [out]  the size of the buffer for the profiling counters
sl@0
   125
 - Arg 2: [in]   the buffer for the profiling counters
sl@0
   126
*/
sl@0
   127
EXPORT_C TInt TSqlResourceProfiler::Query(TSqlResourceProfiler::TSqlCounter aCounterType, TDes8& aResult)
sl@0
   128
	{
sl@0
   129
	return iDatabase.Impl().Session().SendReceive(ESqlSrvProfilerQuery, TIpcArgs(aCounterType, aResult.MaxLength(), &aResult));
sl@0
   130
	}
sl@0
   131
sl@0
   132
#else //_SQLPROFILER
sl@0
   133
sl@0
   134
EXPORT_C TInt TSqlResourceProfiler::Start(TSqlResourceProfiler::TSqlCounter, const TDesC8*)
sl@0
   135
	{
sl@0
   136
	return KErrNotSupported;
sl@0
   137
	}
sl@0
   138
	
sl@0
   139
EXPORT_C TInt TSqlResourceProfiler::Stop(TSqlResourceProfiler::TSqlCounter)
sl@0
   140
	{
sl@0
   141
	return KErrNotSupported;
sl@0
   142
	}
sl@0
   143
	
sl@0
   144
EXPORT_C TInt TSqlResourceProfiler::Reset(TSqlResourceProfiler::TSqlCounter)
sl@0
   145
	{
sl@0
   146
	return KErrNotSupported;
sl@0
   147
	}
sl@0
   148
	
sl@0
   149
EXPORT_C TInt TSqlResourceProfiler::Query(TSqlResourceProfiler::TSqlCounter aCounterType, TDes8& aResult)
sl@0
   150
	{
sl@0
   151
	if(aCounterType == TSqlResourceProfiler::ESqlCounterConfig)	
sl@0
   152
		{
sl@0
   153
		return iDatabase.Impl().Session().SendReceive(ESqlSrvProfilerQuery, TIpcArgs(aCounterType, aResult.MaxLength(), &aResult));
sl@0
   154
		}
sl@0
   155
	return KErrNotSupported;
sl@0
   156
	}
sl@0
   157
sl@0
   158
#endif//_SQLPROFILER
sl@0
   159
sl@0
   160
#pragma BullseyeCoverage on