os/ossrv/genericservices/mimerecognitionfw/inc/APMFNDR.H
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
//
sl@0
    15
sl@0
    16
#if !defined (__APMFNDR_H__)
sl@0
    17
#define __APMFNDR_H__
sl@0
    18
sl@0
    19
#if !defined(__E32BASE_H__)
sl@0
    20
#include <e32base.h>
sl@0
    21
#endif
sl@0
    22
#if !defined(__F32FILE_H__)
sl@0
    23
#include <f32file.h>
sl@0
    24
#endif
sl@0
    25
#if !defined(__APMREC_H__)
sl@0
    26
#include <apmrec.h>
sl@0
    27
#endif
sl@0
    28
sl@0
    29
#include <babackup.h>
sl@0
    30
sl@0
    31
/**
sl@0
    32
@internalComponent
sl@0
    33
*/
sl@0
    34
sl@0
    35
// classes defined
sl@0
    36
class CApaRecognizerDll;
sl@0
    37
sl@0
    38
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    39
/** This is a special priority that overrides any user settings. Applications must
sl@0
    40
have EWriteDeviceData to use this priority. If they have not then they will be
sl@0
    41
downgraded to KDataTypePriorityNormal.
sl@0
    42
sl@0
    43
@publishedPartner
sl@0
    44
@released
sl@0
    45
@see TDataTypeWithPriority */
sl@0
    46
const TInt32 KDataTypePrioritySystem = 0xFFF9;
sl@0
    47
sl@0
    48
sl@0
    49
class CApaDataRecognizer : public CBase
sl@0
    50
/**
sl@0
    51
@internalTechnology
sl@0
    52
*/
sl@0
    53
	{
sl@0
    54
public:
sl@0
    55
	IMPORT_C TDataRecognitionResult RecognizeL(const TDesC& aName, const TDesC8& aBuffer);
sl@0
    56
	IMPORT_C TDataRecognitionResult RecognizeL(RFile& aFile, TInt aPreferredBufSize);
sl@0
    57
	IMPORT_C TBool RecognizeL(const TDesC& aName, const TDesC8& aBuffer, const TDataType& aDataType);
sl@0
    58
	IMPORT_C TBool RecognizeL(RFile& aFile, TInt aPreferredBufSize, const TDataType& aDataType);
sl@0
    59
	IMPORT_C ~CApaDataRecognizer();
sl@0
    60
	IMPORT_C TInt PreferredBufSize() const;
sl@0
    61
	IMPORT_C void DataTypeL(CDataTypeArray& aArray);
sl@0
    62
	IMPORT_C void UpdateDataTypesL();
sl@0
    63
	IMPORT_C TInt AcceptedConfidence() const;
sl@0
    64
	IMPORT_C void SetAcceptedConfidence(TInt aConfidence);
sl@0
    65
	inline void SetFilePassedByHandle(RFile* aFilePassedByHandle) {iFilePassedByHandle=aFilePassedByHandle;}
sl@0
    66
	inline RFile* FilePassedByHandle() {return iFilePassedByHandle;}
sl@0
    67
protected:
sl@0
    68
	IMPORT_C CApaDataRecognizer(RFs& aFs);
sl@0
    69
	IMPORT_C void AddDataRecognizerTypeL(CApaDataRecognizerType* aDataRecognizerType);
sl@0
    70
	inline void AddDataRecognizerType(CApaDataRecognizerType* aDataRecognizerType);
sl@0
    71
	IMPORT_C TInt RemoveDataRecognizerType(const CApaDataRecognizerType* aDataRecognizerType);
sl@0
    72
	IMPORT_C void DestroyRecognizerList();
sl@0
    73
private:
sl@0
    74
	void AddDataTypeL(const TDataType& aDataType);
sl@0
    75
	TDataRecognitionResult RecognizeL(TDataToRecognize& aDataToRecognize);
sl@0
    76
	TBool RecognizeL(TDataToRecognize& aDataToRecognize, const TDataType& aDataType);
sl@0
    77
	TBool DoRecognize(CApaDataRecognizerType* aDataRecognizerType, TDataToRecognize& aDataToRecognize, const TDataType& aDataType, TInt& aError);
sl@0
    78
protected:
sl@0
    79
	RFs& iFs;
sl@0
    80
	// iMaxBufferSize is mutable to allow modification by PreferredBufSize() which is const.
sl@0
    81
	mutable TInt iMaxBufferSize; 
sl@0
    82
private:
sl@0
    83
	IMPORT_C virtual void CApaDataRecognizer_Reserved_1(); // shouldn't be necessary as the class is @internalTechnology
sl@0
    84
private:
sl@0
    85
	RPointerArray<CApaDataRecognizerType> iDataRecognizerList;
sl@0
    86
	RArray<TDataType> iDataArray;
sl@0
    87
	TInt iAcceptedConfidence;
sl@0
    88
	TDataRecognitionResult iResult;
sl@0
    89
	RFile* iFilePassedByHandle;
sl@0
    90
	};
