os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/Discoverer.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.
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
// Contains the implementation 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
#include <e32uid.h>
sl@0
    24
#include <startup.hrh> // for EStartupStateNonCritical and EStartupStateCritical
sl@0
    25
#include <bacntf.h>
sl@0
    26
sl@0
    27
#include <sacls.h>
sl@0
    28
sl@0
    29
#include "EComDebug.h"
sl@0
    30
#include "TestUtilities.h"	// For __FILE__LINE__
sl@0
    31
#include "Discoverer.h"
sl@0
    32
#include "DiscovererObserver.h"
sl@0
    33
#include "EComUidCodes.h"
sl@0
    34
#include "baspi.h"
sl@0
    35
#include "bautils.h"
sl@0
    36
#include "DriveInfo.h"
sl@0
    37
#include <ecom/ecomerrorcodes.h>
sl@0
    38
#include <saclscommon.h>
sl@0
    39
sl@0
    40
sl@0
    41
#define UNUSED_VAR(a) a = a
sl@0
    42
sl@0
    43
sl@0
    44
/** Interface Implementation Collection resource file search path */
sl@0
    45
_LIT(KEComResourceFileSearch,	"\\resource\\plugins\\*");
sl@0
    46
sl@0
    47
_LIT(KEComResourceFilePathAny,	"\\resource\\plugins\\");
sl@0
    48
_LIT(KEComResourceFolderPath,	"?:\\resource\\plugins\\"); 
sl@0
    49
sl@0
    50
// Relative to the Drive with a fixed path
sl@0
    51
_LIT(KEComSPIFilePath, "\\private\\10009D8F\\");
sl@0
    52
sl@0
    53
/** 
sl@0
    54
	Begin directory scanning after a delay of 1 Second
sl@0
    55
	Allowing multiple directory changes to be applied before
sl@0
    56
	beginning a scan.
sl@0
    57
 */
sl@0
    58
static const TInt32 KEComDefaultBeginScanPeriod	=	1000000;
sl@0
    59
sl@0
    60
// __________________________________________________________________________
sl@0
    61
//
sl@0
    62
CDiscoverer::CSwiChangeNotifier* CDiscoverer::CSwiChangeNotifier::NewL(CDiscoverer& aDiscoverer)
sl@0
    63
	{
sl@0
    64
	CSwiChangeNotifier* self = new(ELeave) CSwiChangeNotifier(aDiscoverer);
sl@0
    65
	CleanupStack::PushL(self);
sl@0
    66
	self->ConstructL();
sl@0
    67
	CleanupStack::Pop(self);
sl@0
    68
	return self;
sl@0
    69
	}
sl@0
    70
sl@0
    71
CDiscoverer::CSwiChangeNotifier::CSwiChangeNotifier(CDiscoverer& aDiscoverer)
sl@0
    72
: CActive(CActive::EPriorityHigh), iDiscoverer(aDiscoverer)
sl@0
    73
	{
sl@0
    74
	// Safe because it cannot fail
sl@0
    75
	CActiveScheduler::Add(this);
sl@0
    76
	}
sl@0
    77
sl@0
    78
void CDiscoverer::CSwiChangeNotifier::ConstructL()
sl@0
    79
	{
sl@0
    80
	// Attach to SWI property
sl@0
    81
	User::LeaveIfError(
sl@0
    82
        iProperty.Attach(KUidSystemCategory, KSAUidSoftwareInstallKeyValue));
sl@0
    83
	}
sl@0
    84
sl@0
    85
CDiscoverer::CSwiChangeNotifier::~CSwiChangeNotifier()
sl@0
    86
	{
sl@0
    87
	Cancel();
sl@0
    88
	iProperty.Close();
sl@0
    89
	}
sl@0
    90
sl@0
    91
void CDiscoverer::CSwiChangeNotifier::DoCancel()
sl@0
    92
	{
sl@0
    93
	iProperty.Cancel();	// Cancel SWI change notifications
sl@0
    94
	}
sl@0
    95
sl@0
    96
void CDiscoverer::CSwiChangeNotifier::Subscribe()
sl@0
    97
	{
sl@0
    98
	if(!IsActive())
sl@0
    99
		{
sl@0
   100
		iProperty.Subscribe(iStatus);
sl@0
   101
		SetActive();
sl@0
   102
		}
sl@0
   103
	}
sl@0
   104
sl@0
   105
void CDiscoverer::CSwiChangeNotifier::RunL()
sl@0
   106
	{
sl@0
   107
	Subscribe();
sl@0
   108
	
sl@0
   109
	TInt swiProperty;
sl@0
   110
	User::LeaveIfError(
sl@0
   111
        iProperty.Get(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, swiProperty));
sl@0
   112
sl@0
   113
	// Do a discovery each time an install, uninstall or restore is completed.
sl@0
   114
	iDiscoverer.SwiChangeNotificationL(swiProperty);	
sl@0
   115
	}
sl@0
   116
sl@0
   117
TInt CDiscoverer::CSwiChangeNotifier::RunError(TInt /*aError*/)
sl@0
   118
	{
sl@0
   119
	//If unable to read the SWI P&S variable set the 
sl@0
   120
	//discoverers SWI state to ESASwiNone as this will return
sl@0
   121
	//EComs back to its default behaviour
sl@0
   122
	TRAP_IGNORE(iDiscoverer.SwiChangeNotificationL(ESASwisNone));	
sl@0
   123
	return KErrNone; //avoid CActiveScheduler panic
sl@0
   124
	}
sl@0
   125
sl@0
   126
// __________________________________________________________________________
sl@0
   127
//
sl@0
   128
/*
sl@0
   129
	The notification object which watches the Interface Implementation 
sl@0
   130
	Collection directories for any changes on specific drive.
sl@0
   131
	When its RunL method is called, it notifies its owning CDiscoverer class
sl@0
   132
	object to re-scan of the Interface Implementation Collection directories.
sl@0
   133
*/
sl@0
   134
CDiscoverer::CDirChangeNotifier::CDirChangeNotifier(CDiscoverer& aDiscoverer, RFs& aFs, const TDriveUnit& aDriveUnit)
sl@0
   135
: CActive(CActive::EPriorityHigh), iDiscoverer(aDiscoverer), iFs(aFs),iDriveUnit(aDriveUnit)
sl@0
   136
	{
sl@0
   137
	
sl@0
   138
	iNotificationFilePath.Append(iDriveUnit.Name());
sl@0
   139
	iNotificationFilePath.Append(KEComResourceFilePathAny);
sl@0
   140
	// Safe because it cannot fail
sl@0
   141
	CActiveScheduler::Add(this);
sl@0
   142
	}
sl@0
   143
sl@0
   144
CDiscoverer::CDirChangeNotifier::~CDirChangeNotifier()
sl@0
   145
	{
sl@0
   146
	Cancel();
sl@0
   147
	}
sl@0
   148
sl@0
   149
