os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/EComSessionAux.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.
sl@0
     1
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include <ecom/ecom.h>
sl@0
    17
#include <hal.h>
sl@0
    18
#include "EComSessionAux.h"
sl@0
    19
sl@0
    20
#ifdef __ECOM_SERVER_TESTABILITY__
sl@0
    21
sl@0
    22
/**
sl@0
    23
@internalComponent
sl@0
    24
A helper function to use SetGetParametersL to set the next
sl@0
    25
state to be used by the ServerStartupManager of EComServer
sl@0
    26
@param aState the next state to be used by the EComServer
sl@0
    27
*/
sl@0
    28
void ChangeStartupStateL(TInt aState)
sl@0
    29
	{
sl@0
    30
	TIpcArgs params = TIpcArgs(EChangeStartupState, aState);
sl@0
    31
	REComSession::SetGetParametersL(params);
sl@0
    32
	}
sl@0
    33
	
sl@0
    34
/**
sl@0
    35
@internalComponent
sl@0
    36
A helper function to use SetGetParametersL to force EComServer
sl@0
    37
to process the next state.
sl@0
    38
*/
sl@0
    39
void ProcessCurrentStartupStateL()
sl@0
    40
	{
sl@0
    41
	TIpcArgs params = TIpcArgs(EProcessStartupState);
sl@0
    42
	REComSession::SetGetParametersL(params);
sl@0
    43
	}
sl@0
    44
	
sl@0
    45
/**
sl@0
    46
@internalComponent
sl@0
    47
A helper function to use SetGetParametersL to get the current 
sl@0
    48
startup state of EComServer
sl@0
    49
@return current startup state of EComServer
sl@0
    50
*/
sl@0
    51
TInt GetCurrentStartupStateL()
sl@0
    52
	{
sl@0
    53
	TInt currentState = 0;
sl@0
    54
	TPckg<TInt> statePckg(currentState);
sl@0
    55
	TIpcArgs params = TIpcArgs(EGetStartupState, &statePckg);
sl@0
    56
	REComSession::SetGetParametersL(params);
sl@0
    57
	
sl@0
    58
	return currentState;
sl@0
    59
	}
sl@0
    60
sl@0
    61
#endif
sl@0
    62
sl@0
    63
#ifdef __ECOM_SERVER_PERFORMANCE__
sl@0
    64
sl@0
    65
//==================== For Startup State Time Results ===================
sl@0
    66
/** Method used for TLinearOrder for TTimerResult arrays*/
sl@0
    67
TInt CompareTimerResults(const TStartupStateTimerResult& aTimerResult1, const TStartupStateTimerResult& aTimerResult2)
sl@0
    68
	{
sl@0
    69
	if(aTimerResult1.iState < aTimerResult2.iState)
sl@0
    70
		{
sl@0
    71
		return -1;
sl@0
    72
		}
sl@0
    73
	else if(aTimerResult1.iState > aTimerResult2.iState)
sl@0
    74
		{
sl@0
    75
		return 1;
sl@0
    76
		}
sl@0
    77
		
sl@0
    78
	return 0;
sl@0
    79
	}
sl@0
    80
	
sl@0
    81
/** Method used for TIdentityRelation for TTimerResult arrays*/
sl@0
    82
TBool MatchOnState(const TStartupStateTimerResult& aKey, const TStartupStateTimerResult& aIndexItem)
sl@0
    83
	{
sl@0
    84
	return aIndexItem.iState == aKey.iState;
sl@0
    85
	}
sl@0
    86
sl@0
    87
TInt RStartupStateTimerResults::FindTimerResult(TInt aState)
sl@0
    88
	{
sl@0
    89
	TIdentityRelation<TStartupStateTimerResult> identity(MatchOnState);
sl@0
    90
	TStartupStateTimerResult key;
sl@0
    91
	key.iState = aState;
sl@0
    92
	return iTimerResults.Find(key, identity);
sl@0
    93
	}
