os/persistentdata/featuremgmt/featuremgr/src/inc/featmgrclientserver.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/featuremgmt/featuremgr/src/inc/featmgrclientserver.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,189 @@
     1.4 +/*
     1.5 +* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description:
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +
    1.23 +#ifndef FEATMGRCLIENTSERVER_H
    1.24 +#define FEATMGRCLIENTSERVER_H
    1.25 +
    1.26 +//  INCLUDES
    1.27 +#include <e32cmn.h>
    1.28 +#include <featmgr/featurecmn.h>
    1.29 +#include "featurepanics.h"
    1.30 +
    1.31 +// DATA TYPES
    1.32 +
    1.33 +// Opcodes used in message passing between client and server
    1.34 +// Important:   Make sure IsWriteOperation function of CFeatMgrSession
    1.35 +//              is updated if a new enum for function that will modify
    1.36 +//              feature (write operation) is added. 
    1.37 +enum TFeatMgrServRequest
    1.38 +    {
    1.39 +	/**
    1.40 +	* Fetches information whether a certain feature is supported.
    1.41 +	*
    1.42 +	* 0: TFeatureEntry - Feature entry
    1.43 +  	* 1: TInt - ret - Returns feature support value (0,1) or error code.
    1.44 +  	*/
    1.45 +	EFeatMgrFeatureSupported = 0,
    1.46 +
    1.47 +	/**
    1.48 +	* Fetches information of subset of features support-status.
    1.49 +	*
    1.50 +	* 0: TInt - Count of features, notification will be requested
    1.51 +	* 1: TPtr8 - Feature UID array (RFeatureUidArray)
    1.52 +  	* 2: TInt - Count of features in response.
    1.53 +  	*/
    1.54 +	EFeatMgrFeaturesSupported,
    1.55 +
    1.56 +   	/**
    1.57 +	* Lists all supported features.
    1.58 +	*
    1.59 +	* 0: In return as a parameter received reference to the client owned 
    1.60 +    *    RFeatureUidArray array contains Ids of all supported features.
    1.61 +  	*/
    1.62 +	EFeatMgrListSupportedFeatures,
    1.63 +
    1.64 +   	/**
    1.65 +	* Number of all supported features.
    1.66 +	*
    1.67 +	* 0: TInt - err - Returns the number of all supported features.
    1.68 +  	*/
    1.69 +	EFeatMgrNumberOfSupportedFeatures,
    1.70 +
    1.71 +	/**
    1.72 +	* Request for single or subset of features notification.
    1.73 +	*
    1.74 +	* 0: TPtr8 - On change notification, server sets changed UID (TUid)
    1.75 +  	* 1: TRequestStatus - Request to be signaled.
    1.76 +  	*/
    1.77 +	EFeatMgrReqNotify,
    1.78 +	
    1.79 +	/**
    1.80 +	* Uids associated with request for single or subset of features notification.
    1.81 +	*
    1.82 +	* 0: TInt - Count of features, notification will be requested
    1.83 +	* 1: TPtr8 - Feature UID array (RFeatureUidArray)
    1.84 +  	* 2: TInt - err - Operation error code.
    1.85 +  	*/
    1.86 +	EFeatMgrReqNotifyUids,
    1.87 +	
    1.88 +	/**
    1.89 +	* Request cancellation of single feature notification.
    1.90 +	*
    1.91 +	* 0: TUid - Feature UID
    1.92 +  	* 1: TRequestStatus - Request to be canceled
    1.93 +  	* 2: TInt - err - Operation error code.
    1.94 +  	*/
    1.95 +	EFeatMgrReqNotifyCancel,
    1.96 +	
    1.97 +	/**
    1.98 +	* Request cancellation of all features notification.
    1.99 +	*
   1.100 +  	* 0: TInt - err - Operation error code.
   1.101 +  	*/
   1.102 +	EFeatMgrReqNotifyCancelAll,
   1.103 +
   1.104 +#ifdef EXTENDED_FEATURE_MANAGER_TEST
   1.105 +   	/**
   1.106 +  	* Number of notify features.
   1.107 +  	*
   1.108 +   	*/
   1.109 +    EFeatMgrNumberOfNotifyFeatures,
   1.110 +
   1.111 +   	/**
   1.112 +   	* Number of allocated cells.
   1.113 +   	*
   1.114 +   	*/
   1.115 +    EFeatMgrCountAllocCells,
   1.116 +#endif
   1.117 +    
   1.118 +    /**
   1.119 +	* Enables a certain feature.
   1.120 +	*
   1.121 +	* 0: TUid - Feature UID
   1.122 +  	* 1: TInt - err - Operation error code.
   1.123 +  	*/
   1.124 +	EFeatMgrEnableFeature,
   1.125 +	
   1.126 +	/**
   1.127 +	* Disables a certain feature.
   1.128 +	*
   1.129 +	* 0: TUid - Feature UID
   1.130 +  	* 1: TInt - err - Operation error code.
   1.131 +  	*/
   1.132 +	EFeatMgrDisableFeature,
   1.133 +
   1.134 +	/**
   1.135 +	* Adds a feature entry.
   1.136 +	*
   1.137 +	* 0: TFeatureEntry - Feature entry
   1.138 +  	* 1: TInt - err - Operation error code.
   1.139 +  	*/
   1.140 +    EFeatMgrAddFeature,
   1.141 +
   1.142 +	/**
   1.143 +	* Sets a certain feature and associated data.
   1.144 +	*
   1.145 +	* 0: TUid - Feature UID
   1.146 +  	* 1: TBool - Feature enable or disable.
   1.147 +  	* 2: TInt - Feature data.
   1.148 +  	* 3: TInt - err - Operation error code.
   1.149 +  	*/
   1.150 +	EFeatMgrSetFeatureAndData,
   1.151 +	
   1.152 +	/**
   1.153 +	* Sets certain feature's data.
   1.154 +	*
   1.155 +	* 0: TUid - Feature UID
   1.156 +  	* 1: TInt - Feature data.
   1.157 +  	* 2: TInt - err - Operation error code.
   1.158 +  	*/
   1.159 +	EFeatMgrSetFeatureData,
   1.160 +
   1.161 +	/**
   1.162 +	* Deletes a feature entry.
   1.163 +	*
   1.164 +	* 0: TUid - Feature UID
   1.165 +  	* 1: TInt - err - Operation error code.
   1.166 +  	*/
   1.167 +    EFeatMgrDeleteFeature,
   1.168 +    
   1.169 +    /**
   1.170 +    * Software Installation started
   1.171 +    * 
   1.172 +    */ 
   1.173 +    EFeatMgrSWIStart,
   1.174 +    
   1.175 +    /**
   1.176 +    * Software Installation ended
   1.177 +    * 
   1.178 +    */ 
   1.179 +    EFeatMgrSWIEnd,
   1.180 +    
   1.181 +    EFeatMgrResourceMark,
   1.182 +    EFeatMgrResourceCheck,
   1.183 +    EFeatMgrResourceCount,
   1.184 +    EFeatMgrSetHeapFailure
   1.185 +    
   1.186 +    };
   1.187 +
   1.188 +
   1.189 +
   1.190 +#endif  // FEATMGRCLIENTSERVER_H
   1.191 +            
   1.192 +// End of File