os/persistentdata/featuremgmt/featuremgr/inc/featurenotifier.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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 FEATURENOTIFIER_H
sl@0
    21
#define FEATURENOTIFIER_H
sl@0
    22
sl@0
    23
//  INCLUDES
sl@0
    24
#include <e32svr.h>
sl@0
    25
#include <babitflags.h>
sl@0
    26
#include <featmgr/featurecmn.h>
sl@0
    27
sl@0
    28
// FORWARD DECLARATIONS
sl@0
    29
class RFeatMgrClient;
sl@0
    30
sl@0
    31
// DEFINES
sl@0
    32
sl@0
    33
// CLASS DECLARATION
sl@0
    34
sl@0
    35
// CONSTANTS
sl@0
    36
sl@0
    37
/**
sl@0
    38
 Class provides a callback interface for handling notifification of
sl@0
    39
 changes in features. The client derives a class from this interface
sl@0
    40
 and implements the HandleNotifyChange-methods that interest it.
sl@0
    41
sl@0
    42
 Feature Notifier API consists of the classes CFeatureNotifier and 
sl@0
    43
 MFeatureObserver. TFeatureEntry and TFeatureChangeType are defined
sl@0
    44
 in featurecmn.h.
sl@0
    45
@publishedPartner
sl@0
    46
@released
sl@0
    47
*/
sl@0
    48
class MFeatureObserver
sl@0
    49
    {
sl@0
    50
    public:
sl@0
    51
        /** 
sl@0
    52
         This callback method is used to notify the client about
sl@0
    53
         the change in a feature.
sl@0
    54
        
sl@0
    55
         @param aType Type of the change.
sl@0
    56
         @param aFeature The changed feature.  Note that although aFeature is a 
sl@0
    57
         		TFeatureEntry object, only the iFeatureID field is set by the server.
sl@0
    58
        
sl@0
    59
         @see TFeatureChangeType
sl@0
    60
         @see TFeatureEntry
sl@0
    61
        */
sl@0
    62
        virtual void HandleNotifyChange( TFeatureChangeType aType, TFeatureEntry aFeature ) = 0;
sl@0
    63
        
sl@0
    64
        /** 
sl@0
    65
         This callback method is used to notify the client about errors
sl@0
    66
         in the CFeatureNotifier. Any error in the notifier causes the notifier 
sl@0
    67
         to stop handling of notifications. Handling can be restarted with
sl@0
    68
         a call to aNotifier->NotifyRequest(), if the error is non-fatal.
sl@0
    69
        
sl@0
    70
         @param aError One of the Symbian OS error codes.
sl@0
    71
        */
sl@0
    72
        virtual void HandleNotifyError( TInt aError ) = 0; 
sl@0
    73
    };
sl@0
    74
sl@0
    75
/**
sl@0
    76
 Active object for obtaining notification of changes in features.
sl@0
    77
 Feature Notifier automatically resubscribes to the notification and 
sl@0
    78
 fetches the status and data of the changed feature.
sl@0
    79
sl@0
    80
 Feature Notifier API consists of the classes CFeatureNotifier and 
sl@0
    81
 MFeatureObserver. The array RFeatureUidArray is defined in featurecmn.h.
sl@0
    82
 The user of this class needs to implement MFeatureObserver interface 
sl@0
    83
 methods to receive notifications. 
sl@0
    84
 
sl@0
    85
@publishedPartner
sl@0
    86
@released 
sl@0
    87
*/
sl@0
    88