sl@0
    91
sl@0
    92
#endif //SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    93
sl@0
    94
class CApaScanningDataRecognizer : public CApaDataRecognizer
sl@0
    95
/**
sl@0
    96
@publishedPartner 
sl@0
    97
@released 
sl@0
    98
*/
sl@0
    99
	{
sl@0
   100
public:
sl@0
   101
	class TRecognizer
sl@0
   102
		{
sl@0
   103
	friend class CApaRecognizerDll;
sl@0
   104
	friend class CT_MimeStep;
sl@0
   105
	public:
sl@0
   106
		TRecognizer(HBufC* aName);
sl@0
   107
		inline const TDesC& Name() const;
sl@0
   108
	public:
sl@0
   109
		TUid iUid;
sl@0
   110
		TInt iDrive;
sl@0
   111
		TTime iModified;
sl@0
   112
	private:
sl@0
   113
		inline TRecognizer();
sl@0
   114
		TRecognizer(const TRecognizer&);
sl@0
   115
		TRecognizer operator=(const TRecognizer&);
sl@0
   116
	private:
sl@0
   117
		HBufC* iName;
sl@0
   118
		};
sl@0
   119
	typedef CArrayFixFlat<TRecognizer> CRecognizerArray;
sl@0
   120
sl@0
   121
private:
sl@0
   122
	class CApaBackupOperationObserver : public CBase, public MBackupOperationObserver
sl@0
   123
		{
sl@0
   124
	public:
sl@0
   125
		CApaBackupOperationObserver(CApaScanningDataRecognizer& aRecognizer);
sl@0
   126
		~CApaBackupOperationObserver();
sl@0
   127
		void RegisterObserverL();
sl@0
   128
sl@0
   129
		virtual void HandleBackupOperationEventL(const TBackupOperationAttributes& aBackupOperationAttributes);
sl@0
   130
		TInt UpdateCounter() const;
sl@0
   131
		void SetUpdateCounter( TInt aValue );
sl@0
   132
	private:
sl@0
   133
		CBaBackupSessionWrapper* iSession;
sl@0
   134
		CApaScanningDataRecognizer& iRecognizer;
sl@0
   135
		TInt iUpdateCounter;
sl@0
   136
		};
sl@0
   137
	friend class CApaScanningDataRecognizer::CApaBackupOperationObserver;
sl@0
   138
sl@0
   139
	class CApaScanningDataRecognizerExtra : public CBase
sl@0
   140
		{
sl@0
   141
	private:
sl@0
   142
		CApaBackupOperationObserver* iObserver;
sl@0
   143
		TBool iRecognizersLoaded;
sl@0
   144
		friend class CApaScanningDataRecognizer;
sl@0
   145
		friend class CApaBackupOperationObserver;
sl@0
   146
		};
sl@0
   147
sl@0
   148
	//
sl@0
   149
public:
sl@0
   150
	IMPORT_C static CApaScanningDataRecognizer* NewL(RFs& aFs);
sl@0
   151
	IMPORT_C static CApaScanningDataRecognizer* NewL(RFs& aFs, TBool aLoadDataRecognizers);
sl@0
   152
	IMPORT_C ~CApaScanningDataRecognizer();
sl@0
   153
	IMPORT_C void ScanForRecognizersL();
sl@0
   154
	IMPORT_C TInt RecognizerCount();
sl@0
   155
	IMPORT_C CRecognizerArray* RecognizerListLC()const;
sl@0
   156
	IMPORT_C const TRecognizer& operator[](TInt aIndex)const;
sl@0
   157
	IMPORT_C TInt UpdateCounter()const;
sl@0
   158
	IMPORT_C void LoadRecognizersL();
sl@0
   159
	IMPORT_C void UnloadRecognizers();
sl@0
   160
sl@0
   161
protected:
sl@0
   162
	IMPORT_C CApaScanningDataRecognizer(RFs& aFs);
sl@0
   163
	IMPORT_C void ConstructL();
sl@0
   164
private:
sl@0
   165
	void ConstructL(TBool aLoadDataRecognizers);
sl@0
   166
	void ScanDriveL(TInt aDriveNum);
sl@0
   167
	void LoadRecognizerL(const TDesC& aFullName,TUid aUid, const TTime& aTime);
sl@0
   168
	TInt RemoveRecognizer(CApaRecognizerDll* aDll);
sl@0
   169
	void LoadEcomRecognizerL(TDriveUnit& aDrive,TUid aUid);
sl@0
   170
	void ScanForEcomRecognizersL();
sl@0
   171
public:
sl@0
   172
	IMPORT_C void SetEcomRecognizersFromListL(const CRecognizerArray& aList);
sl@0
   173
	IMPORT_C void SetEcomRecognizerL(const TRecognizer& aRecognizer); 
sl@0
   174
private:
sl@0
   175
	friend class CApaBackupObserver;
sl@0
   176
	RPointerArray<CApaRecognizerDll> iRecognizerLib;
sl@0
   177
	CApaScanningDataRecognizerExtra* iExtra;
sl@0
   178
	};
