os/ossrv/genericservices/mimerecognitionfw/apmime/APMFNDR.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 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
// concrete file finders for MIME type recognizers
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "APMFNDR.H"
sl@0
    19
sl@0
    20
#include <e32uid.h>
sl@0
    21
#include "APMPAN.H"
sl@0
    22
sl@0
    23
#ifdef USING_ECOM_RECOGS
sl@0
    24
#include <ecom/ecom.h>
sl@0
    25
#endif
sl@0
    26
sl@0
    27
const TInt KRecognizerDllGranularity=2;
sl@0
    28
sl@0
    29
#ifdef USING_ECOM_RECOGS
sl@0
    30
const TUid KUidDataRecogInterFaceUid = {0x101F7D87};
sl@0
    31
#endif
sl@0
    32
sl@0
    33
//
sl@0
    34
// class TRecognizer
sl@0
    35
//
sl@0
    36
sl@0
    37
CApaScanningDataRecognizer::TRecognizer::TRecognizer(HBufC* aName)
sl@0
    38
	{
sl@0
    39
	iName=aName;
sl@0
    40
	}
sl@0
    41
	
sl@0
    42
//
sl@0
    43
// class CApaRecognizerDll
sl@0
    44
//
sl@0
    45
sl@0
    46
CApaRecognizerDll::~CApaRecognizerDll()
sl@0
    47
	{
sl@0
    48
	delete iId.iName;
sl@0
    49
	iLibrary.Close();
sl@0
    50
	delete iNext;
sl@0
    51
	}
sl@0
    52
sl@0
    53
CApaRecognizerDll::CApaRecognizerDll(HBufC* aName) 
sl@0
    54
	: iId(aName)
sl@0
    55
	{
sl@0
    56
	}
sl@0
    57
sl@0
    58
#ifdef USING_ECOM_RECOGS
sl@0
    59
// Used for cleanup support of locally declared arrays
sl@0
    60
void CleanUpEComInfoArray(TAny* aInfoArray)
sl@0
    61
	{
sl@0
    62
	RImplInfoPtrArray* infoArray = (static_cast<RImplInfoPtrArray*>(aInfoArray));
sl@0
    63
	infoArray->ResetAndDestroy();
sl@0
    64
	infoArray->Close();
sl@0
    65
	}
sl@0
    66
#endif
sl@0
    67
sl@0
    68
// class CApaBackupOperationObserver
sl@0
    69
CApaScanningDataRecognizer::CApaBackupOperationObserver::CApaBackupOperationObserver(CApaScanningDataRecognizer& aRecognizer)
sl@0
    70
	: iRecognizer(aRecognizer)
sl@0
    71
	{
sl@0
    72
	TRAP_IGNORE(iSession = CBaBackupSessionWrapper::NewL());
sl@0
    73
	}
sl@0
    74
sl@0
    75
CApaScanningDataRecognizer::CApaBackupOperationObserver::~CApaBackupOperationObserver()
sl@0
    76
	{
sl@0
    77
	if( iSession )
sl@0
    78
		{
sl@0
    79
		iSession->DeRegisterBackupOperationObserver(*this);
sl@0
    80
		delete iSession;
sl@0
    81
		}
sl@0
    82
	}
sl@0
    83
sl@0
    84
void CApaScanningDataRecognizer::CApaBackupOperationObserver::RegisterObserverL()
sl@0
    85
	{
sl@0
    86
	if(iSession)
sl@0
    87
		{
sl@0
    88
		iSession->RegisterBackupOperationObserverL(*this);
sl@0
    89
		}
sl@0
    90
	}
sl@0
    91
sl@0
    92
