os/kernelhwsrv/kernel/eka/include/d32resmanus.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1995-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 the License "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
// e32\include\d32resmanus.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @publishedPartner
sl@0
    21
 @released
sl@0
    22
*/
sl@0
    23
sl@0
    24
sl@0
    25
#ifndef __D32RESMANUS_H__
sl@0
    26
#define __D32RESMANUS_H__
sl@0
    27
#include <e32cmn.h>
sl@0
    28
#include <e32ver.h>
sl@0
    29
sl@0
    30
#include <drivers/resource_category.h>
sl@0
    31
sl@0
    32
// Name lengths repesent byte length (2 bytes per character for Unicode)
sl@0
    33
#define MAX_RESOURCE_NAME_LENGTH	32 // 8-bit operation
sl@0
    34
#define MAX_NAME_LENGTH_IN_RESMAN	32 // Maximum length of 8-bit name in Resource Controller
sl@0
    35
#define MAX_CLIENT_NAME_LENGTH		256 // 8-bit operation
sl@0
    36
sl@0
    37
#ifdef RESOURCE_MANAGER_SIMULATED_PSL
sl@0
    38
#define LEVEL_GAP_REQUIRED_FOR_ASYNC_TESTING 10  // Semi-arbitrary
sl@0
    39
#define LEVEL_GAP_REQUIRED_FOR_SHARED_TESTING 3  // Semi-arbitrary
sl@0
    40
#endif
sl@0
    41
sl@0
    42
//Structure to pass the dependency information
sl@0
    43
#ifndef __KERNEL_MODE__
sl@0
    44
struct SResourceDependencyInfo
sl@0
    45
	{
sl@0
    46
	TUint iResourceId;
sl@0
    47
	TUint8 iDependencyPriority;
sl@0
    48
	};
sl@0
    49
#endif
sl@0
    50
sl@0
    51
struct TCapsDevResManUs
sl@0
    52
    {
sl@0
    53
    /**
sl@0
    54
     * The device version
sl@0
    55
     */
sl@0
    56
    TVersion version;
sl@0
    57
    };
sl@0
    58
sl@0
    59
struct TResourceInfo
sl@0
    60
	{
sl@0
    61
	TBuf8<MAX_RESOURCE_NAME_LENGTH>iName;
sl@0
    62
	TUint iId;
sl@0
    63
	TResourceClass iClass;
sl@0
    64
	TResourceType iType;
sl@0
    65
	TResourceUsage iUsage;
sl@0
    66
	TResourceSense iSense;
sl@0
    67
	TInt iMinLevel;
sl@0
    68
	TInt iMaxLevel;
sl@0
    69
	};
sl@0
    70
typedef TPckgBuf<TResourceInfo> TResourceInfoBuf;
sl@0
    71
sl@0
    72
sl@0
    73
typedef TBuf8<MAX_NAME_LENGTH_IN_RESMAN> TClientName;
sl@0
    74
sl@0
    75
struct TClientInfo
sl@0
    76
	{
sl@0
    77
	TClientName iName;
sl@0
    78
	TUint iId;
sl@0
    79
	};
sl@0
    80
sl@0
    81
typedef TPckgBuf<TClientInfo> TClientInfoBuf;
sl@0
    82
sl@0
    83
template <class T>
sl@0
    84
