os/persistentdata/featuremgmt/featuremgr/src/serverexe/featmgrsession.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-2010 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
sl@0
    19
// INCLUDE FILES
sl@0
    20
#include "featmgrsession.h"
sl@0
    21
#include "featmgrfeatureentry.h"
sl@0
    22
#include "featmgrdebug.h"
sl@0
    23
sl@0
    24
// CONSTANTS
sl@0
    25
const TInt CFeatMgrPendingRequest::iOffset = _FOFF( CFeatMgrPendingRequest,iLink );
sl@0
    26
sl@0
    27
// LOCAL CONSTANTS AND MACROS
sl@0
    28
_LIT( KPanicCategory, "FeatMgrSession" );
sl@0
    29
sl@0
    30
// ============================= LOCAL FUNCTIONS ===============================
sl@0
    31
sl@0
    32
// ============================ MEMBER FUNCTIONS ===============================
sl@0
    33
sl@0
    34
// -----------------------------------------------------------------------------
sl@0
    35
// CFeatMgrSession::CFeatMgrSession
sl@0
    36
// C++ constructor
sl@0
    37
// -----------------------------------------------------------------------------
sl@0
    38
//
sl@0
    39
CFeatMgrSession::CFeatMgrSession( CFeatMgrServer& aServer, CFeatMgrFeatureRegistry& aRegistry )
sl@0
    40
    : iFeatMgrServer( aServer ),
sl@0
    41
    iRegistry( aRegistry ),
sl@0
    42
    iList( CFeatMgrPendingRequest::iOffset )
sl@0
    43
    {
sl@0
    44
    }
sl@0
    45
sl@0
    46
// -----------------------------------------------------------------------------
sl@0
    47
// CFeatMgrSession::NewL
sl@0
    48
// Two-phased constructor.
sl@0
    49
// -----------------------------------------------------------------------------
sl@0
    50
//
sl@0
    51
CFeatMgrSession* CFeatMgrSession::NewL( CFeatMgrServer& aServer, 
sl@0
    52
    CFeatMgrFeatureRegistry& aRegistry )
sl@0
    53
    {
sl@0
    54
    FUNC_LOG
sl@0
    55
sl@0
    56
    CFeatMgrSession* self = new( ELeave ) CFeatMgrSession( aServer, aRegistry );
sl@0
    57
    
sl@0
    58
    return self;
sl@0
    59
    }
sl@0
    60
sl@0
    61
#ifdef EXTENDED_FEATURE_MANAGER_TEST
sl@0
    62
void CFeatMgrSession::CreateL()
sl@0
    63
    {
sl@0
    64
    iFeatMgrServer.AddSession();
sl@0
    65
    }
sl@0
    66
#endif
sl@0
    67
sl@0
    68
// ---------------------------------------------------------
sl@0
    69
// Destructor
sl@0
    70
// ---------------------------------------------------------
sl@0
    71
//
sl@0
    72
CFeatMgrSession::~CFeatMgrSession()
sl@0
    73
    {
sl@0
    74
    FUNC_LOG
sl@0
    75
sl@0
    76
    iNotifyFeatures.Close();
sl@0
    77
sl@0
    78
    while ( !iList.IsEmpty() )
sl@0
    79
        {
sl@0
    80
        CFeatMgrPendingRequest* pendingReq = iList.First();  
sl@0
    81
        iList.Remove( *pendingReq );
sl@0
    82
        delete pendingReq;
sl@0
    83
        }
sl@0
    84
    
sl@0
    85
    iList.Reset();
sl@0
    86
#ifdef EXTENDED_FEATURE_MANAGER_TEST
sl@0
    87
    iFeatMgrServer.DropSession();
sl@0
    88
#endif
sl@0
    89
    }
sl@0
    90
sl@0
    91
// -----------------------------------------------------------------------------
sl@0
    92
// CFeatMgrSession::PanicClient
sl@0
    93
// RMessage2::Panic() also completes the message. This is:
sl@0
    94
// (a) important for efficient cleanup within the kernel
sl@0
    95
// (b) a problem if the message is completed a second time
sl@0
    96
// -----------------------------------------------------------------------------
sl@0
    97
//
sl@0
    98
void CFeatMgrSession::PanicClient( const RMessage2& aMessage, TFeatMgrPanic aPanic )
sl@0
    99
    {
sl@0
   100
    INFO_LOG1( "CFeatMgrSession::PanicClient(aPanic 0x%x)", aPanic);
sl@0
   101
sl@0
   102
	aMessage.Panic( KPanicCategory, aPanic );
sl@0
   103
    }
