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 #ifndef __ECOMSESSIONAUX_H__
17 #define __ECOMSESSIONAUX_H__
20 #include <startup.hrh>
23 Codes used for processing ESetGetParameters messages.
24 Note: The constants are intended for component testing of
28 enum TEComParameterOptions
30 #ifdef __ECOM_SERVER_TESTABILITY__
31 //these enumerated values are used for ecom component testing
36 #ifdef __ECOM_SERVER_PERFORMANCE__
37 //this enumerated value is used for ecom performance testing
38 EGetStartupStateTimerResult,
39 EGetAccumulatedClientRequestsTimerResult,
41 EResetStartupStateTimerCounts,
42 EGetEComPerfTimeRecord,
43 EResetEComPerfTimeRecords,
44 EGetEComServerHeapResult,
49 #ifdef __ECOM_SERVER_TESTABILITY__
51 void ChangeStartupStateL(TInt aState);
53 void ProcessCurrentStartupStateL();
55 TInt GetCurrentStartupStateL();
59 #ifdef __ECOM_SERVER_PERFORMANCE__
61 //==================== For Startup State Time Results ===================
64 Class for storing start and end timer results for a state.
66 class TStartupStateTimerResult
69 /** State for which to store the timer result */
71 /** Timer result reading in [ms] at the beginning of the state */
73 /** Timer result reading in [ms] at the end of the state */
79 Class for storing start and end timer results for a state and client request type.
81 class TStartupStateTimerEntry
84 /** State in which the ECom client request was made */
86 /** Timer result reading in [ms] at the beginning of the request */
90 class RStartupStateTimerResults
92 public: // public methods
93 void GetAllTimerResults();
96 TStartupStateTimerResult& At(TInt aIndex);
97 TInt FindInOrderTimerResult(TInt aState);
98 TInt FindTimerResult(TInt aState);
99 void ResetTimerCountL();
100 private: // private methods
101 TInt GetTimerResult(TInt aTimerIdx, TUint32& aTimerResult, TInt& aState);
102 private: // private member variables
103 RArray<TStartupStateTimerResult> iTimerResults;
106 //==================== For Client Requests Time Results ===================
109 Enumeration of ECom client request types
111 enum TEComClientRequestType
113 EEComCreateRequestType,
114 EEComListRequestType,
115 EEComNotifyOnChangeRequestType,
116 EEComCancelNotifyOnChangeRequestType,
117 EEComCollectImplementationsRequestType,
118 EEComListExtendedInterfacesRequestType,
119 EEComNumClientRequestTypes
124 Class for storing start and end timer results for a state and client request type.
126 class TClientRequestTimerEntry
129 /** State in which the ECom client request was made */
131 /** Timer result reading in [ms] at the beginning of the request */
133 /** Timer result reading in [ms] at the end of the request */
135 /** Whether the client request was a list request or a create request */
136 TEComClientRequestType iClientRequestType;
141 Class to retrieve timing for ECom client requests during the different stages of start-up
143 class RClientRequestTimerResults
145 public: // public methods
146 void RetrieveResultsL();
148 TReal GetAccumulatedClientRequestTime(TUint& aNumRequests);
149 TReal GetAccumulatedClientRequestTime(TInt aState, TUint& aNumRequests);
150 TReal GetAccumulatedClientRequestTime(TEComClientRequestType aRequestType, TUint& aNumRequests);
151 TReal GetAccumulatedClientRequestTime(TInt aState, TEComClientRequestType aRequestType, TUint& aNumRequests);
152 private: // private methods
153 static TInt GetTimerResult(TInt aTimerIdx, TClientRequestTimerEntry& aTimerEntry);
154 private: // private data
155 /** List of all timer results */
156 RArray<TClientRequestTimerEntry> iResults;
161 Class to retrieve ECom plugin counts
166 // Struct for storing registry counts.
167 struct TRegistryCounts
169 enum TRegistryCountDriveType
175 /** The number of drives found */
177 /** The number of plugins found */
179 /** The number of interfaces found */
181 /** The number fo implementations found */
182 TInt iImplementations;
185 public: // public methods
186 static void GetRegistryCountsL(TRegistryCounts::TRegistryCountDriveType aType, TRegistryCounts& aCounts);
187 private: // private methods
188 private: // private data
191 //==================== For ECom Performance Time Results ===================
194 ECom performance time record types. Time records can be retrieved by type.
196 enum TEComPerfTimeRecordType
198 // Used only for validation, not used by any real types
200 // Time record types, distinguished by functions it exams
201 ECDiscovererNotifierRunL,
202 ECDiscovererTimerRunL,
203 ECDiscovererRediscoveryScanDirectoryL,
208 Class for storing a fast count result with type and other information.
210 class TEComPerfTimeRecordEntry
213 // Fast counter result.
215 // The type of time record.
216 TEComPerfTimeRecordType iType;
217 // Additional inforamtion attached with the record. Eg. Drive number of a notifier
223 Class for storing a complete time measurement result (in ms) with type and other information.
225 class TEComPerfRealTimeResult
228 // Time result reading in [ms] at the beginning of the measurement.
230 // Time result reading in [ms] at the end of the measurement.
232 // Time result type, indicating which function/method it measures.
233 TEComPerfTimeRecordType iType;
234 // Additional information if needed.
240 Class for storing the heap usage at various startup state
242 class TEComPerfHeapUsage
245 /** State for which to store the heap usage */
247 /** Current committed heap reading */
253 An R Class to retrieve the heap record from the server side
255 class REComHeapUsageRecords
259 void GetAllHeapUsageResultsL();
260 TInt GetHeapUsageAtState(TInt aState);
263 TInt GetHeapRecordEntry(TInt aHeapIdx,TEComPerfHeapUsage& aHeapEntry);
265 // this will store the actual heap usage at different state
266 RArray<TEComPerfHeapUsage> iHeapRecords;
271 An R Class to retrieve time records from server side and process them into real time results.
272 APIs of the class are used by test cases.
274 class REComPerfTimeRecords
276 public: // public methods
280 void ResetRecordsOnServerL();
281 void RetrieveResultsByTypeL(TEComPerfTimeRecordType aType, RArray<TEComPerfRealTimeResult>& aTimeResults);
282 void RetrieveResultsInfoByTypeL(TEComPerfTimeRecordType aType, RArray<TInt>& aInfos);
284 private: // private methods
285 TInt GetTimeRecordEntry(TInt aTimerIdx, TEComPerfTimeRecordEntry& aTimerEntry);
286 private: // private member variables
287 // Local duplicate of time records on server, filled by Open()
288 RArray<TEComPerfTimeRecordEntry> iTimeRecords;
291 //===========================================================
292 TReal FastCountToMilliseconds(TInt aFastCount);
296 #endif // __ECOMSESSIONAUX_H__