sl@0
    94
sl@0
    95
/**
sl@0
    96
Method that returns the idx of the timer result at requested state
sl@0
    97
@param aTimerResults the sorted timer results array to search for the 
sl@0
    98
timer value
sl@0
    99
@param aState the state of the requested timer result 
sl@0
   100
@return The index of the matching timer result KErrNotFound, if no 
sl@0
   101
matching object can be found
sl@0
   102
*/	
sl@0
   103
TInt RStartupStateTimerResults::FindInOrderTimerResult(TInt aState)
sl@0
   104
	{
sl@0
   105
	TLinearOrder<TStartupStateTimerResult> compareFunc(CompareTimerResults);
sl@0
   106
	TStartupStateTimerResult key;
sl@0
   107
	key.iState = aState;
sl@0
   108
	return iTimerResults.FindInOrder(key, compareFunc);
sl@0
   109
	}
sl@0
   110
sl@0
   111
/**
sl@0
   112
@internalComponent
sl@0
   113
A helper function to use SetGetParametersL to get the timer recordings
sl@0
   114
for performance testing. If the specified aTimerIdx is beyond the boundaries
sl@0
   115
of the recorded values then aTimerResult would return a value of 0 and aState
sl@0
   116
would return a value of -1. 
sl@0
   117
@param aTimerIdx the index of the timer to use
sl@0
   118
@param aTimerResult the timer readings
sl@0
   119
@param aState the state of the server when timer was read (a zero indexed value)
sl@0
   120
*/
sl@0
   121
TInt RStartupStateTimerResults::GetTimerResult(TInt aTimerIdx, TUint32& aTimerResult, TInt& aState)
sl@0
   122
	{
sl@0
   123
	TInt returnedStatus;
sl@0
   124
	TStartupStateTimerEntry result;
sl@0
   125
sl@0
   126
	TPckg<TInt> statusPckg(returnedStatus);
sl@0
   127
	TPckg<TStartupStateTimerEntry> resultPckg(result);
sl@0
   128
sl@0
   129
	TIpcArgs params = TIpcArgs(EGetStartupStateTimerResult, aTimerIdx, &statusPckg, &resultPckg);
sl@0
   130
	TRAPD(err, REComSession::SetGetParametersL(params));
sl@0
   131
	if (err != KErrNone)
sl@0
   132
		{
sl@0
   133
		return err;	
sl@0
   134
		}
sl@0
   135
	
sl@0
   136
	aTimerResult = result.iTimerResult;
sl@0
   137
	aState = result.iState;
sl@0
   138
	
sl@0
   139
	return returnedStatus;
sl@0
   140
	}
sl@0
   141
sl@0
   142
/**
sl@0
   143
@internalComponent
sl@0
   144
A helper function to use SetGetParametersL to get all of the timer recordings
sl@0
   145
for performance testing.
sl@0
   146
@param aTimerResults a reference to an array to store sorted timer results.
sl@0
   147
*/
sl@0
   148
void RStartupStateTimerResults::GetAllTimerResults()
sl@0
   149
	{
sl@0
   150
	TInt counter = 0;
sl@0
   151
	while(ETrue)
sl@0
   152
		{
sl@0
   153
		TUint32 time = 0;
sl@0
   154
		TInt state = -1;
sl@0
   155
		TReal realTime = 0.0;
sl@0
   156
		
sl@0
   157
		// get state start info
sl@0
   158
		TInt err = GetTimerResult(counter++, time, state);
sl@0
   159
		if(err || (time == 0 && state == -1))
sl@0
   160
			{
sl@0
   161
			break;
sl@0
   162
			}
sl@0
   163
		
sl@0
   164
		realTime = FastCountToMilliseconds(time);
sl@0
   165
		
sl@0
   166
		//search state
sl@0
   167
		TInt idx = FindTimerResult(state);
sl@0
   168
		if(idx == KErrNotFound) //if it has not been entered to the array make a new entry
sl@0
   169
			{
sl@0
   170
			TStartupStateTimerResult timerResult;
sl@0
   171
			timerResult.iState = state;
sl@0
   172
			timerResult.iStartTime = realTime;
sl@0
   173
			timerResult.iEndTime = 0;
sl@0
   174
			
sl@0
   175
			iTimerResults.Append(timerResult);
sl@0
   176
			}
sl@0
   177
		else //if it has already been entered update the end time
sl@0
   178
			{
sl@0
   179
			TStartupStateTimerResult& timerResult = iTimerResults[idx];
sl@0
   180
			timerResult.iEndTime = realTime;
sl@0
   181
			}
sl@0
   182
		}
sl@0
   183
	
sl@0
   184
	//the array is populated, sort it for faster search.
sl@0
   185
	TLinearOrder<TStartupStateTimerResult> compareFunc(CompareTimerResults);
sl@0
   186
	iTimerResults.Sort(compareFunc);
sl@0
   187
	}
