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