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.
21 #ifndef FEATMGR_TLS_DATA_H
22 #define FEATMGR_TLS_DATA_H
26 #include <featmgr/featurecmn.h>
27 #include "featmgrclient.h"
28 #include "featureclient.h"
30 // FORWARD DECLARATIONS
31 class MFeatureObserver;
33 //Exported function for test purpose only
34 IMPORT_C TInt GetClientCount();
39 * Feature manager internal implementation.
40 * This object is stored in TLS.
43 NONSHARABLE_CLASS(CFeatMgrTlsData) : public CBase, public MFeatureClient
45 public: // Constructors and destructor
48 * Two-phased constructor.
50 static CFeatMgrTlsData* NewL();
55 virtual ~CFeatMgrTlsData();
59 * Check if TLS can be freed, i.e. if client count is zero (or less).
61 * @return ETrue if TLS can be freed, EFalse otherwise.
63 TBool CanBeFreed() const;
65 * Increse client count for this thread.
67 void IncreaseClientCount();
70 * Decrease client count for this thread
72 void DecreaseClientCount();
75 * Get client count for this thread. Used for testing purpose only
82 TInt FeatureSupported( TFeatureEntry& aFeature ) const;
84 TInt FeaturesSupported( RFeatureArray& aFeatures );
86 TInt EnableFeature( TUid aFeature ) const;
88 TInt DisableFeature( TUid aFeature ) const;
90 TInt SetFeature( TUid aFeature, TBool aEnabled, TInt aData ) const;
92 TInt SetFeature( TUid aFeature, TInt aData ) const;
94 TInt AddFeature( TFeatureEntry aFeature ) const;
96 TInt DeleteFeature( TUid aFeature ) const;
98 void ListSupportedFeaturesL( RFeatureUidArray& aSupportedFeatures );
100 TInt RequestNotification( RFeatureUidArray& aFeatures, TUid& aFeatUid,
101 TRequestStatus& aStatus );
103 void ReRequestNotification( TUid& aFeatUid, TRequestStatus& aStatus );
105 TInt RequestNotifyCancel( TUid aFeature ) const;
107 TInt RequestNotifyCancelAll( ) const;
109 static void DeleteClient();
111 TInt SWIStart() const;
118 * C++ default constructor.
123 * By default Symbian 2nd phase constructor is private.
129 // Keep count of clients so that we know when to free TLS
132 // Feature Manager server client
133 RFeatMgrClient iFeatMgrClient;
136 #ifdef EXTENDED_FEATURE_MANAGER_TEST
137 // Debug only API functions
140 void ResourceCheck();
141 TInt ResourceCount();
142 void SetHeapFailure(TInt aAllocFailType, TInt aRate);
143 TInt NumberOfNotifyFeatures( void ) const;
144 TInt CountAllocCells( void ) const;
149 #endif // FEATMGR_TLS_DATA_H