os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/EComPerformance.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Implementation of static class to log ECom performance
    15 // 
    16 //
    17 
    18 /**
    19  @internalComponent
    20  @file
    21 */
    22 
    23 #include <e32debug.h>
    24 #include "EComPerformance.h"
    25 
    26 #ifdef __ECOM_SERVER_PERFORMANCE__
    27 
    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;
    36 
    37 /**
    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
    42  */
    43 TInt EComPerformance::GetStartupStateTimerResult(TInt aTimerIdx, TUint32& aTimerResult, TInt& aState)
    44 	{
    45 	TInt resultIdx = aTimerIdx * 2;
    46 	aTimerResult = 0;
    47 	aState = -1;
    48 	
    49 	if(iEComStartupStateTimerResultCount > resultIdx + 1)
    50 		{
    51 		aTimerResult = iEComStartupStateTimerResults[resultIdx];
    52 		aState = iEComStartupStateTimerResults[resultIdx+1];
    53 		}
    54 	else
    55 		{
    56 		RDebug::Print(_L("Exceeded size of %d held by KEComStartupStateTimerResults array\n"), iEComStartupStateTimerResultCount);
    57 		return KErrOverflow;
    58 		}
    59 	return KErrNone;
    60 	}
    61 
    62 /**
    63  Records timing data for the given state that can be retrieved using GetStartupStateTimerResult
    64  @param aState The state the timing data is for
    65  */
    66 void EComPerformance::RecordStartupStateTimerResult(TInt aState)
    67 	{
    68 	if(iEComStartupStateTimerResultCount+1<KEComStartupStateTimerResultMaxCount)
    69 		{
    70 		iEComStartupStateTimerResults[iEComStartupStateTimerResultCount++] = User::FastCounter();
    71 		iEComStartupStateTimerResults[iEComStartupStateTimerResultCount++] = aState;
    72 		}
    73 	}
    74 	
    75 void EComPerformance::ResetStartupStateTimerResult()
    76 	{
    77 	iEComStartupStateTimerResultCount = 0;
    78 	}
    79 /**
    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	
    85 */
    86 TInt EComPerformance::GetAccumulatedClientRequestTimerResult(TInt aTimerIdx, TClientRequestTimerEntry& aTimerEntry)
    87 	{
    88 	if(aTimerIdx < iAccumulatedClientRequestTimerResultCount)
    89 		{
    90 		aTimerEntry = iAccumulatedClientRequestTimerResults[aTimerIdx];
    91 		}
    92 	else
    93 		{
    94 		return KErrOverflow;
    95 		}
    96 	return KErrNone;
    97 	}
    98 
    99 /**
   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
   103 */
   104 void EComPerformance::RecordStartClientRequestTimerResult(TEComClientRequestType aClientRequestType, TInt aState)
   105 	{
   106 	if(iAccumulatedClientRequestTimerResultCount < KAccumulatedClientRequestTimerResultMaxCount)
   107 		{
   108 		iAccumulatedClientRequestTimerResults[iAccumulatedClientRequestTimerResultCount].iStartTime = User::FastCounter();
   109 		iAccumulatedClientRequestTimerResults[iAccumulatedClientRequestTimerResultCount].iClientRequestType = aClientRequestType;
   110 		iAccumulatedClientRequestTimerResults[iAccumulatedClientRequestTimerResultCount].iState = aState;
   111 		}
   112 	}
   113 	
   114 /**
   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
   117 */
   118 void EComPerformance::RecordEndClientRequestTimerResult()
   119 	{
   120 	if (iAccumulatedClientRequestTimerResultCount < KAccumulatedClientRequestTimerResultMaxCount)
   121 		{
   122 		iAccumulatedClientRequestTimerResults[iAccumulatedClientRequestTimerResultCount].iEndTime = User::FastCounter();
   123 		iAccumulatedClientRequestTimerResultCount++;
   124 		}
   125 	}
   126 
   127 /**
   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
   131 */
   132 TInt EComPerformance::GetEComPerfTimeRecord(TInt aTimeIdx, TEComPerfTimeRecordEntry& aTimeEntry)
   133 	{
   134 	if(aTimeIdx < KEComPerfTimerRecordMaxCount)
   135 		{
   136 		aTimeEntry = iEComPerfTimeRecords[aTimeIdx];
   137 		}
   138 	else
   139 		{
   140 		return KErrOverflow;		
   141 		}
   142 	return KErrNone;
   143 	}
   144 
   145 /**
   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
   149 */
   150 void EComPerformance::RecordEComPerfTime(TEComPerfTimeRecordType aType, TInt aInfo)
   151 	{
   152 	if(iEComPerfTimeRecordCount < KEComPerfTimerRecordMaxCount)
   153 		{
   154 		iEComPerfTimeRecords[iEComPerfTimeRecordCount].iTime = User::FastCounter();
   155 		iEComPerfTimeRecords[iEComPerfTimeRecordCount].iType = aType;
   156 		iEComPerfTimeRecords[iEComPerfTimeRecordCount].iInfo = aInfo;
   157 		++iEComPerfTimeRecordCount;
   158 		}
   159 	}
   160 
   161 /**
   162  Cleans up ECom performance timing record array and reset counter
   163 */
   164 void EComPerformance::ResetEComPerfTimeRecords()
   165 	{
   166 	for(TInt idx = 0; idx <= iEComPerfTimeRecordCount; ++idx)
   167 		{
   168 		iEComPerfTimeRecords[idx].iTime = NULL;
   169 		iEComPerfTimeRecords[idx].iType = ENullType;
   170 		iEComPerfTimeRecords[idx].iInfo = NULL;
   171 		}
   172 	iEComPerfTimeRecordCount = 0;
   173 	}
   174 
   175 /**
   176 Get the heap size at this startup state
   177 */	
   178 void EComPerformance::RecordEComHeapSize(TInt aState)
   179 	{
   180 	if (iEComStartupStateHeapResultCount < KEComStartupStateHeapResultMaxCount)
   181 		{
   182 		iEComStartupStateHeapResults[iEComStartupStateHeapResultCount].iState=aState;
   183 		iEComStartupStateHeapResults[iEComStartupStateHeapResultCount].iHeapSize=User::Heap().Size();
   184 		++iEComStartupStateHeapResultCount;		
   185 		}
   186 	}
   187 	
   188 TInt EComPerformance::GetEComHeapSize(TInt aHeapIdx,TEComPerfHeapUsage& aHeapRecord)
   189 	{
   190 	if (aHeapIdx < KEComStartupStateHeapResultMaxCount)
   191 		{
   192 		aHeapRecord=iEComStartupStateHeapResults[aHeapIdx];
   193 		}
   194 	else
   195 		{
   196 		return KErrOverflow;
   197 		}
   198 	return KErrNone;
   199 	}
   200 
   201 #endif //__ECOM_SERVER_PERFORMANCE__