Update contrib.
2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
20 #ifndef FEATDISCOVERY_H
21 #define FEATDISCOVERY_H
26 class CFeatureDiscoveryImpl;
29 Wrapper class used for multiple feature queries.
41 IMPORT_C TFeatureSet();
46 IMPORT_C ~TFeatureSet();
49 Method to add features before querying support statuses. This
50 method must be called to initialize feature array before querying
51 support statuses from server with FeaturesSupported(L) and finally
52 check the status with a call to IsFeatureSupported or AreAllFeaturesSupported.
54 @return KErrNone if feature addition succeded.
55 Otherwise one of the Symbian OS error codes
57 IMPORT_C TInt Append( TUid aFeature );
60 Method to check feature's support status.
62 @param aFeature is the feature UID of the feature that is queried.
63 @return a TBool indicating whether the feature is supported (ETrue)
64 or not (EFalse). If the feature does not exist, the return value is
67 IMPORT_C TBool IsFeatureSupported( TUid aFeature ) const;
70 Method to check whether all features queried are supported.
72 @return ETrue if all features queried are supported or no features have been queried.
75 IMPORT_C TBool AreAllFeaturesSupported() const;
77 public: // For CFeatureDiscoveryImpl internal use
79 // Count number of features in TFeatureStat array.
82 // Return id of feature in requested index from TFeatureStat array.
83 TUid FeatureId( TInt aIndex ) const;
85 // Reset TFeatureStat array.
88 // Append feature and status object into TFeatureStat array
89 TInt Append( TUid aFeature, TBool aSupported );
99 // Feature id, status array
100 RArray<TFeatureStat> iStatus;
102 // Counter for checking feature count before and after query
105 // Reserved for future use.
110 The feature discovery API provides methods which are used to query which
111 features are supported in the environment.
116 class CFeatureDiscovery : public CBase
121 This is a two-phase constructor method that is used to create
122 a new instance of the CFeatureDiscovery class.
124 @return a pointer to a new instance of the CFeatureDiscovery class.
126 @leave Any One of the Symbian OS system-wide error codes
128 IMPORT_C static CFeatureDiscovery* NewL();
131 This is a two-phase constructor method that is used to create
132 a new instance of the CFeatureDiscovery class. This method leaves
133 the instance of the object on the cleanup stack.
135 @return a pointer to a new instance of the CFeatureDiscovery class.
137 @leave Any One of the Symbian OS system-wide error codes
139 IMPORT_C static CFeatureDiscovery* NewLC();
144 virtual ~CFeatureDiscovery();
147 Static method to query the supported status of a feature on the
150 @deprecated Use IsFeatureSupportedL(TUid aFeature) instead.
152 @param aFeature is the feature ID of the feature that is queried.
153 @return a TBool indicating whether the feature is supported (ETrue)
154 or not (EFalse). If the feature does not exist, the return value is
157 @leave Any One of the Symbian OS system-wide error codes
159 IMPORT_C static TBool IsFeatureSupportedL( TInt aFeature );
162 Dynamic method to query the supported status of a feature on the
163 device. Before calling the method an instance of the CFeatureDiscovery
164 class must be created by using one of the factory methods,
165 NewL() or NewLC(). The created instance must be deleted after use.
167 @deprecated Use IsSupported(TUid aFeature) instead.
169 @param aFeature is the feature ID of the feature that is queried.
170 @return a TBool indicating whether the feature is supported (ETrue)
171 or not (EFalse). If the feature does not exist, the return value is
174 IMPORT_C TBool IsSupported( TInt aFeature ) const ;
177 Static method to query the supported status of a feature on the device.
179 @param aFeature is the feature UID of the feature that is queried.
180 @return a TBool indicating whether the feature is supported (ETrue)
181 or not (EFalse). If the feature does not exist, the return value is
184 @leave Any One of the Symbian OS system-wide error codes
186 IMPORT_C static TBool IsFeatureSupportedL( TUid aFeature );
189 Dynamic method to query the supported status of a feature on the device.
191 Before calling the method an instance of the CFeatureDiscovery class must
192 be created by using one of the factory methods, NewL() or NewLC().
193 The created instance must be deleted after use.
195 @param aFeature is the feature UID of the feature that is queried.
196 @return a TBool indicating whether the feature is supported (ETrue)
197 or not (EFalse). If the feature does not exist, the return value is
200 IMPORT_C TBool IsSupported( TUid aFeature ) const ;
203 Static method to query the supported status of a set of features
206 @param aFeatures is the wrapper class for feature array queried.
208 @leave Any One of the Symbian OS system-wide error codes
210 IMPORT_C static void FeaturesSupportedL( TFeatureSet& aFeatures );
213 Dynamic method to query the supported status of a set of features
214 on the device. Before calling the method an instance of the
215 CFeatureDiscovery class need to be created by using one of the
216 factory methods, NewL() or NewLC(). The created instance must be
219 @param aFeatures is the wrapper class for feature array queried.
220 @return KErrNone if status query succeeded.
221 Otherwise one of the Symbian OS error codes
223 IMPORT_C TInt FeaturesSupported( TFeatureSet& aFeatures ) const;
228 C++ default constructor.
233 By default Symbian OS constructor is private.
239 // Feature discovery implementation class
240 CFeatureDiscoveryImpl* iImpl;
247 #include <featdiscovery.h>
248 #include <featureinfo.h> // for feature definitions
250 // replace <featureUIDx> with a real UID )
252 // If querying only one feature, it is more efficient to use the class
253 // via the static method, IsFeatureSupportedL().
254 // When querying more than one feature, it is more efficient to use the
255 // class by creating an instance and calling the IsSupported() method.
257 // Static way of using the class:
258 TBool isSupported = CFeatureDiscovery::IsFeatureSupportedL(<featureUIDx>);
260 // Dynamic way of using the class using NewL():
262 // Call NewL() to create an instance of CFeatureDiscovery.
263 CFeatureDiscovery* testA = CFeatureDiscovery::NewL();
265 // Call the exported IsSupported() method to query whether features
266 // are supported in the current environment or not.
267 TBool usbSupported = testA->IsSupported(<featureUIDx>);
268 TBool mmcSupported = testA->IsSupported(<featureUIDx>);
270 // Delete the created instance of CFeatureDiscovery.
273 // Dynamic way of using the class using NewLC():
275 // Call NewLC() to create an instance of CFeatureDiscovery.
276 // The method leaves the instance of the object on the cleanup stack.
277 CFeatureDiscovery* testB = CFeatureDiscovery::NewLC();
279 // Call the exported IsSupported() method to query whether features
280 // are supported in the current environment or not.
281 TBool wcdmaSupported = testB->IsSupported(<featureUIDx>);
282 TBool gsmSupported = testB->IsSupported(<featureUIDx>);
284 // Dynamic way of using multiple feature query. This is preferred
285 // way to fetch support statuses if there are several features to be
286 // queried, because it involves less inter-process communication.
289 User::LeaveIfError( featset.Append( <featureUIDx> ) );
290 User::LeaveIfError( featset.Append( <featureUIDx> ) );
291 TInt err = testB->FeaturesSupported( featset );
294 TBool uid1Supported = featset.IsFeatureSupported(<featureUIDx>);
295 TBool uid2Supported = featset.IsFeatureSupported(<featureUIDx>);
296 // ... or whether all QUERIED features are supported
297 TBool allSupported = featset.AreAllFeaturesSupported();
299 // featset cleans array up in destructor on scope exit
301 // Pop and delete the created instance of CFeatureDiscovery.
302 CleanupStack::PopAndDestroy();
305 #endif // FEATDISCOVERY_H