void CApaScanningDataRecognizer::CApaBackupOperationObserver::HandleBackupOperationEventL(const TBackupOperationAttributes& aBackupOperationAttributes)
sl@0
    93
	{
sl@0
    94
	if (!iRecognizer.iExtra->iRecognizersLoaded)
sl@0
    95
		{
sl@0
    96
		// Then the recognizers have been unloaded, so there's nothing to do
sl@0
    97
		return;
sl@0
    98
		}
sl@0
    99
sl@0
   100
	if ((aBackupOperationAttributes.iFileFlag == MBackupObserver::EReleaseLockReadOnly ||
sl@0
   101
		aBackupOperationAttributes.iFileFlag == MBackupObserver::EReleaseLockNoAccess)
sl@0
   102
		&& aBackupOperationAttributes.iOperation == EStart)
sl@0
   103
		{
sl@0
   104
		// release recognisers not in rom
sl@0
   105
		TInt count = iRecognizer.RecognizerCount();
sl@0
   106
		for (TInt i=count-1; i>=0; i--)
sl@0
   107
			{
sl@0
   108
				CApaRecognizerDll* lib=iRecognizer.iRecognizerLib[i];
sl@0
   109
				TDriveUnit drive(lib->iId.iDrive);
sl@0
   110
				TChar driveName=drive.Name()[0];
sl@0
   111
				if(driveName != TChar('Z'))
sl@0
   112
					{
sl@0
   113
					iRecognizer.RemoveRecognizer(lib); // ignore any errors
sl@0
   114
					}
sl@0
   115
			}
sl@0
   116
		}
sl@0
   117
sl@0
   118
	if (aBackupOperationAttributes.iFileFlag == MBackupObserver::ETakeLock &&
sl@0
   119
		(aBackupOperationAttributes.iOperation == EEnd ||
sl@0
   120
		aBackupOperationAttributes.iOperation == EAbort))
sl@0
   121
		{
sl@0
   122
		iRecognizer.ScanForRecognizersL();
sl@0
   123
		}
sl@0
   124
	}
sl@0
   125
sl@0
   126
TInt CApaScanningDataRecognizer::CApaBackupOperationObserver::UpdateCounter() const
sl@0
   127
	{
sl@0
   128
	return iUpdateCounter;
sl@0
   129
	}
sl@0
   130
sl@0
   131
void CApaScanningDataRecognizer::CApaBackupOperationObserver::SetUpdateCounter(TInt aValue)
sl@0
   132
	{
sl@0
   133
	iUpdateCounter = aValue;
sl@0
   134
	}
sl@0
   135
sl@0
   136
sl@0
   137
//
sl@0
   138
// class CApaScanningDataRecognizer
sl@0
   139
// 
sl@0
   140
sl@0
   141
EXPORT_C CApaScanningDataRecognizer* CApaScanningDataRecognizer::NewL(RFs& aFs)
sl@0
   142
	{
sl@0
   143
	return NewL(aFs,ETrue);
sl@0
   144
	}
sl@0
   145
sl@0
   146
/**
sl@0
   147
@internalTechnology
sl@0
   148
*/
sl@0
   149
EXPORT_C CApaScanningDataRecognizer* CApaScanningDataRecognizer::NewL(RFs& aFs, TBool aLoadDataRecognizers)
sl@0
   150
	{
sl@0
   151
	CApaScanningDataRecognizer* self=new(ELeave) CApaScanningDataRecognizer(aFs);
sl@0
   152
	CleanupStack::PushL(self);
sl@0
   153
	self->ConstructL(aLoadDataRecognizers);
sl@0
   154
	CleanupStack::Pop(); // self
sl@0
   155
	return self;
sl@0
   156
	}
sl@0
   157
sl@0
   158
EXPORT_C CApaScanningDataRecognizer::~CApaScanningDataRecognizer()
sl@0
   159
	{
sl@0
   160
	UnloadRecognizers();
sl@0
   161
	delete iExtra->iObserver;
sl@0
   162
	delete iExtra;
sl@0
   163
	}
sl@0
   164
sl@0
   165
EXPORT_C void CApaScanningDataRecognizer::ScanForRecognizersL()
sl@0
   166
	{
sl@0
   167
	// set all recognizers to not present - pending rediscovery
sl@0
   168
	TInt count=iRecognizerLib.Count();
sl@0
   169
	TInt i;
sl@0
   170
	for (i=0; i<count; i++)
sl@0
   171
		iRecognizerLib[i]->iPresent=CApaRecognizerDll::ENotPresent;
sl@0
   172
sl@0
   173
	ScanForEcomRecognizersL();
sl@0
   174
	//
sl@0
   175
	// remove any recognizers that are no longer present
sl@0
   176
	for (TInt ii=iRecognizerLib.Count()-1;ii>=0;ii--)
sl@0
   177
		{
sl@0
   178
		CApaRecognizerDll* lib=iRecognizerLib[ii];
sl@0
   179
		if (lib->iPresent==CApaRecognizerDll::ENotPresent)
sl@0
   180
			{
sl@0
   181
			RemoveRecognizer(lib); // ignore any errors
sl@0
   182
			}
sl@0
   183
		}
sl@0
   184
	iMaxBufferSize = -1; // Recognizers were re-loaded so need to recalculate the maximum buffer size
sl@0
   185
	}
