os/persistentdata/featuremgmt/featuremgr/src/serverexe/featmgrserver.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 <ecom/ecom.h>
sl@0
    21
#include <e32uid.h>
sl@0
    22
#include "featmgrconfiguration.h"
sl@0
    23
#include "featmgrserver.h"
sl@0
    24
#include "featmgrsession.h"
sl@0
    25
#include "featmgrpluginhandler.h"
sl@0
    26
#include "featmgrdebug.h"
sl@0
    27
#include "featmgrsecuritypolicy.h"
sl@0
    28
#include <f32file.h>
sl@0
    29
#include <s32file.h>
sl@0
    30
sl@0
    31
_LIT(KPanicCategory, "FeatMgrServer");
sl@0
    32
sl@0
    33
// ============================ MEMBER FUNCTIONS ===============================
sl@0
    34
sl@0
    35
// -----------------------------------------------------------------------------
sl@0
    36
// CFeatMgrServer::CFeatMgrServer
sl@0
    37
// C++ default constructor can NOT contain any code, that
sl@0
    38
// might leave.
sl@0
    39
// -----------------------------------------------------------------------------
sl@0
    40
//
sl@0
    41
CFeatMgrServer::CFeatMgrServer( const TInt aPriority, const TServerType aType  )
sl@0
    42
    :
sl@0
    43
    CPolicyServer( aPriority, KFeatMgrPlatSecPolicy, aType ), iBurState(this),
sl@0
    44
    iBURInProgress(EFalse),
sl@0
    45
    iPluginsReady(EFalse), 
sl@0
    46
    iPluginsDeleted( EFalse ),
sl@0
    47
    iPendingRequests( ETrue ),
sl@0
    48
    iFeaturesReady(EFalse)
sl@0
    49
    
sl@0
    50
    {
sl@0
    51
    // Nothing to do
sl@0
    52
    }
sl@0
    53
sl@0
    54
// -----------------------------------------------------------------------------
sl@0
    55
// CFeatMgrServer::ConstructL
sl@0
    56
// Symbian 2nd phase constructor can leave.
sl@0
    57
// -----------------------------------------------------------------------------
sl@0
    58
//
sl@0
    59
void CFeatMgrServer::ConstructL()
sl@0
    60
    {
sl@0
    61
    FUNC_LOG
sl@0
    62
    
sl@0
    63
#ifndef EXTENDED_FEATURE_MANAGER_TEST
sl@0
    64
    // Set server process system critical
sl@0
    65
    User::SetProcessCritical(User::ESystemCritical);
sl@0
    66
#else
sl@0
    67
    iShutdown.ConstructL();
sl@0
    68
    // ensure the server still exits even if the 1st client fails to connect
sl@0
    69
    if( !iShutdown.IsActive() )
sl@0
    70
        {
sl@0
    71
        iShutdown.Start();
sl@0
    72
        }
sl@0
    73
#endif
sl@0
    74
    
sl@0
    75
    // Add server to active scheduler
sl@0
    76
    StartL( KServerProcessName );
sl@0
    77
    
sl@0
    78
    // Connect to file server.
sl@0
    79
    User::LeaveIfError( iFs.Connect() );
sl@0
    80
    
sl@0
    81
    // register BUR
sl@0
    82
    iBackupNotification = CBaBackupSessionWrapper::NewL();
sl@0
    83
    
sl@0
    84
    // register the file 
sl@0
    85
	TFileName temp( iRegistry->GetFeaturesFilePathAndName() );
sl@0
    86
    iBackupNotification->RegisterFileL( temp, *this );
sl@0
    87
	
sl@0
    88
    // feature registry
sl@0
    89
    iRegistry = CFeatMgrFeatureRegistry::NewL( iFs, *this );
sl@0
    90
    
sl@0
    91
    TRAPD(err,iRegistry->ReadFeatureFilesL());
sl@0
    92
    switch (err)
sl@0
    93
    	{
sl@0
    94
    	case KErrNotFound:
sl@0
    95
    		ERROR_LOG( "CFeatMgrServer::ConstructL() - no feature files found in ROM - going to panic");
sl@0
    96
    		::FmgrFatalErrorL(err, KPanicCategory, EPanicNoFeatureFiles);
sl@0
    97
    		break;
sl@0
    98
    	case KErrCorrupt:
sl@0
    99
    	    ERROR_LOG( "CFeatMgrServer::ConstructL() - feature information in ROM is invalid - going to panic");
sl@0
   100
    	    ::FmgrFatalErrorL(err, KPanicCategory, EPanicInvalidFeatureInfo);
sl@0
   101
    	    break;
sl@0
   102
    	default:
sl@0
   103
    		User::LeaveIfError(err);
sl@0
   104
    		break;
sl@0
   105
    	}
sl@0
   106
	
sl@0
   107
    // List and load plugins and feature info.
sl@0
   108
    TBool found = LoadPluginsL();
sl@0
   109
    
sl@0
   110
    if( found )
sl@0
   111
        {
sl@0
   112
        // Timer for deleting plugins and for comparing feature lists.
sl@0
   113
        iTimer = CFeatMgrTimer::NewL( *this );
sl@0
   114
       }
sl@0
   115
    else
sl@0
   116
        {
sl@0
   117
        iRegistry->ReadRuntimeFeaturesL( iFeaturesReady );
sl@0
   118
        }
sl@0
   119
    }
