os/ossrv/lowlevellibsandfws/apputils/inc/stringpool.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) 2001-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
#ifndef __STRINGPOOL_H__
sl@0
    17
#define __STRINGPOOL_H__ 
sl@0
    18
sl@0
    19
#include <e32base.h>
sl@0
    20
sl@0
    21
sl@0
    22
struct TStringTable;
sl@0
    23
class RStringF;
sl@0
    24
class RString;
sl@0
    25
class RStringToken;
sl@0
    26
class RStringTokenF;
sl@0
    27
class MStringPoolCloseCallBack;
sl@0
    28
class RStringBase;
sl@0
    29
class CStringPoolImplementation;
sl@0
    30
sl@0
    31
sl@0
    32
class MStringPoolCloseCallBack
sl@0
    33
/** 
sl@0
    34
Abstract callback interface that alerts implementors to when a string pool 
sl@0
    35
closes.
sl@0
    36
@publishedAll
sl@0
    37
@released
sl@0
    38
*/
sl@0
    39
	{
sl@0
    40
	//Implement this function to perform some operation when the string pool is being closed
sl@0
    41
	public:
sl@0
    42
	/** Called when the string pool is about to close. */
sl@0
    43
		virtual void StringPoolClosing()=0;
sl@0
    44
	};
sl@0
    45
sl@0
    46
/** The string pool handle object.  A string pool can have several
sl@0
    47
	distinct handles associated with it, each associated with a
sl@0
    48
	different pre-loaded table. The difference between them is that
sl@0
    49
	creating a string from an enum will interpret the enum as an
sl@0
    50
	offset into the relevant pre-loaded table */
sl@0
    51
class RStringPool
sl@0
    52
/** 
sl@0
    53
String pool handle.
sl@0
    54
sl@0
    55
A string pool can have several distinct handles associated with it, each associated 
sl@0
    56
with a different pre-loaded table. Creating a string from an enum value interprets 
sl@0
    57
the value as an offset into the relevant pre-loaded table. 
sl@0
    58
@publishedAll
sl@0
    59
@released
sl@0
    60
*/
sl@0
    61
	{
sl@0
    62
 public:
sl@0
    63
	inline RStringPool();
sl@0
    64
sl@0
    65
	IMPORT_C void OpenL();
sl@0
    66
sl@0
    67
	IMPORT_C void OpenL(const TStringTable& aTable);
sl@0
    68
sl@0
    69
	IMPORT_C void OpenL(const TStringTable& aTable,MStringPoolCloseCallBack& aCallBack);
sl@0
    70
sl@0
    71
	IMPORT_C void Close();
sl@0
    72
sl@0
    73
	IMPORT_C RStringF OpenFStringL(const TDesC8& aString) const;
sl@0
    74
sl@0
    75
	IMPORT_C RString OpenStringL(const TDesC8& aString) const;
sl@0
    76
sl@0
    77
	IMPORT_C RString String(RStringToken aString) const;
sl@0
    78
sl@0
    79
	IMPORT_C RString String(TInt aIndex,const TStringTable& aTable) const;	
sl@0
    80
sl@0
    81
	IMPORT_C RStringF StringF(RStringTokenF aString) const;
sl@0
    82
sl@0
    83
	IMPORT_C RStringF StringF(TInt aIndex,const TStringTable& aTable) const;	
sl@0
    84
sl@0
    85
 private:
sl@0
    86
	friend class RStringBase;
sl@0
    87
	friend class RString;
sl@0
    88
	friend class RStringF;
sl@0
    89
	friend class CStringPoolImplementation;
sl@0
    90
sl@0
    91
	CStringPoolImplementation* iImplementation;
sl@0
    92
	};
sl@0
    93
sl@0
    94
/** A compact (4 byte) representation of a string in the string pool. This
sl@0
    95
	class must be turned into a RStringBase (or one of its derived classes) before you can do anything
sl@0
    96
	useful with it. It is only intended to be used when storing strings 
sl@0
    97
	in situations where space matters; normaly use RStringBase.
sl@0
    98
	@see RStringBase
sl@0
    99
*/
sl@0
   100
