os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/Discoverer.h
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) 1997-2009 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 // Definition of the CDiscoverer class
    15 // 
    16 //
    17 
    18 /**
    19  @file
    20  @internalComponent
    21 */
    22 
    23 #ifndef __DISCOVERER_H__
    24 #define __DISCOVERER_H__
    25 
    26 #include <e32base.h>
    27 #include <f32file.h>
    28 #include <e32property.h> // for RProperty
    29 #include <domaindefs.h> // for TDmDomainState
    30 
    31 #include "DiscovererObserver.h"	// The MDiscovererObserver class
    32 #include "EComEntry.h"
    33 #include "EComEntryBase.h"
    34 #include "callback.h"
    35 
    36 // Platsec path to binaries
    37 _LIT(KSysBin,"\\sys\\bin\\");
    38 // Platsec path to resources
    39 _LIT(KResourcePlugins,"\\resource\\plugins\\");
    40 _LIT(KDllExtension,".dll");
    41 
    42 _LIT(KRscExtension,".rsc");
    43 
    44 // Length of extension of file name.
    45 //The language extension length including the "." is assumed to be 4 
    46 const TInt KExtensionLength=4;
    47 
    48 //Max lenth for plugin resource path
    49 const TInt32 KEComPlugRSCPathMaxLen	=	50;
    50 
    51 //class forward declare
    52 class CEnvironmentChangeNotifier;
    53 /**
    54 	@internalComponent
    55 	@since 7.0
    56 	Responsible for Interface Implementation Collections,
    57 	installed in the Interface Implementation Collection directories.
    58  */
    59 
    60 class CDiscoverer : public CBase 
    61 {
    62 public:
    63 
    64 /** Transition flag for Notification*/
    65 	enum TNotificationFlag
    66 	{
    67 	/** A new plugin added or removed*/
    68 	EPluginsModified,
    69 	
    70 	/**should do a rediscovery */
    71 	EPluginsRediscover
    72 	};
    73 
    74 /** State declaration for CDiscoverer */	
    75 
    76 	enum TDiscovererState
    77 	{
    78 	/** Undefined state */
    79 	EDisc_Undefined,
    80 	
    81 	/** Initialize state */
    82 	EDisc_NoPluginsDisc,
    83 	
    84 	/** Discover plugins on Ro Internal drive units */
    85 	EDisc_CriticalPluginsDisc,
    86 	
    87 	/** All plugins are discovered.*/
    88 	EDisc_AllPluginsDisc,
    89 	
    90 	/** Plugins added or removed, going to rediscover all plugins */
    91 	EDisc_PluginsDirty
    92 	
    93 	};
    94 
    95 /**
    96 	@fn				NewL(MDiscovererObserver& aDiscovererObserver, RFs& aFs)
    97 	Intended Usage	: Standardised safe construction which leaves nothing
    98 					  on the cleanup stack.
    99 	Error Condition	: Not enough memory available.	
   100 	@leave  		KErrNoMemory
   101 	@since			7.0
   102 	@param			aDiscovererObserver A reference to the owning client 
   103 					of the CDiscoverer
   104 	@param			aFs A reference to a connected file server instance.
   105 	@return			CDiscoverer* a pointer to the new class
   106 	@pre 			None
   107 	@post			CDiscoverer is fully constructed, and initialised.
   108  */
   109 	
   110 	static CDiscoverer* NewL(MDiscovererObserver& aDiscovererObserver, RFs& aFs);
   111 
   112 /**
   113 	@fn				~CDiscoverer()
   114 	Intended Usage	: Standard default d'tor	
   115 	Error Condition	: None	
   116 	@since			7.0
   117 	@pre 			CDiscoverer is fully constructed.
   118 	@post			CDiscoverer is totally destroyed.
   119  */
   120 	
   121 	~CDiscoverer();
   122 
   123 /**
   124 	@fn				Resume()
   125 	Intended Usage	: Re-enable the Discoverer to continue checking for new 
   126 					  interface implementations. 
   127 	Error Condition	: Where resume of the discoverer fails. KErrResumeFailed.
   128 	@since			7.0
   129 	@return			TInt The status of the operation. KErrNone or KErrResumeFailed.
   130 	@pre 			CDiscoverer is fully constructed.
   131 	@post			The operation of the discoverer has been resumed. Or where
   132 					resumption failed, no change.
   133  */
   134 	
   135 	TInt Resume();
   136 
   137 /**
   138 	@fn				Suspend()
   139 	Intended Usage	: Temporarily stop looking for new interface implementations.
   140 	Error Condition	: Where suspension of the discoverer fails. KErrSuspendFailed.
   141 	@since			7.0
   142 	@return			TInt The status of the operation. KErrNone or KErrSuspendFailed.
   143 	@pre 			CDiscoverer is fully constructed.
   144 	@post			The operation of the discoverer has been suspended. Or where
   145 					suspend failed, no change.
   146  */
   147 	
   148 	TInt Suspend();
   149 	
   150 	
   151 /**
   152 	@fn 			ProcessSSAEventL()
   153 	Intended Usage	: It discovers the plugins on different Drive Units according to 
   154 					the passing state. It will be used by CRegistrar to notify the 
   155 					object of the system start-up state changes.
   156 	@param 			aKnownState the start-up state passing in to CDiscoverer
   157 	@pre			CDiscoverer is fully constructed
   158 	@post			CDiscoverer is notified of the start-up state change
   159 */
   160 	void ProcessSSAEventL(TStartupStateIdentifier aKnownState);
   161 	
   162 /** 
   163 	@fn 			ProcessDNEventL()
   164 	Intended Usage	:It will be used by one iRscDirNotifier in iRscDirNotifierList 
   165 					to indicate that plugins have been removed or added(state is 
   166 					EDisc_PluginsDirty) and to start a 
   167 					re-discovery(when done, state is EDisc_AllPluginsDisc).
   168 	@leave			KErrNoMemory
   169 	@param			:aFlag the notification transition flag.
   170 	@param			:aDriveUnit a drive which on the plugins has been changed and need to re-discovery
   171 	@pre 			:CDiscoverer is fully constructed.
   172 	@post			: state will be changed, and a re-discovery will happen 
   173 					if the current state is EDisc_PluginsDirty. 
   174 */
   175 	void ProcessDNEventL(TNotificationFlag aFlag, const TDriveUnit& aDriveUnit);
   176 
   177 /**
   178 	@fn 			State()
   179 	Intended Usage	:Retrieve the object's current state.
   180 	@return 		TDiscovererState the CDiscoverer's current state.
   181 	@pre			CDiscoverer is fully constructed.
   182 	@post 			the CDiscoverer's current state has been returned.
   183 */
   184 	TDiscovererState State() const;
   185 	
   186 /** Set the iSwiChangeCallBack member
   187 @param aCallBack new value for iSwiChangeCallBack
   188 */
   189 	void SetSwiChangeCallBack(const TCallBackWithArg& aCallBack);
   190 
   191 /** Set the iBurChangeCallBack member
   192 @param aCallBack new value for iBurChangeCallBack
   193 */
   194 	void SetBurChangeCallBack(const TCallBackWithArg& aCallBack);
   195 
   196 private:
   197 /**
   198 	@internalComponent
   199 	@fn				CDiscoverer(MDiscovererObserver& aDiscovererObserver, RFs& aFs)
   200 	Intended Usage	: Standardised default c'tor	
   201 	Error Condition	: None	
   202 	@since			7.0
   203 	@param			aDiscovererObserver A reference to the owning client 
   204 					of the CDiscoverer
   205 	@param			aFs A reference to an connected file server instance.
   206 	@pre 			None
   207 	@post			CDiscoverer is fully constructed
   208  */
   209 	
   210 	CDiscoverer(MDiscovererObserver& aDiscovererObserver, RFs& aFs);
   211 
   212 /**
   213 	@fn				ConstructL()
   214 	Intended Usage	: Standardised 2nd, (Initialisation) phase of two phase construction.
   215 	Error Condition	: Leaves with error code : usually KErrNoMemory.
   216 	@leave  		KErrNoMemory.
   217 	@since			7.0
   218 	@return			void 
   219 	@pre 			CDiscoverer is fully constructed.
   220 	@post			CDiscoverer is fully initialised.
   221  */
   222 	
   223 	void ConstructL();
   224 
   225 /**
   226 	@fn				NotificationL(TInt aStatus)
   227 	Intended Usage	: Called by the one object of iRscDirNotifierList when the 
   228 					contents of the Interface Implementation directories
   229 					has changed on a specified drive.
   230 	Error Condition	: None	
   231 	@leave			KErrNoMemory
   232 	@since			7.0
   233 	@param			aDriveUnit a drive which has changes.
   234 	@return			ETrue to indicate the notifier should re-activate.
   235 	@pre 			CDiscoverer is fully constructed.
   236 	@post			CDiscoverer has been notified that a re-scan of the 
   237 					plugin directories is required.
   238  */
   239 	
   240 	TBool NotificationL(TInt aStatus, const TDriveUnit& aDriveUnit);
   241 
   242 /**
   243 	@fn				SwiChangeNotificationL(TInt aSwiOperation)
   244 	Intended Usage	: Called by iSwiChangeNotifier when it is notified of a
   245 					SWI changed.
   246 	Error Condition	: None	
   247 	@since			9.2
   248 	@param			aSwiOperation the SWI operation that is currently taking place
   249 	@pre 			CDiscoverer is fully constructed.
   250 	@post			CDiscoverer has been notified that a re-scan of the
   251 					removable plugin directories is required and has stored current
   252 					SWI operation.
   253  */
   254 	
   255 	void SwiChangeNotificationL(TInt aSwiOperation);
   256 
   257 /**
   258 	@fn				LanguageChangeNotificationL()
   259 	Intended Usage	: Called by iLanguageChangeNotifier when it is notified of language
   260 					downgrade path changed.
   261 	Error Condition	: None	
   262 	@since			9.3
   263 	@pre 			CDiscoverer is fully constructed.
   264 	@post			CDiscoverer has been notified that a rescan may be required
   265  */
   266  	
   267 	void LanguageChangeNotificationL();
   268 
   269 	// Methods used by the Incremental Directory Scanning mechanism
   270 
   271 /**
   272 	@fn				void RediscoveryScanDirectoryL()
   273 	Intended Usage	: Perform a scan on the Interface Implementation 
   274 					Collection directories on a specified drive.
   275 	Error Condition	: Not enough memory available	
   276 	@leave  		KErrNoMemory
   277 	@since			7.0
   278 	@param			:A drive on which the directory is scanned.
   279 	@return			void
   280 	@pre 			CDiscoverer is fully constructed.
   281 	@post			The scan of the Interface Implementation Collection 
   282 					directories has processed on a specified drive.
   283  */
   284 	
   285 	void RediscoveryScanDirectoryL(const TDriveUnit& aDriveUnit);
   286 
   287 /**
   288 	@fn				void ScanDirectoryCancel()
   289 	Intended Usage	: Cancel any scan of the Interface Implementation Collection 
   290 					directories in progress.
   291 	Error Condition	: None	
   292 	@since			7.0
   293 	@return			void 
   294 	@pre 			CDiscoverer is fully constructed.
   295 	@post			The re-scan of the Interface Implementation 
   296 					Collection directories has beed aborted.
   297  */
   298 	
   299 	void ScanDirectoryCancel();
   300 	
   301 /**
   302 	@fn				CompleteNotificationProcessing()
   303 	Intended Usage	: Signal that the directory change notification has
   304 					 been fully processed on all drives.
   305 	Error Condition	: None	
   306 	@since			7.0
   307 	@pre 			CDiscoverer is fully constructed.
   308 	@post			An asynchronous re-scan of the Interface Implementation 
   309 					Collection directories is complete.
   310  */
   311 	
   312 	void CompleteNotificationProcessing();
   313 
   314 /**
   315 	@fn				ValidateEntryL(const TEntry& aEntry, const TDriveName& aDriveName, CPluginBase*& aEntryToFill,TBool aIsRO)
   316 	Intended Usage	: Verify that a Interface Implementation Collection directories entry is valid
   317 					discovery.
   318 	Error Condition	: No memory
   319 	@leave  		KErrNoMemory
   320 	@since			9.1
   321 	@param			aEntry	A directory entry for an Interface Implementation Collection.
   322 	@param			aDriveName	The drive containing this entry
   323 	@param			aEntryToFill A newly created directory entry with the 
   324 					filename updated to include the full path.
   325 	@param			aIsRO	Indicates whether current drive is Read Only
   326 	@pre 			CDiscoverer is fully constructed, 
   327 					aEntry, aPath and aEntryToFill are all valid references.
   328 	@post			aEntryToFill is created and valid, with the full path and filename as its name entry.
   329  */
   330 	
   331 	void ValidateEntryL(const TEntry& aEntry, const TDriveName& aDriveName, CPluginBase*& aEntryToFill, TBool aIsRO);
   332 
   333 /**
   334 	@fn				ValidateEntryL(RResourceArchive& aRscArchive,CPluginBase*& aEntryToFill);
   335 	Intended Usage	: Verify that a Interface Implementation Collection directories entry is valid
   336 					discovery.
   337 	Error Condition	: No memory
   338 	@leave  		KErrNoMemory
   339 	@since			9.1
   340 	@param			aRscArchive A referernce to the resource archive
   341 	@param			aEntryToFill A newly created directory entry with the 
   342 					filename updated to include the full path.
   343 	@pre 			CDiscoverer is fully constructed, 
   344 	@post			aEntryToFill is created and valid, with the full path and filename as its name entry.
   345  */
   346 	
   347 	void ValidateEntryL(RResourceArchive& aRscArchive, CPluginBase*& aEntryToFill);
   348 /**
   349 	@fn				ProcessEntryL(const TDriveName& aDrive,CPluginBase*& aEntry, TBool aAnyDllDiscovered)
   350 	Intended Usage	: Verify that a Interface Implementation Collection directories entry is valid
   351 					discovery.
   352 	Error Condition	: Depends on the observer implementation.	
   353 	@leave  		Depends on the observer implementation. (@see CRegistrar).
   354 	@since			9.1
   355 	@param			aDrive the drive name containing this entry
   356 	@param			aEntry	A directory entry for an Interface Implementation Collection.
   357 	@param			aAnyDllDiscovered a flag to tell if any Dll is discovered in the drive.
   358 	@pre 			CDiscoverer is fully constructed.
   359 	@post			The directory entry has been processed by the observer.
   360  */
   361 	
   362 	void ProcessEntryL(const TDriveName& aDrive, CPluginBase*& aEntry, TBool aAnyDllDiscovered);
   363 
   364 /**
   365 	@fn				DriveMountedL(TDriveUnit aDrive)
   366 	Intended Usage	: Signal a drive is available.
   367 	Error Condition	: Depends on the observer implementation.	
   368 	@leave  		Depends on the observer implementation. @see CRegistrar.
   369 	@since			7.0
   370 	@param			aDrive	The drive to be noted as available.
   371 	@return			void. 
   372 	@pre 			CDiscoverer is fully constructed.
   373 	@post			The drive mount has been signalled to the observer.
   374  */
   375 	
   376 	void DriveMountedL(TDriveUnit aDrive);
   377 
   378 /**
   379 	@fn				DriveUnmountedL(TDriveUnit aDrive)
   380 	Intended Usage	: Signal a drive is unavailable.
   381 	Error Condition	: Leaves with an error code
   382 	@leave			KErrNoMemory
   383 	@since			7.0
   384 	@param			aDrive	The drive to be noted as unavailable.
   385 	@pre 			CDiscoverer is fully constructed.
   386 	@post			The drive dismount has been signalled to the observer.
   387  */
   388 	
   389 	void DriveUnmountedL(TDriveUnit aDrive);
   390 	
   391 	
   392 	
   393 /**
   394 	@fn 			StartNotifiers()
   395 	Intended Usage	: start the iRscDirNotifierList and iSwiChangeNotifier when EDisc_AllPlugins
   396 					state is reached.
   397 	@pre 			: CDiscoverer is fully constructed. and iRscDirNotifierList and iSwiChangeNotifier
   398 					are fully constructed.
   399 	@post			: iRscDirNotifierList Activate and iSwiChangeNotifier Subscribe methods are called.
   400 */
   401 	void StartNotifiers();
   402 	
   403 	
   404 /** 
   405 	@fn 			InitialiseEvent()
   406 	Intended Usage	: called during the CDiscoverer's construction 
   407 					to change the state.
   408 	@pre			: non
   409 	@post			: State is changed from EDisc_Undefined to EDisc_NoPluginsDisc.
   410 */		
   411 	void InitialiseEvent();
   412 	
   413 /**
   414 	@fn				IsAnyDllRegisteredWithDriveL(const TDriveUnit aDrive)
   415 	Intended Usage	: Find if any Dll is registered in the drive.
   416 	@param 			: aDrive the identifier of the drive to find if any Dll is registered.
   417 	@return			: ETrue if any Dll is registered in the drive unit, otherwise EFalse.
   418 	@pre 			: CDiscoverer is fully constructed.
   419 	@post 			: If any Dll registered info will be returned.
   420 */	
   421 	TBool IsAnyDllRegisteredWithDriveL(const TDriveUnit aDrive)const ;	
   422 
   423 /**
   424 	@fn				SwiOperationInProgress()
   425 	Intended Usage	: Determine if any SWI operation is currently in progress
   426 	@return			: ETrue if any SWI operation is in progress otherwise EFalse.
   427 	@pre 			: CDiscoverer is fully constructed.
   428 	@post 			: None
   429 */	
   430 	TBool SwiOperationInProgress() ;
   431 
   432 /**
   433 	@fn				LocaleChangedL(TAny*)
   434 	Intended Usage	: Callback function to be attached to an instance of CEnvironmentChangeNotifier to 
   435 					  rebuild registry data. Note that this has to be a static member function.
   436 	@param 			: A parameter to be passed usually with a "this" pointer so that while the function
   437 					  remaining a static function it can access all the member data anyway.
   438 	@return			: ETrue if language downgrade path is changed, otherwise EFalse.
   439 	@pre 			: CDiscoverer is fully constructed.
   440 	@post 			: Call LanguageChangeNotificationL method to rescan resource files.
   441 */		
   442 	static TInt LocaleChangedL(TAny*) ;
   443 
   444 // Attributes
   445 private:
   446 
   447 	// Define the helper classes which handle the 
   448 	// notification processing.
   449 	class CDirChangeNotifier;
   450 	
   451 	
   452 	typedef RPointerArray<CDirChangeNotifier> RDirChangeNotifierPointerArray;
   453 	// Handles notifications of changes to plugin resources directory on list of drives.
   454 	RDirChangeNotifierPointerArray iRscDirNotifierList;
   455 
   456 	class CSwiChangeNotifier;
   457 
   458 	// Handles notifications of changes to SWI
   459 	CSwiChangeNotifier* iSwiChangeNotifier;
   460 
   461 	// Indicates whether a discovery due to SWI changes is pending
   462 	TBool iSwiChangeDiscoveryPending;
   463 
   464 	//Handle notifications of changes to environment (including language switch)
   465 	CEnvironmentChangeNotifier* iLanguageChangeNotifier	;
   466 
   467 	// Stores the current SWI operation
   468 	TInt iSwiOperation;
   469 
   470 	// Indicates whether a discovery due to language changes is pending
   471 	TBool iLanguageChangeDiscoveryPending;
   472 	
   473 	// the current state of CDiscoverer
   474 	TDiscovererState iState;
   475 	
   476 	class CIdleScanningTimer;
   477 
   478 	// A single timer, processes all pending notifications.
   479 	CIdleScanningTimer* iScanningTimer;
   480 	
   481 	class CDirScanner;
   482 
   483 	/** 
   484 		The internal Interface Implementation Collection 
   485 		identifier and registration handler  
   486 	 */
   487 	
   488 	CDirScanner* iDirScanner;
   489 
   490 	/** A reference to the owning client of the CDiscoverer */
   491 	
   492 	MDiscovererObserver& iDiscovererObserver;
   493 
   494 	/** A reference to the connected file server instance */
   495 	
   496 	RFs& iFs;
   497 
   498 	/** The list of existing drives */
   499 	
   500 	RArray<TUint> iDrivesDiscovered;
   501 
   502 	/** cached info of drives A to Z */
   503 	CEComCachedDriveInfo* iCachedDriveInfo;
   504 	
   505 	TCallBackWithArg iSwiChangeCallBack;
   506 	TCallBackWithArg iBurChangeCallBack;
   507 
   508 	// List the internal classes as friends
   509 	friend class CSwiChangeNotifier;
   510 	friend class CDirChangeNotifier;
   511 	friend class CIdleScanningTimer;
   512 	friend class CDirScanner;
   513 	// And the Test bed state accessor
   514 	friend class TDiscoverer_StateAccessor;
   515 
   516 
   517 };
   518 // __________________________________________________________________________
   519 //
   520 /**
   521 The notification object which uses P&S to monitor SWI KSAUidSoftwareInstallKey 
   522 for changes. When SWI is present in the device/ROM this attribute publishes the
   523 current state of a software install or uninstall.
   524 When its RunL method is called and depending on the install/uninstall state it 
   525 notifies its owning CDiscoverer class object to re-scan removable drives.
   526 
   527 @internalComponent
   528 */
   529 class CDiscoverer::CSwiChangeNotifier : public CActive
   530 	{
   531 public:
   532 
   533 	/**
   534 		@fn				NewL(CDiscoverer& aDiscoverer)
   535 		Intended Usage	: Standardised safe construction which leaves nothing
   536 						  on the cleanup stack.
   537 		Error Condition	: Not enough memory available.	
   538 		@leave  			KErrNoMemory
   539 		@since			9.2
   540 		@param			aDiscoverer A reference to the owning CDiscoverer
   541 		@return			CSwiChangeNotifier* a pointer to the new class
   542 		@pre 			None
   543 		@post			CSwiChangeNotifier is fully constructed, and initialised.
   544 	 */	
   545 	static CSwiChangeNotifier* NewL(CDiscoverer& aDiscoverer);
   546 
   547 	/**
   548 		@fn				virtual ~CSwiChangeNotifier()
   549 		Intended Usage	: Standard default d'tor	
   550 		Error Condition	: None	
   551 		@since			9.2
   552 		@pre 			CSwiChangeNotifier is fully constructed.
   553 		@post			CSwiChangeNotifier is totally destroyed
   554 	 */
   555 	virtual ~CSwiChangeNotifier();
   556 	
   557 	/**
   558 		@fn				Subscribe()
   559 		Intended Usage	: Subscribes with P&S for change notifications for the 
   560                           SWI KSAUidSoftwareInstallKey property
   561 		Error Condition	: None	
   562 		@since			9.2
   563 		@pre 			CSwiChangeNotifier is fully constructed.
   564 		@post			CSwiChangeNotifier is active on the current scheduler.
   565 	 */
   566 	void Subscribe();
   567 
   568 private:
   569 	/**
   570 		@fn				CSwiChangeNotifier(CDiscoverer& aDiscoverer)
   571 		Intended Usage	: Standardised default c'tor	
   572 		Error Condition	: None	
   573 		@since			9.2
   574 		@param			aDiscoverer A reference to its owning class instance.
   575 		@pre 			None
   576 		@post			CSwiChangeNotifier is fully constructed
   577 	 */
   578 	CSwiChangeNotifier(CDiscoverer& aDiscoverer);
   579 
   580 	/**
   581 		@fn				RunL()
   582 		Intended Usage	: When the object activates, this is method is called
   583 						and notifies the CDiscoverer to re-scan the 
   584 						removable drives.. 
   585 		Error Condition	: Not enough memory available to complete the scan.
   586 		@leave  			KErrNoMemory
   587 		@since			9.2
   588 		@pre 			CSwiChangeNotifier is fully constructed.
   589 		@post			CSwiChangeNotifier notifications are subscribed and plugins on
   590 						removable drives have been rediscovered..
   591 	 */
   592 	void RunL();
   593 
   594 	/**
   595 		@fn				void ConstructL()
   596 		Intended Usage	: Standardised 2nd, (Initialisation) phase of two phase construction.
   597 		Error Condition	: Leaves with error code : usually KErrNoMemory.
   598 		@leave  			KErrNoMemory.
   599 		@since			9.2
   600 		@return			void 
   601 		@pre 			CSwiChangeNotifier is fully constructed.
   602 		@post			CSwiChangeNotifier is fully initialised.
   603 	 */
   604 	void ConstructL();
   605 
   606 	/**
   607 		@fn				DoCancel()
   608 		Intended Usage	: The cancel action called by CActive::Cancel(). 
   609 		Error Condition	: None	
   610 		@since			9.2
   611 		@pre 			CSwiChangeNotifier is fully constructed.
   612 		@post			CSwiChangeNotifier notifications are cancelled and
   613 						it is no longer active on the current scheduler.
   614 	 */
   615 	void DoCancel();
   616 
   617 	/**
   618 		@fn				RunError(TInt aError)
   619 		Intended Usage	: Called by the notifier RunL leaving.
   620 		@since			9.2
   621 		@param			aError The error code that the RunL left with.
   622 		@return			TInt KErrNone. 
   623 		@pre 			CSwiChangeNotifier is fully constructed.
   624 		@post			CSwiChangeNotifier is returned to a
   625 						sensible active state.
   626 	 */
   627 	TInt RunError(TInt aError);
   628 
   629 private:
   630 	/** A reference to its owning class instance */
   631 	CDiscoverer& iDiscoverer;	
   632 	/** Handle allowing access to P&S properties */
   633 	RProperty iProperty;
   634 	/** Friend class to enable access to private members for testing. */
   635 	friend class TDiscoverer_StateAccessor;
   636 	};
   637 
   638 // __________________________________________________________________________
   639 //
   640 /**
   641 	@internalComponent
   642 	@since 7.0
   643 	The notification object which watches the Interface Implementation Collection directories for
   644 	any changes.
   645 	When its RunL method is called, it notifies its owning CDiscoverer class
   646 	object to re-scan the Interface Implementation Collection directories.
   647  */
   648 class CDiscoverer::CDirChangeNotifier : public CActive
   649 	{
   650 public:
   651 	/**
   652 		@fn				CDirChangeNotifier(CDiscoverer& aDiscoverer, RFs& aFs, const TDesC& aNotificationFilePath)
   653 		Intended Usage	: Standardised default c'tor	
   654 		Error Condition	: None	
   655 		@since			7.0
   656 		@param			aDiscoverer A reference to its owning class instance.
   657 		@param			aFs A reference to a connected file server instance.
   658 		@param			aNotificationFilePath A reference to the file path that is to be watched.
   659 		@param			aDriveUnit A drive which the notification object watches for.
   660 		@pre 			None
   661 		@post			CDirChangeNotifier is fully constructed
   662 	 */
   663 	CDirChangeNotifier(CDiscoverer& aDiscoverer, RFs& aFs,const TDriveUnit& aDriveUnit);
   664 	/**
   665 		@fn				virtual ~CDirChangeNotifier()
   666 		Intended Usage	: Standard default d'tor	
   667 		Error Condition	: None	
   668 		@since			7.0
   669 		@pre 			CDirChangeNotifier is fully constructed.
   670 		@post			CDirChangeNotifier is totally destroyed
   671 	 */
   672 	virtual ~CDirChangeNotifier();
   673 	/**
   674 		@fn				Activate()
   675 		Intended Usage	: Activate the notifier and attach it to the File 
   676 						session to watch the appropriate Interface Implementation Collection directories. 
   677 		Error Condition	: None	
   678 		@since			7.0
   679 		@pre 			CDirChangeNotifier is fully constructed.
   680 		@post			CDirChangeNotifier is active on the current scheduler.
   681 	 */
   682 	void Activate();
   683 
   684 private:
   685 	/**
   686 		@fn				RunL()
   687 		Intended Usage	: When the object activates, this is method is called
   688 						and notifies the CDiscoverer to re-scan the 
   689 						Interface Implementation Collection	directories. 
   690 		Error Condition	: Not enough memory available to complete the scan.
   691 		@leave  		KErrNoMemory
   692 		@since			7.0
   693 		@pre 			CDirChangeNotifier is fully constructed.
   694 		@post			CDirChangeNotifier notifications are cancelled and
   695 						it is no longer active on the current scheduler.
   696 	 */
   697 	void RunL();
   698 	/**
   699 		@fn				DoCancel()
   700 		Intended Usage	: The cancel action called by CActive::Cancel(). 
   701 		Error Condition	: None	
   702 		@since			7.0
   703 		@pre 			CDirChangeNotifier is fully constructed.
   704 		@post			CDirChangeNotifier notifications are cancelled and
   705 						it is no longer active on the current scheduler.
   706 	 */
   707 	void DoCancel();
   708 
   709 	/**
   710 		@fn				RunError(TInt aError)
   711 		Intended Usage	: Called by the notifier RunL leaving.
   712 		@since			7.0
   713 		@param			aError The error code that the RunL left with.
   714 		@return			TInt KErrNone. 
   715 		@pre 			CDirChangeNotifier is fully constructed.
   716 		@post			CDirChangeNotifier is returned to a
   717 						sensible active state.
   718 	 */
   719 	TInt RunError(TInt aError);
   720 
   721 private:
   722 	/** A reference to its owning class instance */
   723 	CDiscoverer& iDiscoverer;	
   724 	/** A reference to a connected file server instance */
   725 	RFs&	iFs;
   726 	/** The file path for a specific drivethat we are interested in.*/
   727 	//const TDesC& iNotificationFilePath;
   728 	typedef TBuf<KEComPlugRSCPathMaxLen> TResourcePathName;
   729 	TResourcePathName iNotificationFilePath;
   730 
   731 	/** A drive which the notification object watches for.*/
   732 	TDriveUnit iDriveUnit;
   733 	/** Friend class to enable access to private members for testing. */
   734 	friend class TDiscoverer_StateAccessor;
   735 	};
   736 
   737 /**
   738 	@since 7.0	
   739 	The timer Active object for providing incremental plugin directory scanning. 
   740 	Note that task execution is dependant upon the task priority
   741 	The default priority is idle time execution only.
   742 	This object controls the yielding of time to other processes by having a low priority
   743 	but requesting immediate reactivation, after each incremental part of the directory scan.
   744 	It is launched by the CDirChangeNotifier's notification call.
   745  */
   746 class CDiscoverer::CIdleScanningTimer : public CTimer
   747 	{
   748 public:
   749 	/**
   750 		@fn				NewL(CDiscoverer& aDiscoverer)
   751 		Intended Usage	: Standardised safe construction which leaves nothing
   752 						  on the cleanup stack.
   753 		Error Condition	: Not enough memory available.	
   754 		@leave  		KErrNoMemory
   755 		@since			7.0
   756 		@param			aDiscoverer A reference to the owning CDiscoverer
   757 		@return			CIdleScanningTimer* a pointer to the new class
   758 		@pre 			None
   759 		@post			CIdleScanningTimer is fully constructed, and initialised.
   760 	 */	
   761 	static CIdleScanningTimer* NewL(CDiscoverer& aDiscoverer);
   762 	/**
   763 		@fn				virtual ~CIdleScanningTimer()
   764 		Intended Usage	: Standard default d'tor	
   765 		Error Condition	: None	
   766 		@since			7.0
   767 		@pre 			CIdleScanningTimer is fully constructed.
   768 		@post			CIdleScanningTimer is totally destroyed
   769 	 */
   770 	virtual ~CIdleScanningTimer();
   771 	
   772 	/** 
   773 		@fn				AddDriveL(TDriveUnit aDrive)
   774 		Intended Usage	: Add a drive for processing notification
   775 		Error Condition	: None	
   776 		@leave  		System wide error codes.
   777 		@param			aDrive The drive to be added.
   778 		@post			The drive number added into pending list only if it has not been added before
   779 	 */
   780 	inline void AddDriveL(const TDriveUnit aDrive)
   781 		{
   782 		if(iPendingDriveList.Find(aDrive) == KErrNotFound)
   783 			{
   784 			iPendingDriveList.AppendL(aDrive);
   785 			}
   786 		}
   787 	
   788 	/**
   789 		@fn				IsAnyNotificationProcessingPending()
   790 		Intended Usage	: To check if there is any notification waiting to be processed.
   791 		@return			TBool A flag indicating if there is any pending notification to be processed
   792 	 */	
   793 	inline TBool IsAnyNotificationProcessingPending()
   794 		{
   795 		if(iPendingDriveList.Count())
   796 			return ETrue;
   797 		return EFalse;
   798 		}
   799 	
   800 	/**
   801 		@fn				RestartScanPeriod()
   802 		Intended Usage	: Called to restart the scanning period.
   803 		Error Condition	: None	
   804 		@pre 			CIdleScanningTimer is fully constructed.
   805 		@post			CIdleScanningTimer is activated and will process pending drives list, if the timer has not been suspended
   806 	 */
   807 	void RestartScanPeriod();
   808 	
   809 	/**
   810 		@fn				Suspend()
   811 		Intended Usage	: Called to suspend the scanning timer, disabling the scanning from being restarted.
   812 		Error Condition	: None	
   813 		@pre 			CIdleScanningTimer is fully constructed.
   814 		@post			CIdleScanningTimer is set as suspended. No re-discovery will take place.
   815 	 */
   816 	void Suspend();
   817 	
   818 	/**
   819 		@fn				Resume()
   820 		Intended Usage	: Called to resume the scanning timer, and enable scanning to be restarted.
   821 		Error Condition	: None	
   822 		@pre 			CIdleScanningTimer is fully constructed.
   823 		@post			CIdleScanningTimer is set as resumed. Re-discovery will take place.
   824 	 */
   825 	void Resume();
   826 
   827 private:
   828 	/**
   829 		@fn				CIdleScanningTimer(CDiscoverer& aDiscoverer)
   830 		Intended Usage	: Standardised default c'tor made explicit to avoid unintentional
   831 						conversion construction by the compiler.	
   832 		Error Condition	: None	
   833 		@since			7.0
   834 		@param			aDiscoverer A reference to its owning class instance.
   835 		@pre 			None
   836 		@post			CIdleScanningTimer is fully constructed
   837 	 */
   838 	explicit CIdleScanningTimer(CDiscoverer& aDiscoverer);
   839 	/**
   840 		@fn				void ConstructL()
   841 		Intended Usage	: Standardised 2nd, (Initialisation) phase of two phase construction.
   842 		Error Condition	: Leaves with error code : usually KErrNoMemory.
   843 		@leave  		KErrNoMemory.
   844 		@since			7.0
   845 		@return			void 
   846 		@pre 			CIdleScanningTimer is fully constructed.
   847 		@post			CIdleScanningTimer is fully initialised.
   848 	 */
   849 	void ConstructL();
   850 
   851 	/**
   852 		@fn				DoCancel()
   853 		Intended Usage	: The cancel action called by CActive::Cancel(). 
   854 		Error Condition	: None	
   855 		@since			7.0
   856 		@pre 			CIdleScanningTimer is fully constructed.
   857 		@post			CIdleScanningTimer is no longer active on the current scheduler.
   858 	 */
   859 	void DoCancel();
   860 
   861 	/**
   862 		@fn				RunL()
   863 		Intended Usage	: When the object activates, this method calls
   864 						the CDiscoverer to continue the incremental scan 
   865 						of the Interface Implementation Collection directories. 
   866 		Error Condition	: Not enough memory available to add to complete the scan.
   867 		@leave  		KErrNoMemory
   868 		@since			7.0
   869 		@pre 			CIdleScanningTimer is fully constructed.
   870 		@post			The Interface Implementation Collection directories Scan has completed another step and the
   871 						CIdleScanningTimer has been re-activated for the next step
   872 						OR The Interface Implementation Collection directories Scan is complete and the 
   873 						CDirChangeNotifier has been re-activated.
   874 	 */
   875 	void RunL();
   876 
   877 	/**
   878 		@fn				RunError(TInt aError)
   879 		Intended Usage	: Called when the directory change
   880 						notification processing failed by leaving.
   881 		@since			7.0
   882 		@param			aError The error code that the RunL left with.
   883 		@return			TInt KErrNone. 
   884 		@pre 			CIdleScanningTimer is fully constructed.
   885 		@post			CIdleScanningTimer is non-active.
   886 	 */
   887 	TInt RunError(TInt aError);
   888 
   889 private:
   890 	/** A reference to its owning class instance */
   891 	CDiscoverer& iDiscoverer;	
   892 
   893 	/** 
   894 		An array of drives to be processed.
   895 	*/
   896 	RArray<TUint> iPendingDriveList;
   897 	
   898 	/**
   899 		A flag to indicate if the timer is suspended or not.
   900 	*/
   901 	TBool iSuspended;
   902 
   903 	// List the internal classes as friends
   904 	// the Test bed state accessor
   905 	friend class TDiscoverer_StateAccessor;
   906 	};
   907 
   908 
   909 
   910 /**
   911 	CDirScanner implements incremental scanning of the Interface Implementation 
   912 	Collection directories on behalf of the CDiscoverer.
   913 	Its methods are called in response to the timer task execution,
   914 	thereby requiring the incremental scheduling.
   915  */ 
   916 class CDiscoverer::CDirScanner : public CBase
   917 	{
   918 // Methods
   919 public:
   920 	/**
   921 		@fn				CDirScanner(CDiscoverer& aDiscoverer, RFs& aFs)
   922 		Intended Usage	: Standardised safe construction which leaves nothing
   923 						  on the cleanup stack.
   924 		Error Condition	: Not enough memory available.	
   925 		@leave  		KErrNoMemory
   926 		@since			7.0
   927 		@param			aDiscoverer A reference to its owning class instance.
   928 		@param			aFs A reference to a connected file server instance.
   929 		@return			CDirScanner* a pointer to the new class
   930 		@pre 			None
   931 		@post			CDirScanner is fully constructed, and initialised.
   932 	 */
   933 	static CDirScanner* NewL(CDiscoverer& aDiscoverer, RFs& aFs);
   934 
   935 	/**
   936 		@fn				virtual ~CDirScanner()
   937 		Intended Usage	: Standard default d'tor	
   938 		Error Condition	: None	
   939 		@since			7.0
   940 		@pre 			CDirScanner is fully constructed.
   941 		@post			CDirScanner is totally destroyed
   942 	 */
   943 	virtual ~CDirScanner();
   944 
   945 	
   946 	/**
   947 		@fn				DiscoverPluginsL()
   948 		Intended Usage	: Discover the plugins the specific drive units.
   949 		@param			: aIsRO a flag to show if the Drive Units list is RO Internal or not.
   950 		@pre 			: CDiscoverer is fully constructed.iDirScanner is fully constructed.
   951 		@pre			: CDirScanner is fully constructed.
   952 		@post			: the plugins on the specific Drive Units have been discovered.
   953 	 */
   954 	 void DiscoverPluginsL(TBool aDiscoverReadOnlyDrives);
   955 
   956 	/**
   957 		@fn				ScanDriveL(TDriveUnit aDrive)
   958 		Intended Usage	: Helper method for StartScanL.
   959 						Scan a drive for the Interface Implementation Collection directories
   960 						and identify any Interface Implementation 
   961 						Collections within that directory
   962 						for addition to the registry. 
   963 		Error Condition	: None	
   964 		@leave  		KErrNoMemory
   965 		@since			7.0
   966 		@param			aDrive The drive to scan.
   967 		@param			aIsRO A flag to tell if the drive unit is RO or Non-RO
   968 		@pre 			CDirScanner is fully constructed.
   969 		@post			Another drive's Interface Implementation Collection directories has been scanned,
   970 	 */
   971 	void ScanDriveL(const TDriveUnit& aDrive,  TBool aIsRO);
   972 
   973 private:
   974 	/**
   975 		@fn				CDirScanner(CDiscoverer& aDiscoverer, RFs& aFs)
   976 		Intended Usage	: Standardised default c'tor. 
   977 		Error Condition	: None	
   978 		@since			7.0
   979 		@param			aDiscoverer A reference to its owning class instance.
   980 		@param			aFs A reference to a connected file server instance.
   981 		@pre 			None
   982 		@post			CDirScanner is fully constructed
   983 	 */
   984 	CDirScanner(CDiscoverer& aDiscoverer, RFs& aFs);
   985 
   986 	/**
   987 		@fn				void ConstructL()
   988 		Intended Usage	: Standardised 2nd, (Initialisation) phase of two phase construction.
   989 		Error Condition	: Leaves with error code : usually KErrNoMemory.
   990 		@leave  		KErrNoMemory.
   991 		@since			7.0
   992 		@return			void 
   993 		@pre 			CDirScanner is fully constructed.
   994 		@post			CDirScanner is fully initialised.
   995 	 */
   996 	void ConstructL();
   997 
   998 
   999 
  1000 	/**
  1001 		@fn				DoScanDriveL(const TDriveUnit aDrive, const TUidType aUidType)
  1002 		Intended Usage	: Helper method for StartScanL.
  1003 						Scan a drive for the Interface Implementation Collection directories
  1004 						and identify any Interface Implementation 
  1005 						Collections within that directory
  1006 						for addition to the registry. 
  1007 		Error Condition	: None	
  1008 		@leave  		KErrNoMemory
  1009 		@since			9.0
  1010 		@param			aDrive The drive to scan.
  1011 		@param			aUidType The uid type to be searched for.
  1012 		@param			aIsRO Indicates whether the current drive is read Only.
  1013 		@pre 			CDirScanner is fully constructed.
  1014 		@post			Another drive's Interface Implementation Collection directories has been scanned,
  1015 	 */
  1016 	TBool DoScanDriveL(const TDriveUnit& aDrive, const TUidType& aUidType, TBool aIsRO);
  1017 
  1018 	/**
  1019 		@fn				DoScanSpiFileL(const TParse aSpiPath)
  1020 		Intended Usage	: Helper method for StartScanL.
  1021 						Scan a SPI file for the Interface Implementation Collection directories
  1022 						and identify any Interface Implementation Collections within that directory
  1023 						for addition to the registry. 
  1024 		Error Condition	: None	
  1025 		@leave  		KErrNoMemory
  1026 		@since			9.0
  1027 		@param			aSpiPath The SPI file to scan.
  1028 		@pre 			CDirScanner is fully constructed.
  1029 		@post			Another drive's Interface Implementation Collection has been scanned from an SPI file.
  1030 	 */
  1031 	TBool DoScanSpiFileL(const TParse& aSpiPath);
  1032 
  1033 	
  1034 // Attributes / Properties
  1035 private:
  1036 	/** A reference to its owning class instance */
  1037 	CDiscoverer& iDiscoverer;	
  1038 	/** A reference to a connected file server instance */
  1039 	RFs&	iFs;
  1040 	/** The Full Interface Implementation Collection Directory path */
  1041 	
  1042 	// List the internal classes as friends
  1043 	// the Test bed state accessor
  1044 	friend class TDiscoverer_StateAccessor;
  1045 
  1046 
  1047 };  // CDirScanner
  1048 
  1049 #endif // __DISCOVERER_H__
  1050