sl@0
   179
sl@0
   180
//gmahe. This is not moved. Because it is not possible to forward declare 
sl@0
   181
//the nested class used here - CApaScanningDataRecognizer::TRecognizer.
sl@0
   182
sl@0
   183
class CApaRecognizerDll : public CBase
sl@0
   184
/**
sl@0
   185
@internalTechnology
sl@0
   186
*/
sl@0
   187
	{
sl@0
   188
public:
sl@0
   189
	CApaRecognizerDll(HBufC* aName);
sl@0
   190
	~CApaRecognizerDll(); // closes lib and deletes next
sl@0
   191
public:
sl@0
   192
	enum TPresence { ENotPresent, EIsPresent, ESuperseded };
sl@0
   193
public:
sl@0
   194
	RLibrary iLibrary;
sl@0
   195
	CApaRecognizerDll* iNext;
sl@0
   196
	CApaScanningDataRecognizer::TRecognizer iId; // cached so that this data can be accessed from other threads (RLibrary cant be used in this case)
sl@0
   197
	CApaDataRecognizerType* iRec; // not ownership
sl@0
   198
	TPresence iPresent;
sl@0
   199
	TInt iVersion;
sl@0
   200
	};
sl@0
   201
sl@0
   202
//
sl@0
   203
// inlines
sl@0
   204
//
sl@0
   205
sl@0
   206
inline const TDesC& CApaScanningDataRecognizer::TRecognizer::Name() const
sl@0
   207
	{
sl@0
   208
	return *iName;
sl@0
   209
	}
sl@0
   210
sl@0
   211
inline CApaScanningDataRecognizer::TRecognizer::TRecognizer()
sl@0
   212
	{
sl@0
   213
	}
sl@0
   214
sl@0
   215
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
   216
// Deprecated - Use CApaDataRecognizer::AddDataRecognizerTypeL instead 
sl@0
   217
// as adding a concrete recognizer into the list could leave.
sl@0
   218
/**
sl@0
   219
@deprecated 7.0s
sl@0
   220
*/
sl@0
   221
inline void CApaDataRecognizer::AddDataRecognizerType(CApaDataRecognizerType* aDataRecognizerType)
sl@0
   222
	{
sl@0
   223
	AddDataRecognizerTypeL(aDataRecognizerType);
sl@0
   224
	}
sl@0
   225
#endif //SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
   226
sl@0
   227
#endif