sl@0
   120
sl@0
   121
// -----------------------------------------------------------------------------
sl@0
   122
// CFeatMgrServer::NewLC
sl@0
   123
// Two-phased constructor.
sl@0
   124
// -----------------------------------------------------------------------------
sl@0
   125
//
sl@0
   126
CFeatMgrServer* CFeatMgrServer::NewLC(const TInt aPriority)
sl@0
   127
    {
sl@0
   128
    FUNC_LOG
sl@0
   129
sl@0
   130
    CFeatMgrServer* self = new( ELeave ) CFeatMgrServer(aPriority, EUnsharableSessions);
sl@0
   131
    
sl@0
   132
    CleanupStack::PushL( self );
sl@0
   133
    self->ConstructL();
sl@0
   134
sl@0
   135
    return self;
sl@0
   136
    }
sl@0
   137
sl@0
   138
#ifdef EXTENDED_FEATURE_MANAGER_TEST
sl@0
   139
// -----------------------------------------------------------------------------
sl@0
   140
// A new session is being created
sl@0
   141
// Cancel the shutdown timer if it was running
sl@0
   142
// -----------------------------------------------------------------------------
sl@0
   143
//
sl@0
   144
void CFeatMgrServer::AddSession()
sl@0
   145
    {
sl@0
   146
    FUNC_LOG
sl@0
   147
    
sl@0
   148
    ++iSessionCount;
sl@0
   149
    iShutdown.Cancel();
sl@0
   150
    }
sl@0
   151
sl@0
   152
// -----------------------------------------------------------------------------
sl@0
   153
// A session is being destroyed
sl@0
   154
// Start the shutdown timer if it is the last session.
sl@0
   155
// -----------------------------------------------------------------------------
sl@0
   156
//
sl@0
   157
void CFeatMgrServer::DropSession()
sl@0
   158
    {
sl@0
   159
    FUNC_LOG
sl@0
   160
    
sl@0
   161
    if (--iSessionCount==0)
sl@0
   162
        {
sl@0
   163
        if( !iShutdown.IsActive() )
sl@0
   164
            {
sl@0
   165
            iShutdown.Start();
sl@0
   166
            }
sl@0
   167
        }
sl@0
   168
    }
sl@0
   169
sl@0
   170
// ---------------------------------------------------------------------------
sl@0
   171
// CShutDown
sl@0
   172
// ---------------------------------------------------------------------------
sl@0
   173
inline CShutdown::CShutdown()
sl@0
   174
    :CTimer(-1)
sl@0
   175
    {
sl@0
   176
    CActiveScheduler::Add(this);
sl@0
   177
    }
sl@0
   178
    
sl@0
   179
inline void CShutdown::ConstructL()
sl@0
   180
    {
sl@0
   181
    CTimer::ConstructL();
sl@0
   182
    }
sl@0
   183
sl@0
   184
inline void CShutdown::Start()
sl@0
   185
    {
sl@0
   186
    FUNC_LOG
sl@0
   187
    After(KShutdownTimeout);
sl@0
   188
    }
sl@0
   189
sl@0
   190
void CShutdown::RunL()
sl@0
   191
    {
sl@0
   192
    FUNC_LOG
sl@0
   193
    CActiveScheduler::Stop();
sl@0
   194
    }
sl@0
   195
sl@0
   196
#endif // EXTENDED_FEATURE_MANAGER_TEST
sl@0
   197
    
sl@0
   198
// -----------------------------------------------------------------------------
sl@0
   199
// Destructor
sl@0
   200
// -----------------------------------------------------------------------------
sl@0
   201
//
sl@0
   202
CFeatMgrServer::~CFeatMgrServer()
sl@0
   203
    {
sl@0
   204
    FUNC_LOG
sl@0
   205
sl@0
   206
    // Close all open sessions
sl@0
   207
	CFeatMgrSession* session=NULL;
sl@0
   208
	iSessionIter.SetToFirst();
sl@0
   209
	
sl@0
   210
	while( (session = static_cast<CFeatMgrSession*>(iSessionIter++)) != NULL )
sl@0
   211
	    {
sl@0
   212
		delete session;
sl@0
   213
	    }
sl@0
   214
sl@0
   215
    // Delete plugin handlers    
sl@0
   216
    if ( !iPluginsDeleted )
sl@0
   217
        {
sl@0
   218
        iPendingRequests = EFalse; // No need to serve pending requests
sl@0
   219
        iFeaturesReady = ETrue; // No need to read files anymore
sl@0
   220
        DeletePlugins();
sl@0
   221
        } 
sl@0
   222
    
sl@0
   223
    delete iTimer;
sl@0
   224
    iPluginList.Close();
sl@0
   225
    
sl@0
   226
    // De register Backup and Restore and cleanup memory
sl@0
   227
    if( iBackupNotification ) 
sl@0
   228
    	{
sl@0
   229
		TFileName temp( iRegistry->GetFeaturesFilePathAndName() );
sl@0
   230
    	iBackupNotification->DeregisterFile( temp );
sl@0
   231
    	delete iBackupNotification;
sl@0
   232
    	iBackupNotification = NULL;
sl@0
   233
    	}
sl@0
   234
    
sl@0
   235
    delete iRegistry;
sl@0
   236
    iFs.Close();
sl@0
   237
    }