sl@0
   104
sl@0
   105
TBool CFeatMgrSession::IsWriteOperation( const TInt aFunction ) const
sl@0
   106
    {
sl@0
   107
        switch ( aFunction )
sl@0
   108
            {
sl@0
   109
            case EFeatMgrEnableFeature:
sl@0
   110
            case EFeatMgrDisableFeature:
sl@0
   111
            case EFeatMgrAddFeature:
sl@0
   112
            case EFeatMgrSetFeatureAndData:
sl@0
   113
            case EFeatMgrSetFeatureData:
sl@0
   114
            case EFeatMgrDeleteFeature:
sl@0
   115
            case EFeatMgrSWIStart:
sl@0
   116
            case EFeatMgrSWIEnd:
sl@0
   117
                return ETrue;
sl@0
   118
            default:
sl@0
   119
                return EFalse;
sl@0
   120
            }
sl@0
   121
    }
sl@0
   122
sl@0
   123
// -----------------------------------------------------------------------------
sl@0
   124
// CFeatMgrSession::ServiceL
sl@0
   125
// Calls request handling functions. Also traps any leaves and signals client if
sl@0
   126
// error occurs.
sl@0
   127
// -----------------------------------------------------------------------------
sl@0
   128
//
sl@0
   129
void CFeatMgrSession::ServiceL( const RMessage2& aMessage )
sl@0
   130
    {
sl@0
   131
    FUNC_LOG
sl@0
   132
    // If plugins are not ready all request will be queued. 
sl@0
   133
    // During backup & restore operation, all write request 
sl@0
   134
    //  e.g. EnableFeature will return with KErrServerBusy
sl@0
   135
    TInt msgCmd = aMessage.Function();
sl@0
   136
    if ( !iFeatMgrServer.PluginsReady() || ( iFeatMgrServer.BURIsInProgress()  && IsWriteOperation( msgCmd ) ) )
sl@0
   137
        {
sl@0
   138
        if ( iFeatMgrServer.BURIsInProgress() )
sl@0
   139
            {
sl@0
   140
            INFO_LOG( "CFeatMgrSession::ServiceL() - backup/restore is in progress - no write operation allowed" );
sl@0
   141
            aMessage.Complete( KErrServerBusy );
sl@0
   142
            }
sl@0
   143
        else
sl@0
   144
            {
sl@0
   145
            INFO_LOG( "CFeatMgrSession::ServiceL() - plugins not ready" );
sl@0
   146
            CFeatMgrPendingRequest* request=NULL;
sl@0
   147
            TRAPD(error,request=CFeatMgrPendingRequest::NewL( aMessage ));
sl@0
   148
            if (error!=KErrNone)
sl@0
   149
              {
sl@0
   150
              LOG_IF_ERROR1( error, "CFeatMgrSession::ServiceL(): Error in Adding Pending Request: %d", error );
sl@0
   151
              //cannot create pending request so need to indicate to the client rather than letting the cient wait forever.
sl@0
   152
              aMessage.Complete(error);              
sl@0
   153
              }
sl@0
   154
            else
sl@0
   155
              {
sl@0
   156
              iList.AddLast(*request);
sl@0
   157
              }
sl@0
   158
            }
sl@0
   159
        }
sl@0
   160
    else
sl@0
   161
        {
sl@0
   162
        #if defined(FEATMGR_INFO_LOG_ENABLED)
sl@0
   163
            // check memory usage
sl@0
   164
            TInt biggestBlock;
sl@0
   165
            INFO_LOG1( "CFeatMgrSession::ServiceL() - #### Memory Available in Heap: %6d ####", 
sl@0
   166
                                    User::Heap().Available(biggestBlock) );
sl@0
   167
            INFO_LOG1( "CFeatMgrSession::ServiceL() - #### Biggest block:            %6d ####", 
sl@0
   168
                                    biggestBlock );
sl@0
   169
        #endif
sl@0
   170
sl@0
   171
        TRAPD( error, DispatchMessageL( aMessage ) );
sl@0
   172
sl@0
   173
        LOG_IF_ERROR1( error, "CFeatMgrSession::ServiceL(): Error in DispatchMessageL: %d", 
sl@0
   174
                                     error );
sl@0
   175
sl@0
   176
        if( aMessage.Function() != EFeatMgrReqNotify )
sl@0
   177
            {
sl@0
   178
            aMessage.Complete( error );
sl@0
   179
            }
sl@0
   180
        }
sl@0
   181
    }
sl@0
   182
    
sl@0
   183
