os/ossrv/genericservices/mimerecognitionfw/inc/APMREC.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(__APMREC_H__)
sl@0
    17
#define __APMREC_H__
sl@0
    18
sl@0
    19
#if !defined(__E32BASE_H__)
sl@0
    20
#include <e32base.h>
sl@0
    21
#endif
sl@0
    22
sl@0
    23
#if !defined(__APMSTD_H__)
sl@0
    24
#include <apmstd.h>
sl@0
    25
#endif
sl@0
    26
sl@0
    27
// classes defined
sl@0
    28
class CApaDataRecognizerType;
sl@0
    29
// classes referenced
sl@0
    30
class RFs;
sl@0
    31
class RFile;
sl@0
    32
class TDataToRecognize;
sl@0
    33
class CDataRecognizerExtension;
sl@0
    34
sl@0
    35
/** Creates an interface object for a abstract base class for a recognizer.
sl@0
    36
sl@0
    37
@publishedAll
sl@0
    38
@released
sl@0
    39
*/
sl@0
    40
typedef CApaDataRecognizerType* (*CreateCApaDataRecognizerType)(); 
sl@0
    41
sl@0
    42
class TDataRecognitionResult
sl@0
    43
/** The result of an attempt to recognize data.
sl@0
    44
sl@0
    45
The class contains a data (MIME) type and a confidence rating.
sl@0
    46
sl@0
    47
An object of this type is passed to the Application Architecture server when 
sl@0
    48
making a request to recognize data.
sl@0
    49
sl@0
    50
@publishedAll 
sl@0
    51
@released 
sl@0
    52
@see RApaLsSession::RecognizeData() */
sl@0
    53
	{
sl@0
    54
public:
sl@0
    55
	IMPORT_C void Reset();
sl@0
    56
public:
sl@0
    57
	/** The data type. */
sl@0
    58
	TDataType iDataType;
sl@0
    59
	/** The confidence rating associated with the data (EMIME) type. */
sl@0
    60
	TInt iConfidence;
sl@0
    61
	};
sl@0
    62
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    63
/**
sl@0
    64
@internalComponent
sl@0
    65
*/
sl@0
    66
const TInt KDataArrayGranularity=5;
sl@0
    67
sl@0
    68
#endif //SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    69
/**
sl@0
    70
@publishedAll 
sl@0
    71
@released 
sl@0
    72
*/
sl@0
    73
typedef CArrayFixFlat<TDataType> CDataTypeArray;
sl@0
    74
sl@0
    75
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    76
sl@0
    77
class CApaDataRecognizer : public CBase
sl@0
    78
