os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/EComSessionAux.h
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
#ifndef __ECOMSESSIONAUX_H__
sl@0
    17
#define __ECOMSESSIONAUX_H__
sl@0
    18
sl@0
    19
#include <e32cmn.h>
sl@0
    20
#include <startup.hrh>
sl@0
    21
sl@0
    22
/**
sl@0
    23
Codes used for processing ESetGetParameters messages.
sl@0
    24
Note: The constants are intended for component testing of
sl@0
    25
EcomServer.
sl@0
    26
@internalComponent
sl@0
    27
*/
sl@0
    28
enum TEComParameterOptions
sl@0
    29
	{
sl@0
    30
#ifdef __ECOM_SERVER_TESTABILITY__
sl@0
    31
	//these enumerated values are used for ecom component testing
sl@0
    32
	EChangeStartupState,
sl@0
    33
	EProcessStartupState,
sl@0
    34
	EGetStartupState,
sl@0
    35
#endif
sl@0
    36
#ifdef __ECOM_SERVER_PERFORMANCE__
sl@0
    37
	//this enumerated value is used for ecom performance testing
sl@0
    38
	EGetStartupStateTimerResult,
sl@0
    39
	EGetAccumulatedClientRequestsTimerResult,
sl@0
    40
	EGetRegistryCounts,
sl@0
    41
	EResetStartupStateTimerCounts,
sl@0
    42
	EGetEComPerfTimeRecord,
sl@0
    43
	EResetEComPerfTimeRecords,
sl@0
    44
	EGetEComServerHeapResult,
sl@0
    45
#endif 
sl@0
    46
	ELastOption
sl@0
    47
	};
sl@0
    48
sl@0
    49
#ifdef __ECOM_SERVER_TESTABILITY__
sl@0
    50
sl@0
    51
void ChangeStartupStateL(TInt aState);
sl@0
    52
	
sl@0
    53
void ProcessCurrentStartupStateL();
sl@0
    54
	
sl@0
    55
TInt GetCurrentStartupStateL();
sl@0
    56
sl@0
    57
#endif
sl@0
    58
sl@0
    59
#ifdef __ECOM_SERVER_PERFORMANCE__
sl@0
    60
sl@0
    61
//==================== For Startup State Time Results ===================
sl@0
    62
/**
sl@0
    63
@internalComponent
sl@0
    64
Class for storing start and end timer results for a state.
sl@0
    65
*/
sl@0
    66
class TStartupStateTimerResult
sl@0
    67
	{
sl@0
    68
public:
sl@0
    69
	/** State for which to store the timer result */
sl@0
    70
	TInt iState;
sl@0
    71
	/** Timer result reading in [ms] at the beginning of the state */
sl@0
    72
	TReal iStartTime;
sl@0
    73
	/** Timer result reading in [ms] at the end of the state */
sl@0
    74
	TReal iEndTime;
sl@0
    75
	};
sl@0
    76
sl@0
    77
/**
sl@0
    78
@internalComponent
sl@0
    79
Class for storing start and end timer results for a state and client request type.
sl@0
    80
*/
sl@0
    81
class TStartupStateTimerEntry
sl@0
    82
	{
sl@0
    83
public:
sl@0
    84
	/** State in which the ECom client request was made */
sl@0
    85
	TInt iState;
sl@0
    86
	/** Timer result reading in [ms] at the beginning of the request */
sl@0
    87
	TUint32 iTimerResult;
sl@0
    88
	};
sl@0
    89
sl@0
    90
class RStartupStateTimerResults
sl@0
    91
	{
sl@0
    92
public: // public methods
sl@0
    93
	void GetAllTimerResults();
sl@0
    94
	void Close();
sl@0
    95
	TInt Count();
sl@0
    96
	TStartupStateTimerResult& At(TInt aIndex);
sl@0
    97
	TInt FindInOrderTimerResult(TInt aState);
sl@0
    98
	TInt FindTimerResult(TInt aState);
sl@0
    99
	void ResetTimerCountL();
sl@0
   100
private: // private methods
sl@0
   101
	TInt GetTimerResult(TInt aTimerIdx, TUint32& aTimerResult, TInt& aState);
sl@0
   102
private: // private member variables
sl@0
   103
	RArray<TStartupStateTimerResult> iTimerResults;
sl@0
   104
	};
sl@0
   105
sl@0
   106
//==================== For Client Requests Time Results ===================
sl@0
   107
/**
sl@0
   108
@internalComponent
sl@0
   109
Enumeration of ECom client request types
sl@0
   110
*/
sl@0
   111