sl@0
   238
sl@0
   239
sl@0
   240
// -----------------------------------------------------------------------------
sl@0
   241
// CFeatMgrServer::NewSessionL
sl@0
   242
// Creates a new CSession2
sl@0
   243
// -----------------------------------------------------------------------------
sl@0
   244
//
sl@0
   245
CSession2* CFeatMgrServer::NewSessionL( const TVersion& aVersion,
sl@0
   246
                                     const RMessage2& /*aMessage*/ ) const
sl@0
   247
    {
sl@0
   248
    FUNC_LOG
sl@0
   249
    
sl@0
   250
    if ( !User::QueryVersionSupported( TVersion( KServerVersionMajor, 
sl@0
   251
                                                 KServerVersionMinor, 
sl@0
   252
                                                 KServerVersionBuild ), 
sl@0
   253
                                                 aVersion ) )
sl@0
   254
        {
sl@0
   255
        User::Leave( KErrNotSupported );
sl@0
   256
        }
sl@0
   257
    
sl@0
   258
    CSession2* session = CFeatMgrSession::NewL(*const_cast<CFeatMgrServer*>(this), *iRegistry );
sl@0
   259
sl@0
   260
    return( session );
sl@0
   261
    }
sl@0
   262
sl@0
   263
// -----------------------------------------------------------------------------
sl@0
   264
// CFeatMgrServer::TimerFired
sl@0
   265
// Handles timer firing. 
sl@0
   266
// -----------------------------------------------------------------------------
sl@0
   267
//
sl@0
   268
void CFeatMgrServer::TimerFired()
sl@0
   269
    {
sl@0
   270
    FUNC_LOG
sl@0
   271
sl@0
   272
    // Delete plugin handlers. Plugin handler deletes the plugin.    
sl@0
   273
    if ( !iPluginsDeleted )
sl@0
   274
        {
sl@0
   275
        DeletePlugins();
sl@0
   276
        } 
sl@0
   277
    }
sl@0
   278
sl@0
   279
// -----------------------------------------------------------------------------
sl@0
   280
// CFeatMgrServer::HandleFeatureChange()
sl@0
   281
// -----------------------------------------------------------------------------
sl@0
   282
//
sl@0
   283
void CFeatMgrServer::HandleFeatureChange( TFeatureServerEntry& aFeature, TFeatureChangeType aType )
sl@0
   284
    {
sl@0
   285
    FUNC_LOG
sl@0
   286
sl@0
   287
    CFeatMgrSession* session=NULL;
sl@0
   288
	TDblQueIter<CSession2> local_iSessionIter = iSessionIter;
sl@0
   289
	local_iSessionIter.SetToFirst();
sl@0
   290
	    
sl@0
   291
	while( (session = static_cast<CFeatMgrSession*>(local_iSessionIter++)) != NULL )
sl@0
   292
	    {
sl@0
   293
		session->ServiceNotifications( aFeature, aType );
sl@0
   294
	    }
sl@0
   295
    }
sl@0
   296
sl@0
   297
// ---------------------------------------------------------------------------
sl@0
   298
// CFeatMgrServer::ResetAndDestroyArray
sl@0
   299
// ---------------------------------------------------------------------------
sl@0
   300
// 
sl@0
   301
static void ResetAndDestroyArray( TAny* aPtr )
sl@0
   302
    {
sl@0
   303
    RImplInfoPtrArray* array = static_cast< RImplInfoPtrArray* >( aPtr );
sl@0
   304
    array->ResetAndDestroy();
sl@0
   305
    array->Close();
sl@0
   306
    }
sl@0
   307
sl@0
   308
// -----------------------------------------------------------------------------
sl@0
   309
// CFeatMgrServer::LoadPluginsL()
sl@0
   310
// -----------------------------------------------------------------------------
sl@0
   311
//
sl@0
   312
