os/ossrv/lowlevellibsandfws/apputils/inc/BANAMEDPLUGINS.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) 2000-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(__BANAMEDPLUGINS_H__)
sl@0
    17
#define __BANAMEDPLUGINS_H__
sl@0
    18
sl@0
    19
#if !defined(__E32STD_H__)
sl@0
    20
#include <e32std.h>
sl@0
    21
#endif
sl@0
    22
sl@0
    23
#if !defined(__E32BASE_H__)
sl@0
    24
#include <e32base.h>
sl@0
    25
#endif
sl@0
    26
sl@0
    27
#if !defined(__BAMDESCA_H__)
sl@0
    28
#include <bamdesca.h>
sl@0
    29
#endif
sl@0
    30
sl@0
    31
class RFs;
sl@0
    32
sl@0
    33
sl@0
    34
class CBaNamedPlugins : public CBase, public MDesCArray
sl@0
    35
/** 
sl@0
    36
A localised list of the names of the plug-ins available on the phone for a 
sl@0
    37
particular plug-in framework.
sl@0
    38
sl@0
    39
This class should be used by applications that display lists of plug-ins. 
sl@0
    40
It is provided so that the plug-in names displayed to users:
sl@0
    41
sl@0
    42
are not filenames
sl@0
    43
sl@0
    44
are localisable, i.e. for a multi-language ROM device, plug-in names must 
sl@0
    45
be translated into the correct language and sorted according to the locale's 
sl@0
    46
collation rules
sl@0
    47
sl@0
    48
can be filtered depending on the current locale, i.e. the user will not necessarily 
sl@0
    49
see the names of all plug-ins for a given framework for every language of 
sl@0
    50
a multi-language ROM.
sl@0
    51
sl@0
    52
Note that the class MDesC16Array is shown in the derivation tree. The class 
sl@0
    53
definition for CBaNamedPlugins, however, uses the typedef MDesCArray. In 6.1 
sl@0
    54
builds, the symbol MDesCArray always resolves to MDesC16Array.
sl@0
    55
sl@0
    56
@see MDesCArray
sl@0
    57
@publishedAll
sl@0
    58
@released
sl@0
    59
*/
sl@0
    60
	{
sl@0
    61
public:
sl@0
    62
/** The prototype for a function that compares two plug-in names, aName1 and aName2 
sl@0
    63
for sorting.
sl@0
    64
sl@0
    65
The plug-in names list is sorted using this algorithm after it has been populated. 
sl@0
    66
Implementing this function is optional. If implemented, it is passed as a 
sl@0
    67
parameter to CParameters::SetCompareNames(). If not implemented, a default 
sl@0
    68
algorithm is used.
sl@0
    69
sl@0
    70
The function should return a positive value if aName1 is to occur after aName2 
sl@0
    71
or negative if aName1 is to occur before aName2. Zero should be returned if 
sl@0
    72
both descriptors are equivalent. */
sl@0
    73
	typedef TInt (*TCompareNames)(const TDesC& aName1, const TDesC& aName2);
sl@0
    74
sl@0
    75
/** The prototype for a function that compares two plug-in identifiers, aIdentifier1 
sl@0
    76
and aIdentifier2 to find out if they are the same.
sl@0
    77
sl@0
    78
Implementing this function is optional. If implemented, it is passed to CBaNamedPlugins::IndexOfIdentifier(), 
sl@0
    79
which uses the function to compare a specified plug-in identifier with each 
sl@0
    80
identifier in turn in the list of named plug-ins. The function should return 
sl@0
    81
ETrue if they are the same, EFalse if not. TDesC::CompareC() could be used to 
sl@0
    82
do the comparison.
sl@0
    83
sl@0
    84
@see TDesC16::CompareC()
sl@0
    85
@see TDesC8::CompareC() */
sl@0
    86
	typedef TBool (*TEquivalentIdentifiers)(const TDesC& aIdentifier1, const TDesC& aIdentifier2);
sl@0
    87
sl@0
    88
/** The position in the list of plug-in names for the text string which represents 
sl@0
    89
the choice of no plug-in.
sl@0
    90
sl@0
    91
Passed as an argument to SetTextForNoneL() and SetTextForNone(). */
sl@0
    92
	enum TArrayPosition
sl@0
    93
		{
sl@0
    94
	/** The string is inserted at the start of the list (array position zero). */
sl@0
    95
		EArrayPositionFirst,
sl@0
    96
sl@0
    97
	/** The string is appended to the list. */
sl@0
    98
		EArrayPositionLast
sl@0
    99
		};
sl@0
   100
sl@0
   101
	class TResourceFile
sl@0
   102
/** Information about a resource file containing the names of one or more named 
sl@0
   103
plug-ins. 
sl@0
   104
sl@0
   105
The information is the full filename of the resource file (the language-specific 
sl@0
   106
version of this file provides the localised names, for display to users), 
sl@0
   107
the format for the contents of the resource file and a unique identifier for 
sl@0
   108
the plug-in, which is either a UID or an arbitrary textual identifier (this 
sl@0
   109
is not for display).
sl@0
   110
sl@0
   111
An array of TResourceFile objects is passed to CParameters::NewL() and NewLC(). */
sl@0
   112
		{
sl@0
   113
	public:
sl@0
   114
/** The format of the contents of a resource file.
sl@0
   115
sl@0
   116
The EFormatArrayOfUidNamePairs format enables the names of multiple plug-ins 
sl@0
   117
to be held in a single resource file. This could be used in situations where 
sl@0
   118
a fixed set of plug-ins are provided in a single package, e.g. the plug-ins 
sl@0
   119
provided in a ROM (helping to reduce ROM space). In other cases, the EFormatTbuf 
sl@0
   120
format should be used (here a single resource file provides the name of a 
sl@0
   121
single plug-in). */
sl@0
   122
		enum TFormat
sl@0
   123
			{
sl@0
   124
	
sl@0
   125
	/** The resource file contains a single TBUF (text string) resource, to hold the 
sl@0
   126
	plug-in name. */
sl@0
   127
			EFormatTbuf, // the resource is a TBUF
sl@0
   128
sl@0
   129
			
sl@0
   130
	/** The resource file contains an ARRAY resource, whose items are UID_NAME_PAIR 
sl@0
   131
	structs. These contain plug-in UID and name pairs. */
sl@0
   132
			EFormatArrayOfUidNamePairs // the resource is an ARRAY of UID_NAME_PAIR
sl@0
   133
			};
sl@0
   134
	public:
sl@0
   135
	/** The full filename of the resource file, with a language-independent extension 
sl@0
   136
	(i.e. .rsc rather than, for instance, .r12). The language-specific version 
sl@0
   137
	of this file (with the correct language extension) contains the localised 
sl@0
   138
	name of the plug-in. The BaflUtils class is used internally to create the 
sl@0
   139
	correct language extension for iFullFileName.
sl@0
   140
	
sl@0
   141
	@see BaflUtils::NearestLanguageFile() */
sl@0
   142
		HBufC* iFullFileName;
sl@0
   143
	/** Optional unique identifier for the plug-in , for instance the filename of the 
sl@0
   144
	plug in's DLL. If not applicable, it may be NULL. */
sl@0
   145
		HBufC* iIdentifier; // this may be NULL
sl@0
   146
	/** Optional plug-in UID. If not applicable, it may have a value of KNullUid. */
sl@0
   147
		TUid iUid; // this may be KNullUid
sl@0
   148
	/** The format of the resource file's contents. */
sl@0
   149
		TFormat iFormat;
sl@0
   150
		};
sl@0
   151
sl@0
   152
	class MFallBackName
sl@0
   153
/** 
sl@0
   154
Interface class with a single pure virtual function that generates a fallback 
sl@0
   155
name for plug-ins.
sl@0
   156
sl@0
   157
The FallBackNameL() function is called during construction of the CBaNamedPlugins 
sl@0
   158
object for any plug-ins for which no resource file could be found with the 
sl@0
   159
correct language extension.
sl@0
   160
sl@0
   161
Use of this interface is optional. To use it, pass an instance of a class 
sl@0
   162
which implements the interface to CParameters::SetFallBackName(). If this 
sl@0
   163
is not done, then by default the fallback name used for plug-ins is simply 
sl@0
   164
the filename of the resource file without the drive, directory path or extension. 
sl@0
   165
@publishedAll
sl@0
   166
@released
sl@0
   167
*/
sl@0
   168
		{
sl@0
   169
	public:
sl@0
   170
	/** 
sl@0
   171
	Generates and returns a fallback name for plug-ins for which no resource is 
sl@0
   172
	available. The fallback name can be generated using the filename of the plug-in's 
sl@0
   173
	resource file, which is passed as an argument.
sl@0
   174
	
sl@0
   175
	@param aFullResourceFileName The full filename of the resource file. This 
sl@0
   176
	is the same as TResourceFile::iFullFileName.
sl@0
   177
	@return The fallback name for a plug-in. 
sl@0
   178
	*/
sl@0
   179
		virtual HBufC* FallBackNameL(const TDesC& aFullResourceFileName) const=0;
sl@0
   180
	private:
sl@0
   181
		IMPORT_C virtual void MFallBackName_Reserved_1();
sl@0
   182
		IMPORT_C virtual void MFallBackName_Reserved_2();
sl@0
   183
		};
sl@0
   184
sl@0
   185
		class CParameters : public CBase
sl@0
   186
/** 
sl@0
   187
The parameters for a localised list of plug-in names.
sl@0
   188
sl@0
   189
An object of this class is passed to CBaNamedPlugins::NewL() and NewLC(). 
sl@0
   190
The parameters are as follows - minimally, the first two must be provided:
sl@0
   191
sl@0
   192
An array of TResourceFile objects. Each object contains information about 
sl@0
   193
a single plug-in, or multiple plug-ins, including the filename of the corresponding 
sl@0
   194
resource file. Versions of these resource files with the correct filename 
sl@0
   195
extensions for the required languages provide the name of one or more plug-in, 
sl@0
   196
translated appropriately.
sl@0
   197
sl@0
   198
A connected session with the file server. This is required to search the file 
sl@0
   199
sytem for the localised resource files, then to open them for reading.
sl@0
   200
sl@0
   201
An optional object that generates a fallback name for plug-ins, if no resource 
sl@0
   202
file could be found. If no such function is provided, then the fallback name 
sl@0
   203
used for plug-ins is simply the filename of the resource file without the 
sl@0
   204
drive, directory path or extension.
sl@0
   205
sl@0
   206
An optional function that compares two plug-in names for sorting. The list 
sl@0
   207
is sorted after it has been fully populated, using this algorithm. If not 
sl@0
   208
specified, sorting is done by using the system-wide (locale-dependent) collation 
sl@0
   209
rules.
sl@0
   210
sl@0
   211
An optional descriptor which, if provided, adds an additional item whose meaning 
sl@0
   212
is "none" (i.e. "no plug-in") to the MDesCArray, and the array position (either 
sl@0
   213
the start or the end of the array) at which to insert it. 
sl@0
   214
@publishedAll
sl@0
   215
@released
sl@0
   216
*/
sl@0
   217
		{
sl@0
   218
	public:
sl@0
   219
	IMPORT_C static CParameters* NewL(RFs& aFileServerSession, const TArray<TResourceFile>& aArrayOfResourceFiles);
sl@0
   220
	IMPORT_C static CParameters* NewLC(RFs& aFileServerSession, const TArray<TResourceFile>& aArrayOfResourceFiles);
sl@0
   221
	IMPORT_C virtual ~CParameters();
sl@0
   222
	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
   223
	IMPORT_C void SetCompareNames(TCompareNames aCompareNames);
sl@0
   224
		// SetTextForNoneL and SetTextForNone both add an extra item to the array (i.e. to the MDesCArray interface)
sl@0
   225
	IMPORT_C void SetTextForNoneL(const TDesC& aTextForNone, TArrayPosition aArrayPositionOfTextForNone);
sl@0
   226
	IMPORT_C void SetTextForNone(HBufC* aTextForNone, TArrayPosition aArrayPositionOfTextForNone); // passes ownership of aTextForNone in to the CParameters object
sl@0
   227
	private:
sl@0
   228
		CParameters(RFs& aFileServerSession);
sl@0
   229
		void ConstructL(const TArray<TResourceFile>& aArrayOfResourceFiles);
sl@0
   230
	private:
sl@0
   231
		RFs& iFileServerSession;
sl@0
   232
		TArray<TResourceFile>* iArrayOfResourceFiles; // a shallow copy
sl@0
   233
		const MFallBackName* iFallBackName;
sl@0
   234
		TCompareNames iCompareNames;
sl@0
   235
		HBufC* iTextForNone;
sl@0
   236
		TArrayPosition iArrayPositionOfTextForNone; // this is undefined if iTextForNone is NULL
sl@0
   237
	private:
sl@0
   238
		friend class CBaNamedPlugins;
sl@0
   239
		};
sl@0
   240
public:
sl@0
   241
	IMPORT_C static CBaNamedPlugins* NewL(const CParameters& aParameters);
sl@0
   242
	IMPORT_C static CBaNamedPlugins* NewLC(const CParameters& aParameters);
sl@0
   243
	IMPORT_C virtual ~CBaNamedPlugins();
sl@0
   244
	IMPORT_C TInt IndexOfUid(TUid aUid) const;
sl@0
   245
	IMPORT_C TInt IndexOfIdentifier(const TDesC& aIdentifier, TEquivalentIdentifiers aEquivalentIdentifiers) const;
sl@0
   246
	IMPORT_C TUid UidAtIndex(TInt aIndex) const;
sl@0
   247
	IMPORT_C const TDesC* IdentifierAtIndex(TInt aIndex) const;
sl@0
   248
	// from MDesCArray
sl@0
   249
	IMPORT_C virtual TInt MdcaCount() const;
sl@0
   250
	IMPORT_C virtual TPtrC MdcaPoint(TInt aIndex) const;
sl@0
   251
private:
sl@0
   252
	class TNamedPlugIn
sl@0
   253
/** This class is internal and is not intended for use. */
sl@0
   254
		{
sl@0
   255
	public:
sl@0
   256
		HBufC* iName;
sl@0
   257
		HBufC* iIdentifier; // this may be NULL
sl@0
   258
		TUid iUid;
sl@0
   259
		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
   260
		};
sl@0
   261
private:
sl@0
   262
	CBaNamedPlugins(TInt aGranularity);
sl@0
   263
	void ConstructL(const CParameters& aParameters);
sl@0
   264
	static TInt CompareNamedPlugIns(const TNamedPlugIn& aNamedPlugIn1, const TNamedPlugIn& aNamedPlugIn2);
sl@0
   265
	static TInt DefaultAlgorithmToCompareNames(const TDesC& aName1, const TDesC& aName2);
sl@0
   266
private:
sl@0
   267
	RArray<TNamedPlugIn> iArrayOfNamedPlugIns;
sl@0
   268
	};
sl@0
   269
sl@0
   270
#endif
sl@0
   271