enum TEComClientRequestType
sl@0
   112
	{
sl@0
   113
	EEComCreateRequestType,
sl@0
   114
	EEComListRequestType,
sl@0
   115
	EEComNotifyOnChangeRequestType,
sl@0
   116
	EEComCancelNotifyOnChangeRequestType,
sl@0
   117
	EEComCollectImplementationsRequestType,
sl@0
   118
	EEComListExtendedInterfacesRequestType,
sl@0
   119
	EEComNumClientRequestTypes
sl@0
   120
	};
sl@0
   121
sl@0
   122
/**
sl@0
   123
@internalComponent
sl@0
   124
Class for storing start and end timer results for a state and client request type.
sl@0
   125
*/
sl@0
   126
class TClientRequestTimerEntry
sl@0
   127
	{
sl@0
   128
public:
sl@0
   129
	/** State in which the ECom client request was made */
sl@0
   130
	TInt iState;
sl@0
   131
	/** Timer result reading in [ms] at the beginning of the request */
sl@0
   132
	TUint iStartTime;
sl@0
   133
	/** Timer result reading in [ms] at the end of the request */
sl@0
   134
	TUint iEndTime;
sl@0
   135
	/** Whether the client request was a list request or a create request */
sl@0
   136
	TEComClientRequestType iClientRequestType;
sl@0
   137
	};
sl@0
   138
sl@0
   139
/**
sl@0
   140
@internalComponent
sl@0
   141
Class to retrieve timing for ECom client requests during the different stages of start-up
sl@0
   142
*/
sl@0
   143
class RClientRequestTimerResults
sl@0
   144
	{
sl@0
   145
public: // public methods
sl@0
   146
	void RetrieveResultsL();
sl@0
   147
	void Close();
sl@0
   148
	TReal GetAccumulatedClientRequestTime(TUint& aNumRequests);
sl@0
   149
	TReal GetAccumulatedClientRequestTime(TInt aState, TUint& aNumRequests);
sl@0
   150
	TReal GetAccumulatedClientRequestTime(TEComClientRequestType aRequestType, TUint& aNumRequests);
sl@0
   151
	TReal GetAccumulatedClientRequestTime(TInt aState, TEComClientRequestType aRequestType, TUint& aNumRequests);
sl@0
   152
private: // private methods
sl@0
   153
	static TInt GetTimerResult(TInt aTimerIdx, TClientRequestTimerEntry& aTimerEntry);
sl@0
   154
private: // private data
sl@0
   155
	/** List of all timer results */
sl@0
   156
	RArray<TClientRequestTimerEntry> iResults;
sl@0
   157
	};
sl@0
   158
sl@0
   159
/**
sl@0
   160
@internalComponent
sl@0
   161
Class to retrieve ECom plugin counts
sl@0
   162
*/
sl@0
   163
class RegistryCounts
sl@0
   164
	{
sl@0
   165
public:
sl@0
   166
	// Struct for storing registry counts.
sl@0
   167
	struct TRegistryCounts
sl@0
   168
		{
sl@0
   169
		enum TRegistryCountDriveType
sl@0
   170
			{
sl@0
   171
			ERoInternal,
sl@0
   172
			ENonRoInternal,
sl@0
   173
			EAll
sl@0
   174
			};
sl@0
   175
		/** The number of drives found */
sl@0
   176
		TInt iDrives;
sl@0
   177
		/** The number of plugins found */
sl@0
   178
		TInt iDlls;
sl@0
   179
		/** The number of interfaces found */
sl@0
   180
		TInt iInterfaces;
sl@0
   181
		/** The number fo implementations found */
sl@0
   182
		TInt iImplementations;
sl@0
   183
		};
sl@0
   184
sl@0
   185
public: // public methods
sl@0
   186
	static void GetRegistryCountsL(TRegistryCounts::TRegistryCountDriveType aType, TRegistryCounts& aCounts);
sl@0
   187
private: // private methods
sl@0
   188
private: // private data
sl@0
   189
	};
sl@0
   190
sl@0
   191
//==================== For ECom Performance Time Results ===================
sl@0
   192
/**
sl@0
   193
@internalComponent
sl@0
   194
ECom performance time record types. Time records can be retrieved by type.
sl@0
   195
*/
sl@0
   196
enum TEComPerfTimeRecordType
sl@0
   197
	{
sl@0
   198
	// Used only for validation, not used by any real types
sl@0
   199
	ENullType,
sl@0
   200
	// Time record types, distinguished by functions it exams
sl@0
   201
	ECDiscovererNotifierRunL,
sl@0
   202
	ECDiscovererTimerRunL,
sl@0
   203
	ECDiscovererRediscoveryScanDirectoryL,
sl@0
   204
	};