sl@0
   188
sl@0
   189
void RStartupStateTimerResults::ResetTimerCountL()
sl@0
   190
	{
sl@0
   191
	
sl@0
   192
	TIpcArgs params = TIpcArgs(EResetStartupStateTimerCounts);
sl@0
   193
	REComSession::SetGetParametersL(params);
sl@0
   194
	}
sl@0
   195
	
sl@0
   196
/**
sl@0
   197
 Frees any allocated resources
sl@0
   198
*/
sl@0
   199
void RStartupStateTimerResults::Close()
sl@0
   200
	{
sl@0
   201
	iTimerResults.Close();
sl@0
   202
	}
sl@0
   203
sl@0
   204
/**
sl@0
   205
 Startup state timer results must have been populated by a call to RetrieveResults before this method is called
sl@0
   206
 @param aIndex The index of the timing entry to retrieve
sl@0
   207
 @return The timer result entry for the given index
sl@0
   208
*/
sl@0
   209
TStartupStateTimerResult& RStartupStateTimerResults::At(TInt aIndex)
sl@0
   210
	{
sl@0
   211
	return iTimerResults[aIndex];
sl@0
   212
	}
sl@0
   213
sl@0
   214
/**
sl@0
   215
 @return The number of timer results retrieved
sl@0
   216
*/
sl@0
   217
TInt RStartupStateTimerResults::Count()
sl@0
   218
	{
sl@0
   219
	return iTimerResults.Count();
sl@0
   220
	}
sl@0
   221
sl@0
   222
//==================== For Client Requests Time Results ===================
sl@0
   223
/**
sl@0
   224
 Retrieves a single client request timer entry from the ECom server
sl@0
   225
 @param aTimerIdx The index of the timing entry to retrieve
sl@0
   226
 @return KErrNone if successful, KErrOverflow if aTimerIdx is greater than the number of timing entries
sl@0
   227
*/
sl@0
   228
TInt RClientRequestTimerResults::GetTimerResult(TInt aTimerIdx, TClientRequestTimerEntry& aTimerEntry)
sl@0
   229
	{
sl@0
   230
	TInt returnedStatus;
sl@0
   231
	TPckg<TInt> statusPckg(returnedStatus);
sl@0
   232
	TPckg<TClientRequestTimerEntry> resultPckg(aTimerEntry);
sl@0
   233
	
sl@0
   234
	TIpcArgs params = TIpcArgs(EGetAccumulatedClientRequestsTimerResult, aTimerIdx, &statusPckg, &resultPckg);
sl@0
   235
	TRAPD(err, REComSession::SetGetParametersL(params));
sl@0
   236
	if (err != KErrNone)	
sl@0
   237
		{
sl@0
   238
		return err;	
sl@0
   239
		}
sl@0
   240
	
sl@0
   241
	return returnedStatus;
sl@0
   242
	}
sl@0
   243
	
sl@0
   244
/**
sl@0
   245
Retrieves all client request timer entries from the ECom server
sl@0
   246
*/
sl@0
   247