void CDiscoverer::CDirChangeNotifier::DoCancel()
sl@0
   150
	{
sl@0
   151
	iFs.NotifyChangeCancel(iStatus);	// Cancel change notifications
sl@0
   152
	}
sl@0
   153
sl@0
   154
void CDiscoverer::CDirChangeNotifier::Activate()
sl@0
   155
	{
sl@0
   156
	if(!IsActive())
sl@0
   157
		{
sl@0
   158
		iStatus = KRequestPending;
sl@0
   159
		SetActive();
sl@0
   160
		iFs.NotifyChange(ENotifyEntry, iStatus, iNotificationFilePath); 
sl@0
   161
		}
sl@0
   162
	}
sl@0
   163
sl@0
   164
void CDiscoverer::CDirChangeNotifier::RunL()
sl@0
   165
	{
sl@0
   166
	RECORD_START_NOTIFIER_RUNL_TIMER_RESULT(iDriveUnit)
sl@0
   167
	// Signal the notification
sl@0
   168
	// If iStatus.Int() is not KErrNone
sl@0
   169
	// then reactivation will not occur
sl@0
   170
	if(iDiscoverer.NotificationL(iStatus.Int(), iDriveUnit))
sl@0
   171
		Activate();
sl@0
   172
	RECORD_END_NOTIFIER_RUNL_TIMER_RESULT(iDriveUnit)
sl@0
   173
	}
sl@0
   174
sl@0
   175
TInt CDiscoverer::CDirChangeNotifier::RunError(TInt aError)
sl@0
   176
	{
sl@0
   177
	// Entered most likely because of an error condition during file system
sl@0
   178
    // rescanning and plugin registration that could not be handled locally. 
sl@0
   179
    // As indexes in the registry are updated after each registration and the
sl@0
   180
	// tree of registrations is updated at the end for some scan use-cases there
sl@0
   181
	// is a chance that the registration tree and the indexes can get out of 
sl@0
   182
    // sync when a leave occurs. 
sl@0
   183
    // The code is not present to handle a recovery so the best policy 
sl@0
   184
    // is to panic the server and have it restart on next use.
sl@0
   185
    // We can't trap leaves in RunL() and continue as we can not be sure the 
sl@0
   186
    // registry is in sync. The registry and discovery code would need to be 
sl@0
   187
    // totally reviewed and reworked if panic's were not acceptable. So far they 
sl@0
   188
    // have allowed error conditions found in the field to be reported as 
sl@0
   189
    // incidents allowing us to idenitify and resovle the underlying causes.
sl@0
   190
	__ECOM_LOG1("ECOM: PANIC in CDiscoverer::CDirChangeNotifier::RunError(), error= %d", aError);
sl@0
   191
	User::Panic(KEComServerPanicCategory, EEComPanic_CDiscoverer_CDirChangeNotifier_RunError);
sl@0
   192
	return KErrNone;   // dummy return to stop warnings on missing return
sl@0
   193
	}
sl@0
   194
sl@0
   195
// __________________________________________________________________________
sl@0
   196
//
sl@0
   197
/*
sl@0
   198
	The timer Active object for providing plugin directory scanning on rediscovery events. 
sl@0
   199
	The processing of notification will be performed only on drive(s) that has notification event(s)
sl@0
   200
	triggered on it.
sl@0
   201
	It uses data member iPendingDriveList to hold all pending drive nums, and executes only once. 
sl@0
   202
	It is activated by the CDirChangeNotifier's notification call. 
sl@0
   203
	The default priority is idle time execution only.
sl@0
   204
*/
sl@0
   205
CDiscoverer::CIdleScanningTimer* CDiscoverer::CIdleScanningTimer::NewL(CDiscoverer& aDiscoverer)
sl@0
   206
	{
sl@0
   207
	CIdleScanningTimer* self = new(ELeave) CIdleScanningTimer(aDiscoverer);
sl@0
   208
	CleanupStack::PushL(self);
sl@0
   209
	self->ConstructL();
sl@0
   210
	CleanupStack::Pop(self);
sl@0
   211
	return self;
sl@0
   212
	}
sl@0
   213
CDiscoverer::CIdleScanningTimer::CIdleScanningTimer(CDiscoverer& aDiscoverer)
sl@0
   214
: CTimer(CActive::EPriorityIdle), iDiscoverer(aDiscoverer), iPendingDriveList(2)
sl@0
   215
	{
sl@0
   216
	// Safe because it cannot fail
sl@0
   217
	CActiveScheduler::Add(this);
sl@0
   218
	}
sl@0
   219
sl@0
   220
void CDiscoverer::CIdleScanningTimer::ConstructL()
sl@0
   221
	{
sl@0
   222
	CTimer::ConstructL();
sl@0
   223
	}
sl@0
   224
sl@0
   225
CDiscoverer::CIdleScanningTimer::~CIdleScanningTimer()
sl@0
   226
	{
sl@0
   227
	Cancel();
sl@0
   228
	iPendingDriveList.Close();
sl@0
   229
	}
sl@0
   230
sl@0
   231
void CDiscoverer::CIdleScanningTimer::DoCancel()
sl@0
   232
	{
sl@0
   233
	// Call the base class to ensure the timer is cancelled
sl@0
   234
	CTimer::DoCancel();
sl@0
   235
sl@0
   236
	iDiscoverer.ScanDirectoryCancel();
sl@0
   237
	}
sl@0
   238
sl@0
   239
void CDiscoverer::CIdleScanningTimer::RunL()
sl@0
   240
//	When the object activates on a specfic drive, this is method is called
sl@0
   241
//  and delegates to the CDiscoverer to scan the Interface Implementation 
sl@0
   242
//	Collection directories
sl@0
   243
//
sl@0
   244
	{
sl@0
   245
	// Only carry out a rediscovery if SWI is not in progress
sl@0
   246
	if(!iDiscoverer.SwiOperationInProgress()) 
sl@0
   247
		{
sl@0
   248
		RECORD_START_TIMER_RUNL_TIMER_RESULT
sl@0
   249
		// Do scan on all pending drives stored in iPendingDriveList array
sl@0
   250
		TInt length = iPendingDriveList.Count();
sl@0
   251
		for(TInt count = 0; count < length; ++count)
sl@0
   252
			{
sl@0
   253
			iDiscoverer.RediscoveryScanDirectoryL(TDriveUnit(iPendingDriveList[count]));
sl@0
   254
			}
sl@0
   255
	
sl@0
   256
		// Signal the observer that the scans have been completed successfully.
sl@0
   257
		iDiscoverer.iDiscovererObserver.DiscoveriesComplete(ETrue, EPluginProcessingTypeAll);
sl@0
   258
		// Reset pending drive list when finishes scan.
sl@0
   259
		iPendingDriveList.Reset();
sl@0
   260
		// Reset the state of discoverer as all notifications processed.
sl@0
   261
		iDiscoverer.CompleteNotificationProcessing();
sl@0
   262
		RECORD_END_TIMER_RUNL_TIMER_RESULT
sl@0
   263
		}
sl@0
   264
	}