// -----------------------------------------------------------------------------
sl@0
   184
// CFeatMgrSession::ServicePendingRequestsL
sl@0
   185
// Calls request handling functions. Also traps any leaves and signals client if
sl@0
   186
// error occurs.
sl@0
   187
// -----------------------------------------------------------------------------
sl@0
   188
//
sl@0
   189
void CFeatMgrSession::ServicePendingRequestsL()
sl@0
   190
    {       
sl@0
   191
    FUNC_LOG
sl@0
   192
    
sl@0
   193
    while ( !iList.IsEmpty() )
sl@0
   194
        {
sl@0
   195
        CFeatMgrPendingRequest* pendingReq = iList.First();  
sl@0
   196
        
sl@0
   197
        TRAPD( error, DispatchMessageL( pendingReq->iMessage ) );
sl@0
   198
sl@0
   199
        LOG_IF_ERROR1( error, "CFeatMgrSession::ServicePendingRequestsL(): Error in DispatchMessageL: %d", 
sl@0
   200
            error );
sl@0
   201
sl@0
   202
        if( pendingReq->iMessage.Function() != EFeatMgrReqNotify )
sl@0
   203
            {
sl@0
   204
            pendingReq->iMessage.Complete( error );
sl@0
   205
            }
sl@0
   206
        
sl@0
   207
        iList.Remove( *pendingReq );
sl@0
   208
        delete pendingReq;
sl@0
   209
        }
sl@0
   210
    
sl@0
   211
    iList.Reset();
sl@0
   212
    }
sl@0
   213
sl@0
   214
// -----------------------------------------------------------------------------
sl@0
   215
// CFeatMgrSession::DispatchMessageL
sl@0
   216
// Calls matching function of CFeatMgrServer for handling the request.
sl@0
   217
// -----------------------------------------------------------------------------
sl@0
   218
//
sl@0
   219