sl@0
   205
sl@0
   206
/**
sl@0
   207
@internalComponent
sl@0
   208
Class for storing a fast count result with type and other information.
sl@0
   209
*/
sl@0
   210
class TEComPerfTimeRecordEntry
sl@0
   211
	{
sl@0
   212
public:
sl@0
   213
	// Fast counter result.
sl@0
   214
	TUint iTime;
sl@0
   215
	// The type of time record.
sl@0
   216
	TEComPerfTimeRecordType iType;
sl@0
   217
	// Additional inforamtion attached with the record. Eg. Drive number of a notifier
sl@0
   218
	TInt iInfo;
sl@0
   219
	};
sl@0
   220
sl@0
   221
/**
sl@0
   222
@internalComponent
sl@0
   223
Class for storing a complete time measurement result (in ms) with type and other information.
sl@0
   224
*/
sl@0
   225
class TEComPerfRealTimeResult
sl@0
   226
	{
sl@0
   227
public:
sl@0
   228
	// Time result reading in [ms] at the beginning of the measurement.
sl@0
   229
	TReal iStartTime;
sl@0
   230
	// Time result reading in [ms] at the end of the measurement.
sl@0
   231
	TReal iEndTime;
sl@0
   232
	// Time result type, indicating which function/method it measures.
sl@0
   233
	TEComPerfTimeRecordType iType;
sl@0
   234
	// Additional information if needed.
sl@0
   235
	TInt iInfo;
sl@0
   236
	};
sl@0
   237
sl@0
   238
/**
sl@0
   239
@internalComponent
sl@0
   240
Class for storing the heap usage at various startup state
sl@0
   241
*/
sl@0
   242
class TEComPerfHeapUsage
sl@0
   243
	{
sl@0
   244
public:
sl@0
   245
	/** State for which to store the heap usage */
sl@0
   246
	TInt iState;
sl@0
   247
	/** Current committed heap reading */
sl@0
   248
	TInt iHeapSize;	
sl@0
   249
	};
sl@0
   250
sl@0
   251
/**
sl@0
   252
@internalComponent
sl@0
   253
An R Class to retrieve the heap record from the server side
sl@0
   254
*/
sl@0
   255
class REComHeapUsageRecords
sl@0
   256
	{
sl@0
   257
public:
sl@0
   258
	void OpenL();
sl@0
   259
	void GetAllHeapUsageResultsL();
sl@0
   260
	TInt GetHeapUsageAtState(TInt aState);
sl@0
   261
	void Close();
sl@0
   262
private:
sl@0
   263
	TInt GetHeapRecordEntry(TInt aHeapIdx,TEComPerfHeapUsage& aHeapEntry);
sl@0
   264
private:
sl@0
   265
	// this will store the actual heap usage at different state
sl@0
   266
	RArray<TEComPerfHeapUsage> iHeapRecords;	
sl@0
   267
	};
sl@0
   268
sl@0
   269
/**
sl@0
   270
@internalComponent
sl@0
   271
An R Class to retrieve time records from server side and process them into real time results. 
sl@0
   272
 APIs of the class are used by test cases.
sl@0
   273
*/
sl@0
   274
class REComPerfTimeRecords
sl@0
   275
	{
sl@0
   276
public: // public methods
sl@0
   277
	void OpenL();
sl@0
   278
	TInt Count();
sl@0
   279
	void Reset();
sl@0
   280
	void ResetRecordsOnServerL();
sl@0
   281
	void RetrieveResultsByTypeL(TEComPerfTimeRecordType aType, RArray<TEComPerfRealTimeResult>& aTimeResults);
sl@0
   282
	void RetrieveResultsInfoByTypeL(TEComPerfTimeRecordType aType, RArray<TInt>& aInfos);
sl@0
   283
	void Close();
sl@0
   284
private: // private methods
sl@0
   285
	TInt GetTimeRecordEntry(TInt aTimerIdx, TEComPerfTimeRecordEntry& aTimerEntry);
sl@0
   286
private: // private member variables
sl@0
   287
	// Local duplicate of time records on server, filled by Open()
sl@0
   288
	RArray<TEComPerfTimeRecordEntry> iTimeRecords;
sl@0
   289
	};
sl@0
   290
sl@0
   291
//===========================================================
sl@0
   292
TReal FastCountToMilliseconds(TInt aFastCount);
sl@0
   293
sl@0
   294
#endif
sl@0
   295
sl@0
   296
#endif // __ECOMSESSIONAUX_H__