sl@0: // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef __ECOMSESSIONAUX_H__ sl@0: #define __ECOMSESSIONAUX_H__ sl@0: sl@0: #include sl@0: #include sl@0: sl@0: /** sl@0: Codes used for processing ESetGetParameters messages. sl@0: Note: The constants are intended for component testing of sl@0: EcomServer. sl@0: @internalComponent sl@0: */ sl@0: enum TEComParameterOptions sl@0: { sl@0: #ifdef __ECOM_SERVER_TESTABILITY__ sl@0: //these enumerated values are used for ecom component testing sl@0: EChangeStartupState, sl@0: EProcessStartupState, sl@0: EGetStartupState, sl@0: #endif sl@0: #ifdef __ECOM_SERVER_PERFORMANCE__ sl@0: //this enumerated value is used for ecom performance testing sl@0: EGetStartupStateTimerResult, sl@0: EGetAccumulatedClientRequestsTimerResult, sl@0: EGetRegistryCounts, sl@0: EResetStartupStateTimerCounts, sl@0: EGetEComPerfTimeRecord, sl@0: EResetEComPerfTimeRecords, sl@0: EGetEComServerHeapResult, sl@0: #endif sl@0: ELastOption sl@0: }; sl@0: sl@0: #ifdef __ECOM_SERVER_TESTABILITY__ sl@0: sl@0: void ChangeStartupStateL(TInt aState); sl@0: sl@0: void ProcessCurrentStartupStateL(); sl@0: sl@0: TInt GetCurrentStartupStateL(); sl@0: sl@0: #endif sl@0: sl@0: #ifdef __ECOM_SERVER_PERFORMANCE__ sl@0: sl@0: //==================== For Startup State Time Results =================== sl@0: /** sl@0: @internalComponent sl@0: Class for storing start and end timer results for a state. sl@0: */ sl@0: class TStartupStateTimerResult sl@0: { sl@0: public: sl@0: /** State for which to store the timer result */ sl@0: TInt iState; sl@0: /** Timer result reading in [ms] at the beginning of the state */ sl@0: TReal iStartTime; sl@0: /** Timer result reading in [ms] at the end of the state */ sl@0: TReal iEndTime; sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: Class for storing start and end timer results for a state and client request type. sl@0: */ sl@0: class TStartupStateTimerEntry sl@0: { sl@0: public: sl@0: /** State in which the ECom client request was made */ sl@0: TInt iState; sl@0: /** Timer result reading in [ms] at the beginning of the request */ sl@0: TUint32 iTimerResult; sl@0: }; sl@0: sl@0: class RStartupStateTimerResults sl@0: { sl@0: public: // public methods sl@0: void GetAllTimerResults(); sl@0: void Close(); sl@0: TInt Count(); sl@0: TStartupStateTimerResult& At(TInt aIndex); sl@0: TInt FindInOrderTimerResult(TInt aState); sl@0: TInt FindTimerResult(TInt aState); sl@0: void ResetTimerCountL(); sl@0: private: // private methods sl@0: TInt GetTimerResult(TInt aTimerIdx, TUint32& aTimerResult, TInt& aState); sl@0: private: // private member variables sl@0: RArray iTimerResults; sl@0: }; sl@0: sl@0: //==================== For Client Requests Time Results =================== sl@0: /** sl@0: @internalComponent sl@0: Enumeration of ECom client request types sl@0: */ sl@0: enum TEComClientRequestType sl@0: { sl@0: EEComCreateRequestType, sl@0: EEComListRequestType, sl@0: EEComNotifyOnChangeRequestType, sl@0: EEComCancelNotifyOnChangeRequestType, sl@0: EEComCollectImplementationsRequestType, sl@0: EEComListExtendedInterfacesRequestType, sl@0: EEComNumClientRequestTypes sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: Class for storing start and end timer results for a state and client request type. sl@0: */ sl@0: class TClientRequestTimerEntry sl@0: { sl@0: public: sl@0: /** State in which the ECom client request was made */ sl@0: TInt iState; sl@0: /** Timer result reading in [ms] at the beginning of the request */ sl@0: TUint iStartTime; sl@0: /** Timer result reading in [ms] at the end of the request */ sl@0: TUint iEndTime; sl@0: /** Whether the client request was a list request or a create request */ sl@0: TEComClientRequestType iClientRequestType; sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: Class to retrieve timing for ECom client requests during the different stages of start-up sl@0: */ sl@0: class RClientRequestTimerResults sl@0: { sl@0: public: // public methods sl@0: void RetrieveResultsL(); sl@0: void Close(); sl@0: TReal GetAccumulatedClientRequestTime(TUint& aNumRequests); sl@0: TReal GetAccumulatedClientRequestTime(TInt aState, TUint& aNumRequests); sl@0: TReal GetAccumulatedClientRequestTime(TEComClientRequestType aRequestType, TUint& aNumRequests); sl@0: TReal GetAccumulatedClientRequestTime(TInt aState, TEComClientRequestType aRequestType, TUint& aNumRequests); sl@0: private: // private methods sl@0: static TInt GetTimerResult(TInt aTimerIdx, TClientRequestTimerEntry& aTimerEntry); sl@0: private: // private data sl@0: /** List of all timer results */ sl@0: RArray iResults; sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: Class to retrieve ECom plugin counts sl@0: */ sl@0: class RegistryCounts sl@0: { sl@0: public: sl@0: // Struct for storing registry counts. sl@0: struct TRegistryCounts sl@0: { sl@0: enum TRegistryCountDriveType sl@0: { sl@0: ERoInternal, sl@0: ENonRoInternal, sl@0: EAll sl@0: }; sl@0: /** The number of drives found */ sl@0: TInt iDrives; sl@0: /** The number of plugins found */ sl@0: TInt iDlls; sl@0: /** The number of interfaces found */ sl@0: TInt iInterfaces; sl@0: /** The number fo implementations found */ sl@0: TInt iImplementations; sl@0: }; sl@0: sl@0: public: // public methods sl@0: static void GetRegistryCountsL(TRegistryCounts::TRegistryCountDriveType aType, TRegistryCounts& aCounts); sl@0: private: // private methods sl@0: private: // private data sl@0: }; sl@0: sl@0: //==================== For ECom Performance Time Results =================== sl@0: /** sl@0: @internalComponent sl@0: ECom performance time record types. Time records can be retrieved by type. sl@0: */ sl@0: enum TEComPerfTimeRecordType sl@0: { sl@0: // Used only for validation, not used by any real types sl@0: ENullType, sl@0: // Time record types, distinguished by functions it exams sl@0: ECDiscovererNotifierRunL, sl@0: ECDiscovererTimerRunL, sl@0: ECDiscovererRediscoveryScanDirectoryL, sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: Class for storing a fast count result with type and other information. sl@0: */ sl@0: class TEComPerfTimeRecordEntry sl@0: { sl@0: public: sl@0: // Fast counter result. sl@0: TUint iTime; sl@0: // The type of time record. sl@0: TEComPerfTimeRecordType iType; sl@0: // Additional inforamtion attached with the record. Eg. Drive number of a notifier sl@0: TInt iInfo; sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: Class for storing a complete time measurement result (in ms) with type and other information. sl@0: */ sl@0: class TEComPerfRealTimeResult sl@0: { sl@0: public: sl@0: // Time result reading in [ms] at the beginning of the measurement. sl@0: TReal iStartTime; sl@0: // Time result reading in [ms] at the end of the measurement. sl@0: TReal iEndTime; sl@0: // Time result type, indicating which function/method it measures. sl@0: TEComPerfTimeRecordType iType; sl@0: // Additional information if needed. sl@0: TInt iInfo; sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: Class for storing the heap usage at various startup state sl@0: */ sl@0: class TEComPerfHeapUsage sl@0: { sl@0: public: sl@0: /** State for which to store the heap usage */ sl@0: TInt iState; sl@0: /** Current committed heap reading */ sl@0: TInt iHeapSize; sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: An R Class to retrieve the heap record from the server side sl@0: */ sl@0: class REComHeapUsageRecords sl@0: { sl@0: public: sl@0: void OpenL(); sl@0: void GetAllHeapUsageResultsL(); sl@0: TInt GetHeapUsageAtState(TInt aState); sl@0: void Close(); sl@0: private: sl@0: TInt GetHeapRecordEntry(TInt aHeapIdx,TEComPerfHeapUsage& aHeapEntry); sl@0: private: sl@0: // this will store the actual heap usage at different state sl@0: RArray iHeapRecords; sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: An R Class to retrieve time records from server side and process them into real time results. sl@0: APIs of the class are used by test cases. sl@0: */ sl@0: class REComPerfTimeRecords sl@0: { sl@0: public: // public methods sl@0: void OpenL(); sl@0: TInt Count(); sl@0: void Reset(); sl@0: void ResetRecordsOnServerL(); sl@0: void RetrieveResultsByTypeL(TEComPerfTimeRecordType aType, RArray& aTimeResults); sl@0: void RetrieveResultsInfoByTypeL(TEComPerfTimeRecordType aType, RArray& aInfos); sl@0: void Close(); sl@0: private: // private methods sl@0: TInt GetTimeRecordEntry(TInt aTimerIdx, TEComPerfTimeRecordEntry& aTimerEntry); sl@0: private: // private member variables sl@0: // Local duplicate of time records on server, filled by Open() sl@0: RArray iTimeRecords; sl@0: }; sl@0: sl@0: //=========================================================== sl@0: TReal FastCountToMilliseconds(TInt aFastCount); sl@0: sl@0: #endif sl@0: sl@0: #endif // __ECOMSESSIONAUX_H__