void CFeatMgrSession::DispatchMessageL( const RMessage2& aMessage )
sl@0
   220
    {
sl@0
   221
    FUNC_LOG
sl@0
   222
    
sl@0
   223
    INFO_LOG1( "CFeatMgrSession::DispatchMessageL(0x%x)", aMessage.Function() );
sl@0
   224
sl@0
   225
    TInt msgCmd = aMessage.Function();
sl@0
   226
    
sl@0
   227
    // Getting the ID of the process making the calls on feature manager. This ID is used
sl@0
   228
    // for the addition, deletion, setting, enabling, and disabling functions.
sl@0
   229
    TUint processId = 0;	// default value for a process id
sl@0
   230
    TInt getIdErr = KErrGeneral;
sl@0
   231
    if( msgCmd >= EFeatMgrEnableFeature && msgCmd <= EFeatMgrSWIEnd )
sl@0
   232
    	{
sl@0
   233
	    RThread thread;
sl@0
   234
	    getIdErr = aMessage.Client(thread, EOwnerProcess);
sl@0
   235
	    if( getIdErr == KErrNone)
sl@0
   236
	    	{
sl@0
   237
		    RProcess process;
sl@0
   238
		    getIdErr = thread.Process(process);
sl@0
   239
		    if( getIdErr == KErrNone)
sl@0
   240
		    	{
sl@0
   241
		    	TProcessId prcId = process.Id();
sl@0
   242
		    	processId = TUint(prcId.Id());
sl@0
   243
		    	}
sl@0
   244
	    	}
sl@0
   245
    	}
sl@0
   246
	    	
sl@0
   247
    // Check command code and call appropriate function
sl@0
   248
    switch ( msgCmd )
sl@0
   249
        {
sl@0
   250
    	case EFeatMgrFeatureSupported:
sl@0
   251
    	    {
sl@0
   252
    	    TFeatureEntry feature;
sl@0
   253
    	    TPckg<TFeatureEntry> pckg( feature );
sl@0
   254
    	    aMessage.ReadL( 0, pckg );
sl@0
   255
    	    TFeatureServerEntry feat( feature );
sl@0
   256
    	    TInt supported = iRegistry.IsFeatureSupported( feat );
sl@0
   257
    	    // Construct entry for passing back to client.
sl@0
   258
    	    TFeatureEntry featBack( feat.FeatureUid(), feat.FeatureFlags(), feat.FeatureData() );
sl@0
   259
    	    TPckgC<TFeatureEntry> pckgBack( featBack );
sl@0
   260
            TPckgC<TInt> resPckg( supported );
sl@0
   261
            aMessage.WriteL( 0, pckgBack );
sl@0
   262
            aMessage.WriteL( 1, resPckg );
sl@0
   263
    	    
sl@0
   264
    	    break;
sl@0
   265
    	    }
sl@0
   266
    	    
sl@0
   267
        case EFeatMgrFeaturesSupported:
sl@0
   268
    	    {
sl@0
   269
        	TInt count( aMessage.Int0() );
sl@0
   270
        	TInt responseCount( 0 );
sl@0
   271
        	RFeatureArray temp;
sl@0
   272
        	CleanupClosePushL( temp );
sl@0
   273
        	temp.ReserveL( count );
sl@0
   274
        	
sl@0
   275
            for ( TInt i = 0; i < count; i++ )
sl@0
   276
                {
sl@0
   277
                TFeatureEntry feature;
sl@0
   278
                TPckg<TFeatureEntry> pckg( feature );
sl@0
   279
                TInt offset = i * sizeof(TFeatureEntry);
sl@0
   280
                // Read feature entry and fetch entry status/data
sl@0
   281
                aMessage.ReadL( 1, pckg, offset );
sl@0
   282
                TFeatureServerEntry feat( feature );
sl@0
   283
                TInt supported = iRegistry.IsFeatureSupported( feat );
sl@0
   284
                
sl@0
   285
                // Non-existing and uninitialised feature entries are not returned.
sl@0
   286
                if( supported != KErrNotFound && supported != KErrNotReady )
sl@0
   287
                    {
sl@0
   288
                    responseCount++;
sl@0
   289
                    TFeatureEntry featBack( feat.FeatureUid(), feat.FeatureFlags(), 
sl@0
   290
                        feat.FeatureData() );
sl@0
   291
                    // Can't write to same slot before reading entries first
sl@0
   292
                    temp.AppendL( featBack );
sl@0
   293
                    }
sl@0
   294
                }
sl@0
   295
                
sl@0
   296
            // Write found entries back to client
sl@0
   297
            for ( TInt i = 0; i < responseCount; i++ )
sl@0
   298
                {
sl@0
   299
                TInt offset = i * sizeof(TFeatureEntry);
sl@0
   300
                TPckgC<TFeatureEntry> pckgBack( temp[i] );
sl@0
   301
                aMessage.WriteL( 1, pckgBack, offset );
sl@0
   302
                }
sl@0
   303
            CleanupStack::PopAndDestroy( &temp );
sl@0
   304
sl@0
   305
            // Write number of found entries back to client
sl@0
   306
            TPckgC<TInt> resPckg( responseCount );
sl@0
   307
            aMessage.WriteL( 2, resPckg );
sl@0
   308
    	    
sl@0
   309
    	    break;
sl@0
   310
    	    }
sl@0
   311
        
sl@0
   312
        case EFeatMgrNumberOfSupportedFeatures:
sl@0
   313
    	    {
sl@0
   314
    	    TInt count = iRegistry.NumberOfSupportedFeatures();
sl@0
   315
            TPckgC<TInt> resPckg( count );
sl@0
   316
            aMessage.WriteL( 0, resPckg );
sl@0
   317
    	    
sl@0
   318
    	    break;
sl@0
   319
    	    }
sl@0
   320
    	    
sl@0
   321
    	case EFeatMgrListSupportedFeatures:
sl@0
   322
    	    {   
sl@0
   323
            RFeatureUidArray supportedFeatures;
sl@0
   324
            CleanupClosePushL( supportedFeatures );
sl@0
   325
            
sl@0
   326
            iRegistry.SupportedFeaturesL( supportedFeatures );
sl@0
   327
            TInt count( supportedFeatures.Count() );
sl@0
   328
           
sl@0
   329
            if ( aMessage.Int0() == count )
sl@0
   330
                {
sl@0
   331
                for ( TInt i = 0; i < count; i++ )
sl@0
   332
                    {
sl@0
   333
                    TPckg<TUid> pckg( supportedFeatures[i] );
sl@0
   334
                    TInt offset = i * sizeof(TUid);
sl@0
   335
                    aMessage.WriteL( 1, pckg, offset );
sl@0
   336
                    }
sl@0
   337
                
sl@0
   338
                CleanupStack::PopAndDestroy( &supportedFeatures );
sl@0
   339
                }
sl@0
   340
            else
sl@0
   341
                {
sl@0
   342
                CleanupStack::PopAndDestroy( &supportedFeatures );
sl@0
   343
                User::Leave( KErrServerBusy );
sl@0
   344
                }
sl@0
   345
         	break;
sl@0
   346
    	    }
sl@0
   347
sl@0
   348
    	case EFeatMgrEnableFeature:
sl@0
   349
    	    {
sl@0
   350
    	    if( getIdErr == KErrNone )
sl@0
   351
    	    	{
sl@0
   352
	    	    TUid feature = TUid::Uid(aMessage.Int0());
sl@0
   353
	    	    getIdErr = iRegistry.SetFeature( feature, EFeatureSupportEnable, NULL, processId );
sl@0
   354
    	    	}
sl@0
   355
    	    TPckgC<TInt> resPckg( getIdErr );
sl@0
   356
	        aMessage.WriteL( 1, resPckg );
sl@0
   357
sl@0
   358
	        break;
sl@0
   359
    	    }
sl@0
   360
  		
sl@0
   361
  		case EFeatMgrDisableFeature:
sl@0
   362
    	    {
sl@0
   363
    	    if( getIdErr == KErrNone )
sl@0
   364
    	    	{
sl@0
   365
	    	    TUid feature = TUid::Uid(aMessage.Int0());
sl@0
   366
	    	    getIdErr = iRegistry.SetFeature( feature, EFeatureSupportDisable, NULL, processId );
sl@0
   367
    	    	}    	    
sl@0
   368
            TPckgC<TInt> resPckg( getIdErr );
sl@0
   369
            aMessage.WriteL( 1, resPckg );
sl@0
   370
    	    
sl@0
   371
    	    break;
sl@0
   372
    	    }
sl@0
   373
sl@0
   374
        case EFeatMgrAddFeature:
sl@0
   375
    	    {
sl@0
   376
    	    if( getIdErr == KErrNone)
sl@0
   377
    	    	{
sl@0
   378
    	    	TFeatureEntry feature;
sl@0
   379
        	    TPckg<TFeatureEntry> pckg( feature );
sl@0
   380
        	    aMessage.ReadL( 0, pckg );
sl@0
   381
        	    TFeatureServerEntry feat( feature );
sl@0
   382
        	    getIdErr = iRegistry.AddFeature( feat, processId );
sl@0
   383
    	    	}    	    
sl@0
   384
            TPckgC<TInt> resPckg( getIdErr );
sl@0
   385
            aMessage.WriteL( 1, resPckg );
sl@0
   386
    	    
sl@0
   387
    	    break;
sl@0
   388
    	    }
sl@0
   389
        
sl@0
   390
        case EFeatMgrDeleteFeature:
sl@0
   391
    	    {
sl@0
   392
    	    if( getIdErr == KErrNone)
sl@0
   393
    	    	{
sl@0
   394
    	    	TUid feature = TUid::Uid(aMessage.Int0());
sl@0
   395
    	    	getIdErr = iRegistry.DeleteFeature( feature, processId );
sl@0
   396
    	    	}
sl@0
   397
    	    TPckgC<TInt> resPckg( getIdErr );
sl@0
   398
            aMessage.WriteL( 1, resPckg );
sl@0
   399
    	    
sl@0
   400
    	    break;
sl@0
   401
    	    }
sl@0
   402
        
sl@0
   403
        case EFeatMgrSetFeatureAndData:
sl@0
   404
    	    {
sl@0
   405
    	    if( getIdErr == KErrNone)
sl@0
   406
    	    	{
sl@0
   407
    	    	TUid feature = TUid::Uid(aMessage.Int0());
sl@0
   408
	    	    TBool enable = aMessage.Int1();
sl@0
   409
	    	    TUint32 data = aMessage.Int2();
sl@0
   410
	    	    getIdErr = iRegistry.SetFeature( feature, enable, &data, processId );
sl@0
   411
    	    	}
sl@0
   412
    	    TPckgC<TInt> resPckg( getIdErr );
sl@0
   413
            aMessage.WriteL( 3, resPckg );
sl@0
   414
    	    
sl@0
   415
    	    break;
sl@0
   416
    	    }
sl@0
   417
        
sl@0
   418
        case EFeatMgrSetFeatureData:
sl@0
   419
    	    {
sl@0
   420
    	    if( getIdErr == KErrNone)
sl@0
   421
    	    	{
sl@0
   422
    	    	TUid feature = TUid::Uid(aMessage.Int0());
sl@0
   423
	    	    TUint32 data = aMessage.Int1();
sl@0
   424
	    	    getIdErr = iRegistry.SetFeature( feature, EFeatureSupportUntouch, &data, processId );
sl@0
   425
    	    	}
sl@0
   426
    	    TPckgC<TInt> resPckg( getIdErr );
sl@0
   427
            aMessage.WriteL( 2, resPckg );
sl@0
   428
    	    
sl@0
   429
    	    break;
sl@0
   430
    	    }
sl@0
   431
        
sl@0
   432
        case EFeatMgrReqNotify:
sl@0
   433
    	    {
sl@0
   434
    	    // When client requests notification for feature, it could be checked
sl@0
   435
    	    // whether feature exists at all and even whether feature modifiable,
sl@0
   436
    	    // i.e. could request ever cause notification. If this will be done, 
sl@0
   437
    	    // remember document error codes in API documentation.
sl@0
   438
    	    
sl@0
   439
    	    // Message is needed for later signaling of client upon feature change.
sl@0
   440
    	    if( iNotifyMessage.IsNull() ) 
sl@0
   441
    	        {
sl@0
   442
    	        iNotifyMessage = aMessage;
sl@0
   443
    	        }
sl@0
   444
    	    else
sl@0
   445
    	        {
sl@0
   446
    	        PanicClient( aMessage, EPanicNotifyRequest );
sl@0
   447
    	        }
sl@0
   448
    	        
sl@0
   449
    	    break;
sl@0
   450
    	    }
sl@0
   451
        
sl@0
   452
        case EFeatMgrReqNotifyUids:
sl@0
   453
    	    {
sl@0
   454
    	    // When client requests notification for features, it could be checked
sl@0
   455
    	    // whether features exists at all and even whether features modifiable,
sl@0
   456
    	    // i.e. could request ever cause notification. If this will be done, 
sl@0
   457
    	    // remember document error codes in API documentation.
sl@0
   458
    	    
sl@0
   459
    	    TInt err( KErrNone );
sl@0
   460
    	    
sl@0
   461
        	// Fetch transfer buffer from client
sl@0
   462
        	TInt count( aMessage.Int0() );
sl@0
   463
        	err = iNotifyFeatures.Reserve( count );
sl@0
   464
        	
sl@0
   465
        	if( err == KErrNone )
sl@0
   466
        	    {
sl@0
   467
                for ( TInt i = 0; i < count; i++ )
sl@0
   468
                    {
sl@0
   469
                    TUid feature;
sl@0
   470
                    TPckg<TUid> pckg( feature );
sl@0
   471
                    TInt offset = i * sizeof(TUid);
sl@0
   472
                    aMessage.ReadL( 1, pckg, offset );
sl@0
   473
                    err = iNotifyFeatures.Append( feature );
sl@0
   474
                    if( err != KErrNone )
sl@0
   475
                        {
sl@0
   476
                        break;
sl@0
   477
                        }
sl@0
   478
                    }
sl@0
   479
        	    }
sl@0
   480
    	    
sl@0
   481
            TPckgC<TInt> resPckg( err );
sl@0
   482
            aMessage.WriteL( 2, resPckg );
sl@0
   483
    	    
sl@0
   484
    	    break;
sl@0
   485
    	    }
sl@0
   486
        
sl@0
   487
        case EFeatMgrReqNotifyCancel:
sl@0
   488
    	    {
sl@0
   489
    	    TUid feature = TUid::Uid(aMessage.Int0());
sl@0
   490
    	    TInt index( iNotifyFeatures.Find( feature ) );
sl@0
   491
    	    TInt err( KErrNotFound );
sl@0
   492
    	    
sl@0
   493
    	    if( index != KErrNotFound )
sl@0
   494
    	        {
sl@0
   495
    	        err = KErrNone;
sl@0
   496
    	        iNotifyFeatures.Remove( index );
sl@0
   497
    	        }
sl@0
   498
    	    
sl@0
   499
    	    // If no more features to be notified, complete request.
sl@0
   500
    	    if( !iNotifyFeatures.Count() 
sl@0
   501
    	        && iNotifyMessage.IsNull() == EFalse)
sl@0
   502
    	        {
sl@0
   503
    	        iNotifyMessage.Complete( KErrCancel );
sl@0
   504
    	        }
sl@0
   505
    	    
sl@0
   506
            TPckgC<TInt> resPckg( err );
sl@0
   507
            aMessage.WriteL( 1, resPckg );
sl@0
   508
    	    
sl@0
   509
    	    break;
sl@0
   510
    	    }
sl@0
   511
        
sl@0
   512
        case EFeatMgrReqNotifyCancelAll:
sl@0
   513
    	    {
sl@0
   514
    	    iNotifyFeatures.Reset();
sl@0
   515
    	    if( iNotifyMessage.IsNull() == EFalse )
sl@0
   516
    	        {
sl@0
   517
    	        iNotifyMessage.Complete( KErrCancel );
sl@0
   518
    	        }
sl@0
   519
            TPckgC<TInt> resPckg( KErrNone );
sl@0
   520
            aMessage.WriteL( 0, resPckg );
sl@0
   521
    	    
sl@0
   522
    	    break;
sl@0
   523
    	    }
sl@0
   524
    	    
sl@0
   525
        case EFeatMgrSWIStart:
sl@0
   526
    	    {
sl@0
   527
    	    if( getIdErr == KErrNone)  
sl@0
   528
    	    	{
sl@0
   529
    	    	getIdErr = iRegistry.SWIStart(processId);
sl@0
   530
	    	    }
sl@0
   531
    	    TPckgC<TInt> resPckg( getIdErr );
sl@0
   532
            aMessage.WriteL( 0, resPckg );
sl@0
   533
            
sl@0
   534
    	    break;
sl@0
   535
    	    }
sl@0
   536
    	    
sl@0
   537
        case EFeatMgrSWIEnd:
sl@0
   538
    	    {
sl@0
   539
    	    if( getIdErr == KErrNone)
sl@0
   540
    	    	{
sl@0
   541
    	    	getIdErr = iRegistry.SWIEnd(processId);
sl@0
   542
    	    	}
sl@0
   543
    	    TPckgC<TInt> resPckg( getIdErr );
sl@0
   544
            aMessage.WriteL( 0, resPckg );
sl@0
   545
            
sl@0
   546
    		break;
sl@0
   547
    	    }
sl@0
   548
sl@0
   549
#ifdef EXTENDED_FEATURE_MANAGER_TEST
sl@0
   550
    	    
sl@0
   551
#pragma BullseyeCoverage off
sl@0
   552
    	    
sl@0
   553
        case EFeatMgrResourceMark:
sl@0
   554
            ResourceCountMarkStart();
sl@0
   555
            break;
sl@0
   556
            
sl@0
   557
        case EFeatMgrResourceCheck:
sl@0
   558
            ResourceCountMarkEnd(aMessage);
sl@0
   559
            break;
sl@0
   560
        
sl@0
   561
        case EFeatMgrResourceCount:
sl@0
   562
            {
sl@0
   563
            TInt retCode = CountResources();
sl@0
   564
            User::Leave(retCode);
sl@0
   565
            }
sl@0
   566
            break;
sl@0
   567
        
sl@0
   568
        case EFeatMgrSetHeapFailure:
sl@0
   569
            {
sl@0
   570
            RAllocator::TAllocFail mode = static_cast <RAllocator::TAllocFail> (aMessage.Int0());
sl@0
   571
            TInt failAllocNum = aMessage.Int1();
sl@0
   572
            if(mode == RHeap::EBurstFailNext || mode == RHeap::EBurstRandom || mode == RHeap::EBurstTrueRandom || mode == RHeap::EBurstDeterministic)
sl@0
   573
                {
sl@0
   574
                User::__DbgSetBurstAllocFail(RHeap::EUser, mode, failAllocNum, 20);
sl@0
   575
                }
sl@0
   576
            else
sl@0
   577
                {
sl@0
   578
                User::__DbgSetAllocFail(RHeap::EUser, mode, failAllocNum);
sl@0
   579
                }
sl@0
   580
            }
sl@0
   581
            break;
sl@0
   582
sl@0
   583
    	    // debug only API 
sl@0
   584
    	    // returns the size of the iNotifyFeatures array
sl@0
   585
        case EFeatMgrNumberOfNotifyFeatures:
sl@0
   586
    	    {
sl@0
   587
    	    TInt count = iNotifyFeatures.Count();
sl@0
   588
            TPckgC<TInt> resPckg( count );
sl@0
   589
            aMessage.WriteL( 0, resPckg );
sl@0
   590
    	    
sl@0
   591
    	    break;
sl@0
   592
    	    }
sl@0
   593
sl@0
   594
    	    // returns the number of allocated heap cells
sl@0
   595
        case EFeatMgrCountAllocCells:
sl@0
   596
    	    {
sl@0
   597
    	    TInt count = User::CountAllocCells();
sl@0
   598
            TPckgC<TInt> resPckg( count );
sl@0
   599
            aMessage.WriteL( 0, resPckg );
sl@0
   600
    	    
sl@0
   601
    	    break;
sl@0
   602
    	    }
sl@0
   603
    	    
sl@0
   604
#pragma BullseyeCoverage on
sl@0
   605
    	    
sl@0
   606
#endif
sl@0
   607
sl@0
   608
        // Cannot identify the message.
sl@0
   609
        default:
sl@0
   610
            {
sl@0
   611
            PanicClient( aMessage, EPanicIllegalArgument );
sl@0
   612
            break;
sl@0
   613
           }
sl@0
   614
        }
sl@0
   615
    }
