Update contrib.
1 // Copyright (c) 2005-2009 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.
14 // Implementation of static class to log ECom performance
24 #include "EComPerformance.h"
26 #ifdef __ECOM_SERVER_PERFORMANCE__
28 TUint32 EComPerformance::iEComStartupStateTimerResults[KEComStartupStateTimerResultMaxCount];
29 TInt EComPerformance::iEComStartupStateTimerResultCount = 0;
30 TClientRequestTimerEntry EComPerformance::iAccumulatedClientRequestTimerResults[KAccumulatedClientRequestTimerResultMaxCount];
31 TInt EComPerformance::iAccumulatedClientRequestTimerResultCount = 0;
32 TEComPerfTimeRecordEntry EComPerformance::iEComPerfTimeRecords[KEComPerfTimerRecordMaxCount];
33 TInt EComPerformance::iEComPerfTimeRecordCount = 0;
34 TEComPerfHeapUsage EComPerformance::iEComStartupStateHeapResults[KEComStartupStateHeapResultMaxCount];
35 TInt EComPerformance::iEComStartupStateHeapResultCount=0;
38 Retrieves startup state timing data from the given index
39 @param aTimerIdx The index of the timing entry to retrieve
40 @param aTimerResult On return contains the timing (using FastCounter) at the given index
41 @param aState The state the timing data is for
43 TInt EComPerformance::GetStartupStateTimerResult(TInt aTimerIdx, TUint32& aTimerResult, TInt& aState)
45 TInt resultIdx = aTimerIdx * 2;
49 if(iEComStartupStateTimerResultCount > resultIdx + 1)
51 aTimerResult = iEComStartupStateTimerResults[resultIdx];
52 aState = iEComStartupStateTimerResults[resultIdx+1];
56 RDebug::Print(_L("Exceeded size of %d held by KEComStartupStateTimerResults array\n"), iEComStartupStateTimerResultCount);
63 Records timing data for the given state that can be retrieved using GetStartupStateTimerResult
64 @param aState The state the timing data is for
66 void EComPerformance::RecordStartupStateTimerResult(TInt aState)
68 if(iEComStartupStateTimerResultCount+1<KEComStartupStateTimerResultMaxCount)
70 iEComStartupStateTimerResults[iEComStartupStateTimerResultCount++] = User::FastCounter();
71 iEComStartupStateTimerResults[iEComStartupStateTimerResultCount++] = aState;
75 void EComPerformance::ResetStartupStateTimerResult()
77 iEComStartupStateTimerResultCount = 0;
80 Retrieves timing data for the client request indexed by aTimerIdx
81 Note that this data does not include timing for requests where an exception occurred during processing
82 @param aTimerIdx The index of the timing entry to retrieve
83 @param aTimerEntry On return contains the timing data for the given index
84 @return KErrNone if the timing data was retrieved successfully, KErrOverflow if the requested index is greater than the number of timing entries
86 TInt EComPerformance::GetAccumulatedClientRequestTimerResult(TInt aTimerIdx, TClientRequestTimerEntry& aTimerEntry)
88 if(aTimerIdx < iAccumulatedClientRequestTimerResultCount)
90 aTimerEntry = iAccumulatedClientRequestTimerResults[aTimerIdx];
100 Records timing data for the start of the processing of a client request.
101 @param aClientRequestType The type of client request
102 @param aState The current start-up state
104 void EComPerformance::RecordStartClientRequestTimerResult(TEComClientRequestType aClientRequestType, TInt aState)
106 if(iAccumulatedClientRequestTimerResultCount < KAccumulatedClientRequestTimerResultMaxCount)
108 iAccumulatedClientRequestTimerResults[iAccumulatedClientRequestTimerResultCount].iStartTime = User::FastCounter();
109 iAccumulatedClientRequestTimerResults[iAccumulatedClientRequestTimerResultCount].iClientRequestType = aClientRequestType;
110 iAccumulatedClientRequestTimerResults[iAccumulatedClientRequestTimerResultCount].iState = aState;
115 Records timing data for the end of the processing of the client request associated with the last call to RecordStartClientRequestTimerResult
116 @pre RecordStartClientRequestTimerResult must have been called before this method is called
118 void EComPerformance::RecordEndClientRequestTimerResult()
120 if (iAccumulatedClientRequestTimerResultCount < KAccumulatedClientRequestTimerResultMaxCount)
122 iAccumulatedClientRequestTimerResults[iAccumulatedClientRequestTimerResultCount].iEndTime = User::FastCounter();
123 iAccumulatedClientRequestTimerResultCount++;
128 Retrieves ECom performance timing record by aTimeIdx
129 @param aTimerIdx the index of the record to get (a zero indexed value)
130 @param aTimeRecord the record readings
132 TInt EComPerformance::GetEComPerfTimeRecord(TInt aTimeIdx, TEComPerfTimeRecordEntry& aTimeEntry)
134 if(aTimeIdx < KEComPerfTimerRecordMaxCount)
136 aTimeEntry = iEComPerfTimeRecords[aTimeIdx];
146 Records ECom performance timing record with its type an additional information
147 @param aType The type of the record
148 @param aInfo The additional inforamtion attached
150 void EComPerformance::RecordEComPerfTime(TEComPerfTimeRecordType aType, TInt aInfo)
152 if(iEComPerfTimeRecordCount < KEComPerfTimerRecordMaxCount)
154 iEComPerfTimeRecords[iEComPerfTimeRecordCount].iTime = User::FastCounter();
155 iEComPerfTimeRecords[iEComPerfTimeRecordCount].iType = aType;
156 iEComPerfTimeRecords[iEComPerfTimeRecordCount].iInfo = aInfo;
157 ++iEComPerfTimeRecordCount;
162 Cleans up ECom performance timing record array and reset counter
164 void EComPerformance::ResetEComPerfTimeRecords()
166 for(TInt idx = 0; idx <= iEComPerfTimeRecordCount; ++idx)
168 iEComPerfTimeRecords[idx].iTime = NULL;
169 iEComPerfTimeRecords[idx].iType = ENullType;
170 iEComPerfTimeRecords[idx].iInfo = NULL;
172 iEComPerfTimeRecordCount = 0;
176 Get the heap size at this startup state
178 void EComPerformance::RecordEComHeapSize(TInt aState)
180 if (iEComStartupStateHeapResultCount < KEComStartupStateHeapResultMaxCount)
182 iEComStartupStateHeapResults[iEComStartupStateHeapResultCount].iState=aState;
183 iEComStartupStateHeapResults[iEComStartupStateHeapResultCount].iHeapSize=User::Heap().Size();
184 ++iEComStartupStateHeapResultCount;
188 TInt EComPerformance::GetEComHeapSize(TInt aHeapIdx,TEComPerfHeapUsage& aHeapRecord)
190 if (aHeapIdx < KEComStartupStateHeapResultMaxCount)
192 aHeapRecord=iEComStartupStateHeapResults[aHeapIdx];
201 #endif //__ECOM_SERVER_PERFORMANCE__