First public contribution.
1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
17 #include "StringPoolImplementation.h"
21 EXPORT_C void RStringBase::Close()
24 You must close every string you open. In other words, every call to RStringBase::Copy(),
25 RStringPool::OpenStringL() and RStringPool::OpenFStringL() must be matched
28 Strings created through RStringPool::String() or RStringPool::StringF() with
29 an integer argument need not be closed (but closing is harmless).
31 Strings created through RStringPool::String() or RStringPool::StringF() with
32 a StringToken or StringTokenF argument must not be closed, as they're just
33 changing the external representation. */
36 //harmless for empty strings
37 iPool.iImplementation->Close(RStringTokenEither(iVal));
38 // invalidate the string if it's a dinamic one otherwise do nothing
39 if(!StringUtils::IsTableEntry(this->iVal))
44 EXPORT_C RStringBase RStringBase::Copy()
47 Both the original and the copy string must be separately closed.
49 @return The string base. */
52 iPool.iImplementation->IncrementCount(RStringTokenEither(iVal));
57 /** Returns the content of the string
59 EXPORT_C const TDesC8& RStringBase::DesC() const
60 /** Gets the content of the string.
62 @return Descriptor containing the content of the string. */
64 // check for empty string
67 if (StringUtils::IsTableEntry(iVal))
69 TInt index = StringUtils::TableIndex(iVal);
70 TInt tableUid= StringUtils::TableUid(iVal);
71 return iPool.iImplementation->TableLookup(index, tableUid);
74 return *StringUtils::NodePtr(iVal)->iDes;
78 EXPORT_C TInt RStringBase::Index(const TStringTable& aTable) const
79 /** Gets the enumeration value corresponding to this string.
81 @param aTable String table to look in
82 @return The string's enumeration value, or -1 if there is no such value
83 @panic EStringTableNotFound If the table supplied is not found. This panic is raised in debug builds only, in release mode the behaviour is undefined*/
85 //return an error for empty strings(i.e. with iVal=0 )
88 TInt tableId=iPool.iImplementation->TableUid(aTable);
89 __ASSERT_DEBUG(tableId!=KErrNotFound,StringPoolPanic::Panic(StringPoolPanic::EStringTableNotFound));
90 // First check the iVal is part of the same table
91 if (StringUtils::IsTableEntry(iVal))
93 if (tableId==StringUtils::TableUid(iVal))
94 return StringUtils::TableIndex(iVal);
96 // Then check if the iVal is in the reverse duplicate list
97 TInt index=iPool.iImplementation->FindTableIndexFromFirstVal(iVal, tableId);
102 EXPORT_C const TStringTable* RStringBase::OriginalTableRef() const
103 /** Gets the table (if any) that first added the current string to the pool.
105 Note there multiple tables can contain the same string.
107 @return The table or NULL if the string was created dynamically (not from
110 if(StringUtils::IsTableEntry(iVal))
111 return &iPool.iImplementation->TableRef(iVal);
116 /** Implementation of RStringPool class*/
118 EXPORT_C void RStringPool::OpenL()
119 /** Creates an initialised string pool with no pre-loaded string tables.
121 @leave KErrNoMemory Not enough memory to open the pool */
123 iImplementation = new (ELeave) CStringPoolImplementation;
126 EXPORT_C void RStringPool::OpenL(const TStringTable& aTable,MStringPoolCloseCallBack& aCallBack)
127 /** Creates an initialised string pool with a pre-loaded string table, and a string-pool-closing
130 @param aTable The pre-loaded string table.
131 @param aCallBack Callback interface that is called when the string pool closes
132 @leave KErrNoMemory Not enough memory to open the pool */
134 if (!iImplementation)
136 iImplementation = new (ELeave) CStringPoolImplementation;
137 CleanupClosePushL(*this);
138 iImplementation->AddTableL(aTable);
139 iImplementation->AddCallBackL(aCallBack);
140 CleanupStack::Pop(); //this
144 iImplementation->AddTableL(aTable);
145 iImplementation->AddCallBackL(aCallBack);
149 EXPORT_C void RStringPool::OpenL(const TStringTable& aTable)
150 /** Creates an initialised string pool with a pre-loaded string table.
152 @param aTable The pre-loaded string table.
153 @leave KErrNoMemory Not enough memory to open the pool */
155 if (!iImplementation)
157 iImplementation = new (ELeave) CStringPoolImplementation;
158 CleanupClosePushL(*this);
159 iImplementation->AddTableL(aTable);
160 CleanupStack::Pop(); //this
164 iImplementation->AddTableL(aTable);
169 EXPORT_C void RStringPool::Close()
170 /** Closes the string pool table.
172 This invalidates all other handles to the table. */
174 delete iImplementation;
175 iImplementation = NULL;
178 EXPORT_C RStringF RStringPool::OpenFStringL(const TDesC8& aString) const
179 /** Creates an RStringF using the current string pool.
181 The string is opened as case-insensitive.
183 @param aString The value of the string.
184 @leave KErrNoMemory Not enough memory to open the string
185 @return Initialised RStringF object */
187 RStringTokenEither newString = iImplementation->OpenL(aString, ETrue);
190 r.iVal = newString.iVal;
194 EXPORT_C RString RStringPool::OpenStringL(const TDesC8& aString) const
195 /** Creates an RString using the current string pool.
197 The string is opened as case-sensitive.
199 @param aString The value of the string.
200 @leave KErrNoMemory Not enough memory to open the string
201 @return Initialised RString object */
203 RStringTokenEither newString = iImplementation->OpenL(aString, EFalse);
206 r.iVal = newString.iVal;
210 EXPORT_C RString RStringPool::String(RStringToken aString) const
211 /** Creates an RString from the supplied RStringToken.
213 @param aString The string token
214 @return Initialised RString object */
218 r.iVal = aString.iVal;
222 EXPORT_C RString RStringPool::String(TInt aIndex,const TStringTable& aTable) const
223 /** Gets a case-sensitive string specified by a string table enumeration value.
225 aIndex is interpreted as an offset into the handle's pre-loaded string table.
227 @param aIndex The string table enumeration value
228 @param aTable The string table from which to read the string
229 @return Initialised RString object
230 @panic EStringTableNotFound If the table supplied is not found. This panic is raised in debug builds only, in release mode the behaviour is undefined*/
232 __ASSERT_DEBUG(aTable.iCaseSensitive==1,StringPoolPanic::Panic(StringPoolPanic::ECreatingStringWithWrongCase));
233 if(aIndex <(TInt)aTable.iCount)
234 {//the index is in valid range the index
237 TInt16 tableUid = iImplementation->TableUid(aTable);
238 __ASSERT_DEBUG(tableUid!=KErrNotFound,StringPoolPanic::Panic(StringPoolPanic::EStringTableNotFound));
239 r.iVal = StringUtils::ValFromIndex(aIndex, tableUid);
241 if (KErrNotFound!=(originalVal=iImplementation->FindFirstValFromDuplicate(r.iVal)))
247 else // the index is out of range
251 EXPORT_C RStringF RStringPool::StringF(RStringTokenF aString) const
252 /** Creates a RStringF from the supplied RStringToken.
254 @param aString The value of the string
255 @return Initialised RStringF object */
259 r.iVal = aString.iVal;
263 EXPORT_C RStringF RStringPool::StringF(TInt aIndex,const TStringTable& aTable) const
264 /** Gets a case-insensitive string specified by a string table enumeration value.
266 Creates an RStringF from a string table enumeration value.
268 aIndex is interpreted as an offset into the handle's pre-loaded string table.
270 @param aIndex The string table enumeration value
271 @param aTable The string table from which to read the string
272 @return Initialised RStringF object
273 @panic EStringTableNotFound If the table supplied is not found. This panic is raised in debug builds only, in release mode the behaviour is undefined*/
275 __ASSERT_DEBUG(aTable.iCaseSensitive==0,StringPoolPanic::Panic(StringPoolPanic::ECreatingStringWithWrongCase));
276 if(aIndex <(TInt)aTable.iCount)
277 {//the index is in valid range the index
280 TInt16 tableUid = iImplementation->TableUid(aTable);
281 __ASSERT_DEBUG(tableUid!=KErrNotFound,StringPoolPanic::Panic(StringPoolPanic::EStringTableNotFound));
282 r.iVal = StringUtils::ValFromIndexF(aIndex, tableUid);
284 if (KErrNotFound!=(originalVal=iImplementation->FindFirstValFromDuplicate(r.iVal)))
290 else // the index is out of range so return an empty string