sl@0
   616
sl@0
   617
// -----------------------------------------------------------------------------
sl@0
   618
// CFeatMgrSession::ServiceNotifications
sl@0
   619
// -----------------------------------------------------------------------------
sl@0
   620
//
sl@0
   621
void CFeatMgrSession::ServiceNotifications( TFeatureServerEntry& aFeature, 
sl@0
   622
    TFeatureChangeType aType )
sl@0
   623
    {       
sl@0
   624
    FUNC_LOG
sl@0
   625
    
sl@0
   626
    if( !iNotifyMessage.IsNull() ) 
sl@0
   627
        {
sl@0
   628
        TInt index( iNotifyFeatures.Find( aFeature.FeatureUid() ) );
sl@0
   629
        
sl@0
   630
        if( index != KErrNotFound )
sl@0
   631
            {
sl@0
   632
            if( aType == EFeatureFeatureDeleted )
sl@0
   633
            	{
sl@0
   634
            	// The feature was deleted - won't have any more notifications
sl@0
   635
            	iNotifyFeatures.Remove(index);
sl@0
   636
            	}
sl@0
   637
sl@0
   638
            // Write changed feature back to client and complete request
sl@0
   639
            TPckgC<TInt> feature( aFeature.FeatureUid().iUid );
sl@0
   640
            TInt err( iNotifyMessage.Write( 0, feature ) );
sl@0
   641
            if( err == KErrNone )
sl@0
   642
                {
sl@0
   643
                iNotifyMessage.Complete( aType );
sl@0
   644
                }
sl@0
   645
            }
sl@0
   646
        }
sl@0
   647
    }