NONSHARABLE_CLASS(CFeatureNotifier) : public CActive
sl@0
    89
	{
sl@0
    90
	public:
sl@0
    91
	    /**
sl@0
    92
         This is a two-phase constructor method that is used to create a new
sl@0
    93
         instance for listening to the changes in features. 
sl@0
    94
        
sl@0
    95
         @param aObserver A reference to an observer instance.
sl@0
    96
         @return A pointer to a new instance of the CFeatureNotifier class.
sl@0
    97
        
sl@0
    98
		 @leave Any One of the Symbian OS system-wide error codes
sl@0
    99
        */
sl@0
   100
        IMPORT_C static CFeatureNotifier* NewL( MFeatureObserver& aObserver );
sl@0
   101
        
sl@0
   102
        /**
sl@0
   103
         Destructor.
sl@0
   104
        */
sl@0
   105
        IMPORT_C ~CFeatureNotifier();
sl@0
   106
  
sl@0
   107
        /** 
sl@0
   108
         This method is used to request notification for one feature.
sl@0
   109
        
sl@0
   110
         @param aFeature Feature UID.
sl@0
   111
		 @return KErrAlreadyExists if a notification has already been requested
sl@0
   112
	             and is outstanding.  Otherwise one of the Symbian OS error 
sl@0
   113
	             codes. 
sl@0
   114
	             
sl@0
   115
		 @see CActive
sl@0
   116
        */
sl@0
   117
		IMPORT_C TInt NotifyRequest( TUid aFeature );
sl@0
   118
sl@0
   119
        /** 
sl@0
   120
         This method is used to request notification for a subset of features.
sl@0
   121
        
sl@0
   122
         @param aFeatures A reference to a client owned UID-array
sl@0
   123
                          of requested features.
sl@0
   124
		 @return KErrAlreadyExists if a notification has already been requested
sl@0
   125
		   		 and is outstanding.  Otherwise one of the Symbian OS error codes.
sl@0
   126
		
sl@0
   127
		 @see RFeatureUidArray
sl@0
   128
		 @see CActive
sl@0
   129
        */
sl@0
   130
		IMPORT_C TInt NotifyRequest( RFeatureUidArray& aFeatures );
sl@0
   131
sl@0
   132
        /** 
sl@0
   133
         Cancels notification request for one feature.
sl@0
   134
        
sl@0
   135
         @param aFeatures Feature UID.
sl@0
   136
		 @return KErrNotFound if the feature does not exist
sl@0
   137
		         in the list of previously requested features.
sl@0
   138
	             Otherwise one of the Symbian error codes. 
sl@0
   139
        */
sl@0
   140
        IMPORT_C TInt NotifyCancel( TUid aFeature );
sl@0
   141
        
sl@0
   142
        /** 
sl@0
   143
         Cancels notification requests for all features.
sl@0
   144
        
sl@0
   145
		 @return One of the Symbian OS system-wide error codes.
sl@0
   146
        */
sl@0
   147
		IMPORT_C TInt NotifyCancelAll();
sl@0
   148
sl@0
   149
    private:
sl@0
   150
	    /**
sl@0
   151
	     C++ default constructor.
sl@0
   152
	    */
sl@0
   153
	    CFeatureNotifier();
sl@0
   154
	    
sl@0
   155
	    /**
sl@0
   156
 	     @param aObserver A reference to an observer instance.
sl@0
   157
	    */
sl@0
   158
        CFeatureNotifier( MFeatureObserver& aObserver );
sl@0
   159
        
sl@0
   160
        /**
sl@0
   161
	     By default Symbian OS constructor is private.
sl@0
   162
	    */
sl@0
   163
	    void ConstructL();
sl@0
   164
sl@0
   165
    protected:
sl@0
   166
        /**
sl@0
   167
         Implements CActive.
sl@0
   168
        */    
sl@0
   169
        void RunL();
sl@0
   170
        
sl@0
   171
        /**
sl@0
   172
         Implements CActive.
sl@0
   173
         @param aError The error returned.
sl@0
   174
         @return One of the Symbian OS system-wide error codes.
sl@0
   175
        */
sl@0
   176
        TInt RunError( TInt aError );
sl@0
   177
        
sl@0
   178
        /**
sl@0
   179
         Implements CActive.
sl@0
   180
        */  
sl@0
   181
        void DoCancel();
sl@0
   182
 
sl@0
   183
    private:
sl@0
   184
        /**
sl@0
   185
         A reference to the callback/observer instance.
sl@0
   186
        */
sl@0
   187
        MFeatureObserver& iObserver;
sl@0
   188
        
sl@0
   189
        /** Holds UID-array of features being requested. */
sl@0
   190
        RFeatureUidArray iFeatures; 
sl@0
   191
        
sl@0
   192
        /** Server sets changed feature before signaling. */
sl@0
   193
        TUid iFeatureChanged;
sl@0
   194
sl@0
   195
		// Feature Manager server client 
sl@0
   196
		RFeatMgrClient* iFeatMgrClient;
sl@0
   197
sl@0
   198
sl@0
   199
	public: // @internalComponent APIs
sl@0
   200
		// These APIs are for internal testing purposes only.
sl@0
   201
sl@0
   202
		IMPORT_C TInt NumberOfNotifyFeatures();
sl@0
   203
sl@0
   204
		IMPORT_C TInt CountAllocCells();
sl@0
   205
	};
sl@0
   206
sl@0
   207
sl@0
   208
#endif      // FEATURENOTIFIER_H
sl@0
   209
            
sl@0
   210
// End of File