void RClientRequestTimerResults::RetrieveResultsL()
sl@0
   248
	{
sl@0
   249
	TClientRequestTimerEntry timerEntry;
sl@0
   250
	TInt err = KErrNone;
sl@0
   251
	for (TInt i = 0; err == KErrNone; i++)
sl@0
   252
		{
sl@0
   253
		err = GetTimerResult(i, timerEntry);
sl@0
   254
		if (err == KErrNone)
sl@0
   255
			{
sl@0
   256
			iResults.Append(timerEntry);
sl@0
   257
			}
sl@0
   258
		else if (err != KErrOverflow)
sl@0
   259
			{
sl@0
   260
			User::Leave(err);
sl@0
   261
			}
sl@0
   262
		}
sl@0
   263
	}
sl@0
   264
	
sl@0
   265
/**
sl@0
   266
 Determines the total time taken by ECom server servicing client requests with the given state and request type
sl@0
   267
 by going through each of the retrieved timer entries and adding up their associated times
sl@0
   268
 @pre RetrieveResultsL must have been called before this method is called
sl@0
   269
 @param aState The startup state to retrieve timer results for
sl@0
   270
 @param aRequestType The type of client request to retrieve timer results for
sl@0
   271
 @param aNumRequests On return contains the number of client requests matching aState and aRequestType
sl@0
   272
 @return The total time taken servicing client requests matching startup state aState and aRequestType
sl@0
   273
*/
sl@0
   274
TReal RClientRequestTimerResults::GetAccumulatedClientRequestTime(TInt aState, TEComClientRequestType aRequestType, TUint& aNumRequests)
sl@0
   275
	{
sl@0
   276
	TUint32 accumulatedTicks = 0;
sl@0
   277
	
sl@0
   278
	aNumRequests = 0;
sl@0
   279
	for (TInt i = 0; i < iResults.Count(); i++)
sl@0
   280
		{
sl@0
   281
		if (iResults[i].iState == aState && iResults[i].iClientRequestType == aRequestType)
sl@0
   282
			{
sl@0
   283
			TUint netTime = iResults[i].iEndTime - iResults[i].iStartTime;
sl@0
   284
			accumulatedTicks += netTime;
sl@0
   285
			aNumRequests++;
sl@0
   286
			}
sl@0
   287
		}
sl@0
   288
		
sl@0
   289
	return FastCountToMilliseconds(accumulatedTicks);
sl@0
   290
	}
sl@0
   291
sl@0
   292
/**
sl@0
   293
 Determines the total time taken by ECom server servicing client requests with the given state
sl@0
   294
 by going through each of the retrieved timer entries and adding up their associated times
sl@0
   295
 Client request timer results must have been populated by a call to RetrieveResults before this method is called
sl@0
   296
 @param aState The startup state to retrieve timer results for
sl@0
   297
 @param aNumRequests On return contains the number of client requests matching aState
sl@0
   298
 @return The total time taken servicing client requests matching startup state aState
sl@0
   299
*/
sl@0
   300
TReal RClientRequestTimerResults::GetAccumulatedClientRequestTime(TInt aState, TUint& aNumRequests)
sl@0
   301
	{
sl@0
   302
	TUint32 accumulatedTicks = 0;
sl@0
   303
	
sl@0
   304
	aNumRequests = 0;
sl@0
   305
	for (TInt i = 0; i < iResults.Count(); i++)
sl@0
   306
		{
sl@0
   307
		if (iResults[i].iState == aState)
sl@0
   308
			{
sl@0
   309
			TUint netTime = iResults[i].iEndTime - iResults[i].iStartTime;
sl@0
   310
			accumulatedTicks += netTime;
sl@0
   311
			aNumRequests++;
sl@0
   312
			}
sl@0
   313
		}
sl@0
   314
		
sl@0
   315
	return FastCountToMilliseconds(accumulatedTicks);
sl@0
   316
	}
