sl@0: // Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #if !defined(__BANAMEDPLUGINS_H__) sl@0: #define __BANAMEDPLUGINS_H__ sl@0: sl@0: #if !defined(__E32STD_H__) sl@0: #include sl@0: #endif sl@0: sl@0: #if !defined(__E32BASE_H__) sl@0: #include sl@0: #endif sl@0: sl@0: #if !defined(__BAMDESCA_H__) sl@0: #include sl@0: #endif sl@0: sl@0: class RFs; sl@0: sl@0: sl@0: class CBaNamedPlugins : public CBase, public MDesCArray sl@0: /** sl@0: A localised list of the names of the plug-ins available on the phone for a sl@0: particular plug-in framework. sl@0: sl@0: This class should be used by applications that display lists of plug-ins. sl@0: It is provided so that the plug-in names displayed to users: sl@0: sl@0: are not filenames sl@0: sl@0: are localisable, i.e. for a multi-language ROM device, plug-in names must sl@0: be translated into the correct language and sorted according to the locale's sl@0: collation rules sl@0: sl@0: can be filtered depending on the current locale, i.e. the user will not necessarily sl@0: see the names of all plug-ins for a given framework for every language of sl@0: a multi-language ROM. sl@0: sl@0: Note that the class MDesC16Array is shown in the derivation tree. The class sl@0: definition for CBaNamedPlugins, however, uses the typedef MDesCArray. In 6.1 sl@0: builds, the symbol MDesCArray always resolves to MDesC16Array. sl@0: sl@0: @see MDesCArray sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: { sl@0: public: sl@0: /** The prototype for a function that compares two plug-in names, aName1 and aName2 sl@0: for sorting. sl@0: sl@0: The plug-in names list is sorted using this algorithm after it has been populated. sl@0: Implementing this function is optional. If implemented, it is passed as a sl@0: parameter to CParameters::SetCompareNames(). If not implemented, a default sl@0: algorithm is used. sl@0: sl@0: The function should return a positive value if aName1 is to occur after aName2 sl@0: or negative if aName1 is to occur before aName2. Zero should be returned if sl@0: both descriptors are equivalent. */ sl@0: typedef TInt (*TCompareNames)(const TDesC& aName1, const TDesC& aName2); sl@0: sl@0: /** The prototype for a function that compares two plug-in identifiers, aIdentifier1 sl@0: and aIdentifier2 to find out if they are the same. sl@0: sl@0: Implementing this function is optional. If implemented, it is passed to CBaNamedPlugins::IndexOfIdentifier(), sl@0: which uses the function to compare a specified plug-in identifier with each sl@0: identifier in turn in the list of named plug-ins. The function should return sl@0: ETrue if they are the same, EFalse if not. TDesC::CompareC() could be used to sl@0: do the comparison. sl@0: sl@0: @see TDesC16::CompareC() sl@0: @see TDesC8::CompareC() */ sl@0: typedef TBool (*TEquivalentIdentifiers)(const TDesC& aIdentifier1, const TDesC& aIdentifier2); sl@0: sl@0: /** The position in the list of plug-in names for the text string which represents sl@0: the choice of no plug-in. sl@0: sl@0: Passed as an argument to SetTextForNoneL() and SetTextForNone(). */ sl@0: enum TArrayPosition sl@0: { sl@0: /** The string is inserted at the start of the list (array position zero). */ sl@0: EArrayPositionFirst, sl@0: sl@0: /** The string is appended to the list. */ sl@0: EArrayPositionLast sl@0: }; sl@0: sl@0: class TResourceFile sl@0: /** Information about a resource file containing the names of one or more named sl@0: plug-ins. sl@0: sl@0: The information is the full filename of the resource file (the language-specific sl@0: version of this file provides the localised names, for display to users), sl@0: the format for the contents of the resource file and a unique identifier for sl@0: the plug-in, which is either a UID or an arbitrary textual identifier (this sl@0: is not for display). sl@0: sl@0: An array of TResourceFile objects is passed to CParameters::NewL() and NewLC(). */ sl@0: { sl@0: public: sl@0: /** The format of the contents of a resource file. sl@0: sl@0: The EFormatArrayOfUidNamePairs format enables the names of multiple plug-ins sl@0: to be held in a single resource file. This could be used in situations where sl@0: a fixed set of plug-ins are provided in a single package, e.g. the plug-ins sl@0: provided in a ROM (helping to reduce ROM space). In other cases, the EFormatTbuf sl@0: format should be used (here a single resource file provides the name of a sl@0: single plug-in). */ sl@0: enum TFormat sl@0: { sl@0: sl@0: /** The resource file contains a single TBUF (text string) resource, to hold the sl@0: plug-in name. */ sl@0: EFormatTbuf, // the resource is a TBUF sl@0: sl@0: sl@0: /** The resource file contains an ARRAY resource, whose items are UID_NAME_PAIR sl@0: structs. These contain plug-in UID and name pairs. */ sl@0: EFormatArrayOfUidNamePairs // the resource is an ARRAY of UID_NAME_PAIR sl@0: }; sl@0: public: sl@0: /** The full filename of the resource file, with a language-independent extension sl@0: (i.e. .rsc rather than, for instance, .r12). The language-specific version sl@0: of this file (with the correct language extension) contains the localised sl@0: name of the plug-in. The BaflUtils class is used internally to create the sl@0: correct language extension for iFullFileName. sl@0: sl@0: @see BaflUtils::NearestLanguageFile() */ sl@0: HBufC* iFullFileName; sl@0: /** Optional unique identifier for the plug-in , for instance the filename of the sl@0: plug in's DLL. If not applicable, it may be NULL. */ sl@0: HBufC* iIdentifier; // this may be NULL sl@0: /** Optional plug-in UID. If not applicable, it may have a value of KNullUid. */ sl@0: TUid iUid; // this may be KNullUid sl@0: /** The format of the resource file's contents. */ sl@0: TFormat iFormat; sl@0: }; sl@0: sl@0: class MFallBackName sl@0: /** sl@0: Interface class with a single pure virtual function that generates a fallback sl@0: name for plug-ins. sl@0: sl@0: The FallBackNameL() function is called during construction of the CBaNamedPlugins sl@0: object for any plug-ins for which no resource file could be found with the sl@0: correct language extension. sl@0: sl@0: Use of this interface is optional. To use it, pass an instance of a class sl@0: which implements the interface to CParameters::SetFallBackName(). If this sl@0: is not done, then by default the fallback name used for plug-ins is simply sl@0: the filename of the resource file without the drive, directory path or extension. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: { sl@0: public: sl@0: /** sl@0: Generates and returns a fallback name for plug-ins for which no resource is sl@0: available. The fallback name can be generated using the filename of the plug-in's sl@0: resource file, which is passed as an argument. sl@0: sl@0: @param aFullResourceFileName The full filename of the resource file. This sl@0: is the same as TResourceFile::iFullFileName. sl@0: @return The fallback name for a plug-in. sl@0: */ sl@0: virtual HBufC* FallBackNameL(const TDesC& aFullResourceFileName) const=0; sl@0: private: sl@0: IMPORT_C virtual void MFallBackName_Reserved_1(); sl@0: IMPORT_C virtual void MFallBackName_Reserved_2(); sl@0: }; sl@0: sl@0: class CParameters : public CBase sl@0: /** sl@0: The parameters for a localised list of plug-in names. sl@0: sl@0: An object of this class is passed to CBaNamedPlugins::NewL() and NewLC(). sl@0: The parameters are as follows - minimally, the first two must be provided: sl@0: sl@0: An array of TResourceFile objects. Each object contains information about sl@0: a single plug-in, or multiple plug-ins, including the filename of the corresponding sl@0: resource file. Versions of these resource files with the correct filename sl@0: extensions for the required languages provide the name of one or more plug-in, sl@0: translated appropriately. sl@0: sl@0: A connected session with the file server. This is required to search the file sl@0: sytem for the localised resource files, then to open them for reading. sl@0: sl@0: An optional object that generates a fallback name for plug-ins, if no resource sl@0: file could be found. If no such function is provided, then the fallback name sl@0: used for plug-ins is simply the filename of the resource file without the sl@0: drive, directory path or extension. sl@0: sl@0: An optional function that compares two plug-in names for sorting. The list sl@0: is sorted after it has been fully populated, using this algorithm. If not sl@0: specified, sorting is done by using the system-wide (locale-dependent) collation sl@0: rules. sl@0: sl@0: An optional descriptor which, if provided, adds an additional item whose meaning sl@0: is "none" (i.e. "no plug-in") to the MDesCArray, and the array position (either sl@0: the start or the end of the array) at which to insert it. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: { sl@0: public: sl@0: IMPORT_C static CParameters* NewL(RFs& aFileServerSession, const TArray& aArrayOfResourceFiles); sl@0: IMPORT_C static CParameters* NewLC(RFs& aFileServerSession, const TArray& aArrayOfResourceFiles); sl@0: IMPORT_C virtual ~CParameters(); sl@0: IMPORT_C void SetFallBackName(const MFallBackName& aFallBackName); // fall-back name is used if the resource file does not exist - by default the name of the file without drive, directories or extension is used sl@0: IMPORT_C void SetCompareNames(TCompareNames aCompareNames); sl@0: // SetTextForNoneL and SetTextForNone both add an extra item to the array (i.e. to the MDesCArray interface) sl@0: IMPORT_C void SetTextForNoneL(const TDesC& aTextForNone, TArrayPosition aArrayPositionOfTextForNone); sl@0: IMPORT_C void SetTextForNone(HBufC* aTextForNone, TArrayPosition aArrayPositionOfTextForNone); // passes ownership of aTextForNone in to the CParameters object sl@0: private: sl@0: CParameters(RFs& aFileServerSession); sl@0: void ConstructL(const TArray& aArrayOfResourceFiles); sl@0: private: sl@0: RFs& iFileServerSession; sl@0: TArray* iArrayOfResourceFiles; // a shallow copy sl@0: const MFallBackName* iFallBackName; sl@0: TCompareNames iCompareNames; sl@0: HBufC* iTextForNone; sl@0: TArrayPosition iArrayPositionOfTextForNone; // this is undefined if iTextForNone is NULL sl@0: private: sl@0: friend class CBaNamedPlugins; sl@0: }; sl@0: public: sl@0: IMPORT_C static CBaNamedPlugins* NewL(const CParameters& aParameters); sl@0: IMPORT_C static CBaNamedPlugins* NewLC(const CParameters& aParameters); sl@0: IMPORT_C virtual ~CBaNamedPlugins(); sl@0: IMPORT_C TInt IndexOfUid(TUid aUid) const; sl@0: IMPORT_C TInt IndexOfIdentifier(const TDesC& aIdentifier, TEquivalentIdentifiers aEquivalentIdentifiers) const; sl@0: IMPORT_C TUid UidAtIndex(TInt aIndex) const; sl@0: IMPORT_C const TDesC* IdentifierAtIndex(TInt aIndex) const; sl@0: // from MDesCArray sl@0: IMPORT_C virtual TInt MdcaCount() const; sl@0: IMPORT_C virtual TPtrC MdcaPoint(TInt aIndex) const; sl@0: private: sl@0: class TNamedPlugIn sl@0: /** This class is internal and is not intended for use. */ sl@0: { sl@0: public: sl@0: HBufC* iName; sl@0: HBufC* iIdentifier; // this may be NULL sl@0: TUid iUid; sl@0: TCompareNames iCompareNames; // unfortunately the only decent way of passing this function pointer to CompareNamedPlugIns is by storing it in each TNamedPlugIn (an alternative would be to use Dll::Tls but that would be a lot more clumsy) sl@0: }; sl@0: private: sl@0: CBaNamedPlugins(TInt aGranularity); sl@0: void ConstructL(const CParameters& aParameters); sl@0: static TInt CompareNamedPlugIns(const TNamedPlugIn& aNamedPlugIn1, const TNamedPlugIn& aNamedPlugIn2); sl@0: static TInt DefaultAlgorithmToCompareNames(const TDesC& aName1, const TDesC& aName2); sl@0: private: sl@0: RArray iArrayOfNamedPlugIns; sl@0: }; sl@0: sl@0: #endif sl@0: