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