sl@0
   265
sl@0
   266
TInt CDiscoverer::CIdleScanningTimer::RunError(TInt aError)
sl@0
   267
	{
sl@0
   268
	// Entered most likely because of an error condition during file system
sl@0
   269
    // rescanning and plugin registration that could not be handled locally. 
sl@0
   270
    // As indexes in the registry are updated after each registration and the
sl@0
   271
	// tree of registrations is updated at the end for some scan use-cases there
sl@0
   272
	// is a chance that the registration tree and the indexes can get out of 
sl@0
   273
    // sync when a leave occurs. 
sl@0
   274
    // The code is not present to handle a recovery so the best policy 
sl@0
   275
    // is to panic the server and have it restart on next use.
sl@0
   276
    // We can't trap leaves in RunL() and continue as we can not be sure the 
sl@0
   277
    // registry is in sync. The registry and discovery code would need to be 
sl@0
   278
    // totally reviewed and reworked if panic's were not acceptable. So far they 
sl@0
   279
    // have allowed error conditions found in the field to be reported as 
sl@0
   280
    // incidents allowing us to idenitify and resovle the underlying causes.
sl@0
   281
	__ECOM_LOG1("ECOM: PANIC in CDiscoverer::CIdleScanningTimer::RunError(), error = %d", aError);
sl@0
   282
	User::Panic(KEComServerPanicCategory, EEComPanic_CDiscoverer_CIdleScanningTimer_RunError);
sl@0
   283
	return KErrNone;	// dummy return to stop warnings on mising return
sl@0
   284
	}
sl@0
   285
	
sl@0
   286
void CDiscoverer::CIdleScanningTimer::RestartScanPeriod()
sl@0
   287
	{
sl@0
   288
	if (!iSuspended)
sl@0
   289
		{
sl@0
   290
		Cancel();
sl@0
   291
		After(KEComDefaultBeginScanPeriod);
sl@0
   292
		}
sl@0
   293
	}
sl@0
   294
	
sl@0
   295
void CDiscoverer::CIdleScanningTimer::Suspend()
sl@0
   296
	{
sl@0
   297
	Cancel();
sl@0
   298
	iSuspended = ETrue;
sl@0
   299
	}
sl@0
   300
	
sl@0
   301
void CDiscoverer::CIdleScanningTimer::Resume()
sl@0
   302
	{
sl@0
   303
	iSuspended = EFalse;
sl@0
   304
	if(IsAnyNotificationProcessingPending())
sl@0
   305
		{
sl@0
   306
		RestartScanPeriod();
sl@0
   307
		}
sl@0
   308
	}
sl@0
   309
// __________________________________________________________________________
sl@0
   310
//
sl@0
   311
/*
sl@0
   312
		CDirScanner implements incremental scanning of the Interface Implementation 
sl@0
   313
		Collection directory 
sl@0
   314
		on behalf of the CDiscoverer.
sl@0
   315
		It's methods are called in response to the timer task execution,
sl@0
   316
		thereby requiring the incremental scheduling.
sl@0
   317
*/
sl@0
   318
CDiscoverer::CDirScanner* CDiscoverer::CDirScanner::NewL(CDiscoverer& aDiscoverer, RFs& aFs)
sl@0
   319
	{
sl@0
   320
	CDirScanner* self = new(ELeave)CDirScanner(aDiscoverer,aFs);
sl@0
   321
	CleanupStack::PushL(self);
sl@0
   322
	self->ConstructL();
sl@0
   323
	CleanupStack::Pop(self);
sl@0
   324
	return self;
sl@0
   325
	}
sl@0
   326
sl@0
   327
void CDiscoverer::CDirScanner::ConstructL()
sl@0
   328
	{
sl@0
   329
	}
sl@0
   330
sl@0
   331
CDiscoverer::CDirScanner::CDirScanner(CDiscoverer& aDiscoverer, RFs& aFs)
sl@0
   332
: CBase(), iDiscoverer(aDiscoverer), iFs(aFs)
sl@0
   333
	{
sl@0
   334
	}
sl@0
   335
sl@0
   336
CDiscoverer::CDirScanner::~CDirScanner()
sl@0
   337
// D'tor
sl@0
   338
	{
sl@0
   339
	}
sl@0
   340
	
sl@0
   341
sl@0
   342
void CDiscoverer::CDirScanner::ScanDriveL(const TDriveUnit& aDrive,  TBool aIsRO)
sl@0
   343
	{
sl@0
   344
	RECORD_START_REDISCOVERYSCANDIRECTORY_RESULT(aDrive)
sl@0
   345
	TDriveName driveName(aDrive.Name());
sl@0
   346
	TBool scanDirectoryForPlugins = ETrue;
sl@0
   347
	TBool found = EFalse;
sl@0
   348
sl@0
   349
	
sl@0
   350
	// If RO then attempt to discover plugins from SPI file
sl@0
   351
	if(aIsRO)
sl@0
   352
		{
sl@0
   353
		TFileName spiFilePath;
sl@0
   354
		spiFilePath.Append(driveName);
sl@0
   355
		spiFilePath.Append(KEComSPIFilePath);
sl@0
   356
		
sl@0
   357
		TEntry entry;
sl@0
   358
		//check if the path exists
sl@0
   359
		if (iFs.Entry(spiFilePath,entry)==KErrNone)
sl@0
   360
			{
sl@0
   361
			TParse spiPath;
sl@0
   362
			spiPath.Set(spiFilePath, NULL, NULL);
sl@0
   363
			// Discover plugins from SPI
sl@0
   364
			found = DoScanSpiFileL(spiPath);
sl@0
   365
			}
sl@0
   366
		scanDirectoryForPlugins = !found;
sl@0
   367
		}
sl@0
   368
 
sl@0
   369
 	// scan directory for plugins if not already discovered from SPI file. SPI applies to RO.
sl@0
   370
 	if(scanDirectoryForPlugins)
sl@0
   371
 		{
sl@0
   372
 	
sl@0
   373
		// Find plugins via resoure files
sl@0
   374
		TUidType rscUidType(KNullUid,KUidInterfaceImplementationCollectionInfo,KNullUid);
sl@0
   375
		TBool foundRsc = DoScanDriveL(aDrive, rscUidType, aIsRO);
sl@0
   376
		found = found || foundRsc; 
sl@0
   377
 		}
sl@0
   378
sl@0
   379
	if (!found)
sl@0
   380
		{
sl@0
   381
		iDiscoverer.DriveUnmountedL(aDrive);
sl@0
   382
		}
sl@0
   383
	RECORD_END_REDISCOVERYSCANDIRECTORY_RESULT(aDrive)
sl@0
   384
	}
sl@0
   385
sl@0
   386