TBool CFeatMgrServer::LoadPluginsL()
sl@0
   313
    {
sl@0
   314
    FUNC_LOG
sl@0
   315
    
sl@0
   316
    RImplInfoPtrArray implInfoArray;
sl@0
   317
    TBool ret( EFalse );
sl@0
   318
sl@0
   319
    // Use ECom to read information about existing interface implementations
sl@0
   320
#ifndef EXTENDED_FEATURE_MANAGER_TEST
sl@0
   321
    _LIT8( KResolverString, "" );
sl@0
   322
#else
sl@0
   323
    _LIT8( KResolverString, "efmtestplugin" ); //In test server we only want test plugins.
sl@0
   324
#endif
sl@0
   325
    TEComResolverParams resolverParams;
sl@0
   326
    resolverParams.SetDataType (KResolverString);
sl@0
   327
    resolverParams.SetWildcardMatch (ETrue);
sl@0
   328
sl@0
   329
    TCleanupItem cleanupItem( ResetAndDestroyArray, &implInfoArray );
sl@0
   330
    CleanupStack::PushL( cleanupItem );
sl@0
   331
    
sl@0
   332
    TIMESTAMP( "CFeatMgrServer::LoadPluginsL - ListImplementationsL start: " )
sl@0
   333
    REComSession::ListImplementationsL( KFeatureInfoPluginInterfaceUid,
sl@0
   334
                                        resolverParams,
sl@0
   335
#ifndef EXTENDED_FEATURE_MANAGER_TEST                                         
sl@0
   336
                                        KRomOnlyResolverUid, 
sl@0
   337
#endif                                        
sl@0
   338
                                        implInfoArray);
sl@0
   339
    TIMESTAMP( "CFeatMgrServer::LoadPluginsL - ListImplementationsL end: " )
sl@0
   340
    
sl@0
   341
    // Check if any plugin was found. 
sl@0
   342
    TInt count = implInfoArray.Count();
sl@0
   343
    if(count == 0)
sl@0
   344
        {
sl@0
   345
        iPluginsReady = ETrue; // Plugins not found.
sl@0
   346
        INFO_LOG1("CFeatMgrServer::LoadPluginsL - interfaceUid.iUid == 0x%x, return plugins not found", KFeatureInfoPluginInterfaceUid);
sl@0
   347
        ret = EFalse;
sl@0
   348
        }
sl@0
   349
    else
sl@0
   350
        {
sl@0
   351
        for(TInt i=0;i<count;++i)
sl@0
   352
            {
sl@0
   353
            CFeatMgrPluginHandler* pluginHandler = NULL;
sl@0
   354
            TRAPD(err, pluginHandler = CFeatMgrPluginHandler::NewL(implInfoArray[i]->ImplementationUid(), *this));
sl@0
   355
            if(err == KErrNone)
sl@0
   356
                {
sl@0
   357
                CleanupStack::PushL(pluginHandler);
sl@0
   358
                TRAP(err, pluginHandler->SendCommandL(FeatureInfoCommand::ELoadFeatureInfoCmdId));
sl@0
   359
                if(err == KErrNotSupported)
sl@0
   360
                    {
sl@0
   361
                    TRAP(err, pluginHandler->SendCommandL(FeatureInfoCommand::ELoadEnhancedFeatureInfoCmdId));
sl@0
   362
                    }
sl@0
   363
                }
sl@0
   364
            if(err == KErrNoMemory)
sl@0
   365
                {
sl@0
   366
                User::Leave(err);
sl@0
   367
                }
sl@0
   368
            else if(err != KErrNone)
sl@0
   369
                {
sl@0
   370
                ERROR_LOG2("CFeatMgrServer::LoadPluginsL() - implementationUid: 0x%x, error: %d - going to panic", implInfoArray[i]->ImplementationUid(), err);
sl@0
   371
                ::FmgrFatalErrorL(err, KPanicCategory, EPanicLoadPluginError);                           
sl@0
   372
                }
sl@0
   373
            // Add information of the plugin to the plugin list. Set all plugins as not ready initially.
sl@0
   374
            SFeatMgrPluginInfo plugin;
sl@0
   375
            plugin.iPluginHandler = pluginHandler;
sl@0
   376
            plugin.iPluginReady = EFalse;
sl@0
   377
            User::LeaveIfError(iPluginList.Append(plugin));
sl@0
   378
            CleanupStack::Pop(pluginHandler);
sl@0
   379
            }
sl@0
   380
        INFO_LOG1("CFeatMgrServer::LoadPluginsL - interfaceUid.iUid == 0x%x, return plugins found", KFeatureInfoPluginInterfaceUid);
sl@0
   381
        ret = ETrue;
sl@0
   382
        }
sl@0
   383
    
sl@0
   384
    CleanupStack::PopAndDestroy(&implInfoArray);
sl@0
   385
    
sl@0
   386
    return ret;
sl@0
   387
    }
sl@0
   388
    
sl@0
   389
    
sl@0
   390
// -----------------------------------------------------------------------------
sl@0
   391
// CFeatMgrServer::PluginsReady()
sl@0
   392
// -----------------------------------------------------------------------------
sl@0
   393
sl@0
   394
TBool CFeatMgrServer::PluginsReady() const
sl@0
   395
    {
sl@0
   396
    FUNC_LOG
sl@0
   397
    return(iPluginsReady);
sl@0
   398
   	}
sl@0
   399
sl@0
   400
// -----------------------------------------------------------------------------
sl@0
   401
// CFeatMgrServer::BackupIsInProgress()
sl@0
   402
// -----------------------------------------------------------------------------
sl@0
   403
TBool CFeatMgrServer::BURIsInProgress() const
sl@0
   404
    {
sl@0
   405
    FUNC_LOG
sl@0
   406
    return(iBURInProgress);
sl@0
   407
    }
sl@0
   408
   	
sl@0
   409
// -----------------------------------------------------------------------------
sl@0
   410
// CFeatMgrServer::ServicePendingRequests()
sl@0
   411
// -----------------------------------------------------------------------------
sl@0
   412
sl@0
   413