sl@0
   317
sl@0
   318
/**
sl@0
   319
 Determines the total time taken by ECom server servicing client requests with the given request type
sl@0
   320
 by going through each of the retrieved timer entries and adding up their associated times
sl@0
   321
 Client request timer results must have been populated by a call to RetrieveResults before this method is called
sl@0
   322
 @param aRequestType The type of client request to retrieve timer results for
sl@0
   323
 @param aNumRequests On return contains the number of client requests matching aRequestType
sl@0
   324
 @return The total time taken servicing client requests matching startup state aRequestType
sl@0
   325
*/
sl@0
   326
TReal RClientRequestTimerResults::GetAccumulatedClientRequestTime(TEComClientRequestType aRequestType, TUint& aNumRequests)
sl@0
   327
	{
sl@0
   328
	TUint32 accumulatedTicks = 0;
sl@0
   329
	
sl@0
   330
	aNumRequests = 0;
sl@0
   331
	for (TInt i = 0; i < iResults.Count(); i++)
sl@0
   332
		{
sl@0
   333
		if (iResults[i].iClientRequestType == aRequestType)
sl@0
   334
			{
sl@0
   335
			TUint netTime = iResults[i].iEndTime - iResults[i].iStartTime;
sl@0
   336
			accumulatedTicks += netTime;
sl@0
   337
			aNumRequests++;
sl@0
   338
			}
sl@0
   339
		}
sl@0
   340
		
sl@0
   341
	return FastCountToMilliseconds(accumulatedTicks);
sl@0
   342
	}
sl@0
   343
sl@0
   344
/**
sl@0
   345
 Determines the total time taken by ECom server servicing all client requests
sl@0
   346
 by going through each of the retrieved timer entries and adding up their associated times
sl@0
   347
 Client request timer results must have been populated by a call to RetrieveResults before this method is called
sl@0
   348
 @param aNumRequests On return contains the number of client requests
sl@0
   349
 @return The total time taken servicing client requests
sl@0
   350
*/
sl@0
   351
TReal RClientRequestTimerResults::GetAccumulatedClientRequestTime(TUint& aNumRequests)
sl@0
   352
	{
sl@0
   353
	TUint32 accumulatedTicks = 0;
sl@0
   354
	
sl@0
   355
	aNumRequests = 0;
sl@0
   356
	for (TInt i = 0; i < iResults.Count(); i++)
sl@0
   357
		{
sl@0
   358
		TUint netTime = iResults[i].iEndTime - iResults[i].iStartTime;
sl@0
   359
		accumulatedTicks += netTime;
sl@0
   360
		aNumRequests++;
sl@0
   361
		}
sl@0
   362
		
sl@0
   363
	return FastCountToMilliseconds(accumulatedTicks);
sl@0
   364
	}
sl@0
   365
sl@0
   366
/**
sl@0
   367
Frees any resources
sl@0
   368
*/
sl@0
   369
void RClientRequestTimerResults::Close()
sl@0
   370
	{
sl@0
   371
	iResults.Reset();
sl@0
   372
	}
sl@0
   373
sl@0
   374
/**	
sl@0
   375
@internalComponent
sl@0
   376
A helper function to use SetGetParametersL to get the number of
sl@0
   377
drives, plugins, interfaces, implementation for performance testing.
sl@0
   378
@param aCounts a reference to a struct to store results.
sl@0
   379
*/
sl@0
   380
void RegistryCounts::GetRegistryCountsL(TRegistryCounts::TRegistryCountDriveType aType, TRegistryCounts& aCounts)
sl@0
   381
	{
sl@0
   382
	TPckg<TRegistryCounts> registryCountPckg(aCounts);
sl@0
   383
	TIpcArgs params = TIpcArgs(EGetRegistryCounts, aType, &registryCountPckg);
sl@0
   384
	REComSession::SetGetParametersL(params);
sl@0
   385
	}
sl@0
   386
sl@0
   387