TBool CDiscoverer::CDirScanner::DoScanSpiFileL(const TParse& aSpiPath)
sl@0
   387
{
sl@0
   388
	iDiscoverer.DriveMountedL(aSpiPath.Drive());
sl@0
   389
sl@0
   390
	RResourceArchive resourceArchive;
sl@0
   391
	//ECom server should continue if OpenL leaves because no spi exists 
sl@0
   392
	TRAPD(err,resourceArchive.OpenL(iFs, aSpiPath.DriveAndPath(),_L("ecom")));
sl@0
   393
	if(err==KErrNotFound || err==KErrPathNotFound)
sl@0
   394
		return EFalse;
sl@0
   395
	User::LeaveIfError(err);
sl@0
   396
	CleanupClosePushL(resourceArchive);
sl@0
   397
	// check SPI file type. On failure do not scan archives
sl@0
   398
	if(resourceArchive.Type() != KEcomSpiFileTypeUid)
sl@0
   399
		{
sl@0
   400
		CleanupStack::PopAndDestroy(&resourceArchive);
sl@0
   401
		return EFalse;
sl@0
   402
		}
sl@0
   403
	
sl@0
   404
	CPluginBase* entryBase=NULL;
sl@0
   405
	TBool resourceExistsIndicator = EFalse;
sl@0
   406
	while(!resourceArchive.End())
sl@0
   407
		{
sl@0
   408
		TRAPD(error,iDiscoverer.ValidateEntryL(resourceArchive,entryBase));
sl@0
   409
		CleanupStack::PushL(entryBase);
sl@0
   410
		if (error==KErrNoMemory)
sl@0
   411
			User::LeaveNoMemory();
sl@0
   412
		if (error==KErrNone)
sl@0
   413
			{
sl@0
   414
			// When SPI is on no DAT file exists,and also RO Internal drive is not rediscovered. 
sl@0
   415
			//Therefore this RO Internal drive is always at its initial discovery. No Dll
sl@0
   416
			// is ever discovered before. Always pass EFalse to ProcessEntryL method.
sl@0
   417
			iDiscoverer.ProcessEntryL(aSpiPath.Drive(),entryBase, EFalse);
sl@0
   418
			// set to indicate at least 1 resource exists
sl@0
   419
			resourceExistsIndicator = ETrue;	
sl@0
   420
			}
sl@0
   421
		else
sl@0
   422
			{
sl@0
   423
			__ECOM_TRACE1("ECOM: CDiscoverer::DoScanSpiFileL(). Fail Validate: %S\n.",&aSpiPath.FullName());
sl@0
   424
			}	
sl@0
   425
		CleanupStack::PopAndDestroy(entryBase);
sl@0
   426
		entryBase=NULL;
sl@0
   427
		}
sl@0
   428
	CleanupStack::PopAndDestroy(&resourceArchive);
sl@0
   429
	return resourceExistsIndicator;
sl@0
   430
}
sl@0
   431
sl@0
   432
TBool CDiscoverer::CDirScanner::DoScanDriveL(const TDriveUnit& aDrive, const TUidType& aUidType, TBool aIsRO)
sl@0
   433
	{	
sl@0
   434
	RDir dir;
sl@0
   435
	
sl@0
   436
	TDriveName driveName(aDrive.Name());
sl@0
   437
	TParse searchDir;
sl@0
   438
	User::LeaveIfError(searchDir.Set(KEComResourceFileSearch,NULL,&driveName));
sl@0
   439
sl@0
   440
	// Match the directory list UID's to a Polymorphic DLL UID and Interface
sl@0
   441
	// Implementation Collection UID.
sl@0
   442
	// Resource files are sorted by UID. However, since these files have same UID,
sl@0
   443
	// they are actually sorted by their names (alphanumerically).
sl@0
   444
sl@0
   445
  	TInt error = dir.Open(iFs, searchDir.FullName(), aUidType);
sl@0
   446
 
sl@0
   447
	if(error == KErrNone)
sl@0
   448
		{
sl@0
   449
		// Have found the plugin directory
sl@0
   450
		CleanupClosePushL(dir);
sl@0
   451
		
sl@0
   452
		TFileName* lastRscNameBuf = new TFileName;
sl@0
   453
		
sl@0
   454
		if (!lastRscNameBuf) 
sl@0
   455
		{
sl@0
   456
			CleanupStack::PopAndDestroy(&dir); 
sl@0
   457
			return EFalse;
sl@0
   458
		}
sl@0
   459
		CleanupStack::PushL(lastRscNameBuf);
sl@0
   460
		
sl@0
   461
		TEntryArray *dirEntriesArray = new TEntryArray;
sl@0
   462
	 
sl@0
   463
		if (!dirEntriesArray) 
sl@0
   464
		{
sl@0
   465
			CleanupStack::PopAndDestroy(lastRscNameBuf); 
sl@0
   466
			CleanupStack::PopAndDestroy(&dir); 
sl@0
   467
			return EFalse;
sl@0
   468
		}
sl@0
   469
		CleanupStack::PushL(dirEntriesArray);
sl@0
   470
				
sl@0
   471
		
sl@0
   472
		TPtrC lastRscName(KNullDesC);
sl@0
   473
		
sl@0
   474
		// Iterate through the directory reading multiple entries at a 
sl@0
   475
		// time
sl@0
   476
		TInt count = 0;
sl@0
   477
		TInt readError = KErrNone;
sl@0
   478
		CPluginBase* entryBase=NULL;
sl@0
   479
sl@0
   480
 		iDiscoverer.DriveMountedL(aDrive);
sl@0
   481
		TBool anyDllRegistered = iDiscoverer.IsAnyDllRegisteredWithDriveL(aDrive);
sl@0
   482
 
sl@0
   483
	 
sl@0
   484
sl@0
   485
		while (readError != KErrEof)  
sl@0
   486
			{
sl@0
   487
		
sl@0
   488
 			// Read the next set of entries
sl@0
   489
 			readError =	dir.Read(*dirEntriesArray);
sl@0
   490
 				
sl@0
   491
			if ((readError != KErrNone) &&  (readError != KErrEof))
sl@0
   492
				{
sl@0
   493
				User::Leave(readError);	
sl@0
   494
				}
sl@0
   495
			else 
sl@0
   496
				{
sl@0
   497
 				// for KErrEof, dirEntriesArray still has items to process 
sl@0
   498
				count = dirEntriesArray->Count();
sl@0
   499
 				// Ok use the entries to populate the file list
sl@0
   500
				for(TInt i = 0; i < count; ++i)
sl@0
   501
					{
sl@0
   502
 
sl@0
   503
 					// Compare current file name against previous one ignoring extension. If it is same
sl@0
   504
					// then there is no need to process it.
sl@0
   505
					TPtrC currName = (*dirEntriesArray)[i].iName.Left((*dirEntriesArray)[i].iName.Length()-KExtensionLength);
sl@0
   506
					if (lastRscName.Compare(currName) == 0)
sl@0
   507
						{
sl@0
   508
						continue;
sl@0
   509
						}
sl@0
   510
					else if (i < (count - 1))
sl@0
   511
						{
sl@0
   512
						lastRscName.Set(currName);
sl@0
   513
						}
sl@0
   514
					else
sl@0
   515
						{
sl@0
   516
						lastRscNameBuf->Copy(currName);
sl@0
   517
						lastRscName.Set(*lastRscNameBuf);
sl@0
   518
						}
sl@0
   519
						
sl@0
   520
 
sl@0
   521
					// Obtain a copy of the current directory entry
sl@0
   522
					TRAP(error,iDiscoverer.ValidateEntryL((*dirEntriesArray)[i], driveName, entryBase, aIsRO));			
sl@0
   523
					CleanupStack::PushL(entryBase);		
sl@0
   524
 
sl@0
   525
					if (error==KErrNoMemory) 
sl@0
   526
						User::LeaveNoMemory();
sl@0
   527
				
sl@0
   528
					if (error==KErrNone)
sl@0
   529
						{
sl@0
   530
						iDiscoverer.ProcessEntryL(driveName,entryBase,anyDllRegistered);
sl@0
   531
 						}
sl@0
   532
					else
sl@0
   533
						{
sl@0
   534
						__ECOM_TRACE1("ECOM: CDiscoverer::DoScanDriveL(). Fail Validate entry: %S\n.",&(*dirEntriesArray)[i].iName);
sl@0
   535
						}		
sl@0
   536
				    CleanupStack::PopAndDestroy(entryBase);
sl@0
   537
					entryBase=NULL;
sl@0
   538
					}
sl@0
   539
				}
sl@0
   540
			}
sl@0
   541
 		CleanupStack::PopAndDestroy(dirEntriesArray); 
sl@0
   542
		CleanupStack::PopAndDestroy(lastRscNameBuf); 
sl@0
   543
		CleanupStack::PopAndDestroy(&dir); 
sl@0
   544
		return ETrue; 
sl@0
   545
		}
sl@0
   546
sl@0
   547
	return EFalse;
sl@0
   548
	}
