os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/EComSessionAux.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/EComSessionAux.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,296 @@
     1.4 +// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#ifndef __ECOMSESSIONAUX_H__
    1.20 +#define __ECOMSESSIONAUX_H__
    1.21 +
    1.22 +#include <e32cmn.h>
    1.23 +#include <startup.hrh>
    1.24 +
    1.25 +/**
    1.26 +Codes used for processing ESetGetParameters messages.
    1.27 +Note: The constants are intended for component testing of
    1.28 +EcomServer.
    1.29 +@internalComponent
    1.30 +*/
    1.31 +enum TEComParameterOptions
    1.32 +	{
    1.33 +#ifdef __ECOM_SERVER_TESTABILITY__
    1.34 +	//these enumerated values are used for ecom component testing
    1.35 +	EChangeStartupState,
    1.36 +	EProcessStartupState,
    1.37 +	EGetStartupState,
    1.38 +#endif
    1.39 +#ifdef __ECOM_SERVER_PERFORMANCE__
    1.40 +	//this enumerated value is used for ecom performance testing
    1.41 +	EGetStartupStateTimerResult,
    1.42 +	EGetAccumulatedClientRequestsTimerResult,
    1.43 +	EGetRegistryCounts,
    1.44 +	EResetStartupStateTimerCounts,
    1.45 +	EGetEComPerfTimeRecord,
    1.46 +	EResetEComPerfTimeRecords,
    1.47 +	EGetEComServerHeapResult,
    1.48 +#endif 
    1.49 +	ELastOption
    1.50 +	};
    1.51 +
    1.52 +#ifdef __ECOM_SERVER_TESTABILITY__
    1.53 +
    1.54 +void ChangeStartupStateL(TInt aState);
    1.55 +	
    1.56 +void ProcessCurrentStartupStateL();
    1.57 +	
    1.58 +TInt GetCurrentStartupStateL();
    1.59 +
    1.60 +#endif
    1.61 +
    1.62 +#ifdef __ECOM_SERVER_PERFORMANCE__
    1.63 +
    1.64 +//==================== For Startup State Time Results ===================
    1.65 +/**
    1.66 +@internalComponent
    1.67 +Class for storing start and end timer results for a state.
    1.68 +*/
    1.69 +class TStartupStateTimerResult
    1.70 +	{
    1.71 +public:
    1.72 +	/** State for which to store the timer result */
    1.73 +	TInt iState;
    1.74 +	/** Timer result reading in [ms] at the beginning of the state */
    1.75 +	TReal iStartTime;
    1.76 +	/** Timer result reading in [ms] at the end of the state */
    1.77 +	TReal iEndTime;
    1.78 +	};
    1.79 +
    1.80 +/**
    1.81 +@internalComponent
    1.82 +Class for storing start and end timer results for a state and client request type.
    1.83 +*/
    1.84 +class TStartupStateTimerEntry
    1.85 +	{
    1.86 +public:
    1.87 +	/** State in which the ECom client request was made */
    1.88 +	TInt iState;
    1.89 +	/** Timer result reading in [ms] at the beginning of the request */
    1.90 +	TUint32 iTimerResult;
    1.91 +	};
    1.92 +
    1.93 +class RStartupStateTimerResults
    1.94 +	{
    1.95 +public: // public methods
    1.96 +	void GetAllTimerResults();
    1.97 +	void Close();
    1.98 +	TInt Count();
    1.99 +	TStartupStateTimerResult& At(TInt aIndex);
   1.100 +	TInt FindInOrderTimerResult(TInt aState);
   1.101 +	TInt FindTimerResult(TInt aState);
   1.102 +	void ResetTimerCountL();
   1.103 +private: // private methods
   1.104 +	TInt GetTimerResult(TInt aTimerIdx, TUint32& aTimerResult, TInt& aState);
   1.105 +private: // private member variables
   1.106 +	RArray<TStartupStateTimerResult> iTimerResults;
   1.107 +	};
   1.108 +
   1.109 +//==================== For Client Requests Time Results ===================
   1.110 +/**
   1.111 +@internalComponent
   1.112 +Enumeration of ECom client request types
   1.113 +*/
   1.114 +enum TEComClientRequestType
   1.115 +	{
   1.116 +	EEComCreateRequestType,
   1.117 +	EEComListRequestType,
   1.118 +	EEComNotifyOnChangeRequestType,
   1.119 +	EEComCancelNotifyOnChangeRequestType,
   1.120 +	EEComCollectImplementationsRequestType,
   1.121 +	EEComListExtendedInterfacesRequestType,
   1.122 +	EEComNumClientRequestTypes
   1.123 +	};
   1.124 +
   1.125 +/**
   1.126 +@internalComponent
   1.127 +Class for storing start and end timer results for a state and client request type.
   1.128 +*/
   1.129 +class TClientRequestTimerEntry
   1.130 +	{
   1.131 +public:
   1.132 +	/** State in which the ECom client request was made */
   1.133 +	TInt iState;
   1.134 +	/** Timer result reading in [ms] at the beginning of the request */
   1.135 +	TUint iStartTime;
   1.136 +	/** Timer result reading in [ms] at the end of the request */
   1.137 +	TUint iEndTime;
   1.138 +	/** Whether the client request was a list request or a create request */
   1.139 +	TEComClientRequestType iClientRequestType;
   1.140 +	};
   1.141 +
   1.142 +/**
   1.143 +@internalComponent
   1.144 +Class to retrieve timing for ECom client requests during the different stages of start-up
   1.145 +*/
   1.146 +class RClientRequestTimerResults
   1.147 +	{
   1.148 +public: // public methods
   1.149 +	void RetrieveResultsL();
   1.150 +	void Close();
   1.151 +	TReal GetAccumulatedClientRequestTime(TUint& aNumRequests);
   1.152 +	TReal GetAccumulatedClientRequestTime(TInt aState, TUint& aNumRequests);
   1.153 +	TReal GetAccumulatedClientRequestTime(TEComClientRequestType aRequestType, TUint& aNumRequests);
   1.154 +	TReal GetAccumulatedClientRequestTime(TInt aState, TEComClientRequestType aRequestType, TUint& aNumRequests);
   1.155 +private: // private methods
   1.156 +	static TInt GetTimerResult(TInt aTimerIdx, TClientRequestTimerEntry& aTimerEntry);
   1.157 +private: // private data
   1.158 +	/** List of all timer results */
   1.159 +	RArray<TClientRequestTimerEntry> iResults;
   1.160 +	};
   1.161 +
   1.162 +/**
   1.163 +@internalComponent
   1.164 +Class to retrieve ECom plugin counts
   1.165 +*/
   1.166 +class RegistryCounts
   1.167 +	{
   1.168 +public:
   1.169 +	// Struct for storing registry counts.
   1.170 +	struct TRegistryCounts
   1.171 +		{
   1.172 +		enum TRegistryCountDriveType
   1.173 +			{
   1.174 +			ERoInternal,
   1.175 +			ENonRoInternal,
   1.176 +			EAll
   1.177 +			};
   1.178 +		/** The number of drives found */
   1.179 +		TInt iDrives;
   1.180 +		/** The number of plugins found */
   1.181 +		TInt iDlls;
   1.182 +		/** The number of interfaces found */
   1.183 +		TInt iInterfaces;
   1.184 +		/** The number fo implementations found */
   1.185 +		TInt iImplementations;
   1.186 +		};
   1.187 +
   1.188 +public: // public methods
   1.189 +	static void GetRegistryCountsL(TRegistryCounts::TRegistryCountDriveType aType, TRegistryCounts& aCounts);
   1.190 +private: // private methods
   1.191 +private: // private data
   1.192 +	};
   1.193 +
   1.194 +//==================== For ECom Performance Time Results ===================
   1.195 +/**
   1.196 +@internalComponent
   1.197 +ECom performance time record types. Time records can be retrieved by type.
   1.198 +*/
   1.199 +enum TEComPerfTimeRecordType
   1.200 +	{
   1.201 +	// Used only for validation, not used by any real types
   1.202 +	ENullType,
   1.203 +	// Time record types, distinguished by functions it exams
   1.204 +	ECDiscovererNotifierRunL,
   1.205 +	ECDiscovererTimerRunL,
   1.206 +	ECDiscovererRediscoveryScanDirectoryL,
   1.207 +	};
   1.208 +
   1.209 +/**
   1.210 +@internalComponent
   1.211 +Class for storing a fast count result with type and other information.
   1.212 +*/
   1.213 +class TEComPerfTimeRecordEntry
   1.214 +	{
   1.215 +public:
   1.216 +	// Fast counter result.
   1.217 +	TUint iTime;
   1.218 +	// The type of time record.
   1.219 +	TEComPerfTimeRecordType iType;
   1.220 +	// Additional inforamtion attached with the record. Eg. Drive number of a notifier
   1.221 +	TInt iInfo;
   1.222 +	};
   1.223 +
   1.224 +/**
   1.225 +@internalComponent
   1.226 +Class for storing a complete time measurement result (in ms) with type and other information.
   1.227 +*/
   1.228 +class TEComPerfRealTimeResult
   1.229 +	{
   1.230 +public:
   1.231 +	// Time result reading in [ms] at the beginning of the measurement.
   1.232 +	TReal iStartTime;
   1.233 +	// Time result reading in [ms] at the end of the measurement.
   1.234 +	TReal iEndTime;
   1.235 +	// Time result type, indicating which function/method it measures.
   1.236 +	TEComPerfTimeRecordType iType;
   1.237 +	// Additional information if needed.
   1.238 +	TInt iInfo;
   1.239 +	};
   1.240 +
   1.241 +/**
   1.242 +@internalComponent
   1.243 +Class for storing the heap usage at various startup state
   1.244 +*/
   1.245 +class TEComPerfHeapUsage
   1.246 +	{
   1.247 +public:
   1.248 +	/** State for which to store the heap usage */
   1.249 +	TInt iState;
   1.250 +	/** Current committed heap reading */
   1.251 +	TInt iHeapSize;	
   1.252 +	};
   1.253 +
   1.254 +/**
   1.255 +@internalComponent
   1.256 +An R Class to retrieve the heap record from the server side
   1.257 +*/
   1.258 +class REComHeapUsageRecords
   1.259 +	{
   1.260 +public:
   1.261 +	void OpenL();
   1.262 +	void GetAllHeapUsageResultsL();
   1.263 +	TInt GetHeapUsageAtState(TInt aState);
   1.264 +	void Close();
   1.265 +private:
   1.266 +	TInt GetHeapRecordEntry(TInt aHeapIdx,TEComPerfHeapUsage& aHeapEntry);
   1.267 +private:
   1.268 +	// this will store the actual heap usage at different state
   1.269 +	RArray<TEComPerfHeapUsage> iHeapRecords;	
   1.270 +	};
   1.271 +
   1.272 +/**
   1.273 +@internalComponent
   1.274 +An R Class to retrieve time records from server side and process them into real time results. 
   1.275 + APIs of the class are used by test cases.
   1.276 +*/
   1.277 +class REComPerfTimeRecords
   1.278 +	{
   1.279 +public: // public methods
   1.280 +	void OpenL();
   1.281 +	TInt Count();
   1.282 +	void Reset();
   1.283 +	void ResetRecordsOnServerL();
   1.284 +	void RetrieveResultsByTypeL(TEComPerfTimeRecordType aType, RArray<TEComPerfRealTimeResult>& aTimeResults);
   1.285 +	void RetrieveResultsInfoByTypeL(TEComPerfTimeRecordType aType, RArray<TInt>& aInfos);
   1.286 +	void Close();
   1.287 +private: // private methods
   1.288 +	TInt GetTimeRecordEntry(TInt aTimerIdx, TEComPerfTimeRecordEntry& aTimerEntry);
   1.289 +private: // private member variables
   1.290 +	// Local duplicate of time records on server, filled by Open()
   1.291 +	RArray<TEComPerfTimeRecordEntry> iTimeRecords;
   1.292 +	};
   1.293 +
   1.294 +//===========================================================
   1.295 +TReal FastCountToMilliseconds(TInt aFastCount);
   1.296 +
   1.297 +#endif
   1.298 +
   1.299 +#endif // __ECOMSESSIONAUX_H__