Update contrib.
2 * Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
21 #include "t_errorconverter.h"
23 const TUint KMaxTagLength = 80;
25 EXPORT_C TPtrC8 Input::ParseElement(const TDesC8& aBuf, const TDesC8& aStart, const TDesC8& aEnd)
28 return Input::ParseElement(aBuf, aStart, aEnd, pos);
31 EXPORT_C TPtrC8 Input::ParseElement(const TDesC8& aBuf, const TDesC8& aStart)
34 TBuf8<KMaxTagLength> end;
36 end.Insert(1, _L8("/"));
37 return Input::ParseElement(aBuf, aStart, end, pos);
40 EXPORT_C TPtrC8 Input::ParseElement(const TDesC8& aBuf,
46 return Input::ParseElement(aBuf, aStart, aEnd, aPos, err);
50 // Find the portion of aBuf between aStart and aEnd, allowing for nesting
51 EXPORT_C TPtrC8 Input::ParseElement(const TDesC8& aBuf,
58 TInt startPos = KErrNotFound;
62 TPtrC8 data = aBuf.Mid(aPos);
64 // Find the first start or end tag
65 TInt nextStart = data.Find(aStart);
66 TInt nextEnd = data.Find(aEnd);
68 if (nextStart == KErrNotFound && nextEnd == KErrNotFound)
71 aError = KErrNotFound;
74 else if (nextEnd == KErrNotFound || (nextStart != KErrNotFound && nextStart < nextEnd))
76 // Start tag found first
78 aPos += nextStart + aStart.Length();
80 if (startPos == KErrNotFound)
82 // Record position of first start tag
88 // End tag found first
90 aPos += nextEnd + aEnd.Length();
97 // End tag found before start tag
98 aError = KErrArgument;
102 ASSERT(startPos != KErrNotFound);
103 return aBuf.Mid(startPos, aPos - startPos - aEnd.Length());
106 EXPORT_C TPtrC16 Input::ParseElement(const TDesC16& aBuf, const TDesC16& aStart, const TDesC16& aEnd)
109 return Input::ParseElement(aBuf, aStart, aEnd, pos);
113 EXPORT_C TPtrC16 Input::ParseElement(const TDesC16& aBuf,
114 const TDesC16& aStart,
119 return Input::ParseElement(aBuf, aStart, aEnd, aPos, err);
123 EXPORT_C TPtrC16 Input::ParseElement(const TDesC16& aBuf,
124 const TDesC16& aStart,
130 const TInt length = aBuf.Length();
131 TPtrC16 temp1 = aBuf.Right(length - aPos);
132 TInt elementStart = temp1.Find(aStart);
133 if (elementStart < 0)
135 aError = elementStart;
136 TPtrC16 res(KNullDesC16);
139 elementStart+= aStart.Length();
142 TPtrC16 temp2 = temp1.Right(temp1.Length() - elementStart);
143 TInt elementEnd = temp2.Find(aEnd);
146 TPtrC16 res(KNullDesC16);
153 TPtrC16 element = temp2.Left(elementEnd);
157 EXPORT_C HBufC8* Input::ParseElementHexL(const TDesC8& aBuf, const TDesC8& aStart)
159 TPtrC8 data = Input::ParseElement(aBuf, aStart);
160 __ASSERT_ALWAYS(data.Size() % 2 == 0, User::Panic(_L("ParseElementHexL"), 1));
161 TInt bytes = data.Size()/2;
162 HBufC8* buf = HBufC8::NewLC(bytes);
163 TPtr8 ptr = buf->Des();
164 ptr.SetLength(bytes);
168 for (TInt i = 0 ; i < data.Length() ; i += 2)
171 tmp=(TUint8)(data[i]-(data[i]>'9'?('A'-10):'0'));
173 tmp|=(TUint8)(data[i+1]-(data[i+1]>'9'?('A'-10):'0'));
177 CleanupStack::Pop(buf);
181 EXPORT_C TBool Input::ParseElementBoolL(const TDesC8& aBuf, const TDesC8& aStart)
183 TPtrC8 value = Input::ParseElement(aBuf, aStart);
184 if( value.CompareF(_L8("ETrue")) == 0 || value.CompareF(_L8("True")) == 0 )
188 else if( value.CompareF(_L8("EFalse")) == 0 || value.CompareF(_L8("False")) == 0 )
192 //if it's neither false nor true, leave
193 User::Leave(KErrArgument);
198 EXPORT_C TBool Input::GetExpectedResultL(const TDesC& aResult /* in */, TInt &aError /* out */)
201 CErrorConverter *errorConverter = CErrorConverter::NewLC();
203 result = errorConverter->GetExpectedResultL(aResult, aError);
204 CleanupStack::PopAndDestroy(errorConverter);
210 EXPORT_C TBool Input::GetExpectedResultL(const TInt &aError /* in */, HBufC*& aResult /* out */)
213 CErrorConverter *errorConverter = CErrorConverter::NewLC();
215 result = errorConverter->GetExpectedResultL(aError, aResult);
216 CleanupStack::PopAndDestroy(errorConverter);
221 // Allocate memory on the heap and copy in the value of a tagged element
222 EXPORT_C void Input::ParseElementL(HBufC*& aMember,
227 ParseElementL(aMember, aBuf, aStart, pos);
230 // Allocate memory on the heap and copy in the value of a tagged element
231 EXPORT_C void Input::ParseElementL(HBufC8*& aMember,
236 ParseElementL(aMember, aBuf, aStart, pos);
239 // Allocate memory on the heap and copy in the value of a tagged element
240 EXPORT_C void Input::ParseElementL(HBufC*& aMember,
245 TInt error = KErrNone;
246 ParseElementL(aMember, aBuf, aStart, aPos, error);
249 // Allocate memory on the heap and copy in the value of a tagged element
250 EXPORT_C void Input::ParseElementL(HBufC8*& aMember,
255 TInt error = KErrNone;
256 ParseElementL(aMember, aBuf, aStart, aPos, error);
259 // Allocate memory on the heap and copy in the value of a tagged element
260 EXPORT_C void Input::ParseElementL(HBufC*& aMember,
266 __ASSERT_DEBUG(!aMember, User::Panic(_L("Input"), 1));
269 TPtrC value = ParseElement(aBuf, aStart, aPos, aError);
270 // copy file name to unicode buffer
271 aMember = HBufC::NewL(value.Length());
272 aMember->Des().Copy(value);
275 // Allocate memory on the heap and copy in the value of a tagged element
276 EXPORT_C void Input::ParseElementL(HBufC8*& aMember,
282 __ASSERT_DEBUG(!aMember, User::Panic(_L("Input"), 1));
285 TPtrC value = ParseElement(aBuf, aStart, aPos, aError);
286 // copy file name to narrow buffer
287 aMember = HBufC8::NewL(value.Length());
288 aMember->Des().Copy(value);
291 // Allocate memory on the heap and copy in the value of a tagged element
292 EXPORT_C TPtrC Input::ParseElement(const TDesC& aBuf, const TDesC& aStart)
295 return(ParseElement(aBuf, aStart, pos));
299 // Allocate memory on the heap and copy in the value of a tagged element
300 EXPORT_C TPtrC Input::ParseElement(const TDesC& aBuf, const TDesC& aStart, TInt& aPos)
302 TInt error = KErrNone;
303 return(ParseElement(aBuf, aStart, aPos, error));
307 // Allocate memory on the heap and copy in the value of a tagged element
308 EXPORT_C TPtrC Input::ParseElement(const TDesC& aBuf, const TDesC& aStart, TInt& aPos, TInt& aError)
310 // using the start tag <abcd> create a matching tag terminator <\abcd>
311 HBufC* hend = HBufC::NewMaxLC(aStart.Length()+1);
313 TPtr end = hend->Des();
314 end = aStart; // copy in start tag
315 end.Insert(1,_L("/")); // make it into a terminator tag with same element name
316 // get value from element
317 TPtrC value = Input::ParseElement(aBuf, aStart, end, aPos, aError);
319 CleanupStack::PopAndDestroy(hend);
323 EXPORT_C HBufC8* Input::ReadFileL(const TDesC& aFilename, RFs& aFs)
325 HBufC8* ret = ReadFileLC(aFilename, aFs);
330 EXPORT_C HBufC8* Input::ReadFileL(const TDesC& aFilename, const TDesC& aPath, RFs& aFs)
332 HBufC8* ret = ReadFileLC(aFilename, aPath, aFs);
337 EXPORT_C HBufC8* Input::ReadFileLC(const TDesC& aFilename, RFs& aFs)
340 User::LeaveIfError(file.Open(aFs, aFilename, EFileRead));
341 CleanupClosePushL(file);
344 CleanupStack::PopAndDestroy();//fileClose
346 HBufC8* res = HBufC8::NewLC(size);
350 RFileReadStream stream;
351 User::LeaveIfError(stream.Open(aFs, aFilename, EFileStream));
352 CleanupClosePushL(stream);
353 stream.ReadL(p, size);
354 CleanupStack::PopAndDestroy();//streamClose
358 EXPORT_C HBufC8* Input::ReadFileLC(const TDesC& aFilename, const TDesC& aPath, RFs& aFS)
361 fullname.Append(aPath);
362 fullname.Append(aFilename);
365 User::LeaveIfError(file.Open(aFS, fullname, EFileRead));
366 CleanupClosePushL(file);
369 CleanupStack::PopAndDestroy();//fileClose
371 HBufC8* res = HBufC8::NewLC(size);
375 RFileReadStream stream;
376 User::LeaveIfError(stream.Open(aFS, fullname, EFileStream));
377 CleanupClosePushL(stream);
378 stream.ReadL(p, size);
379 CleanupStack::PopAndDestroy();//streamClose
383 EXPORT_C void Input::ParseElementListL(const TDesC& aBuf,
386 RPointerArray<HBufC>& aElements,
389 TPtrC currentElement = ParseElement(aBuf, aStart, aEnd, aPos);
390 while (currentElement != KNullDesC)
392 HBufC* newElement = HBufC::NewL(currentElement.Size());
393 *newElement = currentElement;
394 User::LeaveIfError(aElements.Append(newElement));
395 currentElement.Set(ParseElement(aBuf, aStart, aEnd, aPos));
399 EXPORT_C TUint Input::ParseIntElement(const TDesC8& aBuf, const TDesC8& aStart, const TDesC8& aEnd)
402 return Input::ParseIntElement(aBuf, aStart, aEnd, pos);
406 EXPORT_C TUint Input::ParseIntElement(const TDesC8& aBuf,
407 const TDesC8& aStart,
412 return Input::ParseIntElement(aBuf, aStart, aEnd, aPos, err);
416 EXPORT_C TUint Input::ParseIntElement(const TDesC8& aBuf,
417 const TDesC8& aStart,
423 TPtrC8 temp = ParseElement(aBuf, aStart, aEnd, aPos, aError);
427 if(aError == KErrNone)
430 if(temp.Left(2) == _L8("0x"))
433 aError = lex.Val(result, EHex);
438 aError = lex.Val(result);
441 if(aError == KErrNone)
445 aError = KErrArgument;
453 EXPORT_C TUint Input::ParseIntElement(const TDesC16& aBuf, const TDesC16& aStart, const TDesC16& aEnd)
456 return Input::ParseIntElement(aBuf, aStart, aEnd, pos);
460 EXPORT_C TUint Input::ParseIntElement(const TDesC16& aBuf,
461 const TDesC16& aStart,
466 return Input::ParseIntElement(aBuf, aStart, aEnd, aPos, err);
470 EXPORT_C TUint Input::ParseIntElement(const TDesC16& aBuf,
471 const TDesC16& aStart,
477 TPtrC16 temp = ParseElement(aBuf, aStart, aEnd, aPos, aError);
481 if(aError == KErrNone)
484 if(temp.Left(2) == _L16("0x"))
487 aError = lex.Val(result, EHex);
492 aError = lex.Val(result);
495 if(aError == KErrNone)
499 aError = KErrArgument;
508 // Allocate memory on the heap and copy in the value of a tagged element
509 EXPORT_C TUint Input::ParseIntElement(const TDesC& aBuf, const TDesC& aStart)
512 return(ParseIntElement(aBuf, aStart, pos));
516 // Allocate memory on the heap and copy in the value of a tagged element
517 EXPORT_C TUint Input::ParseIntElement(const TDesC& aBuf, const TDesC& aStart, TInt& aPos)
519 TInt error = KErrNone;
520 return(ParseIntElement(aBuf, aStart, aPos, error));
524 // Allocate memory on the heap and copy in the value of a tagged element
525 EXPORT_C TUint Input::ParseIntElement(const TDesC& aBuf, const TDesC& aStart, TInt& aPos, TInt& aError)
527 // get value from element
528 TPtrC temp = Input::ParseElement(aBuf, aStart, aPos, aError);
531 if(aError == KErrNone)
534 if(temp.Left(2) == _L16("0x"))
537 aError = lex.Val(result, EHex);
542 aError = lex.Val(result);
545 if(aError == KErrNone)
549 aError = KErrArgument;