void CFeatMgrServer::ServicePendingRequests()
sl@0
   414
    {
sl@0
   415
    FUNC_LOG
sl@0
   416
    
sl@0
   417
    CFeatMgrSession* session=NULL;
sl@0
   418
	iSessionIter.SetToFirst();
sl@0
   419
	    
sl@0
   420
	while( (session = static_cast<CFeatMgrSession*>(iSessionIter++)) != NULL )
sl@0
   421
	    {
sl@0
   422
		TRAPD( err, session->ServicePendingRequestsL() );
sl@0
   423
        LOG_IF_ERROR1( err, "CFeatMgrServer::ServicePendingRequests - err %d", err );
sl@0
   424
	    }
sl@0
   425
   	
sl@0
   426
   	iPendingRequests = EFalse;
sl@0
   427
   	}
sl@0
   428
sl@0
   429
// -----------------------------------------------------------------------------
sl@0
   430
// CFeatMgrServer::DeletePlugins()
sl@0
   431
// -----------------------------------------------------------------------------
sl@0
   432
sl@0
   433
void CFeatMgrServer::DeletePlugins()
sl@0
   434
    {
sl@0
   435
    FUNC_LOG
sl@0
   436
    
sl@0
   437
    // Set iPluginsReady to ETrue because plugins will be deleted.
sl@0
   438
    iPluginsReady = ETrue;
sl@0
   439
    TInt err( KErrNone );
sl@0
   440
sl@0
   441
    // Load runtimefeatures.txt if not loaded yet.
sl@0
   442
    if ( !iFeaturesReady )
sl@0
   443
        { 
sl@0
   444
        TRAP( err, iRegistry->ReadRuntimeFeaturesL( iFeaturesReady ) );
sl@0
   445
        
sl@0
   446
        LOG_IF_ERROR1( err, "CFeatMgrServer::DeletePlugins() - ReadRuntimeFeaturesL err %d", err ); 
sl@0
   447
        }
sl@0
   448
    
sl@0
   449
    // Service pending requests before deleting plugins if not serviced yet.
sl@0
   450
    if ( iPendingRequests )
sl@0
   451
        {
sl@0
   452
        ServicePendingRequests();
sl@0
   453
        }
sl@0
   454
          
sl@0
   455
    // Delete plugin handlers
sl@0
   456
    TInt count = iPluginList.Count();
sl@0
   457
sl@0
   458
    for ( TInt i = 0 ; i < count; i++ )
sl@0
   459
        {
sl@0
   460
        delete iPluginList[i].iPluginHandler;
sl@0
   461
        iPluginList[i].iPluginHandler = NULL;
sl@0
   462
        }
sl@0
   463
sl@0
   464
    // Reset list of plugins
sl@0
   465
    iPluginList.Reset();
sl@0
   466
        
sl@0
   467
    // Signal final closure of ecom session
sl@0
   468
	REComSession::FinalClose();
sl@0
   469
	    
sl@0
   470
	// All plugin handlers deleted
sl@0
   471
	iPluginsDeleted = ETrue;
sl@0
   472
	}
sl@0
   473
    
sl@0
   474
// -----------------------------------------------------------------------------
sl@0
   475
// CFeatMgrServer::FeatureInfoL()
sl@0
   476
// -----------------------------------------------------------------------------
sl@0
   477
sl@0
   478
void CFeatMgrServer::FeatureInfoL( RArray<FeatureInfoCommand::TFeature>& aFeatureList, 
sl@0
   479
        CFeatMgrPluginHandler* aPluginHandler )
sl@0
   480
    {
sl@0
   481
    FUNC_LOG
sl@0
   482
     
sl@0
   483
    // Save feature info received from the plugin
sl@0
   484
    TInt pluginCount = iPluginList.Count();
sl@0
   485
sl@0
   486
    for ( TInt i = 0; i < pluginCount; i ++ )
sl@0
   487
        {
sl@0
   488
        if ( iPluginList[i].iPluginHandler == aPluginHandler )
sl@0
   489
            {
sl@0
   490
            iRegistry->MergePluginFeaturesL( aFeatureList );
sl@0
   491
            // Send command to load enhanced feature info
sl@0
   492
            TRAPD( err, iPluginList[i].iPluginHandler->SendCommandL( 
sl@0
   493
                FeatureInfoCommand::ELoadEnhancedFeatureInfoCmdId ) );
sl@0
   494
            // Panic if error sth else than not supported
sl@0
   495
            if ( err != KErrNone && err != KErrNotSupported )
sl@0
   496
                {
sl@0
   497
                ERROR_LOG1( "CFeatMgrServer::FeatureInfoL() - panicing due error %d", err );
sl@0
   498
                ::FmgrFatalErrorL(err, KPanicCategory, EPanicLoadPluginError);
sl@0
   499
                }
sl@0
   500
            // At this point we have simple feature supported by the plugin.
sl@0
   501
            // If no enhanced feature is supported, but a simple one is, then
sl@0
   502
            // the plugin is ready to be used. Otherwise continue to add the
sl@0
   503
            // enhanced features.
sl@0
   504
            else if( err == KErrNotSupported )
sl@0
   505
            	{
sl@0
   506
            	iPluginList[i].iPluginReady = ETrue;
sl@0
   507
                }
sl@0
   508
            }
sl@0
   509
        else
sl@0
   510
            {
sl@0
   511
            INFO_LOG( "CFeatMgrServer::FeatureInfo - unknown plugin handler") ;
sl@0
   512
            }
sl@0
   513
        }   
sl@0
   514
sl@0
   515
    CheckPluginsReadyL();
sl@0
   516
    }