class RStringTokenBase
sl@0
   101
/** 
sl@0
   102
Base class for the RStringToken and RStringTokenF string representations.
sl@0
   103
A compact (4 byte) representation of a string in the string pool. This
sl@0
   104
class must be turned into a RStringBase (or one of its derived classes) before you can do anything
sl@0
   105
useful with it. It is only intended to be used when storing strings 
sl@0
   106
in situations where space matters; normaly use RStringBase.
sl@0
   107
@see RStringBase
sl@0
   108
@publishedAll
sl@0
   109
@released
sl@0
   110
*/
sl@0
   111
	{
sl@0
   112
 public:
sl@0
   113
	inline RStringTokenBase();
sl@0
   114
sl@0
   115
	inline RStringTokenBase operator=(RStringBase aVal);
sl@0
   116
sl@0
   117
	inline TBool IsNull() const;
sl@0
   118
sl@0
   119
 protected:
sl@0
   120
	friend class RStringPool;
sl@0
   121
	friend class RStringBase;
sl@0
   122
	friend class RStringTokenEither;
sl@0
   123
	friend class CStringPoolImplementation;
sl@0
   124
sl@0
   125
	TUint32 iVal;
sl@0
   126
	};
sl@0
   127
sl@0
   128
sl@0
   129
class RStringToken : public RStringTokenBase
sl@0
   130
/** 
sl@0
   131
A compact (4 byte) representation of a string in the string pool. 
sl@0
   132
sl@0
   133
This class must be turned into a RString before you can do anything useful 
sl@0
   134
with it. It is only intended to be used when storing strings in situations 
sl@0
   135
where space matters. You should normally use RString. 
sl@0
   136
@publishedAll
sl@0
   137
@released
sl@0
   138
*/
sl@0
   139
	{
sl@0
   140
 public:
sl@0
   141
	inline TBool operator==(RStringToken aVal) const;
sl@0
   142
sl@0
   143
	inline TBool operator!=(RStringToken aVal) const;
sl@0
   144
sl@0
   145
	inline RStringToken operator=(RString aVal);
sl@0
   146
sl@0
   147
	friend class RStringPool;
sl@0
   148
	friend class RString;
sl@0
   149
	friend class CStringPoolImplementation;
sl@0
   150
	};
sl@0
   151
sl@0
   152
class RStringTokenF  : public RStringTokenBase
sl@0
   153
/** 
sl@0
   154
A compact (4 byte) representation of a RStringF string in the string pool. 
sl@0
   155
sl@0
   156
This class must be turned into a RStringF before you can do anything useful 
sl@0
   157
with it. It is only intended to be used when storing strings in situations 
sl@0
   158
where space matters. You should normally use RStringF. 
sl@0
   159
@publishedAll
sl@0
   160
@released
sl@0
   161
*/
sl@0
   162
	{
sl@0
   163
 public:
sl@0
   164
	inline TBool operator==(RStringTokenF aVal) const;
sl@0
   165
sl@0
   166
	inline TBool operator!=(RStringTokenF aVal) const;
sl@0
   167
sl@0
   168
	inline RStringTokenF operator=(RStringF aVal);
sl@0
   169
sl@0
   170
	friend class RStringPool;
sl@0
   171
	friend class RStringF;
sl@0
   172
	friend class CStringPoolImplementation;
sl@0
   173
	};
sl@0
   174
sl@0
   175
class RStringBase
sl@0
   176
