Update contrib.
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include "SqlResourceProfiler.h"
17 #include "SqlAssert.h"
18 #include "SqlDatabaseImpl.h"
21 #pragma BullseyeCoverage off
24 Initializes TSqlResourceProfiler data members with their default values.
26 @param aDatabase The RSqlDatabase object that will be profiled.
28 EXPORT_C TSqlResourceProfiler::TSqlResourceProfiler(RSqlDatabase& aDatabase) :
36 Starts the specified profiling counter.
38 @param aCounterType Profiling counter type.
39 @param aPrm Additional profiling parameters.
43 @return KErrNone, the operation completed successfully;
44 One of the other system-wide error codes may also be returned.
46 Usage of the IPC call arguments:
47 - Arg 0: [out] profiling counter type, one of the TSqlResourceProfiler::TSqlCounter enum item values.
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,
56 - "L2" - tracing level 2. All IPC calls traced;
57 - "S0" - [default] SQL statement tracing is off;
58 - "S1" - SQL statement tracing is on;
60 EXPORT_C TInt TSqlResourceProfiler::Start(TSqlResourceProfiler::TSqlCounter aCounterType, const TDesC8* aPrm)
63 ipcArgs.Set(0, aCounterType);
67 ipcArgs.Set(1, aPrm->Length());
70 return iDatabase.Impl().Session().SendReceive(ESqlSrvProfilerStart, ipcArgs);
74 Stops the specified profiling counter.
76 @param aCounterType Profiling counter type.
80 @return KErrNone, the operation completed successfully;
81 One of the other system-wide error codes may also be returned.
83 Usage of the IPC call arguments:
84 - Arg 0: [out] profiling counter type, one of the TSqlResourceProfiler::TSqlCounter enum item values.
86 EXPORT_C TInt TSqlResourceProfiler::Stop(TSqlResourceProfiler::TSqlCounter aCounterType)
88 return iDatabase.Impl().Session().SendReceive(ESqlSrvProfilerStop, TIpcArgs(aCounterType));
92 Sets to zero the specified profiling counter.
94 @param aCounterType Profiling counter type.
98 @return KErrNone, the operation completed successfully;
99 One of the other system-wide error codes may also be returned.
101 Usage of the IPC call arguments:
102 - Arg 0: [out] profiling counter type, one of the TSqlResourceProfiler::TSqlCounter enum item values.
104 EXPORT_C TInt TSqlResourceProfiler::Reset(TSqlResourceProfiler::TSqlCounter aCounterType)
106 return iDatabase.Impl().Session().SendReceive(ESqlSrvProfilerReset, TIpcArgs(aCounterType));
110 Retrieves the profiling counter(s) values for the aCounterType.
112 @param aCounterType Profiling counter type.
113 @param aResult Buffer, where the results will be copied.
117 @return KErrNone, the operation completed successfully;
118 One of the other system-wide error codes may also be returned.
120 @see TSqlResourceProfiler
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
127 EXPORT_C TInt TSqlResourceProfiler::Query(TSqlResourceProfiler::TSqlCounter aCounterType, TDes8& aResult)
129 return iDatabase.Impl().Session().SendReceive(ESqlSrvProfilerQuery, TIpcArgs(aCounterType, aResult.MaxLength(), &aResult));
134 EXPORT_C TInt TSqlResourceProfiler::Start(TSqlResourceProfiler::TSqlCounter, const TDesC8*)
136 return KErrNotSupported;
139 EXPORT_C TInt TSqlResourceProfiler::Stop(TSqlResourceProfiler::TSqlCounter)
141 return KErrNotSupported;
144 EXPORT_C TInt TSqlResourceProfiler::Reset(TSqlResourceProfiler::TSqlCounter)
146 return KErrNotSupported;
149 EXPORT_C TInt TSqlResourceProfiler::Query(TSqlResourceProfiler::TSqlCounter aCounterType, TDes8& aResult)
151 if(aCounterType == TSqlResourceProfiler::ESqlCounterConfig)
153 return iDatabase.Impl().Session().SendReceive(ESqlSrvProfilerQuery, TIpcArgs(aCounterType, aResult.MaxLength(), &aResult));
155 return KErrNotSupported;
160 #pragma BullseyeCoverage on