sl@0
   517
sl@0
   518
// -----------------------------------------------------------------------------
sl@0
   519
// CFeatMgrServer::FeatureInfoL()
sl@0
   520
// -----------------------------------------------------------------------------
sl@0
   521
sl@0
   522
void CFeatMgrServer::FeatureInfoL( RFeatureArray& aFeatureList, 
sl@0
   523
        CFeatMgrPluginHandler* aPluginHandler )
sl@0
   524
    {
sl@0
   525
    FUNC_LOG
sl@0
   526
     
sl@0
   527
    // Save feature info received from the plugin
sl@0
   528
    TInt pluginCount = iPluginList.Count();
sl@0
   529
sl@0
   530
    for ( TInt i = 0; i < pluginCount; i ++ )
sl@0
   531
        {
sl@0
   532
        if ( iPluginList[i].iPluginHandler == aPluginHandler )
sl@0
   533
            {
sl@0
   534
            iRegistry->MergePluginFeaturesL( aFeatureList );
sl@0
   535
            // Send another command if something left to process
sl@0
   536
            iPluginList[i].iPluginReady = ETrue;
sl@0
   537
            }
sl@0
   538
        else
sl@0
   539
            {
sl@0
   540
            INFO_LOG( "CFeatMgrServer::FeatureInfo - unknown plugin handler") ;
sl@0
   541
            }
sl@0
   542
        }   
sl@0
   543
sl@0
   544
    CheckPluginsReadyL();
sl@0
   545
    }
sl@0
   546
sl@0
   547
// -----------------------------------------------------------------------------
sl@0
   548
// CFeatMgrServer::CheckPluginsReadyL()
sl@0
   549
// -----------------------------------------------------------------------------
sl@0
   550
sl@0
   551
void CFeatMgrServer::CheckPluginsReadyL()
sl@0
   552
    {
sl@0
   553
    FUNC_LOG
sl@0
   554
sl@0
   555
    // If all plugins has responsed iPluginsReady is ETrue
sl@0
   556
    // else iPluginsReady is EFalse;
sl@0
   557
    TInt pluginCount = iPluginList.Count();
sl@0
   558
    
sl@0
   559
    for ( TInt i = 0; i < pluginCount; i ++ )
sl@0
   560
        {
sl@0
   561
        if ( iPluginList[i].iPluginReady )
sl@0
   562
            {
sl@0
   563
            iPluginsReady = ETrue;
sl@0
   564
            }
sl@0
   565
        else
sl@0
   566
            {   
sl@0
   567
            iPluginsReady = EFalse;
sl@0
   568
            break;
sl@0
   569
            }
sl@0
   570
        }
sl@0
   571
    
sl@0
   572
    // If plugins ready, read runtime features and call ServicePendingRequests of sessions.
sl@0
   573
    if ( iPluginsReady )
sl@0
   574
        {
sl@0
   575
        // Load runtimefeatures.txt
sl@0
   576
        if ( !iFeaturesReady )
sl@0
   577
            {
sl@0
   578
            iRegistry->ReadRuntimeFeaturesL( iFeaturesReady );
sl@0
   579
            }
sl@0
   580
sl@0
   581
        if ( iPendingRequests )
sl@0
   582
            {
sl@0
   583
            ServicePendingRequests();    
sl@0
   584
            }
sl@0
   585
        }      
sl@0
   586
    }
sl@0
   587
    
sl@0
   588
/**
sl@0
   589
 * Implementation of the pure virtual function.
sl@0
   590
 */
sl@0
   591
void CFeatMgrServer::HandleBackupOperationEventL( const TBackupOperationAttributes& /* aBackupOperationAttributes */ )
sl@0
   592
	{
sl@0
   593
	return;
sl@0
   594
	}
sl@0
   595
sl@0
   596
/**
sl@0
   597
 * There is a flag state variable being passed into Feature Manager as type MBackupObserver::TFileLockFlags.
sl@0
   598
 * Only certain combinations of these flags are valid for Feature Manager and if the combination is 
sl@0
   599
 * not valid, then because there is no way of returning an error it will just set the internal state 
sl@0
   600
 * machine into an "error" state.
sl@0
   601
 * Given our current state and our goto state (i.e. where we are at the moment and where we want to goto)
sl@0
   602
 * the state machine checks that this is a valid path in our state machine and then perform the correct 
sl@0
   603
 * operations to get us to the next valid state. It also calls the correct Feature manager functions to 
sl@0
   604
 * accomplish this operation.
sl@0
   605
 */
sl@0
   606
