os/persistentdata/featuremgmt/featuremgr/src/clientdll/featurenotifier.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
sl@0
    17
sl@0
    18
// INCLUDE FILES
sl@0
    19
#include <featmgr/featurenotifier.h>
sl@0
    20
#include "featmgrdebug.h"
sl@0
    21
#include <featmgr/featurecmn.h>
sl@0
    22
#include "featmgrclient.h"
sl@0
    23
sl@0
    24
// ============================= LOCAL FUNCTIONS ===============================
sl@0
    25
sl@0
    26
// -----------------------------------------------------------------------------
sl@0
    27
// FindByUid
sl@0
    28
// Returns Zero if UIDs do match.
sl@0
    29
// -----------------------------------------------------------------------------
sl@0
    30
//  
sl@0
    31
static TInt FindByUid( const TUid* aFeature, const TUid& aItem )
sl@0
    32
    {
sl@0
    33
    if ( aFeature->iUid == aItem.iUid )
sl@0
    34
        {
sl@0
    35
        return 1;
sl@0
    36
        }
sl@0
    37
sl@0
    38
    return 0;
sl@0
    39
    }
sl@0
    40
sl@0
    41
    
sl@0
    42
// ============================ MEMBER FUNCTIONS ===============================
sl@0
    43
sl@0
    44
// -----------------------------------------------------------------------------
sl@0
    45
// CFeatureNotifier::CFeatureNotifier()
sl@0
    46
// -----------------------------------------------------------------------------
sl@0
    47
//
sl@0
    48
CFeatureNotifier::CFeatureNotifier( MFeatureObserver& aObserver ) :
sl@0
    49
    CActive( EPriorityStandard ),
sl@0
    50
    iObserver( aObserver )
sl@0
    51
    {
sl@0
    52
    }
sl@0
    53
sl@0
    54
// -----------------------------------------------------------------------------
sl@0
    55
// CFeatureNotifier::NewL()
sl@0
    56
// Two-phased constructor.
sl@0
    57
// -----------------------------------------------------------------------------
sl@0
    58
//
sl@0
    59
EXPORT_C CFeatureNotifier* CFeatureNotifier::NewL( MFeatureObserver& aObserver )
sl@0
    60
    {
sl@0
    61
    CFeatureNotifier* self = new( ELeave ) CFeatureNotifier( aObserver );
sl@0
    62
    CleanupStack::PushL( self );
sl@0
    63
    self->ConstructL();
sl@0
    64
    CleanupStack::Pop( self );
sl@0
    65
    return self;
sl@0
    66
    }
sl@0
    67
    
sl@0
    68
// -----------------------------------------------------------------------------
sl@0
    69
// CFeatureNotifier::ConstructL
sl@0
    70
// -----------------------------------------------------------------------------
sl@0
    71
//
sl@0
    72
void CFeatureNotifier::ConstructL()
sl@0
    73
    {
sl@0
    74
    FUNC_LOG
sl@0
    75
sl@0
    76
    iFeatMgrClient = new (ELeave) RFeatMgrClient;
sl@0
    77
    // Connect to Feature Manager server
sl@0
    78
    TInt err( iFeatMgrClient->Connect() );
sl@0
    79
    if (err!=KErrNone)
sl@0
    80
      {
sl@0
    81
      delete iFeatMgrClient;
sl@0
    82
      iFeatMgrClient=NULL;
sl@0
    83
      }
sl@0
    84
    User::LeaveIfError(err);
sl@0
    85
sl@0
    86
    CActiveScheduler::Add( this );
sl@0
    87
    }
sl@0
    88
sl@0
    89
// -----------------------------------------------------------------------------
sl@0
    90
// CFeatureNotifier::~CFeatureNotifier()
sl@0
    91
// -----------------------------------------------------------------------------
sl@0
    92
//
sl@0
    93
EXPORT_C CFeatureNotifier::~CFeatureNotifier()
sl@0
    94
    {
sl@0
    95
    FUNC_LOG
sl@0
    96
    
sl@0
    97
    if( iFeatMgrClient )
sl@0
    98
    	{
sl@0
    99
    	iFeatMgrClient->RequestNotifyCancelAll();
sl@0
   100
        iFeatMgrClient->Close();
sl@0
   101
        delete iFeatMgrClient;
sl@0
   102
    	}
sl@0
   103
    Cancel();
sl@0
   104
sl@0
   105
    iFeatures.Close();
sl@0
   106
    }
sl@0
   107
sl@0
   108
// -----------------------------------------------------------------------------
sl@0
   109
// CFeatureNotifier::NotifyRequest(TUid)
sl@0
   110
// -----------------------------------------------------------------------------
sl@0
   111
//
sl@0
   112