class RSimplePointerArray : private RPointerArrayBase
sl@0
    85
	{
sl@0
    86
	public:
sl@0
    87
	inline RSimplePointerArray();
sl@0
    88
	inline explicit RSimplePointerArray(TInt aGranularity);
sl@0
    89
sl@0
    90
	inline void Close() {RPointerArrayBase::Close();};
sl@0
    91
	inline TInt Count() const {return RPointerArrayBase::Count();};
sl@0
    92
	inline T* const& operator[](TInt anIndex) const {return (T* const&)At(anIndex);};
sl@0
    93
	inline T*& operator[](TInt anIndex) {return (T*&)At(anIndex);};
sl@0
    94
	inline TInt Append(const T* anEntry) {return RPointerArrayBase::Append(anEntry);};
sl@0
    95
	inline TInt Insert(const T* anEntry, TInt aPos) {return RPointerArrayBase::Insert(anEntry,aPos);};
sl@0
    96
	inline void Remove(TInt anIndex){RPointerArrayBase::Remove(anIndex);};
sl@0
    97
sl@0
    98
	inline T** Entries() {return (T**)(RPointerArrayBase::Entries());};
sl@0
    99
	};
sl@0
   100
sl@0
   101
template <class T>
sl@0
   102
inline RSimplePointerArray<T>::RSimplePointerArray()
sl@0
   103
	: RPointerArrayBase()
sl@0
   104
	{}
sl@0
   105
sl@0
   106
template <class T>
sl@0
   107
inline RSimplePointerArray<T>::RSimplePointerArray(TInt aGranularity)
sl@0
   108
     : RPointerArrayBase(aGranularity)
sl@0
   109
     {}
sl@0
   110
sl@0
   111
sl@0
   112
#ifdef RESOURCE_MANAGER_SIMULATED_PSL
sl@0
   113
#ifdef PRM_ENABLE_EXTENDED_VERSION2
sl@0
   114
	_LIT(KLddRootName, "resourcecontrollerextendedcore");
sl@0
   115
#elif defined (PRM_ENABLE_EXTENDED_VERSION)
sl@0
   116
	_LIT(KLddRootName,"resourcecontrollerextended"); // To support testing of the Extended version
sl@0
   117
#else
sl@0
   118
	_LIT(KLddRootName,"resourcecontroller");		 // To support testing of the basic version
sl@0
   119
#endif
sl@0
   120
#else
sl@0
   121
#ifdef PRM_ENABLE_EXTENDED_VERSION2
sl@0
   122
	_LIT(KLddRootName, "resmanextendedcore");
sl@0
   123
	_LIT(KLddName, "resmanextendedcore.ldd");
sl@0
   124
#elif defined(PRM_ENABLE_EXTENDED_VERSION)
sl@0
   125
	_LIT(KLddRootName,"resmanextended");					// To enable operation with both the basic and Extended PDD 
sl@0
   126
	_LIT(KLddName, "resmanextended.ldd");					// LDD will support the Extended funcitonality
sl@0
   127
#else
sl@0
   128
	_LIT(KLddRootName,"ResMan");					// To enable operation with both the basic and Extended PDD 
sl@0
   129
	_LIT(KLddName, "ResMan.ldd");					// LDD will support the Extended funcitonality
sl@0
   130
#endif
sl@0
   131
#endif
sl@0
   132
sl@0
   133
