Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Implementation of wrapper API for querying support for features on a device, It
15 // internally uses Feature Manager query APIs.
20 #include <featdiscovery.h>
21 #include "featregpan.h"
23 #include "featregcmn.h"
25 // Class to hold pointers to Cleanup stack & Feature Manager CFeatureDiscovery
26 // virtual methods from CBase that result in these _TZ entries being generated.
27 //NONSHARABLE_CLASS is used to remove _ZTI & _ZTV entry from def file .
28 NONSHARABLE_CLASS (CImplFeatDisc ) : public CBase
31 static CImplFeatDisc* NewL();
39 CFeatureDiscovery *iFeatDis;
40 CTrapCleanup * iCleanup;
44 CImplFeatDisc::CImplFeatDisc() :
51 CImplFeatDisc::~CImplFeatDisc()
60 void CImplFeatDisc::ConstructL()
62 iFeatDis = CFeatureDiscovery::NewL();
66 CImplFeatDisc* CImplFeatDisc::NewL()
68 CImplFeatDisc* self = new( ELeave ) CImplFeatDisc();
69 CleanupStack::PushL( self );
71 CleanupStack::Pop( self );
78 * Dummy feature registry implementation object - never instantiated.
81 class RFeatureRegistry::TImpl
87 * Opens connection to the Feature Registry for making non-static queries.
88 * Note all non-static queries return state at the time Open() was called;
89 * Feature Registry changes are not observed until instance closed and re-opened.
91 * @return KErrNone if successful, negative system-wide error code if fails
95 EXPORT_C TInt RFeatureRegistry::Open()
97 __ASSERT_ALWAYS(iImpl == NULL, Panic(EFeatRegInvalidUse));
99 CTrapCleanup *cleanup = NULL;
101 if(User::TrapHandler() == NULL)
103 cleanup = CTrapCleanup::New();
110 CImplFeatDisc *ptrh = NULL;
111 TRAPD( err, ptrh = CImplFeatDisc::NewL() );
112 if ( err == KErrNone )
114 ptrh->iCleanup = cleanup;
115 iImpl = reinterpret_cast<TImpl*> (ptrh);
123 * Queries support for feature on the device.
124 * Non-static version requiring open instance of class.
125 * Recommended when making multiple queries.
126 * Note: returns support for feature from the time Open() was called.
128 * @param aFeatureUid Unique identifier of feature being queried
129 * @return positive value if feature is supported, zero if feature is not supported,
130 * or negative system-wide error code if could not be determined.
131 * @pre this registry instance is open
132 * @panic FeatReg EFeatRegInvalidUse if this registry instance is not open
136 EXPORT_C TInt RFeatureRegistry::QuerySupport(TUid aFeatureUid)
140 return QuerySupport(aFeatureUid, dummyInfo);
144 * Queries support for feature on the device.
145 * Non-static version requiring open instance of class.
146 * Recommended when making multiple queries.
147 * Note: returns support for feature from the time Open() was called.
149 * @param aFeatureUid Unique identifier of feature being queried
150 * @param aInfo addition status information about feature
151 * @return positive value if feature is supported, zero if feature is not supported,
152 * or negative system-wide error code if could not be determined.
153 * @pre this registry instance is open
154 * @panic FeatReg EFeatRegInvalidUse if this registry instance is not open
158 EXPORT_C TInt RFeatureRegistry::QuerySupport(TUid aFeatureUid, TUint32& aInfo)
160 __ASSERT_ALWAYS(iImpl != NULL, Panic(EFeatRegInvalidUse));
162 CImplFeatDisc *ptrh = reinterpret_cast<CImplFeatDisc*> (iImpl);
164 if(ptrh->iFeatDis->IsSupported(aFeatureUid))
167 //FeatReg support only ROM features so EStatusUpgradableBit has no meaning
168 //So aInfo always set to EStatusSupportBit in this wrapper
169 aInfo = EStatusSupportBit;
170 return EStatusSupportBit;
173 // feature not supported
179 * Closes this registry instance.
183 EXPORT_C void RFeatureRegistry::Close()
185 CImplFeatDisc *ptrh = reinterpret_cast<CImplFeatDisc*> (iImpl);
191 * Queries support for feature on the device.
192 * Static version recommended for single queries.
194 * @param aFeatureUid Unique identifier of feature being queried
195 * @return positive value if feature is supported, zero if feature is not supported,
196 * or negative system-wide error code if could not be determined.
200 EXPORT_C TInt RFeatureRegistry::QuerySupportS(TUid aFeatureUid)
203 return QuerySupportS(aFeatureUid, dummyInfo);
207 * Queries support for feature on the device.
208 * Static version recommended for single queries.
210 * @param aFeatureUid Unique identifier of feature being queried
211 * @param aInfo addition status information about feature
212 * @return positive value if feature is supported, zero if feature is not supported,
213 * or negative system-wide error code if could not be determined.
217 EXPORT_C TInt RFeatureRegistry::QuerySupportS(TUid aFeatureUid, TUint32& aInfo)
219 CTrapCleanup * cleanup = NULL;
220 if(User::TrapHandler() == NULL)
222 cleanup = CTrapCleanup::New();
228 TBool supported = EFalse;
229 TRAPD( err, supported = CFeatureDiscovery::IsFeatureSupportedL(aFeatureUid) );
241 //FeatReg support only ROM features so EStatusUpgradableBit has no meaning
242 //So aInfo always set to EStatusSupportBit in this wrapper
243 aInfo = EStatusSupportBit;
244 return EStatusSupportBit;
247 // feature not supported
257 Dummy class. Contains placeholder for a removed RFeatureRegistryNotify function to prevent BC break.
263 public: // New functions
265 IMPORT_C static void Dummy1();
266 IMPORT_C static void Dummy2();
267 IMPORT_C static TInt Dummy3();
268 IMPORT_C static void Dummy4(TRequestStatus &);
271 // ================= MEMBER FUNCTIONS =======================
278 EXPORT_C void Dummy::Dummy1() { }
284 EXPORT_C void Dummy::Dummy2() { }
288 @return KErrNotSupported
290 EXPORT_C TInt Dummy::Dummy3()
292 return KErrNotSupported;
299 EXPORT_C void Dummy::Dummy4(TRequestStatus &) { }