Update contrib.
1 // Copyright (c) 2007-2010 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.
19 #include <featmgr/featmgr.h>
20 #include "featmgrtlsdata.h"
21 #include "featmgrdebug.h"
23 // ============================= LOCAL FUNCTIONS ===============================
25 static CFeatMgrTlsData* TlsData( )
27 CFeatMgrTlsData* tlsData = STATIC_CAST( CFeatMgrTlsData*, Dll::Tls() );
28 _LIT( KPanicCategory, "RFeatureControl" );
29 __ASSERT_ALWAYS( tlsData, User::Panic( KPanicCategory, EPanicBadHandle ) );
35 EXPORT_C TInt GetClientCount( )
37 CFeatMgrTlsData* tlsData = STATIC_CAST( CFeatMgrTlsData*, Dll::Tls() );
40 return tlsData->ClientCount();
48 // ============================ MEMBER FUNCTIONS ===============================
50 // -----------------------------------------------------------------------------
51 // CFeatureManager::CFeatureManager()
52 // -----------------------------------------------------------------------------
55 CFeatMgrTlsData::CFeatMgrTlsData() :
60 // -----------------------------------------------------------------------------
61 // CFeatureManager::ConstructL
62 // -----------------------------------------------------------------------------
64 void CFeatMgrTlsData::ConstructL()
66 // Connect to Feature Manager server
68 TInt err( iFeatMgrClient.Connect() );
69 User::LeaveIfError(err);
72 // -----------------------------------------------------------------------------
73 // CFeatureManager::NewL()
74 // Two-phased constructor.
75 // -----------------------------------------------------------------------------
77 CFeatMgrTlsData* CFeatMgrTlsData::NewL()
79 CFeatMgrTlsData* self = new( ELeave ) CFeatMgrTlsData();
80 CleanupStack::PushL( self );
82 CleanupStack::Pop( self );
86 // -----------------------------------------------------------------------------
87 // CFeatureManager::~CFeatMgrTlsData
88 // -----------------------------------------------------------------------------
90 CFeatMgrTlsData::~CFeatMgrTlsData()
93 iFeatMgrClient.Close();
96 // -----------------------------------------------------------------------------
97 // CFeatMgrTlsData::CanBeFreed()
98 // -----------------------------------------------------------------------------
100 TBool CFeatMgrTlsData::CanBeFreed() const
102 if (iClientCount <= 0)
104 INFO_LOG1( "FeatMgr: TLS can be freed, clients(%d)", iClientCount );
109 INFO_LOG1( "FeatMgr: TLS can NOT be freed, clients(%d)", iClientCount );
114 // -----------------------------------------------------------------------------
115 // CFeatMgrTlsData::IncreaseClientCount()
116 // -----------------------------------------------------------------------------
118 void CFeatMgrTlsData::IncreaseClientCount()
121 INFO_LOG1( "FeatMgr: TLS increase, clients now(%d)", iClientCount );
124 // -----------------------------------------------------------------------------
125 // CFeatMgrTlsData::DecreaseClientCount()
126 // -----------------------------------------------------------------------------
129 void CFeatMgrTlsData::DecreaseClientCount()
132 INFO_LOG1( "FeatMgr: TLS decrease, clients now(%d)", iClientCount );
135 // -----------------------------------------------------------------------------
136 // CFeatMgrTlsData::ClientCount()
137 // -----------------------------------------------------------------------------
139 TInt CFeatMgrTlsData::ClientCount()
143 // -----------------------------------------------------------------------------
144 // CFeatMgrTlsData::FeatureSupported()
145 // -----------------------------------------------------------------------------
147 TInt CFeatMgrTlsData::FeatureSupported( TFeatureEntry& aFeature ) const
149 return iFeatMgrClient.FeatureSupported( aFeature );
152 // -----------------------------------------------------------------------------
153 // CFeatMgrTlsData::FeaturesSupported()
154 // -----------------------------------------------------------------------------
156 TInt CFeatMgrTlsData::FeaturesSupported( RFeatureArray& aFeatures )
158 return iFeatMgrClient.FeaturesSupported( aFeatures );
161 // -----------------------------------------------------------------------------
162 // CFeatMgrTlsData::EnableFeature()
163 // -----------------------------------------------------------------------------
165 TInt CFeatMgrTlsData::EnableFeature( TUid aFeature ) const
167 return iFeatMgrClient.EnableFeature( aFeature );
170 // -----------------------------------------------------------------------------
171 // CFeatMgrTlsData::DisableFeature()
172 // -----------------------------------------------------------------------------
174 TInt CFeatMgrTlsData::DisableFeature( TUid aFeature ) const
176 return iFeatMgrClient.DisableFeature( aFeature );
179 // -----------------------------------------------------------------------------
180 // CFeatMgrTlsData::SetFeature()
181 // -----------------------------------------------------------------------------
183 TInt CFeatMgrTlsData::SetFeature( TUid aFeature, TBool aEnabled, TInt aData ) const
185 return iFeatMgrClient.SetFeature( aFeature, aEnabled, aData );
188 // -----------------------------------------------------------------------------
189 // CFeatMgrTlsData::SetFeature()
190 // -----------------------------------------------------------------------------
192 TInt CFeatMgrTlsData::SetFeature( TUid aFeature, TInt aData ) const
194 return iFeatMgrClient.SetFeature( aFeature, aData );
197 // -----------------------------------------------------------------------------
198 // CFeatMgrTlsData::AddFeature()
199 // -----------------------------------------------------------------------------
201 TInt CFeatMgrTlsData::AddFeature( TFeatureEntry aFeature ) const
203 return iFeatMgrClient.AddFeature( aFeature );
206 // -----------------------------------------------------------------------------
207 // CFeatMgrTlsData::DeleteFeature()
208 // -----------------------------------------------------------------------------
210 TInt CFeatMgrTlsData::DeleteFeature( TUid aFeature ) const
212 return iFeatMgrClient.DeleteFeature( aFeature );
215 // -----------------------------------------------------------------------------
216 // CFeatMgrTlsData::ListSupportedFeaturesL()
217 // -----------------------------------------------------------------------------
219 void CFeatMgrTlsData::ListSupportedFeaturesL( RFeatureUidArray& aSupportedFeatures )
221 iFeatMgrClient.ListSupportedFeaturesL( aSupportedFeatures );
224 // -----------------------------------------------------------------------------
225 // CFeatMgrTlsData::ReRequestNotification(TUid&, TRequestStatus&)
226 // -----------------------------------------------------------------------------
228 void CFeatMgrTlsData::ReRequestNotification( TUid& aFeatUid, TRequestStatus& aStatus )
230 iFeatMgrClient.ReRequestNotification( aFeatUid, aStatus );
234 // -----------------------------------------------------------------------------
235 // CFeatMgrTlsData::RequestNotification(RFeatureUidArray&, TUid&, TRequestStatus&)
236 // -----------------------------------------------------------------------------
238 TInt CFeatMgrTlsData::RequestNotification( RFeatureUidArray& aFeatures, TUid& aFeatUid,
239 TRequestStatus& aStatus )
241 return iFeatMgrClient.RequestNotification( aFeatures, aFeatUid, aStatus );
244 // -----------------------------------------------------------------------------
245 // CFeatMgrTlsData::RequestNotifyCancel(RFeatureUidArray&, TRequestStatus&)
246 // -----------------------------------------------------------------------------
248 TInt CFeatMgrTlsData::RequestNotifyCancel( TUid aFeature ) const
250 return iFeatMgrClient.RequestNotifyCancel( aFeature );
253 // -----------------------------------------------------------------------------
254 // CFeatMgrTlsData::RequestNotifyCancelAll(RFeatureUidArray&, TRequestStatus&)
255 // -----------------------------------------------------------------------------
257 TInt CFeatMgrTlsData::RequestNotifyCancelAll( ) const
259 return iFeatMgrClient.RequestNotifyCancelAll( );
262 // -----------------------------------------------------------------------------
263 // CFeatMgrTlsData::DeleteClient()
264 // -----------------------------------------------------------------------------
266 void CFeatMgrTlsData::DeleteClient()
268 CFeatMgrTlsData* tlsData = TlsData();
270 // Decrease the client count (self)
271 tlsData->DecreaseClientCount();
273 // Check if no more clients so that TLS can be freed.
274 if (tlsData->CanBeFreed())
281 // -----------------------------------------------------------------------------
282 // CFeatMgrTlsData::SWIStart()
283 // -----------------------------------------------------------------------------
285 TInt CFeatMgrTlsData::SWIStart( ) const
287 return iFeatMgrClient.SWIStart();
290 // -----------------------------------------------------------------------------
291 // CFeatMgrTlsData::SWIEnd()
292 // -----------------------------------------------------------------------------
294 TInt CFeatMgrTlsData::SWIEnd( ) const
296 return iFeatMgrClient.SWIEnd();
299 /////////////////////////////////////////////////////////////////////////////////
301 // debug only API functions
302 #ifdef EXTENDED_FEATURE_MANAGER_TEST
304 #pragma BullseyeCoverage off
308 void CFeatMgrTlsData::ResourceMark()
310 iFeatMgrClient.ResourceMark();
315 void CFeatMgrTlsData::ResourceCheck()
317 iFeatMgrClient.ResourceCheck();
322 TInt CFeatMgrTlsData::ResourceCount()
324 return iFeatMgrClient.ResourceCount();
329 void CFeatMgrTlsData::SetHeapFailure(TInt aAllocFailType, TInt aRate)
331 iFeatMgrClient.SetHeapFailure(aAllocFailType, aRate);
334 // -----------------------------------------------------------------------------
335 // CFeatMgrTlsData::NumberOfNotifyFeatures()
336 // -----------------------------------------------------------------------------
338 TInt CFeatMgrTlsData::NumberOfNotifyFeatures( void ) const
340 return iFeatMgrClient.NumberOfNotifyFeatures();
342 // -----------------------------------------------------------------------------
343 // CFeatMgrTlsData::CountAllocCells()
344 // -----------------------------------------------------------------------------
346 TInt CFeatMgrTlsData::CountAllocCells( void ) const
348 return iFeatMgrClient.CountAllocCells();
351 #pragma BullseyeCoverage on