sl@0
   186
sl@0
   187
EXPORT_C TInt CApaScanningDataRecognizer::RecognizerCount()
sl@0
   188
	{
sl@0
   189
	return iRecognizerLib.Count();
sl@0
   190
	}
sl@0
   191
sl@0
   192
EXPORT_C CApaScanningDataRecognizer::CRecognizerArray* CApaScanningDataRecognizer::RecognizerListLC()const
sl@0
   193
	{
sl@0
   194
	CRecognizerArray* list=new(ELeave) CArrayFixFlat<TRecognizer>(2);
sl@0
   195
	CleanupStack::PushL(list);
sl@0
   196
	TInt count=iRecognizerLib.Count();
sl@0
   197
	for (TInt i=0; i<count; i++)
sl@0
   198
		list->AppendL(iRecognizerLib[i]->iId);
sl@0
   199
	return list;
sl@0
   200
	}
sl@0
   201
sl@0
   202
EXPORT_C const CApaScanningDataRecognizer::TRecognizer& CApaScanningDataRecognizer::operator[](TInt aIndex)const
sl@0
   203
	{
sl@0
   204
	return iRecognizerLib[aIndex]->iId;	
sl@0
   205
	}
sl@0
   206
sl@0
   207
EXPORT_C TInt CApaScanningDataRecognizer::UpdateCounter()const
sl@0
   208
	{
sl@0
   209
	return iExtra->iObserver->UpdateCounter();
sl@0
   210
	}
sl@0
   211
sl@0
   212
sl@0
   213
EXPORT_C CApaScanningDataRecognizer::CApaScanningDataRecognizer(RFs& aFs)
sl@0
   214
	:CApaDataRecognizer(aFs),
sl@0
   215
	iRecognizerLib(KRecognizerDllGranularity)
sl@0
   216
	{
sl@0
   217
	__DECLARE_NAME(_S("CApaScanningDataRecognizer"));
sl@0
   218
	}
sl@0
   219
sl@0
   220
EXPORT_C void CApaScanningDataRecognizer::ConstructL()
sl@0
   221
	{
sl@0
   222
	ConstructL(ETrue);
sl@0
   223
	}
sl@0
   224
sl@0
   225
void CApaScanningDataRecognizer::ConstructL(TBool aLoadDataRecognizers)
sl@0
   226
	{
sl@0
   227
	iExtra = new (ELeave) CApaScanningDataRecognizerExtra();
sl@0
   228
	iExtra->iObserver = new (ELeave) CApaBackupOperationObserver( *this );
sl@0
   229
	iExtra->iObserver->RegisterObserverL();
sl@0
   230
	if(aLoadDataRecognizers)
sl@0
   231
		{
sl@0
   232
		LoadRecognizersL();
sl@0
   233
		}
sl@0
   234
	}
sl@0
   235
sl@0
   236
EXPORT_C void CApaScanningDataRecognizer::SetEcomRecognizersFromListL(const CRecognizerArray& aList)
sl@0
   237
	{
sl@0
   238
	//for ecom style
sl@0
   239
	for (TInt i=0 ; i<aList.Count() ; i++)
sl@0
   240
		{
sl@0
   241
		TDriveUnit drive(aList[i].iDrive);
sl@0
   242
		TRAPD(ret, LoadEcomRecognizerL(drive,aList[i].iUid));
sl@0
   243
		if (ret==KErrNoMemory)
sl@0
   244
			{
sl@0
   245
			User::Leave(ret); 
sl@0
   246
			}
sl@0
   247
		}
sl@0
   248
	}
sl@0
   249
sl@0
   250
EXPORT_C void CApaScanningDataRecognizer::SetEcomRecognizerL(const TRecognizer& aRecognizer)
sl@0
   251
	{
sl@0
   252
	//for ecom style 
sl@0
   253
	TDriveUnit drive(aRecognizer.iDrive);
sl@0
   254
	LoadEcomRecognizerL(drive,aRecognizer.iUid);
sl@0
   255
	}
sl@0
   256
sl@0
   257