void CFeatMgrServer::ChangeFileLockL( const TDesC& /* aFileName */, TFileLockFlags aFlags )
sl@0
   607
	{
sl@0
   608
	// There is only one file we are concerned with, so
sl@0
   609
	// don't check the filename matches
sl@0
   610
	// Default TOperationType type to ENone (we are ignoring this value)
sl@0
   611
	TBackupOperationAttributes attribs( aFlags, ENone );
sl@0
   612
	iBurState.BUROperationL( attribs );
sl@0
   613
sl@0
   614
	return;
sl@0
   615
	}
sl@0
   616
sl@0
   617
sl@0
   618
/**
sl@0
   619
 * Generic return function, to return the state of the machine back to normal.
sl@0
   620
 * This can only occur from certain states.
sl@0
   621
 */
sl@0
   622
BURStatus CFeatMgrServer::Goto_NormalState( BURStatus /* aCurrent */  )
sl@0
   623
	{
sl@0
   624
	return EFeatMgrBURState_None;   // all roads lead to normal state
sl@0
   625
	}
sl@0
   626
sl@0
   627
/**
sl@0
   628
 * This function handles error recovery from an invalid state. It will return the feature 
sl@0
   629
 * maneger back to normal, in both it's internal state machine state, and it's internal 
sl@0
   630
 * variables.
sl@0
   631
 */
sl@0
   632
BURStatus CFeatMgrServer::Goto_ErrorState( BURStatus aCurrent  )
sl@0
   633
	{
sl@0
   634
	BURStatus aNewState = EFeatMgrBURState_None;   // fail safe: all roads lead to normal state
sl@0
   635
	
sl@0
   636
	switch( aCurrent )
sl@0
   637
		{
sl@0
   638
		case( EFeatMgrBURState_BackupStarted ) :
sl@0
   639
			iBURInProgress = EFalse;
sl@0
   640
			ServicePendingRequests();
sl@0
   641
			break;
sl@0
   642
		case( EFeatMgrBURState_RestoreStarted ) :
sl@0
   643
		    iPluginsReady    = EFalse;
sl@0
   644
		    iPluginsDeleted  = EFalse;
sl@0
   645
		    iPendingRequests = ETrue;
sl@0
   646
		    iFeaturesReady   = EFalse;
sl@0
   647
			// re-read the new features;
sl@0
   648
			TRAP_IGNORE(ClearFeaturesL() );
sl@0
   649
			TRAP_IGNORE(LoadFeaturesL() );
sl@0
   650
			// Stop queuing
sl@0
   651
			iPluginsReady = ETrue;
sl@0
   652
			// commit the pending change requests
sl@0
   653
			ServicePendingRequests();
sl@0
   654
			break;
sl@0
   655
		case( EFeatMgrBURState_BackupEnded ) :
sl@0
   656
		case( EFeatMgrBURState_RestoreEnded ) :
sl@0
   657
			break;
sl@0
   658
		default :
sl@0
   659
			break;
sl@0
   660
		}
sl@0
   661
	
sl@0
   662
	aNewState = EFeatMgrBURState_Error;  // state++
sl@0
   663
	return aNewState;
sl@0
   664
	}
sl@0
   665
sl@0
   666
BURStatus CFeatMgrServer::Goto_StartBackupState( BURStatus /* aCurrent */ )
sl@0
   667
	{
sl@0
   668
	BURStatus aNewState = EFeatMgrBURState_BackupStarted;  // state++
sl@0
   669
	iBURInProgress = ETrue;
sl@0
   670
	return aNewState;
sl@0
   671
	}
sl@0
   672
sl@0
   673
BURStatus CFeatMgrServer::Goto_EndBackupState( BURStatus /* aCurrent */  )
sl@0
   674
	{
sl@0
   675
	BURStatus aNewState = EFeatMgrBURState_BackupEnded;   // state++
sl@0
   676
	
sl@0
   677
	iBURInProgress = EFalse;
sl@0
   678
	ServicePendingRequests();
sl@0
   679
	// no error from ServicePendingRequests() is possible
sl@0
   680
	
sl@0
   681
	return aNewState;
sl@0
   682
	}
sl@0
   683
sl@0
   684
BURStatus CFeatMgrServer::Goto_StartRestoreState( BURStatus /* aCurrent */  )
sl@0
   685
	{
sl@0
   686
	// remarkably like Goto_StartBackupState
sl@0
   687
	BURStatus aNewState = EFeatMgrBURState_RestoreStarted;  // state++
sl@0
   688
	iBURInProgress = ETrue;
sl@0
   689
	return aNewState;
sl@0
   690
	}
sl@0
   691
sl@0
   692