sl@0
   648
sl@0
   649
TInt CFeatMgrSession::CountResources()
sl@0
   650
    {
sl@0
   651
    return User::CountAllocCells();
sl@0
   652
    }
sl@0
   653
sl@0
   654
// ============================= LOCAL FUNCTIONS ===============================
sl@0
   655
sl@0
   656
// ============================ MEMBER FUNCTIONS ===============================
sl@0
   657
sl@0
   658
// -----------------------------------------------------------------------------
sl@0
   659
// CFeatMgrPendingRequest::CFeatMgrPendingRequest
sl@0
   660
// C++ constructor
sl@0
   661
// -----------------------------------------------------------------------------
sl@0
   662
//
sl@0
   663
CFeatMgrPendingRequest::CFeatMgrPendingRequest()
sl@0
   664
    {
sl@0
   665
    }
sl@0
   666
sl@0
   667
// -----------------------------------------------------------------------------
sl@0
   668
// CFeatMgrPendingRequest::NewL
sl@0
   669
// Two-phased constructor.
sl@0
   670
// -----------------------------------------------------------------------------
sl@0
   671
//
sl@0
   672
CFeatMgrPendingRequest* CFeatMgrPendingRequest::NewL(const RMessage2& aMessage)
sl@0
   673
    {
sl@0
   674
    FUNC_LOG
sl@0
   675
    CFeatMgrPendingRequest* self = new (ELeave) CFeatMgrPendingRequest;
sl@0
   676
    
sl@0
   677
    CleanupStack::PushL( self );
sl@0
   678
    self->ConstructL( aMessage );
sl@0
   679
    CleanupStack::Pop( self );
sl@0
   680
sl@0
   681
    return self;
sl@0
   682
    }
sl@0
   683
sl@0
   684
// ---------------------------------------------------------
sl@0
   685
// CFeatMgrPendingRequest::ConstructL
sl@0
   686
// ---------------------------------------------------------
sl@0
   687
//
sl@0
   688
void CFeatMgrPendingRequest::ConstructL(const RMessage2& aMessage)
sl@0
   689
    {
sl@0
   690
    iMessage = aMessage;
sl@0
   691
    }
sl@0
   692
sl@0
   693
// ---------------------------------------------------------
sl@0
   694
// Destructor
sl@0
   695
// ---------------------------------------------------------
sl@0
   696
//
sl@0
   697
CFeatMgrPendingRequest::~CFeatMgrPendingRequest()
sl@0
   698
    {
sl@0
   699
    FUNC_LOG
sl@0
   700
    }
sl@0
   701
sl@0
   702
sl@0
   703
//  End of File