TInt CApaScanningDataRecognizer::RemoveRecognizer(CApaRecognizerDll* aDll)
sl@0
   258
	{
sl@0
   259
	__ASSERT_DEBUG(iRecognizerLib.Count()>0,User::Invariant());
sl@0
   260
	// try to remove the recognizer from the list
sl@0
   261
	TInt ret=RemoveDataRecognizerType(aDll->iRec);
sl@0
   262
	if (ret!=KErrNone && ret!=KErrNotFound)
sl@0
   263
		return ret;
sl@0
   264
	//
sl@0
   265
	// get a handle to the previous entry in the list
sl@0
   266
	TInt count=iRecognizerLib.Count();
sl@0
   267
	TInt i;
sl@0
   268
	for (i=0; i<count; i++)
sl@0
   269
		{
sl@0
   270
		if (iRecognizerLib[i]==aDll)
sl@0
   271
			break;
sl@0
   272
		}
sl@0
   273
	__ASSERT_ALWAYS(i<count,Panic(EPanicLibraryNotInList));
sl@0
   274
	
sl@0
   275
	// remove the dll
sl@0
   276
	delete iRecognizerLib[i];
sl@0
   277
	iRecognizerLib.Remove(i);
sl@0
   278
	iRecognizerLib.Compress();
sl@0
   279
	if(iExtra->iObserver)
sl@0
   280
		iExtra->iObserver->SetUpdateCounter(iExtra->iObserver->UpdateCounter() +1);
sl@0
   281
	return KErrNone;
sl@0
   282
	}
sl@0
   283
sl@0
   284
#ifdef USING_ECOM_RECOGS
sl@0
   285
sl@0
   286
//load the ecom style data recognizer
sl@0
   287
void CApaScanningDataRecognizer::LoadEcomRecognizerL(TDriveUnit& aDrive,TUid aUid)
sl@0
   288
	{
sl@0
   289
	//Get implementation information of the recognizer with UID aUid
sl@0
   290
	RImplInfoPtrArray implementationInfoArray;
sl@0
   291
	TCleanupItem cleanup(CleanUpEComInfoArray, &implementationInfoArray);
sl@0
   292
	CleanupStack::PushL(cleanup);
sl@0
   293
	REComSession::ListImplementationsL(KUidDataRecogInterFaceUid,implementationInfoArray);
sl@0
   294
	const TInt availCount = implementationInfoArray.Count();
sl@0
   295
	CImplementationInformation* info=NULL;
sl@0
   296
	TInt ii;
sl@0
   297
	for (ii=0;ii<availCount;++ii)
sl@0
   298
		{
sl@0
   299
		info = implementationInfoArray[ii];
sl@0
   300
		TUid uid = info->ImplementationUid();
sl@0
   301
		
sl@0
   302
		if(uid.iUid == aUid.iUid )
sl@0
   303
			{
sl@0
   304
			break;
sl@0
   305
			}
sl@0
   306
		}
sl@0
   307
sl@0
   308
	//If the implementation not found just return
sl@0
   309
	if(ii==availCount)
sl@0
   310
		{
sl@0
   311
		CleanupStack::PopAndDestroy(&implementationInfoArray);		
sl@0
   312
		return;
sl@0
   313
		}
sl@0
   314
	
sl@0
   315
	//Get the version of implementation
sl@0
   316
	TInt version=info->Version();
sl@0
   317
	
sl@0
   318
	// check we haven't loaded this one already
sl@0
   319
	TInt count=iRecognizerLib.Count();
sl@0
   320
	TInt i;
sl@0
   321
	CApaRecognizerDll* lib=NULL; // the previous one in the list
sl@0
   322
	for (i=0; i<count; i++)
sl@0
   323
		{
sl@0
   324
		lib=iRecognizerLib[i];
sl@0
   325
		if (lib->iId.iUid==aUid)
sl@0
   326
			{// we may have to override one
sl@0
   327
			if (lib->iPresent!=CApaRecognizerDll::ENotPresent)
sl@0
   328
				{
sl@0
   329
				CleanupStack::PopAndDestroy(&implementationInfoArray);				
sl@0
   330
				return; // already found
sl@0
   331
				}
sl@0
   332
			else
sl@0
   333
				{
sl@0
   334
				if (lib->iVersion < version)
sl@0
   335
					{
sl@0
   336
					//Upgrade a plugin if a plugin with higher version than loaded plugin is installed.  
sl@0
   337
					lib->iPresent = CApaRecognizerDll::ESuperseded;
sl@0
   338
					break;
sl@0
   339
					}
sl@0
   340
				else
sl@0
   341
					{
sl@0
   342
					CleanupStack::PopAndDestroy(&implementationInfoArray);					
sl@0
   343
					lib->iPresent = CApaRecognizerDll::EIsPresent;
sl@0
   344
					return;
sl@0
   345
					}
sl@0
   346
				}
sl@0
   347
			}			
sl@0
   348
		}
sl@0
   349
	//Remove the old version and let it continue to load new version
sl@0
   350
	if ((i<count)&&(lib->iPresent==CApaRecognizerDll::ESuperseded))
sl@0
   351
		{
sl@0
   352
		RemoveRecognizer(lib);
sl@0
   353
		}
sl@0
   354
sl@0
   355
	// load the library
sl@0
   356
	HBufC* recogName=info->DisplayName().AllocL();
sl@0
   357
	CleanupStack::PushL(recogName);
sl@0
   358
	lib=NULL;
sl@0
   359
	lib = new(ELeave) CApaRecognizerDll(recogName);
sl@0
   360
	CleanupStack::Pop(recogName);
sl@0
   361
	CleanupStack::PushL(lib);
sl@0
   362
	TRAPD(error,lib->iRec = CApaDataRecognizerType::CreateDataRecognizerL(aUid));
sl@0
   363
	if(!error && lib->iRec)
sl@0
   364
		{
sl@0
   365
		lib->iPresent = CApaRecognizerDll::EIsPresent;
sl@0
   366
		AddDataRecognizerTypeL(lib->iRec);
sl@0
   367
		lib->iId.iUid = aUid;
sl@0
   368
		lib->iId.iDrive = aDrive;
sl@0
   369
		lib->iVersion=version;
sl@0
   370
		iExtra->iObserver->SetUpdateCounter(iExtra->iObserver->UpdateCounter() + 1);
sl@0
   371
		//
sl@0
   372
		// add lib to the library list
sl@0
   373
		iRecognizerLib.AppendL(lib);
sl@0
   374
		CleanupStack::Pop(lib); // lib
sl@0
   375
		}
sl@0
   376
	else
sl@0
   377
		{
sl@0
   378
		CleanupStack::PopAndDestroy(lib); // lib
sl@0
   379
		}
sl@0
   380
	CleanupStack::PopAndDestroy(&implementationInfoArray);	
sl@0
   381
	}