/**
sl@0
    79
@internalTechnology
sl@0
    80
*/
sl@0
    81
	{
sl@0
    82
public:
sl@0
    83
	IMPORT_C TDataRecognitionResult RecognizeL(const TDesC& aName, const TDesC8& aBuffer);
sl@0
    84
	IMPORT_C TDataRecognitionResult RecognizeL(RFile& aFile, TInt aPreferredBufSize);
sl@0
    85
	IMPORT_C TBool RecognizeL(const TDesC& aName, const TDesC8& aBuffer, const TDataType& aDataType);
sl@0
    86
	IMPORT_C TBool RecognizeL(RFile& aFile, TInt aPreferredBufSize, const TDataType& aDataType);
sl@0
    87
	IMPORT_C ~CApaDataRecognizer();
sl@0
    88
	IMPORT_C TInt PreferredBufSize() const;
sl@0
    89
	IMPORT_C void DataTypeL(CDataTypeArray& aArray);
sl@0
    90
	IMPORT_C void UpdateDataTypesL();
sl@0
    91
	IMPORT_C TInt AcceptedConfidence() const;
sl@0
    92
	IMPORT_C void SetAcceptedConfidence(TInt aConfidence);
sl@0
    93
	inline void SetFilePassedByHandle(RFile* aFilePassedByHandle) {iFilePassedByHandle=aFilePassedByHandle;}
sl@0
    94
	inline RFile* FilePassedByHandle() {return iFilePassedByHandle;}
sl@0
    95
protected:
sl@0
    96
	IMPORT_C CApaDataRecognizer(RFs& aFs);
sl@0
    97
	IMPORT_C void AddDataRecognizerTypeL(CApaDataRecognizerType* aDataRecognizerType);
sl@0
    98
	inline void AddDataRecognizerType(CApaDataRecognizerType* aDataRecognizerType);
sl@0
    99
	IMPORT_C TInt RemoveDataRecognizerType(const CApaDataRecognizerType* aDataRecognizerType);
sl@0
   100
	IMPORT_C void DestroyRecognizerList();
sl@0
   101
private:
sl@0
   102
	void AddDataTypeL(const TDataType& aDataType);
sl@0
   103
	TDataRecognitionResult RecognizeL(TDataToRecognize& aDataToRecognize);
sl@0
   104
	TBool RecognizeL(TDataToRecognize& aDataToRecognize, const TDataType& aDataType);
sl@0
   105
	TBool DoRecognize(CApaDataRecognizerType* aDataRecognizerType, TDataToRecognize& aDataToRecognize, const TDataType& aDataType, TInt& aError);
sl@0
   106
protected:
sl@0
   107
	RFs& iFs;
sl@0
   108
	// iMaxBufferSize is mutable to allow modification by PreferredBufSize() which is const.
sl@0
   109
	mutable TInt iMaxBufferSize; 
sl@0
   110
private:
sl@0
   111
	IMPORT_C virtual void CApaDataRecognizer_Reserved_1(); // shouldn't be necessary as the class is @internalTechnology
sl@0
   112
private:
sl@0
   113
	RPointerArray<CApaDataRecognizerType> iDataRecognizerList;
sl@0
   114
	RArray<TDataType> iDataArray;
sl@0
   115
	TInt iAcceptedConfidence;
sl@0
   116
	TDataRecognitionResult iResult;
sl@0
   117
	RFile* iFilePassedByHandle;
sl@0
   118
	};
sl@0
   119
#endif //SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
   120
sl@0
   121
class CApaDataRecognizerType : public CBase
sl@0
   122
