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 FEATURENOTIFIER_H
21 #define FEATURENOTIFIER_H
25 #include <babitflags.h>
26 #include <featmgr/featurecmn.h>
28 // FORWARD DECLARATIONS
38 Class provides a callback interface for handling notifification of
39 changes in features. The client derives a class from this interface
40 and implements the HandleNotifyChange-methods that interest it.
42 Feature Notifier API consists of the classes CFeatureNotifier and
43 MFeatureObserver. TFeatureEntry and TFeatureChangeType are defined
48 class MFeatureObserver
52 This callback method is used to notify the client about
53 the change in a feature.
55 @param aType Type of the change.
56 @param aFeature The changed feature. Note that although aFeature is a
57 TFeatureEntry object, only the iFeatureID field is set by the server.
59 @see TFeatureChangeType
62 virtual void HandleNotifyChange( TFeatureChangeType aType, TFeatureEntry aFeature ) = 0;
65 This callback method is used to notify the client about errors
66 in the CFeatureNotifier. Any error in the notifier causes the notifier
67 to stop handling of notifications. Handling can be restarted with
68 a call to aNotifier->NotifyRequest(), if the error is non-fatal.
70 @param aError One of the Symbian OS error codes.
72 virtual void HandleNotifyError( TInt aError ) = 0;
76 Active object for obtaining notification of changes in features.
77 Feature Notifier automatically resubscribes to the notification and
78 fetches the status and data of the changed feature.
80 Feature Notifier API consists of the classes CFeatureNotifier and
81 MFeatureObserver. The array RFeatureUidArray is defined in featurecmn.h.
82 The user of this class needs to implement MFeatureObserver interface
83 methods to receive notifications.
88 NONSHARABLE_CLASS(CFeatureNotifier) : public CActive
92 This is a two-phase constructor method that is used to create a new
93 instance for listening to the changes in features.
95 @param aObserver A reference to an observer instance.
96 @return A pointer to a new instance of the CFeatureNotifier class.
98 @leave Any One of the Symbian OS system-wide error codes
100 IMPORT_C static CFeatureNotifier* NewL( MFeatureObserver& aObserver );
105 IMPORT_C ~CFeatureNotifier();
108 This method is used to request notification for one feature.
110 @param aFeature Feature UID.
111 @return KErrAlreadyExists if a notification has already been requested
112 and is outstanding. Otherwise one of the Symbian OS error
117 IMPORT_C TInt NotifyRequest( TUid aFeature );
120 This method is used to request notification for a subset of features.
122 @param aFeatures A reference to a client owned UID-array
123 of requested features.
124 @return KErrAlreadyExists if a notification has already been requested
125 and is outstanding. Otherwise one of the Symbian OS error codes.
127 @see RFeatureUidArray
130 IMPORT_C TInt NotifyRequest( RFeatureUidArray& aFeatures );
133 Cancels notification request for one feature.
135 @param aFeatures Feature UID.
136 @return KErrNotFound if the feature does not exist
137 in the list of previously requested features.
138 Otherwise one of the Symbian error codes.
140 IMPORT_C TInt NotifyCancel( TUid aFeature );
143 Cancels notification requests for all features.
145 @return One of the Symbian OS system-wide error codes.
147 IMPORT_C TInt NotifyCancelAll();
151 C++ default constructor.
156 @param aObserver A reference to an observer instance.
158 CFeatureNotifier( MFeatureObserver& aObserver );
161 By default Symbian OS constructor is private.
173 @param aError The error returned.
174 @return One of the Symbian OS system-wide error codes.
176 TInt RunError( TInt aError );
185 A reference to the callback/observer instance.
187 MFeatureObserver& iObserver;
189 /** Holds UID-array of features being requested. */
190 RFeatureUidArray iFeatures;
192 /** Server sets changed feature before signaling. */
193 TUid iFeatureChanged;
195 // Feature Manager server client
196 RFeatMgrClient* iFeatMgrClient;
199 public: // @internalComponent APIs
200 // These APIs are for internal testing purposes only.
202 IMPORT_C TInt NumberOfNotifyFeatures();
204 IMPORT_C TInt CountAllocCells();
208 #endif // FEATURENOTIFIER_H