sl@0
   549
sl@0
   550
void CDiscoverer::CDirScanner::DiscoverPluginsL(TBool aDiscoverReadOnlyDrives)
sl@0
   551
	{
sl@0
   552
	// iterator which returns only the drives need to be scanned.
sl@0
   553
	TEComCachedDriveInfoIterator iter(*iDiscoverer.iCachedDriveInfo);
sl@0
   554
sl@0
   555
	// Iterate from highest drive letter (Z:) towards lowest drive letter (A:).
sl@0
   556
	for (iter.Last(); iter.InRange(); iter.Prev())
sl@0
   557
		{
sl@0
   558
		if (iter.DriveIsReadOnlyInternal() == aDiscoverReadOnlyDrives)
sl@0
   559
			{
sl@0
   560
			ScanDriveL(iter.DriveUnit(), aDiscoverReadOnlyDrives);
sl@0
   561
			}
sl@0
   562
		}
sl@0
   563
	}
sl@0
   564
	
sl@0
   565
sl@0
   566
// __________________________________________________________________________
sl@0
   567
//
sl@0
   568
/*
sl@0
   569
	Responsible for identifying new Interface Implementation Collections,
sl@0
   570
	installed in the Interface Implementation Collection directories.
sl@0
   571
*/
sl@0
   572
sl@0
   573
CDiscoverer* CDiscoverer::NewL(MDiscovererObserver& aDiscovererObserver, RFs& aFs)
sl@0
   574
	{
sl@0
   575
	CDiscoverer* self = new(ELeave) CDiscoverer(aDiscovererObserver, aFs);
sl@0
   576
	CleanupStack::PushL(self);
sl@0
   577
	self->ConstructL();
sl@0
   578
	CleanupStack::Pop(self);
sl@0
   579
	return self;
sl@0
   580
	}
sl@0
   581
sl@0
   582
// Default d'tor
sl@0
   583
sl@0
   584
CDiscoverer::~CDiscoverer()
sl@0
   585
	{
sl@0
   586
	// Cancel any scanning behaviour or notifications
sl@0
   587
	if(iDirScanner != NULL)
sl@0
   588
		{
sl@0
   589
		// Left in the middle of a scan
sl@0
   590
		// So clear up
sl@0
   591
		delete iDirScanner;
sl@0
   592
		iDirScanner = NULL;
sl@0
   593
		// Signal the observer that the scan has 
sl@0
   594
		// not been completed successfully.
sl@0
   595
		iDiscovererObserver.DiscoveriesComplete(EFalse, EPluginProcessingTypeAll);
sl@0
   596
		}
sl@0
   597
	Suspend();
sl@0
   598
	iDrivesDiscovered.Reset();
sl@0
   599
	delete iSwiChangeNotifier;
sl@0
   600
	delete iScanningTimer;
sl@0
   601
	delete iLanguageChangeNotifier;
sl@0
   602
	delete iCachedDriveInfo;
sl@0
   603
	iRscDirNotifierList.ResetAndDestroy();
sl@0
   604
sl@0
   605
	}
sl@0
   606
sl@0
   607
// Default c'tor
sl@0
   608
CDiscoverer::CDiscoverer(MDiscovererObserver& aDiscovererObserver, RFs& aFs)
sl@0
   609
: CBase(),   iSwiChangeDiscoveryPending(EFalse), iLanguageChangeDiscoveryPending(EFalse),
sl@0
   610
  iState(EDisc_Undefined), iDiscovererObserver(aDiscovererObserver), iFs(aFs)
sl@0
   611
	{
sl@0
   612
	// Do nothing here
sl@0
   613
	}
sl@0
   614
sl@0
   615
void CDiscoverer::ConstructL()
sl@0
   616
	{
sl@0
   617
	iCachedDriveInfo = CEComCachedDriveInfo::NewL(iFs);
sl@0
   618
	
sl@0
   619
	// Construct the Interface Implementation Collection
sl@0
   620
	// directory change notifier list
sl@0
   621
	// and the scan step control object.
sl@0
   622
sl@0
   623
	CDirChangeNotifier *dirChangeNotifierPtr;
sl@0
   624
sl@0
   625
	// iterator which returns only the drives need to be scanned.
sl@0
   626
	TEComCachedDriveInfoIterator iter(*iCachedDriveInfo);
sl@0
   627
sl@0
   628
	for (iter.First(); iter.InRange(); iter.Next())
sl@0
   629
		{
sl@0
   630
		//Don't need to monitor read-only drives. They don't change.
sl@0
   631
		if ( !iter.DriveIsReadOnlyInternal() )
sl@0
   632
			{				
sl@0
   633
			dirChangeNotifierPtr = new(ELeave)CDirChangeNotifier(*this,iFs,iter.DriveUnit());
sl@0
   634
		
sl@0
   635
			CleanupStack::PushL(dirChangeNotifierPtr);				
sl@0
   636
			iRscDirNotifierList.AppendL(dirChangeNotifierPtr);
sl@0
   637
			CleanupStack::Pop();
sl@0
   638
			}
sl@0
   639
		}
sl@0
   640
	iSwiChangeNotifier = CSwiChangeNotifier::NewL(*this);
sl@0
   641
sl@0
   642
	iScanningTimer = CIdleScanningTimer::NewL(*this);
sl@0
   643
sl@0
   644
	//Create the language change notifier and install the callback function
sl@0
   645
	const TCallBack myCallBackFunction(&CDiscoverer::LocaleChangedL, this);
sl@0
   646
	iLanguageChangeNotifier = CEnvironmentChangeNotifier::NewL(CActive::EPriorityStandard, myCallBackFunction);
sl@0
   647
	
sl@0
   648
	iDirScanner = CDirScanner::NewL(*this,iFs);	
sl@0
   649
sl@0
   650
	InitialiseEvent();	
sl@0
   651
	}