/** Abstract base class for a recognizer.
sl@0
   123
sl@0
   124
Concrete recognizers need to define and implement a derived class; specifically, 
sl@0
   125
they need to provide an implementation of the DoRecognizeL(), SupportedDataTypeL() 
sl@0
   126
and PreferredBufSize() functions.
sl@0
   127
sl@0
   128
The class is implemented as part of a DLL. The ordinal 1 function of the DLL 
sl@0
   129
must construct an instance of, and return a pointer to, a CApaDataRecognizerType 
sl@0
   130
derived class. 
sl@0
   131
sl@0
   132
@publishedAll 
sl@0
   133
@released */
sl@0
   134
	{
sl@0
   135
	friend class TDataToRecognize; // so that it can call the overloads of DoRecognizeL
sl@0
   136
public:	
sl@0
   137
	/** A set of values used to indicate the probability that the recognizer will successfully 
sl@0
   138
	identify data. The Application Architecture framework uses this set to determine 
sl@0
   139
	the order in which recognizers are invoked.
sl@0
   140
sl@0
   141
	@see CApaDataRecognizerType()
sl@0
   142
	@see Priority() */
sl@0
   143
	enum TRecognizerPriority
sl@0
   144
		{
sl@0
   145
		/** The highest recognizer priority. Recognizers with this priority are invoked 
sl@0
   146
		before those with any other priority. */
sl@0
   147
		EHigh=100,
sl@0
   148
		/** The normal recognizer priority. Recognizers with this priority are invoked 
sl@0
   149
		after those with a EHigh priority but before those with a ELow priority. */
sl@0
   150
		ENormal=0,
sl@0
   151
		/** The lowest recognizer priority. */
sl@0
   152
		ELow=-100
sl@0
   153
		};		
sl@0
   154
	/** A set of values describing the probability that the recognizer assigns to its 
sl@0
   155
	belief that the most recently sampled data is of the type ascribed to it. */
sl@0
   156
 	enum TRecognitionConfidence
sl@0
   157
		{
sl@0
   158
		/** The data is definitely of the data type. */
sl@0
   159
		ECertain=KMaxTInt,
sl@0
   160
		/** A level of confidence between ECertain and EPossible. */
sl@0
   161
		EProbable=100,
sl@0
   162
		/** The data is possibly of the data type. */
sl@0
   163
		EPossible=0,
sl@0
   164
		/** A level of confidence between EPossible and ENotRecognized. */
sl@0
   165
		EUnlikely=-100,
sl@0
   166
		/** The data is not recognized. */
sl@0
   167
		ENotRecognized=KMinTInt
sl@0
   168
		};
sl@0
   169
public:
sl@0
   170
	inline TInt MimeTypesCount() const;
sl@0
   171
	inline TUid TypeUid() const;
sl@0
   172
	inline TInt Priority() const;
sl@0
   173
	inline TInt Confidence() const;
sl@0
   174
	inline TInt Locked() const;
sl@0
   175
	IMPORT_C TDataRecognitionResult RecognizeL(const TDesC& aName, const TDesC8& aBuffer);
sl@0
   176
	TDataRecognitionResult RecognizeL(TDataToRecognize& aDataToRecognize);
sl@0
   177
	IMPORT_C TDataType MimeType();
sl@0
   178
	IMPORT_C void Lock();
sl@0
   179
	IMPORT_C void Unlock();
sl@0
   180
	IMPORT_C void UpdateDataTypesL();
sl@0
   181
	IMPORT_C ~CApaDataRecognizerType();
sl@0
   182
	IMPORT_C virtual TUint PreferredBufSize();
sl@0
   183
	/** Gets one of the data (MIME) types that the recognizer can recognize.
sl@0
   184
	
sl@0
   185
	@param aIndex An index that identifies the data type. Typically, the minimum 
sl@0
   186
	value is zero and the maximum value is the value of MimeTypesCount() - 1.
sl@0
   187
	@return The data (MIME) type. */
sl@0
   188
	IMPORT_C virtual TDataType SupportedDataTypeL(TInt aIndex) const = 0;
sl@0
   189
protected:
sl@0
   190
	IMPORT_C CApaDataRecognizerType(TUid aUid, TInt aPriority);
sl@0
   191
	IMPORT_C RFile* FilePassedByHandleL();
sl@0
   192
private: 
sl@0
   193
	IMPORT_C virtual void DoRecognizeL(const TDesC& aName, const TDesC8& aBuffer);
sl@0
   194
	// Reserved virtual functions...
sl@0
   195
	IMPORT_C virtual void Reserved_1();
sl@0
   196
public:
sl@0
   197
	IMPORT_C static CApaDataRecognizerType* CreateDataRecognizerL(TUid aImplUid);
sl@0
   198
	CDataRecognizerExtension* DataRecognizerExtension();
sl@0
   199
protected:
sl@0
   200
	const TUid iTypeUid;
sl@0
   201
	const TInt iPriority;
sl@0
   202
	/** The number of data (MIME) types supported by this recognizer. Typically, this 
sl@0
   203
	is set during construction of an instance of the derived class.
sl@0
   204
	
sl@0
   205
	Users of the derived class use MimeTypesCount() to get this value. */
sl@0
   206
	TInt iCountDataTypes;
sl@0
   207
	/** The recognizer's confidence rating of the most recently recognized data.
sl@0
   208
	
sl@0
   209
	Users of the derived class use Confidence() to get this value. */
sl@0
   210
	TInt iConfidence;
sl@0
   211
	/** The data (MIME) type of the most recently recognized data.
sl@0
   212
	
sl@0
   213
	Users of the derived class use MimeType() to get this value. */
sl@0
   214
	TDataType iDataType;
sl@0
   215
private:
sl@0
   216
	TInt iLock;
sl@0
   217
	CDataRecognizerExtension* iDataRecognizerExtn;
sl@0
   218
	};
sl@0
   219
sl@0
   220
#include <apmrec.inl>
sl@0
   221
sl@0
   222
#endif