sl@0
   382
#else
sl@0
   383
void CApaScanningDataRecognizer::LoadEcomRecognizerL(TDriveUnit&,TUid)
sl@0
   384
	{
sl@0
   385
	}
sl@0
   386
#endif
sl@0
   387
sl@0
   388
void CApaScanningDataRecognizer::ScanForEcomRecognizersL()
sl@0
   389
	{
sl@0
   390
#ifdef USING_ECOM_RECOGS
sl@0
   391
	//scan ecom plugin
sl@0
   392
	RImplInfoPtrArray implementationArray;
sl@0
   393
	TCleanupItem cleanup(CleanUpEComInfoArray, &implementationArray);
sl@0
   394
	CleanupStack::PushL(cleanup);
sl@0
   395
	REComSession::ListImplementationsL(KUidDataRecogInterFaceUid,implementationArray);
sl@0
   396
	const TInt availCount = implementationArray.Count();
sl@0
   397
	for (TInt count=0;count<availCount;++count)
sl@0
   398
		{
sl@0
   399
		const CImplementationInformation* info = implementationArray[count];
sl@0
   400
		TUid uid = info->ImplementationUid();
sl@0
   401
		TDriveUnit drive=info-> Drive();
sl@0
   402
		TRAP_IGNORE(LoadEcomRecognizerL(drive,uid));
sl@0
   403
		}
sl@0
   404
	CleanupStack::PopAndDestroy(&implementationArray);
sl@0
   405
#endif
sl@0
   406
	}
sl@0
   407
sl@0
   408
/**
sl@0
   409
@internalTechnology
sl@0
   410
*/
sl@0
   411
EXPORT_C void CApaScanningDataRecognizer::LoadRecognizersL()
sl@0
   412
	{
sl@0
   413
	iExtra->iRecognizersLoaded = ETrue;
sl@0
   414
	ScanForRecognizersL();
sl@0
   415
	UpdateDataTypesL();
sl@0
   416
	}
sl@0
   417
sl@0
   418
/**
sl@0
   419
@internalTechnology
sl@0
   420
*/
sl@0
   421
EXPORT_C void CApaScanningDataRecognizer::UnloadRecognizers()
sl@0
   422
	{	
sl@0
   423
	iExtra->iRecognizersLoaded = EFalse;
sl@0
   424
	DestroyRecognizerList();
sl@0
   425
	iRecognizerLib.ResetAndDestroy();
sl@0
   426
	}
sl@0
   427