sl@0
   388
//==================== For ECom Performance Time Results ===================
sl@0
   389
/**
sl@0
   390
@internalComponent
sl@0
   391
A helper function to use SetGetParametersL to get the time recordings
sl@0
   392
for performance testing. If the specified aTimerIdx is beyond the size
sl@0
   393
of the valid recorded values then KErrOverFlow returns from the server side
sl@0
   394
@param aTimerIdx the index of the time record to use
sl@0
   395
@param aTimeEntry the fast time record entry
sl@0
   396
*/
sl@0
   397
TInt REComPerfTimeRecords::GetTimeRecordEntry(TInt aTimeIdx, TEComPerfTimeRecordEntry& aTimeEntry)
sl@0
   398
	{
sl@0
   399
	TInt returnedStatus;
sl@0
   400
sl@0
   401
	TPckg<TInt> statusPckg(returnedStatus);
sl@0
   402
	TPckg<TEComPerfTimeRecordEntry> resultPckg(aTimeEntry);
sl@0
   403
sl@0
   404
	TIpcArgs params = TIpcArgs(EGetEComPerfTimeRecord, aTimeIdx, &statusPckg, &resultPckg);
sl@0
   405
	TRAPD(err, REComSession::SetGetParametersL(params));
sl@0
   406
	if (err != KErrNone)
sl@0
   407
		{
sl@0
   408
		return err;	
sl@0
   409
		}
sl@0
   410
		
sl@0
   411
	return returnedStatus;
sl@0
   412
	}
sl@0
   413
sl@0
   414
/**
sl@0
   415
Get all ECom performance time records from server and fill up local array for further use
sl@0
   416
*/
sl@0
   417
void REComPerfTimeRecords::OpenL()
sl@0
   418
	{
sl@0
   419
	TEComPerfTimeRecordEntry timeEntry;
sl@0
   420
	TInt err = KErrNone;
sl@0
   421
	
sl@0
   422
	iTimeRecords.Reset();
sl@0
   423
	
sl@0
   424
	// Get the first record from server
sl@0
   425
	TInt idx = 0;
sl@0
   426
	err = GetTimeRecordEntry(idx, timeEntry);
sl@0
   427
	while(err == KErrNone)
sl@0
   428
		{
sl@0
   429
		// If it is a valid record entry, append it to local record array, 
sl@0
   430
		//  and get the next entry from server.
sl@0
   431
		if (timeEntry.iType != ENullType)
sl@0
   432
			{
sl@0
   433
			iTimeRecords.Append(timeEntry);
sl@0
   434
			idx++;
sl@0
   435
			err = GetTimeRecordEntry(idx, timeEntry);
sl@0
   436
			}
sl@0
   437
		// Otherwise finished
sl@0
   438
		else
sl@0
   439
			break;
sl@0
   440
		}
sl@0
   441
			
sl@0
   442
	if (err != KErrOverflow)
sl@0
   443
		{
sl@0
   444
		User::LeaveIfError(err);
sl@0
   445
		}
sl@0
   446
	}
sl@0
   447
sl@0
   448
/**
sl@0
   449
Transform raw fast count records into real time results (in mSecs), and collect the results by specified type.
sl@0
   450
*/
sl@0
   451
