os/persistentdata/featuremgmt/featuremgr/src/inc/featmgrclientserver.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:
    15 *
    16 */
    17 
    18 
    19 
    20 #ifndef FEATMGRCLIENTSERVER_H
    21 #define FEATMGRCLIENTSERVER_H
    22 
    23 //  INCLUDES
    24 #include <e32cmn.h>
    25 #include <featmgr/featurecmn.h>
    26 #include "featurepanics.h"
    27 
    28 // DATA TYPES
    29 
    30 // Opcodes used in message passing between client and server
    31 // Important:   Make sure IsWriteOperation function of CFeatMgrSession
    32 //              is updated if a new enum for function that will modify
    33 //              feature (write operation) is added. 
    34 enum TFeatMgrServRequest
    35     {
    36 	/**
    37 	* Fetches information whether a certain feature is supported.
    38 	*
    39 	* 0: TFeatureEntry - Feature entry
    40   	* 1: TInt - ret - Returns feature support value (0,1) or error code.
    41   	*/
    42 	EFeatMgrFeatureSupported = 0,
    43 
    44 	/**
    45 	* Fetches information of subset of features support-status.
    46 	*
    47 	* 0: TInt - Count of features, notification will be requested
    48 	* 1: TPtr8 - Feature UID array (RFeatureUidArray)
    49   	* 2: TInt - Count of features in response.
    50   	*/
    51 	EFeatMgrFeaturesSupported,
    52 
    53    	/**
    54 	* Lists all supported features.
    55 	*
    56 	* 0: In return as a parameter received reference to the client owned 
    57     *    RFeatureUidArray array contains Ids of all supported features.
    58   	*/
    59 	EFeatMgrListSupportedFeatures,
    60 
    61    	/**
    62 	* Number of all supported features.
    63 	*
    64 	* 0: TInt - err - Returns the number of all supported features.
    65   	*/
    66 	EFeatMgrNumberOfSupportedFeatures,
    67 
    68 	/**
    69 	* Request for single or subset of features notification.
    70 	*
    71 	* 0: TPtr8 - On change notification, server sets changed UID (TUid)
    72   	* 1: TRequestStatus - Request to be signaled.
    73   	*/
    74 	EFeatMgrReqNotify,
    75 	
    76 	/**
    77 	* Uids associated with request for single or subset of features notification.
    78 	*
    79 	* 0: TInt - Count of features, notification will be requested
    80 	* 1: TPtr8 - Feature UID array (RFeatureUidArray)
    81   	* 2: TInt - err - Operation error code.
    82   	*/
    83 	EFeatMgrReqNotifyUids,
    84 	
    85 	/**
    86 	* Request cancellation of single feature notification.
    87 	*
    88 	* 0: TUid - Feature UID
    89   	* 1: TRequestStatus - Request to be canceled
    90   	* 2: TInt - err - Operation error code.
    91   	*/
    92 	EFeatMgrReqNotifyCancel,
    93 	
    94 	/**
    95 	* Request cancellation of all features notification.
    96 	*
    97   	* 0: TInt - err - Operation error code.
    98   	*/
    99 	EFeatMgrReqNotifyCancelAll,
   100 
   101 #ifdef EXTENDED_FEATURE_MANAGER_TEST
   102    	/**
   103   	* Number of notify features.
   104   	*
   105    	*/
   106     EFeatMgrNumberOfNotifyFeatures,
   107 
   108    	/**
   109    	* Number of allocated cells.
   110    	*
   111    	*/
   112     EFeatMgrCountAllocCells,
   113 #endif
   114     
   115     /**
   116 	* Enables a certain feature.
   117 	*
   118 	* 0: TUid - Feature UID
   119   	* 1: TInt - err - Operation error code.
   120   	*/
   121 	EFeatMgrEnableFeature,
   122 	
   123 	/**
   124 	* Disables a certain feature.
   125 	*
   126 	* 0: TUid - Feature UID
   127   	* 1: TInt - err - Operation error code.
   128   	*/
   129 	EFeatMgrDisableFeature,
   130 
   131 	/**
   132 	* Adds a feature entry.
   133 	*
   134 	* 0: TFeatureEntry - Feature entry
   135   	* 1: TInt - err - Operation error code.
   136   	*/
   137     EFeatMgrAddFeature,
   138 
   139 	/**
   140 	* Sets a certain feature and associated data.
   141 	*
   142 	* 0: TUid - Feature UID
   143   	* 1: TBool - Feature enable or disable.
   144   	* 2: TInt - Feature data.
   145   	* 3: TInt - err - Operation error code.
   146   	*/
   147 	EFeatMgrSetFeatureAndData,
   148 	
   149 	/**
   150 	* Sets certain feature's data.
   151 	*
   152 	* 0: TUid - Feature UID
   153   	* 1: TInt - Feature data.
   154   	* 2: TInt - err - Operation error code.
   155   	*/
   156 	EFeatMgrSetFeatureData,
   157 
   158 	/**
   159 	* Deletes a feature entry.
   160 	*
   161 	* 0: TUid - Feature UID
   162   	* 1: TInt - err - Operation error code.
   163   	*/
   164     EFeatMgrDeleteFeature,
   165     
   166     /**
   167     * Software Installation started
   168     * 
   169     */ 
   170     EFeatMgrSWIStart,
   171     
   172     /**
   173     * Software Installation ended
   174     * 
   175     */ 
   176     EFeatMgrSWIEnd,
   177     
   178     EFeatMgrResourceMark,
   179     EFeatMgrResourceCheck,
   180     EFeatMgrResourceCount,
   181     EFeatMgrSetHeapFailure
   182     
   183     };
   184 
   185 
   186 
   187 #endif  // FEATMGRCLIENTSERVER_H
   188             
   189 // End of File