First public contribution.
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.
16 #include <ecom/ecom.h>
18 #include "EComSessionAux.h"
20 #ifdef __ECOM_SERVER_TESTABILITY__
24 A helper function to use SetGetParametersL to set the next
25 state to be used by the ServerStartupManager of EComServer
26 @param aState the next state to be used by the EComServer
28 void ChangeStartupStateL(TInt aState)
30 TIpcArgs params = TIpcArgs(EChangeStartupState, aState);
31 REComSession::SetGetParametersL(params);
36 A helper function to use SetGetParametersL to force EComServer
37 to process the next state.
39 void ProcessCurrentStartupStateL()
41 TIpcArgs params = TIpcArgs(EProcessStartupState);
42 REComSession::SetGetParametersL(params);
47 A helper function to use SetGetParametersL to get the current
48 startup state of EComServer
49 @return current startup state of EComServer
51 TInt GetCurrentStartupStateL()
53 TInt currentState = 0;
54 TPckg<TInt> statePckg(currentState);
55 TIpcArgs params = TIpcArgs(EGetStartupState, &statePckg);
56 REComSession::SetGetParametersL(params);
63 #ifdef __ECOM_SERVER_PERFORMANCE__
65 //==================== For Startup State Time Results ===================
66 /** Method used for TLinearOrder for TTimerResult arrays*/
67 TInt CompareTimerResults(const TStartupStateTimerResult& aTimerResult1, const TStartupStateTimerResult& aTimerResult2)
69 if(aTimerResult1.iState < aTimerResult2.iState)
73 else if(aTimerResult1.iState > aTimerResult2.iState)
81 /** Method used for TIdentityRelation for TTimerResult arrays*/
82 TBool MatchOnState(const TStartupStateTimerResult& aKey, const TStartupStateTimerResult& aIndexItem)
84 return aIndexItem.iState == aKey.iState;
87 TInt RStartupStateTimerResults::FindTimerResult(TInt aState)
89 TIdentityRelation<TStartupStateTimerResult> identity(MatchOnState);
90 TStartupStateTimerResult key;
92 return iTimerResults.Find(key, identity);
96 Method that returns the idx of the timer result at requested state
97 @param aTimerResults the sorted timer results array to search for the
99 @param aState the state of the requested timer result
100 @return The index of the matching timer result KErrNotFound, if no
101 matching object can be found
103 TInt RStartupStateTimerResults::FindInOrderTimerResult(TInt aState)
105 TLinearOrder<TStartupStateTimerResult> compareFunc(CompareTimerResults);
106 TStartupStateTimerResult key;
108 return iTimerResults.FindInOrder(key, compareFunc);
113 A helper function to use SetGetParametersL to get the timer recordings
114 for performance testing. If the specified aTimerIdx is beyond the boundaries
115 of the recorded values then aTimerResult would return a value of 0 and aState
116 would return a value of -1.
117 @param aTimerIdx the index of the timer to use
118 @param aTimerResult the timer readings
119 @param aState the state of the server when timer was read (a zero indexed value)
121 TInt RStartupStateTimerResults::GetTimerResult(TInt aTimerIdx, TUint32& aTimerResult, TInt& aState)
124 TStartupStateTimerEntry result;
126 TPckg<TInt> statusPckg(returnedStatus);
127 TPckg<TStartupStateTimerEntry> resultPckg(result);
129 TIpcArgs params = TIpcArgs(EGetStartupStateTimerResult, aTimerIdx, &statusPckg, &resultPckg);
130 TRAPD(err, REComSession::SetGetParametersL(params));
136 aTimerResult = result.iTimerResult;
137 aState = result.iState;
139 return returnedStatus;
144 A helper function to use SetGetParametersL to get all of the timer recordings
145 for performance testing.
146 @param aTimerResults a reference to an array to store sorted timer results.
148 void RStartupStateTimerResults::GetAllTimerResults()
155 TReal realTime = 0.0;
157 // get state start info
158 TInt err = GetTimerResult(counter++, time, state);
159 if(err || (time == 0 && state == -1))
164 realTime = FastCountToMilliseconds(time);
167 TInt idx = FindTimerResult(state);
168 if(idx == KErrNotFound) //if it has not been entered to the array make a new entry
170 TStartupStateTimerResult timerResult;
171 timerResult.iState = state;
172 timerResult.iStartTime = realTime;
173 timerResult.iEndTime = 0;
175 iTimerResults.Append(timerResult);
177 else //if it has already been entered update the end time
179 TStartupStateTimerResult& timerResult = iTimerResults[idx];
180 timerResult.iEndTime = realTime;
184 //the array is populated, sort it for faster search.
185 TLinearOrder<TStartupStateTimerResult> compareFunc(CompareTimerResults);
186 iTimerResults.Sort(compareFunc);
189 void RStartupStateTimerResults::ResetTimerCountL()
192 TIpcArgs params = TIpcArgs(EResetStartupStateTimerCounts);
193 REComSession::SetGetParametersL(params);
197 Frees any allocated resources
199 void RStartupStateTimerResults::Close()
201 iTimerResults.Close();
205 Startup state timer results must have been populated by a call to RetrieveResults before this method is called
206 @param aIndex The index of the timing entry to retrieve
207 @return The timer result entry for the given index
209 TStartupStateTimerResult& RStartupStateTimerResults::At(TInt aIndex)
211 return iTimerResults[aIndex];
215 @return The number of timer results retrieved
217 TInt RStartupStateTimerResults::Count()
219 return iTimerResults.Count();
222 //==================== For Client Requests Time Results ===================
224 Retrieves a single client request timer entry from the ECom server
225 @param aTimerIdx The index of the timing entry to retrieve
226 @return KErrNone if successful, KErrOverflow if aTimerIdx is greater than the number of timing entries
228 TInt RClientRequestTimerResults::GetTimerResult(TInt aTimerIdx, TClientRequestTimerEntry& aTimerEntry)
231 TPckg<TInt> statusPckg(returnedStatus);
232 TPckg<TClientRequestTimerEntry> resultPckg(aTimerEntry);
234 TIpcArgs params = TIpcArgs(EGetAccumulatedClientRequestsTimerResult, aTimerIdx, &statusPckg, &resultPckg);
235 TRAPD(err, REComSession::SetGetParametersL(params));
241 return returnedStatus;
245 Retrieves all client request timer entries from the ECom server
247 void RClientRequestTimerResults::RetrieveResultsL()
249 TClientRequestTimerEntry timerEntry;
251 for (TInt i = 0; err == KErrNone; i++)
253 err = GetTimerResult(i, timerEntry);
256 iResults.Append(timerEntry);
258 else if (err != KErrOverflow)
266 Determines the total time taken by ECom server servicing client requests with the given state and request type
267 by going through each of the retrieved timer entries and adding up their associated times
268 @pre RetrieveResultsL must have been called before this method is called
269 @param aState The startup state to retrieve timer results for
270 @param aRequestType The type of client request to retrieve timer results for
271 @param aNumRequests On return contains the number of client requests matching aState and aRequestType
272 @return The total time taken servicing client requests matching startup state aState and aRequestType
274 TReal RClientRequestTimerResults::GetAccumulatedClientRequestTime(TInt aState, TEComClientRequestType aRequestType, TUint& aNumRequests)
276 TUint32 accumulatedTicks = 0;
279 for (TInt i = 0; i < iResults.Count(); i++)
281 if (iResults[i].iState == aState && iResults[i].iClientRequestType == aRequestType)
283 TUint netTime = iResults[i].iEndTime - iResults[i].iStartTime;
284 accumulatedTicks += netTime;
289 return FastCountToMilliseconds(accumulatedTicks);
293 Determines the total time taken by ECom server servicing client requests with the given state
294 by going through each of the retrieved timer entries and adding up their associated times
295 Client request timer results must have been populated by a call to RetrieveResults before this method is called
296 @param aState The startup state to retrieve timer results for
297 @param aNumRequests On return contains the number of client requests matching aState
298 @return The total time taken servicing client requests matching startup state aState
300 TReal RClientRequestTimerResults::GetAccumulatedClientRequestTime(TInt aState, TUint& aNumRequests)
302 TUint32 accumulatedTicks = 0;
305 for (TInt i = 0; i < iResults.Count(); i++)
307 if (iResults[i].iState == aState)
309 TUint netTime = iResults[i].iEndTime - iResults[i].iStartTime;
310 accumulatedTicks += netTime;
315 return FastCountToMilliseconds(accumulatedTicks);
319 Determines the total time taken by ECom server servicing client requests with the given request type
320 by going through each of the retrieved timer entries and adding up their associated times
321 Client request timer results must have been populated by a call to RetrieveResults before this method is called
322 @param aRequestType The type of client request to retrieve timer results for
323 @param aNumRequests On return contains the number of client requests matching aRequestType
324 @return The total time taken servicing client requests matching startup state aRequestType
326 TReal RClientRequestTimerResults::GetAccumulatedClientRequestTime(TEComClientRequestType aRequestType, TUint& aNumRequests)
328 TUint32 accumulatedTicks = 0;
331 for (TInt i = 0; i < iResults.Count(); i++)
333 if (iResults[i].iClientRequestType == aRequestType)
335 TUint netTime = iResults[i].iEndTime - iResults[i].iStartTime;
336 accumulatedTicks += netTime;
341 return FastCountToMilliseconds(accumulatedTicks);
345 Determines the total time taken by ECom server servicing all client requests
346 by going through each of the retrieved timer entries and adding up their associated times
347 Client request timer results must have been populated by a call to RetrieveResults before this method is called
348 @param aNumRequests On return contains the number of client requests
349 @return The total time taken servicing client requests
351 TReal RClientRequestTimerResults::GetAccumulatedClientRequestTime(TUint& aNumRequests)
353 TUint32 accumulatedTicks = 0;
356 for (TInt i = 0; i < iResults.Count(); i++)
358 TUint netTime = iResults[i].iEndTime - iResults[i].iStartTime;
359 accumulatedTicks += netTime;
363 return FastCountToMilliseconds(accumulatedTicks);
369 void RClientRequestTimerResults::Close()
376 A helper function to use SetGetParametersL to get the number of
377 drives, plugins, interfaces, implementation for performance testing.
378 @param aCounts a reference to a struct to store results.
380 void RegistryCounts::GetRegistryCountsL(TRegistryCounts::TRegistryCountDriveType aType, TRegistryCounts& aCounts)
382 TPckg<TRegistryCounts> registryCountPckg(aCounts);
383 TIpcArgs params = TIpcArgs(EGetRegistryCounts, aType, ®istryCountPckg);
384 REComSession::SetGetParametersL(params);
388 //==================== For ECom Performance Time Results ===================
391 A helper function to use SetGetParametersL to get the time recordings
392 for performance testing. If the specified aTimerIdx is beyond the size
393 of the valid recorded values then KErrOverFlow returns from the server side
394 @param aTimerIdx the index of the time record to use
395 @param aTimeEntry the fast time record entry
397 TInt REComPerfTimeRecords::GetTimeRecordEntry(TInt aTimeIdx, TEComPerfTimeRecordEntry& aTimeEntry)
401 TPckg<TInt> statusPckg(returnedStatus);
402 TPckg<TEComPerfTimeRecordEntry> resultPckg(aTimeEntry);
404 TIpcArgs params = TIpcArgs(EGetEComPerfTimeRecord, aTimeIdx, &statusPckg, &resultPckg);
405 TRAPD(err, REComSession::SetGetParametersL(params));
411 return returnedStatus;
415 Get all ECom performance time records from server and fill up local array for further use
417 void REComPerfTimeRecords::OpenL()
419 TEComPerfTimeRecordEntry timeEntry;
422 iTimeRecords.Reset();
424 // Get the first record from server
426 err = GetTimeRecordEntry(idx, timeEntry);
427 while(err == KErrNone)
429 // If it is a valid record entry, append it to local record array,
430 // and get the next entry from server.
431 if (timeEntry.iType != ENullType)
433 iTimeRecords.Append(timeEntry);
435 err = GetTimeRecordEntry(idx, timeEntry);
437 // Otherwise finished
442 if (err != KErrOverflow)
444 User::LeaveIfError(err);
449 Transform raw fast count records into real time results (in mSecs), and collect the results by specified type.
451 void REComPerfTimeRecords::RetrieveResultsByTypeL(TEComPerfTimeRecordType aType, RArray<TEComPerfRealTimeResult>& aTimeResults)
453 TEComPerfRealTimeResult timeResult;
455 TInt count = iTimeRecords.Count();
459 for (TInt i = 0; i < count; i++)
461 // If the record has correct type
462 if(iTimeRecords[i].iType == aType)
464 // If the record is the first of the couple, it should be the start time record
467 timeResult.iStartTime = FastCountToMilliseconds(iTimeRecords[i].iTime);
468 timeResult.iType = iTimeRecords[i].iType;
469 timeResult.iInfo = iTimeRecords[i].iInfo;
472 // Otherwise it should be the end time record.
475 timeResult.iEndTime = FastCountToMilliseconds(iTimeRecords[i].iTime);
476 aTimeResults.Append(timeResult);
482 else // Leave if there's no records to retrieve
484 User::Leave(KErrNotFound);
492 void REComPerfTimeRecords::RetrieveResultsInfoByTypeL(TEComPerfTimeRecordType aType, RArray<TInt>& aInfos)
494 TInt count = iTimeRecords.Count();
497 for (TInt i = 0; i < count; i++)
499 // If the record has correct type, insert the info into aInfos array. No duplicate infos are recorded.
500 if(iTimeRecords[i].iType == aType)
502 TInt err = aInfos.InsertInOrder(iTimeRecords[i].iInfo);
504 if(err!=KErrAlreadyExists)
505 User::LeaveIfError(err);
509 else // Leave if there's no records to retrieve
511 User::Leave(KErrNotFound);
515 // Reset all fast count records on server
516 void REComPerfTimeRecords::ResetRecordsOnServerL()
518 TIpcArgs params = TIpcArgs(EResetEComPerfTimeRecords);
519 REComSession::SetGetParametersL(params);
522 TInt REComPerfTimeRecords::Count()
524 return iTimeRecords.Count();
527 // Empty local time result array
528 void REComPerfTimeRecords::Reset()
530 iTimeRecords.Reset();
534 void REComPerfTimeRecords::Close()
536 iTimeRecords.Close();
539 //==================== For ECom Performance Heap Usage Results ===================
543 void REComHeapUsageRecords::OpenL()
545 iHeapRecords.Reset();
547 // Get the first record from server
549 TEComPerfHeapUsage heapEntry;
550 TInt err=GetHeapRecordEntry(idx,heapEntry);
551 while(err == KErrNone && heapEntry.iState!=0)
553 //check existing array for a start item
554 TBool startFound=EFalse;
555 for (TInt i=0;i<iHeapRecords.Count();i++)
557 //if can find one this entry must be a start entry so update the heap usage
558 if (iHeapRecords[i].iState==heapEntry.iState)
560 iHeapRecords[i].iHeapSize=heapEntry.iHeapSize-(iHeapRecords[i].iHeapSize);
565 //only append the entry if it is a new start entry
567 iHeapRecords.Append(heapEntry);
569 err=GetHeapRecordEntry(idx,heapEntry);
572 if (err != KErrOverflow)
574 User::LeaveIfError(err);
578 TInt REComHeapUsageRecords::GetHeapUsageAtState(TInt aState)
580 for (TInt i=0;i<iHeapRecords.Count();i++)
582 if (iHeapRecords[i].iState==aState)
584 return iHeapRecords[i].iHeapSize;
590 void REComHeapUsageRecords::Close()
592 iHeapRecords.Reset();
593 iHeapRecords.Close();
596 TInt REComHeapUsageRecords::GetHeapRecordEntry(TInt aHeapIdx,TEComPerfHeapUsage& aHeapEntry)
599 TPckg<TInt> statusPckg(returnedStatus);
600 TPckg<TEComPerfHeapUsage> resultPckg(aHeapEntry);
601 TIpcArgs params = TIpcArgs(EGetEComServerHeapResult, aHeapIdx,&statusPckg,&resultPckg);
602 TRAPD(err, REComSession::SetGetParametersL(params));
606 //===========================================================
608 Converts time retrieved using FastCounter to milliseconds
609 @param aFastCount The time to convert to milliseconds, retrieved using User::FastCounter
610 @return The time in milliseconds corresponding to aFastCount
612 TReal FastCountToMilliseconds(TInt aFastCount)
615 HAL::Get(HAL::EFastCounterFrequency, freqInHz);
616 TReal freqInkHz = freqInHz / 1000;
617 return (TReal)aFastCount / freqInkHz;