void REComPerfTimeRecords::RetrieveResultsByTypeL(TEComPerfTimeRecordType aType, RArray<TEComPerfRealTimeResult>& aTimeResults)
sl@0
   452
	{
sl@0
   453
	TEComPerfRealTimeResult timeResult;
sl@0
   454
	TBool start = ETrue;
sl@0
   455
	TInt count = iTimeRecords.Count();
sl@0
   456
sl@0
   457
	if(count)
sl@0
   458
		{
sl@0
   459
		for (TInt i = 0; i < count; i++)
sl@0
   460
			{
sl@0
   461
			// If the record has correct type
sl@0
   462
			if(iTimeRecords[i].iType == aType)
sl@0
   463
				{
sl@0
   464
				// If the record is the first of the couple, it should be the start time record
sl@0
   465
				if(start)
sl@0
   466
					{
sl@0
   467
					timeResult.iStartTime = FastCountToMilliseconds(iTimeRecords[i].iTime);
sl@0
   468
					timeResult.iType = iTimeRecords[i].iType;
sl@0
   469
					timeResult.iInfo = iTimeRecords[i].iInfo;
sl@0
   470
					start = EFalse;
sl@0
   471
					}
sl@0
   472
				// Otherwise it should be the end time record.
sl@0
   473
				else
sl@0
   474
					{
sl@0
   475
					timeResult.iEndTime = FastCountToMilliseconds(iTimeRecords[i].iTime);
sl@0
   476
					aTimeResults.Append(timeResult);
sl@0
   477
					start = ETrue;
sl@0
   478
					}
sl@0
   479
				}
sl@0
   480
			}
sl@0
   481
		}
sl@0
   482
	else // Leave if there's no records to retrieve
sl@0
   483
		{
sl@0
   484
		User::Leave(KErrNotFound);
sl@0
   485
		}
sl@0
   486
	}
sl@0
   487
sl@0
   488
sl@0
   489
/**
sl@0
   490
sl@0
   491
*/
sl@0
   492
void REComPerfTimeRecords::RetrieveResultsInfoByTypeL(TEComPerfTimeRecordType aType, RArray<TInt>& aInfos)
sl@0
   493
	{
sl@0
   494
	TInt count = iTimeRecords.Count();
sl@0
   495
	if(count)
sl@0
   496
		{
sl@0
   497
		for (TInt i = 0; i < count; i++)
sl@0
   498
			{
sl@0
   499
			// If the record has correct type, insert the info into aInfos array. No duplicate infos are recorded.
sl@0
   500
			if(iTimeRecords[i].iType == aType)
sl@0
   501
				{
sl@0
   502
				TInt err = aInfos.InsertInOrder(iTimeRecords[i].iInfo);
sl@0
   503
				
sl@0
   504
				if(err!=KErrAlreadyExists)
sl@0
   505
					User::LeaveIfError(err);
sl@0
   506
				}
sl@0
   507
			}
sl@0
   508
		}
sl@0
   509
	else // Leave if there's no records to retrieve
sl@0
   510
		{
sl@0
   511
		User::Leave(KErrNotFound);
sl@0
   512
		}
sl@0
   513
	}
sl@0
   514
sl@0
   515
// Reset all fast count records on server
sl@0
   516
void REComPerfTimeRecords::ResetRecordsOnServerL()
sl@0
   517
	{
sl@0
   518
	TIpcArgs params = TIpcArgs(EResetEComPerfTimeRecords);
sl@0
   519
	REComSession::SetGetParametersL(params);
sl@0
   520
	}
sl@0
   521
sl@0
   522
TInt REComPerfTimeRecords::Count()
sl@0
   523
	{
sl@0
   524
	return iTimeRecords.Count();
sl@0
   525
	}
sl@0
   526
sl@0
   527
// Empty local time result array
sl@0
   528
void REComPerfTimeRecords::Reset()
sl@0
   529
	{
sl@0
   530
	iTimeRecords.Reset();
sl@0
   531
	}
sl@0
   532
sl@0
   533
// Release resources
sl@0
   534
void REComPerfTimeRecords::Close()
sl@0
   535
	{
sl@0
   536
	iTimeRecords.Close();
sl@0
   537
	}
sl@0
   538
sl@0
   539
//==================== For ECom Performance Heap Usage Results ===================
sl@0
   540
/**
sl@0
   541
@internalComponent
sl@0
   542
*/
sl@0
   543