sl@0
   652
sl@0
   653
sl@0
   654
TInt CDiscoverer::Resume()
sl@0
   655
	{
sl@0
   656
	// Reactivate the scanning timer if not NULL
sl@0
   657
	if (iScanningTimer != NULL)
sl@0
   658
		{
sl@0
   659
		iScanningTimer->Resume();
sl@0
   660
		}
sl@0
   661
	
sl@0
   662
	TCallBackState cbData = ECallBackState_EventEnd;
sl@0
   663
	iBurChangeCallBack.CallBack(ECallBackId_BurEvent, &cbData);
sl@0
   664
sl@0
   665
	/*
sl@0
   666
	iLanguageChangeNotifier is not activated because it is not cancelled during CDiscoverer::Suspend().
sl@0
   667
	It is not suspended because a language change should not occur whilst a backup/restore operation
sl@0
   668
	is taking place.
sl@0
   669
	*/
sl@0
   670
sl@0
   671
	return KErrNone;
sl@0
   672
	}
sl@0
   673
sl@0
   674
sl@0
   675
TInt CDiscoverer::Suspend()
sl@0
   676
	{
sl@0
   677
	// Suspend the scanning timer if not NULL
sl@0
   678
	if (iScanningTimer != NULL)
sl@0
   679
		{
sl@0
   680
		iScanningTimer->Suspend();
sl@0
   681
		}
sl@0
   682
sl@0
   683
	TCallBackState cbData = ECallBackState_EventStart;
sl@0
   684
	iBurChangeCallBack.CallBack(ECallBackId_BurEvent, &cbData);
sl@0
   685
sl@0
   686
	/*
sl@0
   687
	iLanguageChangeNotifier is not cancelled because a language change should not occur
sl@0
   688
	whilst a backup/restore operation is taking place.
sl@0
   689
	*/
sl@0
   690
sl@0
   691
	return KErrNone;
sl@0
   692
	}
sl@0
   693
sl@0
   694
sl@0
   695
TBool CDiscoverer::NotificationL(TInt aStatus, const TDriveUnit& aDriveUnit)
sl@0
   696
	{
sl@0
   697
sl@0
   698
	TBool okToContinue = ETrue;
sl@0
   699
	if(aStatus != KErrNone)
sl@0
   700
		{
sl@0
   701
		// Big trouble with the notification
sl@0
   702
		// Tell our observer
sl@0
   703
		// Notifications will cease if EFalse is returned!!!!
sl@0
   704
		okToContinue = iDiscovererObserver.NotifiedWithErrorCode(aStatus);	
sl@0
   705
		}
sl@0
   706
	else
sl@0
   707
		{
sl@0
   708
		//call ProcessDNEventL() to indicate Plugins have been added or removed on a specfic drive,
sl@0
   709
		// then do the state transition and to start a re-discovery .
sl@0
   710
		ProcessDNEventL(EPluginsModified,aDriveUnit );
sl@0
   711
		ProcessDNEventL(EPluginsRediscover, aDriveUnit);
sl@0
   712
		}
sl@0
   713
	return okToContinue;
sl@0
   714
	}
sl@0
   715
sl@0
   716
void CDiscoverer::SwiChangeNotificationL(TInt aSwiOperation)
sl@0
   717
	{
sl@0
   718
	// Store the current SWI operation, ignore operation status
sl@0
   719
	iSwiOperation = aSwiOperation & KSASwisOperationMask;
sl@0
   720
	
sl@0
   721
	TCallBackState cbData = SwiOperationInProgress() ? ECallBackState_EventStart : ECallBackState_EventEnd;
sl@0
   722
	iSwiChangeCallBack.CallBack(ECallBackId_SwiEvent, &cbData);
sl@0
   723
sl@0
   724
	// Test no SWI operation in progress
sl@0
   725
	if(!SwiOperationInProgress())
sl@0
   726
		{
sl@0
   727
		TBool rediscoveryPending = EFalse;
sl@0
   728
		if(!iSwiChangeDiscoveryPending)
sl@0
   729
			{		 
sl@0
   730
			// for each removable drive call ProcessDNEventL() to do the state transition and to start
sl@0
   731
			// a re-discovery for that drive.
sl@0
   732
			TInt count = iDrivesDiscovered.Count();		
sl@0
   733
			for(TInt i=0; i < count; i++)
sl@0
   734
				{
sl@0
   735
				TDriveUnit drvUnit(iDrivesDiscovered[i]);
sl@0
   736
				if(iCachedDriveInfo->DriveIsRemovableL(drvUnit))
sl@0
   737
					{
sl@0
   738
					rediscoveryPending = ETrue;
sl@0
   739
					ProcessDNEventL(EPluginsModified, drvUnit );
sl@0
   740
					ProcessDNEventL(EPluginsRediscover, drvUnit);
sl@0
   741
					iSwiChangeDiscoveryPending = ETrue;
sl@0
   742
					}
sl@0
   743
				}
sl@0
   744
			}
sl@0
   745
		
sl@0
   746
		//If there are no removable drives to be scanned check if there are any
sl@0
   747
		//pending notifications that couldn't be processed during SWI
sl@0
   748
		if(!rediscoveryPending && iScanningTimer->IsAnyNotificationProcessingPending())
sl@0
   749
			{
sl@0
   750
			// Activate timer if there is any notification processing pending
sl@0
   751
			iScanningTimer->RestartScanPeriod();
sl@0
   752
			}
sl@0
   753
		}
sl@0
   754
	}
sl@0
   755
sl@0
   756
TBool CDiscoverer::SwiOperationInProgress()
sl@0
   757
	{
sl@0
   758
	return (iSwiOperation != ESASwisNone);
sl@0
   759
	}
sl@0
   760
sl@0
   761
