1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/genericservices/mimerecognitionfw/inc/APMFNDR.H Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,227 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#if !defined (__APMFNDR_H__)
1.20 +#define __APMFNDR_H__
1.21 +
1.22 +#if !defined(__E32BASE_H__)
1.23 +#include <e32base.h>
1.24 +#endif
1.25 +#if !defined(__F32FILE_H__)
1.26 +#include <f32file.h>
1.27 +#endif
1.28 +#if !defined(__APMREC_H__)
1.29 +#include <apmrec.h>
1.30 +#endif
1.31 +
1.32 +#include <babackup.h>
1.33 +
1.34 +/**
1.35 +@internalComponent
1.36 +*/
1.37 +
1.38 +// classes defined
1.39 +class CApaRecognizerDll;
1.40 +
1.41 +#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
1.42 +/** This is a special priority that overrides any user settings. Applications must
1.43 +have EWriteDeviceData to use this priority. If they have not then they will be
1.44 +downgraded to KDataTypePriorityNormal.
1.45 +
1.46 +@publishedPartner
1.47 +@released
1.48 +@see TDataTypeWithPriority */
1.49 +const TInt32 KDataTypePrioritySystem = 0xFFF9;
1.50 +
1.51 +
1.52 +class CApaDataRecognizer : public CBase
1.53 +/**
1.54 +@internalTechnology
1.55 +*/
1.56 + {
1.57 +public:
1.58 + IMPORT_C TDataRecognitionResult RecognizeL(const TDesC& aName, const TDesC8& aBuffer);
1.59 + IMPORT_C TDataRecognitionResult RecognizeL(RFile& aFile, TInt aPreferredBufSize);
1.60 + IMPORT_C TBool RecognizeL(const TDesC& aName, const TDesC8& aBuffer, const TDataType& aDataType);
1.61 + IMPORT_C TBool RecognizeL(RFile& aFile, TInt aPreferredBufSize, const TDataType& aDataType);
1.62 + IMPORT_C ~CApaDataRecognizer();
1.63 + IMPORT_C TInt PreferredBufSize() const;
1.64 + IMPORT_C void DataTypeL(CDataTypeArray& aArray);
1.65 + IMPORT_C void UpdateDataTypesL();
1.66 + IMPORT_C TInt AcceptedConfidence() const;
1.67 + IMPORT_C void SetAcceptedConfidence(TInt aConfidence);
1.68 + inline void SetFilePassedByHandle(RFile* aFilePassedByHandle) {iFilePassedByHandle=aFilePassedByHandle;}
1.69 + inline RFile* FilePassedByHandle() {return iFilePassedByHandle;}
1.70 +protected:
1.71 + IMPORT_C CApaDataRecognizer(RFs& aFs);
1.72 + IMPORT_C void AddDataRecognizerTypeL(CApaDataRecognizerType* aDataRecognizerType);
1.73 + inline void AddDataRecognizerType(CApaDataRecognizerType* aDataRecognizerType);
1.74 + IMPORT_C TInt RemoveDataRecognizerType(const CApaDataRecognizerType* aDataRecognizerType);
1.75 + IMPORT_C void DestroyRecognizerList();
1.76 +private:
1.77 + void AddDataTypeL(const TDataType& aDataType);
1.78 + TDataRecognitionResult RecognizeL(TDataToRecognize& aDataToRecognize);
1.79 + TBool RecognizeL(TDataToRecognize& aDataToRecognize, const TDataType& aDataType);
1.80 + TBool DoRecognize(CApaDataRecognizerType* aDataRecognizerType, TDataToRecognize& aDataToRecognize, const TDataType& aDataType, TInt& aError);
1.81 +protected:
1.82 + RFs& iFs;
1.83 + // iMaxBufferSize is mutable to allow modification by PreferredBufSize() which is const.
1.84 + mutable TInt iMaxBufferSize;
1.85 +private:
1.86 + IMPORT_C virtual void CApaDataRecognizer_Reserved_1(); // shouldn't be necessary as the class is @internalTechnology
1.87 +private:
1.88 + RPointerArray<CApaDataRecognizerType> iDataRecognizerList;
1.89 + RArray<TDataType> iDataArray;
1.90 + TInt iAcceptedConfidence;
1.91 + TDataRecognitionResult iResult;
1.92 + RFile* iFilePassedByHandle;
1.93 + };
1.94 +
1.95 +#endif //SYMBIAN_ENABLE_SPLIT_HEADERS
1.96 +
1.97 +class CApaScanningDataRecognizer : public CApaDataRecognizer
1.98 +/**
1.99 +@publishedPartner
1.100 +@released
1.101 +*/
1.102 + {
1.103 +public:
1.104 + class TRecognizer
1.105 + {
1.106 + friend class CApaRecognizerDll;
1.107 + friend class CT_MimeStep;
1.108 + public:
1.109 + TRecognizer(HBufC* aName);
1.110 + inline const TDesC& Name() const;
1.111 + public:
1.112 + TUid iUid;
1.113 + TInt iDrive;
1.114 + TTime iModified;
1.115 + private:
1.116 + inline TRecognizer();
1.117 + TRecognizer(const TRecognizer&);
1.118 + TRecognizer operator=(const TRecognizer&);
1.119 + private:
1.120 + HBufC* iName;
1.121 + };
1.122 + typedef CArrayFixFlat<TRecognizer> CRecognizerArray;
1.123 +
1.124 +private:
1.125 + class CApaBackupOperationObserver : public CBase, public MBackupOperationObserver
1.126 + {
1.127 + public:
1.128 + CApaBackupOperationObserver(CApaScanningDataRecognizer& aRecognizer);
1.129 + ~CApaBackupOperationObserver();
1.130 + void RegisterObserverL();
1.131 +
1.132 + virtual void HandleBackupOperationEventL(const TBackupOperationAttributes& aBackupOperationAttributes);
1.133 + TInt UpdateCounter() const;
1.134 + void SetUpdateCounter( TInt aValue );
1.135 + private:
1.136 + CBaBackupSessionWrapper* iSession;
1.137 + CApaScanningDataRecognizer& iRecognizer;
1.138 + TInt iUpdateCounter;
1.139 + };
1.140 + friend class CApaScanningDataRecognizer::CApaBackupOperationObserver;
1.141 +
1.142 + class CApaScanningDataRecognizerExtra : public CBase
1.143 + {
1.144 + private:
1.145 + CApaBackupOperationObserver* iObserver;
1.146 + TBool iRecognizersLoaded;
1.147 + friend class CApaScanningDataRecognizer;
1.148 + friend class CApaBackupOperationObserver;
1.149 + };
1.150 +
1.151 + //
1.152 +public:
1.153 + IMPORT_C static CApaScanningDataRecognizer* NewL(RFs& aFs);
1.154 + IMPORT_C static CApaScanningDataRecognizer* NewL(RFs& aFs, TBool aLoadDataRecognizers);
1.155 + IMPORT_C ~CApaScanningDataRecognizer();
1.156 + IMPORT_C void ScanForRecognizersL();
1.157 + IMPORT_C TInt RecognizerCount();
1.158 + IMPORT_C CRecognizerArray* RecognizerListLC()const;
1.159 + IMPORT_C const TRecognizer& operator[](TInt aIndex)const;
1.160 + IMPORT_C TInt UpdateCounter()const;
1.161 + IMPORT_C void LoadRecognizersL();
1.162 + IMPORT_C void UnloadRecognizers();
1.163 +
1.164 +protected:
1.165 + IMPORT_C CApaScanningDataRecognizer(RFs& aFs);
1.166 + IMPORT_C void ConstructL();
1.167 +private:
1.168 + void ConstructL(TBool aLoadDataRecognizers);
1.169 + void ScanDriveL(TInt aDriveNum);
1.170 + void LoadRecognizerL(const TDesC& aFullName,TUid aUid, const TTime& aTime);
1.171 + TInt RemoveRecognizer(CApaRecognizerDll* aDll);
1.172 + void LoadEcomRecognizerL(TDriveUnit& aDrive,TUid aUid);
1.173 + void ScanForEcomRecognizersL();
1.174 +public:
1.175 + IMPORT_C void SetEcomRecognizersFromListL(const CRecognizerArray& aList);
1.176 + IMPORT_C void SetEcomRecognizerL(const TRecognizer& aRecognizer);
1.177 +private:
1.178 + friend class CApaBackupObserver;
1.179 + RPointerArray<CApaRecognizerDll> iRecognizerLib;
1.180 + CApaScanningDataRecognizerExtra* iExtra;
1.181 + };
1.182 +
1.183 +//gmahe. This is not moved. Because it is not possible to forward declare
1.184 +//the nested class used here - CApaScanningDataRecognizer::TRecognizer.
1.185 +
1.186 +class CApaRecognizerDll : public CBase
1.187 +/**
1.188 +@internalTechnology
1.189 +*/
1.190 + {
1.191 +public:
1.192 + CApaRecognizerDll(HBufC* aName);
1.193 + ~CApaRecognizerDll(); // closes lib and deletes next
1.194 +public:
1.195 + enum TPresence { ENotPresent, EIsPresent, ESuperseded };
1.196 +public:
1.197 + RLibrary iLibrary;
1.198 + CApaRecognizerDll* iNext;
1.199 + CApaScanningDataRecognizer::TRecognizer iId; // cached so that this data can be accessed from other threads (RLibrary cant be used in this case)
1.200 + CApaDataRecognizerType* iRec; // not ownership
1.201 + TPresence iPresent;
1.202 + TInt iVersion;
1.203 + };
1.204 +
1.205 +//
1.206 +// inlines
1.207 +//
1.208 +
1.209 +inline const TDesC& CApaScanningDataRecognizer::TRecognizer::Name() const
1.210 + {
1.211 + return *iName;
1.212 + }
1.213 +
1.214 +inline CApaScanningDataRecognizer::TRecognizer::TRecognizer()
1.215 + {
1.216 + }
1.217 +
1.218 +#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
1.219 +// Deprecated - Use CApaDataRecognizer::AddDataRecognizerTypeL instead
1.220 +// as adding a concrete recognizer into the list could leave.
1.221 +/**
1.222 +@deprecated 7.0s
1.223 +*/
1.224 +inline void CApaDataRecognizer::AddDataRecognizerType(CApaDataRecognizerType* aDataRecognizerType)
1.225 + {
1.226 + AddDataRecognizerTypeL(aDataRecognizerType);
1.227 + }
1.228 +#endif //SYMBIAN_ENABLE_SPLIT_HEADERS
1.229 +
1.230 +#endif