class RBusDevResManUs : public RBusLogicalChannel
sl@0
   134
	{
sl@0
   135
	enum TVer {EMajorVersionNumber=1,EMinorVersionNumber=0,EBuildVersionNumber=KE32BuildVersionNumber};
sl@0
   136
sl@0
   137
	public:
sl@0
   138
    /**
sl@0
   139
     * Control requests
sl@0
   140
     */
sl@0
   141
    enum TControl
sl@0
   142
		{
sl@0
   143
		EInitialise,						/**< Specify resource requirement and register			*/
sl@0
   144
        EGetNoOfResources,					/**< Read the total number of resources					*/
sl@0
   145
        EGetAllResourcesInfo,				/**< Read the info for all resources into a buffer		*/
sl@0
   146
        EGetNoOfClients,					/**< Read the total number of (Rsource Manager) clients	*/
sl@0
   147
        EGetNamesAllClients,				/**< Read the names of all clients into a buffer		*/
sl@0
   148
        EGetNumClientsUsingResource,		/**< Read the number of clients for specified resource  */
sl@0
   149
        EGetInfoOnClientsUsingResource,		/**< Read the info for clients for specified resource	*/
sl@0
   150
        EGetNumResourcesInUseByClient,		/**< Read the number of resources registered by a client*/
sl@0
   151
        EGetInfoOnResourcesInUseByClient,	/**< Read the info for all resources registered by the 
sl@0
   152
												 named client into a buffer							*/
sl@0
   153
        EGetResourceIdByName,				/**< Read the ID for a named resource					*/
sl@0
   154
        EGetResourceInfo,					/**< Read the info for specified resource to a buffer	*/
sl@0
   155
        ECancelChangeResourceStateRequests,	/**< Cancel all change state requests for a resource	*/
sl@0
   156
        ECancelGetResourceStateRequests,	/**< Cancel all get state requests for a resource		*/
sl@0
   157
        ECancelChangeNotificationRequests,	/**< Cancel all notification requests for a resource	*/
sl@0
   158
        ECancelChangeResourceState,			/**< Cancel a specific change state request				*/
sl@0
   159
        ECancelGetResourceState,			/**< Cancel a specific get state request				*/
sl@0
   160
        ECancelRequestChangeNotification,	/**< Cancel a specific notification request				*/
sl@0
   161
		EGetResourceControllerVersion,		/**< Read the version of the Resource Controller		*/
sl@0
   162
		EGetNumDependentsForResource,		/**< Read the number of dependents for a resource		*/
sl@0
   163
		EGetDependentsIdForResource			/**< Read the dependency information for a resource		*/
sl@0
   164
#ifdef RESOURCE_MANAGER_SIMULATED_PSL
sl@0
   165
		,
sl@0
   166
		// Requests to support testing
sl@0
   167
		EGetNumCandidateAsyncResources,
sl@0
   168
		EGetCandidateAsyncResourceId,
sl@0
   169
		EGetNumCandidateSharedResources,
sl@0
   170
		EGetCandidateSharedResourceId
sl@0
   171
#endif
sl@0
   172
		};
sl@0
   173
sl@0
   174
    /**
sl@0
   175
     * Asynchronous requests
sl@0
   176
     */
sl@0
   177
    enum TRequest
sl@0
   178
		{
sl@0
   179
		EChangeResourceState,				/**< Change the state of a resource							*/
sl@0
   180
        EGetResourceState,					/**< Get the state of a resource							*/
sl@0
   181
        ERequestChangeNotification,			/**< Register for resource change notifications				*/
sl@0
   182
        ERequestQualifiedChangeNotification /**< Register for qualified resource change notifications	*/
sl@0
   183
		};
sl@0
   184
sl@0
   185
#ifndef __KERNEL_MODE__
sl@0
   186
    public:
sl@0
   187
sl@0
   188
	inline TInt Open(TDesC8& aClientName);
sl@0
   189
	inline TInt Initialise(const TUint8 aNumGetStateRes, const TUint8 aNumSetStateRes, const TUint8 aNumListenableRes);
sl@0
   190
	inline TVersion VersionRequired() const;
sl@0
   191
sl@0
   192
	// Synchronous requests
sl@0
   193
	inline TInt GetNoOfResources(TUint& aNumResources, const TBool aInfoRead=ETrue);	
sl@0
   194
	inline TInt GetAllResourcesInfo(RSimplePointerArray<TResourceInfoBuf>* aInfoPtrs, TUint& aNumResources, const TBool aRefresh=EFalse);
sl@0
   195
	inline TInt GetNoOfClients(TUint& aNumClients,const TBool aIncludeKern,const TBool aInfoRead=ETrue);
sl@0
   196
	inline TInt GetNamesAllClients(RSimplePointerArray<TClientName>* aInfoPtrs, TUint& aNumClients, const TBool aIncludeKern, const TBool aRefresh=EFalse);
sl@0
   197
	inline TInt GetNumClientsUsingResource(const TUint aResourceId, TUint& aNumClients, const TBool aIncludeKern,const TBool aInfoRead=ETrue);
sl@0
   198
	inline TInt GetInfoOnClientsUsingResource(const TUint aResourceId, TUint& aNumClients, RSimplePointerArray<TClientInfoBuf>* aInfoPtrs, const TBool aIncludeKern, const TBool aRefresh=EFalse);
sl@0
   199
	inline TInt GetNumResourcesInUseByClient(TDesC8& aClientName, TUint &aNumResources,const TBool aInfoRead=ETrue);
sl@0
   200
	inline TInt GetInfoOnResourcesInUseByClient(TDesC8& aClientName, TUint &aNumResources, RSimplePointerArray<TResourceInfoBuf>* aInfoPtrs, const TBool aRefresh=EFalse);
sl@0
   201
sl@0
   202
	inline TInt GetResourceIdByName(TDesC8& aResourceName, TUint& aResourceId);
sl@0
   203
	inline TInt GetResourceInfo(const TUint aResourceId, TResourceInfoBuf* aInfo);
sl@0
   204
	inline TInt GetResourceControllerVersion(TUint& aVer);
sl@0
   205
	inline TInt GetNumDependentsForResource(const TUint aResourceId, TUint* aNumDependents, const TBool aInfoRead=ETrue);
sl@0
   206
	inline TInt GetDependentsIdForResource(const TUint aResourceId, TDes8& aResIdArray, TUint* aNumDepResources, const TBool aRefresh=EFalse);
sl@0
   207
	// Asynchronous requests
sl@0
   208
	inline void ChangeResourceState(TRequestStatus& aStatus, const TUint aResourceId, const TInt aNewState);
sl@0
   209
	inline void GetResourceState(TRequestStatus& aStatus, const TUint aResourceId, const TBool aCached, TInt* aState, TInt *aLevelOwnerId);
sl@0
   210
	inline void RequestNotification(TRequestStatus& aStatus, const TUint aResourceId);
sl@0
   211
	inline void RequestNotification(TRequestStatus& aStatus, const TUint aResourceId, const TInt aThreshold, const TBool aDirection);
sl@0
   212
sl@0
   213
	// Cancel requests
sl@0
   214
	inline TInt CancelChangeResourceStateRequests(const TUint aResourceId);
sl@0
   215
	inline TInt CancelGetResourceStateRequests(const TUint aResourceId);
sl@0
   216
	inline TInt CancelNotificationRequests(const TUint aResourceId);
sl@0
   217
	//
sl@0
   218
	inline TInt CancelChangeResourceState(TRequestStatus& aStatus);
sl@0
   219
	inline TInt CancelGetResourceState(TRequestStatus& aStatus);
sl@0
   220
	inline TInt CancelRequestNotification(TRequestStatus& aStatus);
sl@0
   221
	//
sl@0
   222
	inline void CancelAsyncOperation(TRequestStatus* aStatus);
sl@0
   223
sl@0
   224
#ifdef RESOURCE_MANAGER_SIMULATED_PSL
sl@0
   225
	// Requests to support testing
sl@0
   226
	inline	TInt GetNumCandidateAsyncResources(TUint& aNumResources);
sl@0
   227
	inline	TInt GetCandidateAsyncResourceId(TUint aIndex, TUint& aResourceId);
sl@0
   228
	inline	TInt GetNumCandidateSharedResources(TUint& aNumResources);
sl@0
   229
	inline	TInt GetCandidateSharedResourceId(TUint aIndex, TUint& aResourceId);
sl@0
   230
#endif
sl@0
   231
sl@0
   232
#endif
sl@0
   233
	};
sl@0
   234
sl@0
   235
sl@0
   236
#ifndef __KERNEL_MODE__
sl@0
   237
#include <d32resmanus.inl>
sl@0
   238
#endif
sl@0
   239
sl@0
   240
sl@0
   241
#endif