EXPORT_C TInt CFeatureNotifier::NotifyRequest( TUid aFeature )
sl@0
   113
    {
sl@0
   114
    if(IsActive())
sl@0
   115
        {
sl@0
   116
        return KErrAlreadyExists;
sl@0
   117
        }
sl@0
   118
sl@0
   119
    iFeatures.Reset();
sl@0
   120
    TInt err=iFeatures.Append( aFeature );
sl@0
   121
    if (err!=KErrNone)
sl@0
   122
      {
sl@0
   123
      return err;
sl@0
   124
      }
sl@0
   125
    err = iFeatMgrClient->RequestNotification( iFeatures, iFeatureChanged, iStatus );
sl@0
   126
    if ( err == KErrNone )
sl@0
   127
    	{
sl@0
   128
        SetActive();
sl@0
   129
     	}
sl@0
   130
    else
sl@0
   131
      {
sl@0
   132
      iFeatures.Reset();
sl@0
   133
      }
sl@0
   134
     	    
sl@0
   135
    return err;
sl@0
   136
    }
sl@0
   137
    
sl@0
   138
// -----------------------------------------------------------------------------
sl@0
   139
// CFeatureNotifier::NotifyRequest(RFeatureUidArray&)
sl@0
   140
// -----------------------------------------------------------------------------
sl@0
   141
//
sl@0
   142
EXPORT_C TInt CFeatureNotifier::NotifyRequest( RFeatureUidArray& aFeatures )
sl@0
   143
    {
sl@0
   144
    if(IsActive())
sl@0
   145
        {
sl@0
   146
        return KErrAlreadyExists;
sl@0
   147
        }
sl@0
   148
sl@0
   149
    iFeatures.Reset();
sl@0
   150
    TInt count = aFeatures.Count();
sl@0
   151
    TInt err=KErrNone;
sl@0
   152
    for(TInt i = 0; i < count; i++ )
sl@0
   153
        {
sl@0
   154
        // Do not append duplicate entries
sl@0
   155
        const TUid& uid( aFeatures[i] );
sl@0
   156
        TInt index = iFeatures.Find( uid, FindByUid );
sl@0
   157
        if( index == KErrNotFound )
sl@0
   158
            {
sl@0
   159
            err=iFeatures.Append( uid );
sl@0
   160
            if (err!=KErrNone)
sl@0
   161
              {
sl@0
   162
              iFeatures.Reset();
sl@0
   163
              return err;
sl@0
   164
              }
sl@0
   165
            }
sl@0
   166
        }
sl@0
   167
sl@0
   168
    err = iFeatMgrClient->RequestNotification( iFeatures, iFeatureChanged, iStatus );
sl@0
   169
    if ( err == KErrNone )
sl@0
   170
    	{
sl@0
   171
        SetActive();
sl@0
   172
     	}
sl@0
   173
    else
sl@0
   174
      {
sl@0
   175
      iFeatures.Reset();
sl@0
   176
      }
sl@0
   177
    return err;
sl@0
   178
    }
sl@0
   179
    
sl@0
   180
// -----------------------------------------------------------------------------
sl@0
   181
// CFeatureNotifier::NotifyCancel(TUid aFeature)
sl@0
   182
// -----------------------------------------------------------------------------
sl@0
   183
//
sl@0
   184
EXPORT_C TInt CFeatureNotifier::NotifyCancel( TUid aFeature )
sl@0
   185
    {
sl@0
   186
    TInt err( KErrNotFound );
sl@0
   187
    TInt count = iFeatures.Count();
sl@0
   188
    
sl@0
   189
    for(TInt i = 0; i < count; i++ )
sl@0
   190
        {
sl@0
   191
        if( iFeatures[i].iUid == aFeature.iUid )
sl@0
   192
            {
sl@0
   193
            err = iFeatMgrClient->RequestNotifyCancel( aFeature );
sl@0
   194
            
sl@0
   195
            if( err == KErrNone )
sl@0
   196
                {
sl@0
   197
                iFeatures.Remove( i );
sl@0
   198
                // If this is the last feature in the list, then also cancel the Active Object
sl@0
   199
                if( 0 == iFeatures.Count() )
sl@0
   200
                	{
sl@0
   201
	                Cancel();
sl@0
   202
                	}
sl@0
   203
                break;
sl@0
   204
                }
sl@0
   205
            }
sl@0
   206
        }
sl@0
   207
sl@0
   208
    return err;
sl@0
   209
    }
sl@0
   210
    
sl@0
   211
// -----------------------------------------------------------------------------
sl@0
   212
// CFeatureNotifier::NotifyCancelAll()
sl@0
   213
// -----------------------------------------------------------------------------
sl@0
   214
//
sl@0
   215
EXPORT_C TInt CFeatureNotifier::NotifyCancelAll()
sl@0
   216
    {
sl@0
   217
    iFeatures.Reset();
sl@0
   218
    TInt err = iFeatMgrClient->RequestNotifyCancelAll( );
sl@0
   219
   	Cancel();
sl@0
   220
    
sl@0
   221
    return err;
sl@0
   222
    }
sl@0
   223
sl@0
   224
/**
sl@0
   225
 Gets the number of features in the server's array.
sl@0
   226
 This API is only for internal use and testing purposes.
sl@0
   227
sl@0
   228
 @return The number of features on the server for debug builds, otherwise it returns KErrNotSupported in release builds.
sl@0
   229
 @internalComponent
sl@0
   230
*/
sl@0
   231