void CDiscoverer::LanguageChangeNotificationL()
sl@0
   762
	{
sl@0
   763
	if (!iLanguageChangeDiscoveryPending)
sl@0
   764
		{
sl@0
   765
		// for each drive call ProcessDNEventL() to do the state transition and to start
sl@0
   766
		// a re-discovery for that drive.
sl@0
   767
		TInt count = iDrivesDiscovered.Count();
sl@0
   768
		for(TInt i=0; i < count; i++)
sl@0
   769
			{
sl@0
   770
			ProcessDNEventL(EPluginsModified, iDrivesDiscovered[i] );
sl@0
   771
			ProcessDNEventL(EPluginsRediscover, iDrivesDiscovered[i]);
sl@0
   772
			}
sl@0
   773
		iLanguageChangeDiscoveryPending = ETrue;
sl@0
   774
		}
sl@0
   775
	}
sl@0
   776
void CDiscoverer::RediscoveryScanDirectoryL(const TDriveUnit& aDriveUnit) 
sl@0
   777
	{
sl@0
   778
	TBool doScan = EFalse;
sl@0
   779
	if(iDrivesDiscovered.Find(aDriveUnit) != KErrNotFound)
sl@0
   780
		{
sl@0
   781
		// If the drive has plugins on it previously, do ScanDriveL on any notifications.
sl@0
   782
		doScan = ETrue;
sl@0
   783
		}
sl@0
   784
	else // Otherwise the drive doesn't contain any plugin before, do further check.
sl@0
   785
		{
sl@0
   786
		TBuf<KEComPlugRSCPathMaxLen> pluginsDirPath(KEComResourceFolderPath);
sl@0
   787
		pluginsDirPath[0] = ('A' + TInt(aDriveUnit));
sl@0
   788
		TEntry entry;
sl@0
   789
		if(iFs.Entry(pluginsDirPath,entry) == KErrNone)
sl@0
   790
			{
sl@0
   791
			// Now it has plugins folder on it, do ScanDriveL.
sl@0
   792
			doScan = ETrue;
sl@0
   793
			}
sl@0
   794
		// If it still doesn't have plugins folder on it, skip unnecessary scanning.
sl@0
   795
		// NOTE: other returned error code could be KErrPathNotFound, KErrNotReady etc.
sl@0
   796
		//  As long as no plugin has been found, always skip scanning on this drive.
sl@0
   797
		}
sl@0
   798
	
sl@0
   799
	// Performs scanning according to above checks.
sl@0
   800
	if(doScan)
sl@0
   801
		{
sl@0
   802
		// Signal the observer that a scan has commenced.
sl@0
   803
		iDiscovererObserver.DiscoveriesBegin();	
sl@0
   804
		
sl@0
   805
		iDirScanner->ScanDriveL(aDriveUnit, iCachedDriveInfo->DriveIsReadOnlyInternalL(aDriveUnit));
sl@0
   806
		
sl@0
   807
		// Signal the observer that the scan has 
sl@0
   808
		// been completed successfully.
sl@0
   809
		iDiscovererObserver.SetDiscoveryFlagL(aDriveUnit);
sl@0
   810
		}
sl@0
   811
	}
sl@0
   812
sl@0
   813
void CDiscoverer::ScanDirectoryCancel()
sl@0
   814
	{
sl@0
   815
	if(iDirScanner != NULL)
sl@0
   816
		{
sl@0
   817
		// Signal the observer that the scan has 
sl@0
   818
		// been completed un-successfully.
sl@0
   819
		iDiscovererObserver.DiscoveriesComplete(EFalse, EPluginProcessingTypeAll);
sl@0
   820
		}
sl@0
   821
	}
sl@0
   822
sl@0
   823
sl@0
   824
void CDiscoverer::CompleteNotificationProcessing()
sl@0
   825
	{
sl@0
   826
	iState = EDisc_AllPluginsDisc;
sl@0
   827
	iSwiChangeDiscoveryPending = EFalse;
sl@0
   828
	iLanguageChangeDiscoveryPending = EFalse;
sl@0
   829
	}
sl@0
   830
sl@0
   831
sl@0
   832
void CDiscoverer::ValidateEntryL(const TEntry& aEntry, const TDriveName& aDriveName, CPluginBase*& aEntryToFill, TBool aIsRO)
sl@0
   833
   	{
sl@0
   834
	aEntryToFill=CSecurePlugin::NewL(iFs,aEntry,aDriveName, aIsRO);
sl@0
   835
  	}
sl@0
   836
sl@0
   837
void CDiscoverer::ValidateEntryL(RResourceArchive& aRscArchive,CPluginBase*& aEntryToFill)
sl@0
   838
   	{
sl@0
   839
    aEntryToFill = CSpiPlugin::NewL(aRscArchive);
sl@0
   840
	}
sl@0
   841
  	
sl@0
   842
sl@0
   843
void CDiscoverer::ProcessEntryL(const TDriveName& aDrive,CPluginBase*& aEntry, TBool aAnyDllDiscovered)
sl@0
   844
	{
sl@0
   845
	iDiscovererObserver.RegisterDiscoveryL(aDrive,aEntry,aAnyDllDiscovered);
sl@0
   846
	}
sl@0
   847
	
sl@0
   848
void CDiscoverer::DriveMountedL(TDriveUnit aDrive)
sl@0
   849
	{
sl@0
   850
	TInt index = iDrivesDiscovered.Find(aDrive);
sl@0
   851
	if(index == KErrNotFound)
sl@0
   852
		{
sl@0
   853
		User::LeaveIfError(iDrivesDiscovered.Append(aDrive));
sl@0
   854
		iDiscovererObserver.DriveReinstatedL(aDrive);	// Wasn't there before
sl@0
   855
		}
sl@0
   856
	}
sl@0
   857
	
sl@0
   858
TBool CDiscoverer::IsAnyDllRegisteredWithDriveL(const TDriveUnit aDrive)const
sl@0
   859
	{
sl@0
   860
	return 	iDiscovererObserver.IsAnyDllRegisteredWithDriveL(aDrive);
sl@0
   861
	}
sl@0
   862
sl@0
   863
void CDiscoverer::DriveUnmountedL(TDriveUnit aDrive)
sl@0
   864
	{
sl@0
   865
	TInt index = iDrivesDiscovered.Find(aDrive);
sl@0
   866
	if(index != KErrNotFound)
sl@0
   867
		{
sl@0
   868
		iDrivesDiscovered.Remove(index);
sl@0
   869
		iDiscovererObserver.DriveRemovedL(aDrive);		// Was there before
sl@0
   870
		}
sl@0
   871
	}
sl@0
   872
	
sl@0
   873
CDiscoverer::TDiscovererState CDiscoverer::State() const
sl@0
   874
	{
sl@0
   875
	return iState;
sl@0
   876
	}
sl@0
   877
sl@0
   878
	
sl@0
   879
