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