EXPORT_C TInt CFeatureNotifier::NumberOfNotifyFeatures()
sl@0
   232
    {
sl@0
   233
#ifdef EXTENDED_FEATURE_MANAGER_TEST
sl@0
   234
    TInt count = iFeatMgrClient->NumberOfNotifyFeatures();
sl@0
   235
    return count;
sl@0
   236
#else
sl@0
   237
    return KErrNotSupported;
sl@0
   238
#endif
sl@0
   239
    }
sl@0
   240
sl@0
   241
/**
sl@0
   242
 Gets the number of heap cells in the thread.
sl@0
   243
 This API is only for internal use and testing purposes.
sl@0
   244
sl@0
   245
 @return The number of heap cells for debug build, otherwise it returns KErrNotSupported in release builds.
sl@0
   246
 @internalComponent
sl@0
   247
*/
sl@0
   248
EXPORT_C TInt CFeatureNotifier::CountAllocCells()
sl@0
   249
    {
sl@0
   250
#ifdef EXTENDED_FEATURE_MANAGER_TEST
sl@0
   251
    TInt count = iFeatMgrClient->CountAllocCells();
sl@0
   252
    return count;
sl@0
   253
#else
sl@0
   254
    return KErrNotSupported;
sl@0
   255
#endif
sl@0
   256
    }
sl@0
   257
sl@0
   258
// -----------------------------------------------------------------------------
sl@0
   259
// CFeatureNotifier::RunL()
sl@0
   260
// -----------------------------------------------------------------------------
sl@0
   261
//
sl@0
   262
void CFeatureNotifier::RunL( )
sl@0
   263
    {
sl@0
   264
    FUNC_LOG
sl@0
   265
sl@0
   266
    TInt status = iStatus.Int();
sl@0
   267
    if( status < 0 )
sl@0
   268
        {
sl@0
   269
        // Got an error
sl@0
   270
        if( status != KErrCancel )
sl@0
   271
            {
sl@0
   272
            iObserver.HandleNotifyError( status );
sl@0
   273
            }
sl@0
   274
        return;
sl@0
   275
        }
sl@0
   276
sl@0
   277
    // iStatus >= 0 means it contains the change type
sl@0
   278
    TFeatureChangeType changeType = static_cast<TFeatureChangeType>(status);
sl@0
   279
sl@0
   280
	// If the feature was deleted, remove it from the array of features with notifications requested
sl@0
   281
    if( changeType == EFeatureFeatureDeleted )
sl@0
   282
    	{
sl@0
   283
        TInt index = iFeatures.Find( iFeatureChanged, FindByUid );
sl@0
   284
        if( index != KErrNotFound )
sl@0
   285
            {
sl@0
   286
            iFeatures.Remove( index );
sl@0
   287
            }
sl@0
   288
    	}
sl@0
   289
    // Should we validate whether iFeatureChanged matches 
sl@0
   290
    // to any UID in the array of requested features?
sl@0
   291
sl@0
   292
    TFeatureEntry feature( iFeatureChanged );
sl@0
   293
    if( iFeatures.Count() > 0 )
sl@0
   294
        {
sl@0
   295
        // Asynchronously resubscribe notify request
sl@0
   296
        iFeatMgrClient->ReRequestNotification( iFeatureChanged, iStatus );
sl@0
   297
        // Next inform client about changed feature 
sl@0
   298
        // Should we validate whether iFeatureChanged matches 
sl@0
   299
        // to any UID in the array of requested features
sl@0
   300
        iObserver.HandleNotifyChange( changeType, feature );
sl@0
   301
        // Set us active
sl@0
   302
        SetActive();
sl@0
   303
        }
sl@0
   304
    else
sl@0
   305
        {
sl@0
   306
        // All features with notifications requested were deleted,
sl@0
   307
        // so don't need to resubscribe notify request -
sl@0
   308
        // just notify client about the deleted feature
sl@0
   309
        iObserver.HandleNotifyChange( changeType, feature );
sl@0
   310
        }
sl@0
   311
    }
sl@0
   312
sl@0
   313
// -----------------------------------------------------------------------------
sl@0
   314
// CFeatureNotifier::DoCancel()
sl@0
   315
// -----------------------------------------------------------------------------
sl@0
   316
//
sl@0
   317
void CFeatureNotifier::DoCancel( )
sl@0
   318
    {
sl@0
   319
    }
sl@0
   320
sl@0
   321
// -----------------------------------------------------------------------------
sl@0
   322
// CFeatureNotifier::RunError()
sl@0
   323
// -----------------------------------------------------------------------------
sl@0
   324
//
sl@0
   325
TInt CFeatureNotifier::RunError( TInt aError )
sl@0
   326
    {
sl@0
   327
    iObserver.HandleNotifyError( aError );
sl@0
   328
sl@0
   329
    return KErrNone;
sl@0
   330
    }
sl@0
   331
sl@0
   332
//  End of File