void CDiscoverer::ProcessSSAEventL(TStartupStateIdentifier aKnownState)
sl@0
   880
	{
sl@0
   881
sl@0
   882
	if(iState == EDisc_NoPluginsDisc && aKnownState == EStartupStateCriticalStatic)
sl@0
   883
		{
sl@0
   884
		__ECOM_TRACE("ECOM: CDiscoverer::ProcessSSAEventL():EStartupStateCriticalStatic is reached,discover the RO Internal drives only.");
sl@0
   885
sl@0
   886
		// Signal the observer that the scanning is started
sl@0
   887
		iDiscovererObserver.DiscoveriesBegin();
sl@0
   888
		
sl@0
   889
		//scan the RO drives
sl@0
   890
	    iDirScanner->DiscoverPluginsL(ETrue);
sl@0
   891
sl@0
   892
		//change the state
sl@0
   893
		iState = EDisc_CriticalPluginsDisc;
sl@0
   894
sl@0
   895
		// Signal the observer that the scan has 
sl@0
   896
		// been completed successfully.
sl@0
   897
		iDiscovererObserver.DiscoveriesComplete(ETrue, EPluginProcessingTypeCriticalOnly);
sl@0
   898
		}
sl@0
   899
	else if(iState == EDisc_CriticalPluginsDisc && aKnownState == EStartupStateNonCritical)
sl@0
   900
		{
sl@0
   901
		__ECOM_TRACE("ECOM: CDiscoverer::ProcessSSAEventL():EStartupStateNonCritical is reached,discover the Non RO Internal drives.");
sl@0
   902
sl@0
   903
		// Signal the observer that the scanning is started
sl@0
   904
		iDiscovererObserver.DiscoveriesBegin();
sl@0
   905
		
sl@0
   906
		//scan the non-ro drives
sl@0
   907
		iDirScanner->DiscoverPluginsL(EFalse);
sl@0
   908
	
sl@0
   909
		//change the state
sl@0
   910
		iState = EDisc_AllPluginsDisc;
sl@0
   911
		
sl@0
   912
		// Signal the observer that the scan has 
sl@0
   913
		// been completed successfully.
sl@0
   914
		iDiscovererObserver.DiscoveriesComplete(ETrue, EPluginProcessingTypeNonCriticalOnly);
sl@0
   915
sl@0
   916
	
sl@0
   917
		StartNotifiers();		
sl@0
   918
		}
sl@0
   919
	else if(iState == EDisc_NoPluginsDisc && aKnownState == EStartupStateNonCritical)
sl@0
   920
		{
sl@0
   921
		__ECOM_TRACE("ECOM: CDiscoverer::ProcessSSAEventL():EStartupStateNonCritical is reached all at once,discover all the drives.");
sl@0
   922
sl@0
   923
		// Signal the observer that the scanning is started
sl@0
   924
		iDiscovererObserver.DiscoveriesBegin();
sl@0
   925
		
sl@0
   926
		//scan a specified the drives
sl@0
   927
		iDirScanner->DiscoverPluginsL(ETrue);
sl@0
   928
		iDirScanner->DiscoverPluginsL(EFalse);
sl@0
   929
sl@0
   930
		//change the state
sl@0
   931
		iState = EDisc_AllPluginsDisc;
sl@0
   932
		
sl@0
   933
		// Signal the observer that the scan has 
sl@0
   934
		// been completed successfully.
sl@0
   935
		iDiscovererObserver.DiscoveriesComplete(ETrue, EPluginProcessingTypeAll);
sl@0
   936
sl@0
   937
		StartNotifiers();
sl@0
   938
		}
sl@0
   939
	}
sl@0
   940
	
sl@0
   941
void CDiscoverer::StartNotifiers()
sl@0
   942
	{
sl@0
   943
		
sl@0
   944
	for(TInt i = 0; i<iRscDirNotifierList.Count(); i++)
sl@0
   945
		{
sl@0
   946
		if (iRscDirNotifierList[i] != NULL)
sl@0
   947
		iRscDirNotifierList[i]->Activate();
sl@0
   948
		}
sl@0
   949
	iSwiChangeNotifier->Subscribe();
sl@0
   950
	iLanguageChangeNotifier->Start();
sl@0
   951
	}
sl@0
   952
	
sl@0
   953
void CDiscoverer::ProcessDNEventL(TNotificationFlag aFlag, const TDriveUnit& aDriveUnit)
sl@0
   954
	{
sl@0
   955
	if(iState == EDisc_AllPluginsDisc && aFlag == EPluginsModified)
sl@0
   956
		{
sl@0
   957
		iState = EDisc_PluginsDirty;
sl@0
   958
		return;	
sl@0
   959
		}
sl@0
   960
	if(iState == EDisc_PluginsDirty && aFlag == EPluginsRediscover)
sl@0
   961
		{
sl@0
   962
		// Add drive number to the pending drive list and activate timer.
sl@0
   963
		iScanningTimer->AddDriveL(aDriveUnit);
sl@0
   964
		iScanningTimer->RestartScanPeriod();
sl@0
   965
		}
sl@0
   966
	}
sl@0
   967
	
sl@0
   968
void CDiscoverer::SetSwiChangeCallBack(const TCallBackWithArg& aCallBack)
sl@0
   969
	{
sl@0
   970
	iSwiChangeCallBack = aCallBack;
sl@0
   971
	}
sl@0
   972
sl@0
   973
void CDiscoverer::SetBurChangeCallBack(const TCallBackWithArg& aCallBack)
sl@0
   974
	{
sl@0
   975
	iBurChangeCallBack = aCallBack;
sl@0
   976
	}
sl@0
   977
sl@0
   978
void CDiscoverer::InitialiseEvent()
sl@0
   979
	{
sl@0
   980
	iState = EDisc_NoPluginsDisc;
sl@0
   981
	}
sl@0
   982
TInt CDiscoverer::LocaleChangedL(TAny* aPtr)
sl@0
   983
	{
sl@0
   984
	CDiscoverer* thisLocaleManager = (CDiscoverer *) aPtr ;
sl@0
   985
	
sl@0
   986
	if(!thisLocaleManager->iLanguageChangeNotifier)	
sl@0
   987
		{
sl@0
   988
	    __ECOM_TRACE("ECOM: LocaleChangedL: Bad Change Notification");
sl@0
   989
		return KErrGeneral;
sl@0
   990
		}
sl@0
   991
sl@0
   992
 	TInt stat = thisLocaleManager->iLanguageChangeNotifier->Change();
sl@0
   993
	if((stat & EChangesLocale) && (!thisLocaleManager->iLanguageChangeDiscoveryPending))
sl@0
   994
	   	{
sl@0
   995
	   	//
sl@0
   996
	   	// System Locale data has been updated 
sl@0
   997
	   	// if the downgrade path has changed we 
sl@0
   998
		// re-scan resource files for all drives and get the right language.
sl@0
   999
		TBool isLanguageChanged;
sl@0
  1000
		thisLocaleManager->iDiscovererObserver.LanguageChangedL(isLanguageChanged);
sl@0
  1001
		if(isLanguageChanged)
sl@0
  1002
			{
sl@0
  1003
			thisLocaleManager->LanguageChangeNotificationL();
sl@0
  1004
			}
sl@0
  1005
	   	}
sl@0
  1006
	 return KErrNone;
sl@0
  1007
	}