BURStatus CFeatMgrServer::Goto_EndRestoreState( BURStatus /* aCurrent */  )
sl@0
   693
	{
sl@0
   694
	BURStatus aNewState = EFeatMgrBURState_Error;   // fail safe
sl@0
   695
	TInt err( KErrNone );
sl@0
   696
	iBURInProgress = EFalse;
sl@0
   697
	iPluginsReady    = EFalse;
sl@0
   698
    iPluginsDeleted  = EFalse;
sl@0
   699
    iPendingRequests = ETrue;
sl@0
   700
    iFeaturesReady   = EFalse;
sl@0
   701
sl@0
   702
	// re-read the new features
sl@0
   703
    // Only call the next function if the previous one was
sl@0
   704
    // successfully completed.
sl@0
   705
	TRAP(err, ClearFeaturesL() );
sl@0
   706
	if (err == KErrNone)
sl@0
   707
		{
sl@0
   708
		TRAP(err, LoadFeaturesL() );
sl@0
   709
		}
sl@0
   710
sl@0
   711
	if(err == KErrNone) 
sl@0
   712
		{
sl@0
   713
		TRAP(err, HandleRestoredNotificationsL() );
sl@0
   714
		}
sl@0
   715
sl@0
   716
	if(err == KErrNone)
sl@0
   717
		{
sl@0
   718
		// Stop queuing
sl@0
   719
		iPluginsReady = ETrue;
sl@0
   720
		
sl@0
   721
		// commit the pending change requests
sl@0
   722
		ServicePendingRequests();
sl@0
   723
		
sl@0
   724
		// Change state machine
sl@0
   725
		aNewState = EFeatMgrBURState_RestoreEnded;
sl@0
   726
		}
sl@0
   727
	else
sl@0
   728
		{
sl@0
   729
		// error condition
sl@0
   730
		aNewState = EFeatMgrBURState_Error;
sl@0
   731
		}
sl@0
   732
	
sl@0
   733
	return aNewState;
sl@0
   734
	}
sl@0
   735
sl@0
   736
/**
sl@0
   737
 * This function will load features from files and plugins 
sl@0
   738
 */
sl@0
   739
void CFeatMgrServer::LoadFeaturesL( void )
sl@0
   740
	{
sl@0
   741
    // Load ROM (Z)
sl@0
   742
	TRAPD( err, iRegistry->ReadFeatureFilesL() );
sl@0
   743
	if( KErrNotFound == err)
sl@0
   744
		{
sl@0
   745
		ERROR_LOG( "CFeatMgrServer::ConstructL() & CallReadFeatureFilesL() - no feature files found in ROM - going to panic");
sl@0
   746
		::FmgrFatalErrorL(err, KPanicCategory, EPanicNoFeatureFiles);
sl@0
   747
		}
sl@0
   748
	else
sl@0
   749
		{
sl@0
   750
		User::LeaveIfError(err);
sl@0
   751
		}
sl@0
   752
sl@0
   753
    // Load RAM (C)
sl@0
   754
	// List and load plugins and feature info.
sl@0
   755
	TBool found = LoadPluginsL();
sl@0
   756
	
sl@0
   757
	if( found )
sl@0
   758
	    {
sl@0
   759
	    // Timer for deleting plugins and for comparing feature lists.
sl@0
   760
	    iTimer = CFeatMgrTimer::NewL( *this );
sl@0
   761
	    }
sl@0
   762
	else
sl@0
   763
	    {
sl@0
   764
	    TRAPD( err, iRegistry->ReadRuntimeFeaturesL( iFeaturesReady ) );
sl@0
   765
		if( KErrNotFound == err)
sl@0
   766
			{
sl@0
   767
			::FmgrFatalErrorL(err, KPanicCategory, EPanicNoFeatureFiles);
sl@0
   768
			}
sl@0
   769
		else
sl@0
   770
			{
sl@0
   771
			User::LeaveIfError(err);
sl@0
   772
			}
sl@0
   773
	    }
sl@0
   774
sl@0
   775
	return;
sl@0
   776
}
sl@0
   777
sl@0
   778
sl@0
   779
/**
sl@0
   780
 * Discover which features have changes wrt the restore operation
sl@0
   781
 */
sl@0
   782
void CFeatMgrServer::HandleRestoredNotificationsL( void )
sl@0
   783
	{
sl@0
   784
	iRegistry->HandleRestoredFeatureNotificationsL();
sl@0
   785
	}
sl@0
   786
sl@0
   787
/**
sl@0
   788
 * This function will clear features from RAM
sl@0
   789
 */
sl@0
   790
void CFeatMgrServer::ClearFeaturesL( void )
sl@0
   791
	{
sl@0
   792
	// Delete plugin handlers    
sl@0
   793
    if ( !iPluginsDeleted )
sl@0
   794
        {
sl@0
   795
        // Delete plugin handlers
sl@0
   796
        TInt count = iPluginList.Count();
sl@0
   797
        for ( TInt i = 0 ; i < count; i++ )
sl@0
   798
            {
sl@0
   799
            delete iPluginList[i].iPluginHandler;
sl@0
   800
            iPluginList[i].iPluginHandler = NULL;
sl@0
   801
            }
sl@0
   802
sl@0
   803
        // Reset list of plugins
sl@0
   804
        iPluginList.Reset();
sl@0
   805
        iPluginList.Close();        
sl@0
   806
    	    
sl@0
   807
    	// All plugin handlers deleted
sl@0
   808
    	iPluginsDeleted = EFalse;
sl@0
   809
        } 
sl@0
   810
sl@0
   811
    if( NULL != iRegistry )
sl@0
   812
    	{
sl@0
   813
        iRegistry->ResetFeaturesL();
sl@0
   814
        }
sl@0
   815
sl@0
   816
    return;
sl@0
   817
}
sl@0
   818
sl@0
   819
//  End of File