/** 
sl@0
   177
Base class for classes that represent a string in a string pool. 
sl@0
   178
sl@0
   179
There are sub-classes for folded and non-folded strings. Use this class when 
sl@0
   180
you want to receive a string, but have no intention of comparing it with anything. 
sl@0
   181
sl@0
   182
sl@0
   183
@see RStringPool 
sl@0
   184
@publishedAll
sl@0
   185
@released
sl@0
   186
*/
sl@0
   187
	{
sl@0
   188
 public:
sl@0
   189
	inline RStringBase();
sl@0
   190
sl@0
   191
	IMPORT_C void Close();
sl@0
   192
sl@0
   193
	IMPORT_C RStringBase Copy();
sl@0
   194
sl@0
   195
	IMPORT_C const TDesC8& DesC() const;
sl@0
   196
sl@0
   197
	inline operator RStringTokenBase() const;
sl@0
   198
sl@0
   199
	IMPORT_C TInt Index(const TStringTable& aTable) const;
sl@0
   200
sl@0
   201
	IMPORT_C const TStringTable*  OriginalTableRef() const;
sl@0
   202
sl@0
   203
	inline RStringPool Pool() const;
sl@0
   204
sl@0
   205
 protected:
sl@0
   206
	friend class RStringPool;
sl@0
   207
	friend class RStringTokenBase;
sl@0
   208
sl@0
   209
	RStringPool iPool;
sl@0
   210
	TUint32 iVal;
sl@0
   211
	};
sl@0
   212
sl@0
   213
class RString : public RStringBase
sl@0
   214
/** 
sl@0
   215
A string that is stored in a string pool, with case-sensitive comparisons. 
sl@0
   216
sl@0
   217
To initialise values of this class, you need to use the operator() functions 
sl@0
   218
on the RStringPool. 
sl@0
   219
sl@0
   220
This class performs comparisons in a non-folded (case sensitive) manner. 
sl@0
   221
sl@0
   222
@see RStringPool
sl@0
   223
@publishedAll
sl@0
   224
@released
sl@0
   225
*/
sl@0
   226
	{
sl@0
   227
 public:
sl@0
   228
	inline RString Copy();
sl@0
   229
sl@0
   230
	inline operator RStringToken() const;
sl@0
   231
sl@0
   232
	inline TBool operator==(const RString& aVal) const;
sl@0
   233
sl@0
   234
	inline TBool operator!=(const RString& aVal) const;
sl@0
   235
sl@0
   236
	friend class RStringPool;
sl@0
   237
	friend class RStringToken;
sl@0
   238
	};
sl@0
   239
sl@0
   240
class RStringF : public RStringBase
sl@0
   241
/** 
sl@0
   242
A string that is stored in a string pool, with case-insensitive comparisons.
sl@0
   243
sl@0
   244
To initialise values of this class, you need to use the operator() functions 
sl@0
   245
on the RStringPool. 
sl@0
   246
sl@0
   247
Comparisons with this class use folded (case insensitive) comparisons. 
sl@0
   248
@publishedAll
sl@0
   249
@released
sl@0
   250
*/
sl@0
   251
	{
sl@0
   252
 public:
sl@0
   253
	inline RStringF Copy();
sl@0
   254
sl@0
   255
	inline operator RStringTokenF() const;
sl@0
   256
sl@0
   257
	inline TBool operator==(const RStringF& aVal) const;
sl@0
   258
sl@0
   259
	inline TBool operator!=(const RStringF& aVal) const;
sl@0
   260
sl@0
   261
	friend class RStringPool;
sl@0
   262
	friend class RStringTokenF;
sl@0
   263
	};
sl@0
   264
sl@0
   265
/**
sl@0
   266
A pointer to a string table.
sl@0
   267
@publishedAll
sl@0
   268
@released
sl@0
   269
*/
sl@0
   270
sl@0
   271
struct TStringTable
sl@0
   272
	{
sl@0
   273
	// The number of elements in the table
sl@0
   274
	/** The number of elements in the table. */
sl@0
   275
	TUint iCount;
sl@0
   276
	// A pointer to an array of pointers to the strings
sl@0
   277
	/** A pointer to an array of pointers to the strings. */
sl@0
   278
	const void* const * iTable;	
sl@0
   279
sl@0
   280
	// ETrue if the table should be considered case-sensitive.
sl@0
   281
	/** Flag that is ETrue if the table should be considered case-sensitive, otherwise 
sl@0
   282
	EFalse. */
sl@0
   283
	TBool iCaseSensitive;
sl@0
   284
	};
sl@0
   285
sl@0
   286
// Include the inline functions
sl@0
   287
#include <stringpool.inl>
sl@0
   288
sl@0
   289
#endif // __STRINGPOOL_H__
sl@0
   290
sl@0
   291