sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#ifndef FEATDISCOVERY_H
|
sl@0
|
21 |
#define FEATDISCOVERY_H
|
sl@0
|
22 |
|
sl@0
|
23 |
// INCLUDES
|
sl@0
|
24 |
#include <e32base.h>
|
sl@0
|
25 |
|
sl@0
|
26 |
class CFeatureDiscoveryImpl;
|
sl@0
|
27 |
|
sl@0
|
28 |
/**
|
sl@0
|
29 |
Wrapper class used for multiple feature queries.
|
sl@0
|
30 |
@publishedAll
|
sl@0
|
31 |
@released
|
sl@0
|
32 |
*/
|
sl@0
|
33 |
|
sl@0
|
34 |
class TFeatureSet
|
sl@0
|
35 |
{
|
sl@0
|
36 |
public:
|
sl@0
|
37 |
|
sl@0
|
38 |
/**
|
sl@0
|
39 |
Constructor
|
sl@0
|
40 |
*/
|
sl@0
|
41 |
IMPORT_C TFeatureSet();
|
sl@0
|
42 |
|
sl@0
|
43 |
/**
|
sl@0
|
44 |
Destructor
|
sl@0
|
45 |
*/
|
sl@0
|
46 |
IMPORT_C ~TFeatureSet();
|
sl@0
|
47 |
|
sl@0
|
48 |
/**
|
sl@0
|
49 |
Method to add features before querying support statuses. This
|
sl@0
|
50 |
method must be called to initialize feature array before querying
|
sl@0
|
51 |
support statuses from server with FeaturesSupported(L) and finally
|
sl@0
|
52 |
check the status with a call to IsFeatureSupported or AreAllFeaturesSupported.
|
sl@0
|
53 |
|
sl@0
|
54 |
@return KErrNone if feature addition succeded.
|
sl@0
|
55 |
Otherwise one of the Symbian OS error codes
|
sl@0
|
56 |
*/
|
sl@0
|
57 |
IMPORT_C TInt Append( TUid aFeature );
|
sl@0
|
58 |
|
sl@0
|
59 |
/**
|
sl@0
|
60 |
Method to check feature's support status.
|
sl@0
|
61 |
|
sl@0
|
62 |
@param aFeature is the feature UID of the feature that is queried.
|
sl@0
|
63 |
@return a TBool indicating whether the feature is supported (ETrue)
|
sl@0
|
64 |
or not (EFalse). If the feature does not exist, the return value is
|
sl@0
|
65 |
EFalse.
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
IMPORT_C TBool IsFeatureSupported( TUid aFeature ) const;
|
sl@0
|
68 |
|
sl@0
|
69 |
/**
|
sl@0
|
70 |
Method to check whether all features queried are supported.
|
sl@0
|
71 |
|
sl@0
|
72 |
@return ETrue if all features queried are supported or no features have been queried.
|
sl@0
|
73 |
Otherwise EFalse.
|
sl@0
|
74 |
*/
|
sl@0
|
75 |
IMPORT_C TBool AreAllFeaturesSupported() const;
|
sl@0
|
76 |
|
sl@0
|
77 |
public: // For CFeatureDiscoveryImpl internal use
|
sl@0
|
78 |
|
sl@0
|
79 |
// Count number of features in TFeatureStat array.
|
sl@0
|
80 |
TInt Count();
|
sl@0
|
81 |
|
sl@0
|
82 |
// Return id of feature in requested index from TFeatureStat array.
|
sl@0
|
83 |
TUid FeatureId( TInt aIndex ) const;
|
sl@0
|
84 |
|
sl@0
|
85 |
// Reset TFeatureStat array.
|
sl@0
|
86 |
void Reset();
|
sl@0
|
87 |
|
sl@0
|
88 |
// Append feature and status object into TFeatureStat array
|
sl@0
|
89 |
TInt Append( TUid aFeature, TBool aSupported );
|
sl@0
|
90 |
|
sl@0
|
91 |
private:
|
sl@0
|
92 |
struct TFeatureStat
|
sl@0
|
93 |
{
|
sl@0
|
94 |
TUid iFeatureID;
|
sl@0
|
95 |
TBool iSupported;
|
sl@0
|
96 |
};
|
sl@0
|
97 |
|
sl@0
|
98 |
private:
|
sl@0
|
99 |
// Feature id, status array
|
sl@0
|
100 |
RArray<TFeatureStat> iStatus;
|
sl@0
|
101 |
|
sl@0
|
102 |
// Counter for checking feature count before and after query
|
sl@0
|
103 |
TInt iCount;
|
sl@0
|
104 |
|
sl@0
|
105 |
// Reserved for future use.
|
sl@0
|
106 |
TUint32 iReserved;
|
sl@0
|
107 |
};
|
sl@0
|
108 |
|
sl@0
|
109 |
/**
|
sl@0
|
110 |
The feature discovery API provides methods which are used to query which
|
sl@0
|
111 |
features are supported in the environment.
|
sl@0
|
112 |
|
sl@0
|
113 |
@publishedAll
|
sl@0
|
114 |
@released
|
sl@0
|
115 |
*/
|
sl@0
|
116 |
class CFeatureDiscovery : public CBase
|
sl@0
|
117 |
{
|
sl@0
|
118 |
public:
|
sl@0
|
119 |
|
sl@0
|
120 |
/**
|
sl@0
|
121 |
This is a two-phase constructor method that is used to create
|
sl@0
|
122 |
a new instance of the CFeatureDiscovery class.
|
sl@0
|
123 |
|
sl@0
|
124 |
@return a pointer to a new instance of the CFeatureDiscovery class.
|
sl@0
|
125 |
|
sl@0
|
126 |
@leave Any One of the Symbian OS system-wide error codes
|
sl@0
|
127 |
*/
|
sl@0
|
128 |
IMPORT_C static CFeatureDiscovery* NewL();
|
sl@0
|
129 |
|
sl@0
|
130 |
/**
|
sl@0
|
131 |
This is a two-phase constructor method that is used to create
|
sl@0
|
132 |
a new instance of the CFeatureDiscovery class. This method leaves
|
sl@0
|
133 |
the instance of the object on the cleanup stack.
|
sl@0
|
134 |
|
sl@0
|
135 |
@return a pointer to a new instance of the CFeatureDiscovery class.
|
sl@0
|
136 |
|
sl@0
|
137 |
@leave Any One of the Symbian OS system-wide error codes
|
sl@0
|
138 |
*/
|
sl@0
|
139 |
IMPORT_C static CFeatureDiscovery* NewLC();
|
sl@0
|
140 |
|
sl@0
|
141 |
/**
|
sl@0
|
142 |
Destructor.
|
sl@0
|
143 |
*/
|
sl@0
|
144 |
virtual ~CFeatureDiscovery();
|
sl@0
|
145 |
|
sl@0
|
146 |
/**
|
sl@0
|
147 |
Static method to query the supported status of a feature on the
|
sl@0
|
148 |
device.
|
sl@0
|
149 |
|
sl@0
|
150 |
@deprecated Use IsFeatureSupportedL(TUid aFeature) instead.
|
sl@0
|
151 |
|
sl@0
|
152 |
@param aFeature is the feature ID of the feature that is queried.
|
sl@0
|
153 |
@return a TBool indicating whether the feature is supported (ETrue)
|
sl@0
|
154 |
or not (EFalse). If the feature does not exist, the return value is
|
sl@0
|
155 |
EFalse.
|
sl@0
|
156 |
|
sl@0
|
157 |
@leave Any One of the Symbian OS system-wide error codes
|
sl@0
|
158 |
*/
|
sl@0
|
159 |
IMPORT_C static TBool IsFeatureSupportedL( TInt aFeature );
|
sl@0
|
160 |
|
sl@0
|
161 |
/**
|
sl@0
|
162 |
Dynamic method to query the supported status of a feature on the
|
sl@0
|
163 |
device. Before calling the method an instance of the CFeatureDiscovery
|
sl@0
|
164 |
class must be created by using one of the factory methods,
|
sl@0
|
165 |
NewL() or NewLC(). The created instance must be deleted after use.
|
sl@0
|
166 |
|
sl@0
|
167 |
@deprecated Use IsSupported(TUid aFeature) instead.
|
sl@0
|
168 |
|
sl@0
|
169 |
@param aFeature is the feature ID of the feature that is queried.
|
sl@0
|
170 |
@return a TBool indicating whether the feature is supported (ETrue)
|
sl@0
|
171 |
or not (EFalse). If the feature does not exist, the return value is
|
sl@0
|
172 |
EFalse.
|
sl@0
|
173 |
*/
|
sl@0
|
174 |
IMPORT_C TBool IsSupported( TInt aFeature ) const ;
|
sl@0
|
175 |
|
sl@0
|
176 |
/**
|
sl@0
|
177 |
Static method to query the supported status of a feature on the device.
|
sl@0
|
178 |
|
sl@0
|
179 |
@param aFeature is the feature UID of the feature that is queried.
|
sl@0
|
180 |
@return a TBool indicating whether the feature is supported (ETrue)
|
sl@0
|
181 |
or not (EFalse). If the feature does not exist, the return value is
|
sl@0
|
182 |
EFalse.
|
sl@0
|
183 |
|
sl@0
|
184 |
@leave Any One of the Symbian OS system-wide error codes
|
sl@0
|
185 |
*/
|
sl@0
|
186 |
IMPORT_C static TBool IsFeatureSupportedL( TUid aFeature );
|
sl@0
|
187 |
|
sl@0
|
188 |
/**
|
sl@0
|
189 |
Dynamic method to query the supported status of a feature on the device.
|
sl@0
|
190 |
|
sl@0
|
191 |
Before calling the method an instance of the CFeatureDiscovery class must
|
sl@0
|
192 |
be created by using one of the factory methods, NewL() or NewLC().
|
sl@0
|
193 |
The created instance must be deleted after use.
|
sl@0
|
194 |
|
sl@0
|
195 |
@param aFeature is the feature UID of the feature that is queried.
|
sl@0
|
196 |
@return a TBool indicating whether the feature is supported (ETrue)
|
sl@0
|
197 |
or not (EFalse). If the feature does not exist, the return value is
|
sl@0
|
198 |
EFalse.
|
sl@0
|
199 |
*/
|
sl@0
|
200 |
IMPORT_C TBool IsSupported( TUid aFeature ) const ;
|
sl@0
|
201 |
|
sl@0
|
202 |
/**
|
sl@0
|
203 |
Static method to query the supported status of a set of features
|
sl@0
|
204 |
on the device.
|
sl@0
|
205 |
|
sl@0
|
206 |
@param aFeatures is the wrapper class for feature array queried.
|
sl@0
|
207 |
|
sl@0
|
208 |
@leave Any One of the Symbian OS system-wide error codes
|
sl@0
|
209 |
*/
|
sl@0
|
210 |
IMPORT_C static void FeaturesSupportedL( TFeatureSet& aFeatures );
|
sl@0
|
211 |
|
sl@0
|
212 |
/**
|
sl@0
|
213 |
Dynamic method to query the supported status of a set of features
|
sl@0
|
214 |
on the device. Before calling the method an instance of the
|
sl@0
|
215 |
CFeatureDiscovery class need to be created by using one of the
|
sl@0
|
216 |
factory methods, NewL() or NewLC(). The created instance must be
|
sl@0
|
217 |
deleted after use.
|
sl@0
|
218 |
|
sl@0
|
219 |
@param aFeatures is the wrapper class for feature array queried.
|
sl@0
|
220 |
@return KErrNone if status query succeeded.
|
sl@0
|
221 |
Otherwise one of the Symbian OS error codes
|
sl@0
|
222 |
*/
|
sl@0
|
223 |
IMPORT_C TInt FeaturesSupported( TFeatureSet& aFeatures ) const;
|
sl@0
|
224 |
|
sl@0
|
225 |
private:
|
sl@0
|
226 |
|
sl@0
|
227 |
/**
|
sl@0
|
228 |
C++ default constructor.
|
sl@0
|
229 |
*/
|
sl@0
|
230 |
CFeatureDiscovery();
|
sl@0
|
231 |
|
sl@0
|
232 |
/**
|
sl@0
|
233 |
By default Symbian OS constructor is private.
|
sl@0
|
234 |
*/
|
sl@0
|
235 |
void ConstructL();
|
sl@0
|
236 |
|
sl@0
|
237 |
private:
|
sl@0
|
238 |
|
sl@0
|
239 |
// Feature discovery implementation class
|
sl@0
|
240 |
CFeatureDiscoveryImpl* iImpl;
|
sl@0
|
241 |
} ;
|
sl@0
|
242 |
|
sl@0
|
243 |
/**
|
sl@0
|
244 |
Usage:
|
sl@0
|
245 |
|
sl@0
|
246 |
@code
|
sl@0
|
247 |
#include <featdiscovery.h>
|
sl@0
|
248 |
#include <featureinfo.h> // for feature definitions
|
sl@0
|
249 |
|
sl@0
|
250 |
// replace <featureUIDx> with a real UID )
|
sl@0
|
251 |
|
sl@0
|
252 |
// If querying only one feature, it is more efficient to use the class
|
sl@0
|
253 |
// via the static method, IsFeatureSupportedL().
|
sl@0
|
254 |
// When querying more than one feature, it is more efficient to use the
|
sl@0
|
255 |
// class by creating an instance and calling the IsSupported() method.
|
sl@0
|
256 |
|
sl@0
|
257 |
// Static way of using the class:
|
sl@0
|
258 |
TBool isSupported = CFeatureDiscovery::IsFeatureSupportedL(<featureUIDx>);
|
sl@0
|
259 |
|
sl@0
|
260 |
// Dynamic way of using the class using NewL():
|
sl@0
|
261 |
|
sl@0
|
262 |
// Call NewL() to create an instance of CFeatureDiscovery.
|
sl@0
|
263 |
CFeatureDiscovery* testA = CFeatureDiscovery::NewL();
|
sl@0
|
264 |
|
sl@0
|
265 |
// Call the exported IsSupported() method to query whether features
|
sl@0
|
266 |
// are supported in the current environment or not.
|
sl@0
|
267 |
TBool usbSupported = testA->IsSupported(<featureUIDx>);
|
sl@0
|
268 |
TBool mmcSupported = testA->IsSupported(<featureUIDx>);
|
sl@0
|
269 |
|
sl@0
|
270 |
// Delete the created instance of CFeatureDiscovery.
|
sl@0
|
271 |
delete testA;
|
sl@0
|
272 |
|
sl@0
|
273 |
// Dynamic way of using the class using NewLC():
|
sl@0
|
274 |
|
sl@0
|
275 |
// Call NewLC() to create an instance of CFeatureDiscovery.
|
sl@0
|
276 |
// The method leaves the instance of the object on the cleanup stack.
|
sl@0
|
277 |
CFeatureDiscovery* testB = CFeatureDiscovery::NewLC();
|
sl@0
|
278 |
|
sl@0
|
279 |
// Call the exported IsSupported() method to query whether features
|
sl@0
|
280 |
// are supported in the current environment or not.
|
sl@0
|
281 |
TBool wcdmaSupported = testB->IsSupported(<featureUIDx>);
|
sl@0
|
282 |
TBool gsmSupported = testB->IsSupported(<featureUIDx>);
|
sl@0
|
283 |
|
sl@0
|
284 |
// Dynamic way of using multiple feature query. This is preferred
|
sl@0
|
285 |
// way to fetch support statuses if there are several features to be
|
sl@0
|
286 |
// queried, because it involves less inter-process communication.
|
sl@0
|
287 |
|
sl@0
|
288 |
TFeatureSet featset;
|
sl@0
|
289 |
User::LeaveIfError( featset.Append( <featureUIDx> ) );
|
sl@0
|
290 |
User::LeaveIfError( featset.Append( <featureUIDx> ) );
|
sl@0
|
291 |
TInt err = testB->FeaturesSupported( featset );
|
sl@0
|
292 |
if(!err)
|
sl@0
|
293 |
{
|
sl@0
|
294 |
TBool uid1Supported = featset.IsFeatureSupported(<featureUIDx>);
|
sl@0
|
295 |
TBool uid2Supported = featset.IsFeatureSupported(<featureUIDx>);
|
sl@0
|
296 |
// ... or whether all QUERIED features are supported
|
sl@0
|
297 |
TBool allSupported = featset.AreAllFeaturesSupported();
|
sl@0
|
298 |
}
|
sl@0
|
299 |
// featset cleans array up in destructor on scope exit
|
sl@0
|
300 |
|
sl@0
|
301 |
// Pop and delete the created instance of CFeatureDiscovery.
|
sl@0
|
302 |
CleanupStack::PopAndDestroy();
|
sl@0
|
303 |
@endcode
|
sl@0
|
304 |
*/
|
sl@0
|
305 |
#endif // FEATDISCOVERY_H
|
sl@0
|
306 |
|
sl@0
|
307 |
// End of File
|