void REComHeapUsageRecords::OpenL()
sl@0
   544
	{
sl@0
   545
	iHeapRecords.Reset();
sl@0
   546
	
sl@0
   547
	// Get the first record from server
sl@0
   548
	TInt idx = 0;
sl@0
   549
	TEComPerfHeapUsage heapEntry;
sl@0
   550
	TInt err=GetHeapRecordEntry(idx,heapEntry);
sl@0
   551
	while(err == KErrNone && heapEntry.iState!=0)
sl@0
   552
		{
sl@0
   553
		//check existing array for a start item
sl@0
   554
		TBool startFound=EFalse;
sl@0
   555
		for (TInt i=0;i<iHeapRecords.Count();i++)
sl@0
   556
			{
sl@0
   557
			//if can find one this entry must be a start entry so update the heap usage
sl@0
   558
			if (iHeapRecords[i].iState==heapEntry.iState)
sl@0
   559
				{
sl@0
   560
				iHeapRecords[i].iHeapSize=heapEntry.iHeapSize-(iHeapRecords[i].iHeapSize);
sl@0
   561
				startFound=ETrue;
sl@0
   562
				break;
sl@0
   563
				}
sl@0
   564
			}
sl@0
   565
		//only append the entry if it is a new start entry
sl@0
   566
		if (!startFound)
sl@0
   567
			iHeapRecords.Append(heapEntry);
sl@0
   568
		idx++;
sl@0
   569
		err=GetHeapRecordEntry(idx,heapEntry);
sl@0
   570
		}
sl@0
   571
			
sl@0
   572
	if (err != KErrOverflow)
sl@0
   573
		{
sl@0
   574
		User::LeaveIfError(err);
sl@0
   575
		}	
sl@0
   576
	}
sl@0
   577
sl@0
   578
TInt REComHeapUsageRecords::GetHeapUsageAtState(TInt aState)
sl@0
   579
	{
sl@0
   580
	for (TInt i=0;i<iHeapRecords.Count();i++)
sl@0
   581
		{
sl@0
   582
		if (iHeapRecords[i].iState==aState)
sl@0
   583
			{
sl@0
   584
			return iHeapRecords[i].iHeapSize;
sl@0
   585
			}
sl@0
   586
		}
sl@0
   587
	return KErrNotFound;
sl@0
   588
	}
sl@0
   589
sl@0
   590
void REComHeapUsageRecords::Close()
sl@0
   591
	{
sl@0
   592
	iHeapRecords.Reset();
sl@0
   593
	iHeapRecords.Close();
sl@0
   594
	}
sl@0
   595
sl@0
   596
TInt REComHeapUsageRecords::GetHeapRecordEntry(TInt aHeapIdx,TEComPerfHeapUsage& aHeapEntry)
sl@0
   597
	{
sl@0
   598
	TInt returnedStatus;
sl@0
   599
	TPckg<TInt> statusPckg(returnedStatus);
sl@0
   600
	TPckg<TEComPerfHeapUsage> resultPckg(aHeapEntry);
sl@0
   601
	TIpcArgs params = TIpcArgs(EGetEComServerHeapResult, aHeapIdx,&statusPckg,&resultPckg);
sl@0
   602
	TRAPD(err, REComSession::SetGetParametersL(params));
sl@0
   603
	return err;
sl@0
   604
	}
sl@0
   605
sl@0
   606
//===========================================================
sl@0
   607
/**
sl@0
   608
Converts time retrieved using FastCounter to milliseconds
sl@0
   609
 @param aFastCount The time to convert to milliseconds, retrieved using User::FastCounter
sl@0
   610
 @return The time in milliseconds corresponding to aFastCount
sl@0
   611
*/
sl@0
   612
TReal FastCountToMilliseconds(TInt aFastCount)
sl@0
   613
	{
sl@0
   614
	TInt freqInHz;
sl@0
   615
	HAL::Get(HAL::EFastCounterFrequency, freqInHz);
sl@0
   616
	TReal freqInkHz = freqInHz / 1000;
sl@0
   617
	return (TReal)aFastCount / freqInkHz;
sl@0
   618
	}
sl@0
   619
	
sl@0
   620
#endif