First public contribution.
1 // Copyright (c) 2005-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.
14 // 8 and 16 bit ini file parser
23 #include "IniParserImpl.h"
30 Creates a 8 bit section content iterator
31 this iterator is used to navigate through the key value pairs
32 within the section.Useful when the number of keys within the
34 @param aSectionName the name of the section to iterate
35 @param aIniDocument the document object containing the section
36 @return A pointer to a newly created CIniSecIter8 object
37 @leave KErrNoMemory if not enough memory
38 KErrArgument if aIniDocument is NULL
40 EXPORT_C CIniSecIter8* CIniSecIter8::NewL(const TDesC8& aSectionName,const CIniDocument8* aIniDocument)
42 CIniSecIter8* self=new (ELeave)CIniSecIter8();
43 CleanupStack::PushL(self);
44 self->iImpl=CIniSecIter8Impl::NewL(aSectionName,aIniDocument);
50 Return the next key value pair within the section
51 @param aKey a pointer to contain the key name
52 @param aValue a pointer to contain the key value
53 @return ETrue if there are keyvalue pairs to return
54 EFalse if it is already end of section
55 @post the iterator points to the next available keyvalue pair
56 the aKeyName points to the key name
57 the aKeyValue points to the key value
59 EXPORT_C TBool CIniSecIter8::Next(TPtrC8& aKey,TPtrC8& aValue)
61 return iImpl->Next(aKey,aValue);
65 Look ahead in the section to check whether there is
66 still any keyvalue pair in the section to be read
67 @return ETrue if it is already end of section
68 EFalse indicating the next keyvalue pair exists
70 EXPORT_C TBool CIniSecIter8::End()
76 Reset the iterator to point to the first keypair value within
78 @post the iterator now points to first keypair in the section
80 EXPORT_C void CIniSecIter8::Reset()
88 EXPORT_C CIniSecIter8::~CIniSecIter8()
94 CIniSecIter8::CIniSecIter8()
101 Opening 8 bit ini file for reading.If the supplied file name is a valid
102 ini file, it will instantiate the object and read the content of
103 the ini file.If file not found it will simply instantiate the object.
104 The file is opened for read only and close directly after the construction
105 of this object is complete.
106 User will need to explicitly call Externalise(aFileName) to write the content back to ini file.
107 @param aFs the handle to the file session
108 @param aFileName the ini file name to read from
109 @return A pointer to a newly created CIniDocument8 object
111 EXPORT_C CIniDocument8* CIniDocument8::NewL(RFs& aFs,const TDesC& aFileName)
113 CIniDocument8* self=new (ELeave)CIniDocument8();
114 CleanupStack::PushL(self);
115 self->iImpl=CIniDocument8Impl::NewL(aFs,aFileName);
121 Externalise the buffered content to an output file name
122 This will first write into a temporary file in the same directory and path
123 as the supplied aFileName.It will then replace the existing file or
124 create a new file if does not exist yet.
125 @param aFileName the output file name to write to
126 @return KErrNone if no error
127 Other System Wide errors
129 EXPORT_C TInt CIniDocument8::Externalise(const TDesC& aFileName)
131 TRAPD(r,iImpl->FlushL(aFileName));
135 Compare this document against another for differences.
136 @param aDoc to compare against.
140 EXPORT_C TBool CIniDocument8::CompareDocs(CIniDocument8& aDoc)
142 return (iImpl->CompareDocs( *(aDoc.iImpl) ));
146 Get an array of the section name present in the ini document object
147 Note that any items inside this array will be cleared and the array will
148 be populated with the sections' names from this document object.
149 @param aSectionList an array of descriptor to contain the section name
150 @return KErrNone if successful, otherwise another of the system-wide error codes
151 @post aSectionList contains all the section name in the document object
153 EXPORT_C TInt CIniDocument8::GetSectionList(RArray<TPtrC8>& aSectionList) const
155 return iImpl->GetSectionList(aSectionList);
159 Get the value of a key within a section
160 @param aSectionName the section where the key resides
161 @param aKey the key name
162 @param aValue pointer to the key value
164 KErrNotFound if either section or keyname not found
165 KErrNone if successful
166 @post aKeyValue now points to the key value
168 EXPORT_C TInt CIniDocument8::GetKeyValue(const TDesC8& aSectionName,const TDesC8& aKey,TPtrC8& aValue) const
170 TRAPD(ret,iImpl->GetKeyValueL(aSectionName,aKey,aValue));
175 Add a section to the ini document object
176 @param aSectionName the name of the section to be added
178 KErrNone if successful
179 KErrAlreadyExists if the section with that name already exists
180 Any other system wide error code
181 @post a section with that name is created and added to the document object
183 EXPORT_C TInt CIniDocument8::AddSection(const TDesC8& aSectionName)
185 TRAPD(ret,iImpl->AddSectionL(aSectionName));
190 Remove an existing section from the ini document object
191 @param aSectionName the name of the section to be removed
192 @return KErrNone if successful
193 KErrNotFound if section does not exist
194 Any other system wide error code
195 @post if exist that section is removed from the document object
197 EXPORT_C TInt CIniDocument8::RemoveSection(const TDesC8& aSectionName)
199 TRAPD(ret,iImpl->RemoveSectionL(aSectionName));
204 Set the value of a key within a section.
205 This API offers the following flexibility:
206 -If section does not exist,create a section and key and value
207 -If section exists but key does not exist, create the key and value
208 -Else replace the existing key value with the new value
209 @param aSectionName the name of the section
210 @param aKey the name of the key
211 @param aValue the new value for this key
213 KErrNone if successful,any other system wide error code
215 EXPORT_C TInt CIniDocument8::SetKey(const TDesC8& aSectionName,const TDesC8& aKey,const TDesC8& aValue)
217 TRAPD(ret,iImpl->SetKeyL(aSectionName,aKey,aValue));
222 Remove an existing key within a section
223 if supplied section or key name does not exist, it does nothing
224 @param aSectionName the name of the section where the key resides
225 @param aKey the name of the key to be removed
226 @post if exist that key is removed from the section
228 EXPORT_C TInt CIniDocument8::RemoveKey(const TDesC8& aSectionName,const TDesC8& aKey)
230 TRAPD(ret,iImpl->RemoveKeyL(aSectionName,aKey));
237 EXPORT_C CIniDocument8::~CIniDocument8()
242 CIniDocument8::CIniDocument8()
248 Creates a 8 bit light weight parser
249 @param aFs the handle to the file session
250 @param aFileName the ini file name to open
251 @return A pointer to a newly created CIniFile8 object
252 @leave KErrNoMemory if not enough memory
253 KErrNotFound if the supplied file does not exist
255 EXPORT_C CIniFile8* CIniFile8::NewL(RFs& aFs,const TDesC& aFileName)
257 CIniFile8* self=new (ELeave)CIniFile8;
258 CleanupStack::PushL(self);
259 self->iImpl=CIniFile8Impl::NewL(aFs,aFileName);
267 EXPORT_C CIniFile8::~CIniFile8()
273 Get the value of a key within a section
274 @param aSectionName the section where the key resides
275 @param aKeyName the key name
276 @param aValue pointer to the key value
278 KErrNotFound if either section or keyname not found
279 KErrNone if successful
281 EXPORT_C TInt CIniFile8::FindVar(const TDesC8& aSectionName,const TDesC8& aKeyName,TPtrC8& aValue) const
283 return iImpl->FindVar(aSectionName,aKeyName,aValue);
286 CIniFile8::CIniFile8(){}
290 Creates a 16 bit section content iterator
291 this iterator is used to navigate through the key value pairs
292 within the section.Useful when the number of keys within the
294 @param aSectionName the name of the section to iterate
295 @param aIniDocument the document object containing the section
296 @return A pointer to a newly created CIniSecIter16 object
297 @leave KErrNoMemory if not enough memory
298 KErrArgument if aIniDocument is NULL
300 EXPORT_C CIniSecIter16* CIniSecIter16::NewL(const TDesC16& aSectionName,const CIniDocument16* aIniDocument)
302 CIniSecIter16* self=new (ELeave)CIniSecIter16();
303 CleanupStack::PushL(self);
304 self->iImpl=CIniSecIter16Impl::NewL(aSectionName,aIniDocument);
310 Return the next key value pair within the section
311 @param aKey a pointer to contain the key name
312 @param aValue a pointer to contain the key value
313 @return ETrue if there are keyvalue pairs to return
314 EFalse if it is already end of section
315 @post the iterator points to the next available keyvalue pair
316 the aKeyName points to the key name
317 the aKeyValue points to the key value
319 EXPORT_C TBool CIniSecIter16::Next(TPtrC16& aKey,TPtrC16& aValue)
321 return iImpl->Next(aKey,aValue);
325 Look ahead in the section to check whether there is
326 still any keyvalue pair in the section to be read
327 @return ETrue if it is already end of section
328 EFalse indicating the next keyvalue pair exists
330 EXPORT_C TBool CIniSecIter16::End()
336 Reset the iterator to point to the first keypair value within
338 @post the iterator now points to first keypair in the section
340 EXPORT_C void CIniSecIter16::Reset()
348 EXPORT_C CIniSecIter16::~CIniSecIter16()
353 //Default constructor
354 CIniSecIter16::CIniSecIter16()
361 Opening 16 bit ini file for reading.If the supplied file name is a valid
362 ini file, it will instantiate the object and read the content of
363 the ini file.If file not found it will simply instantiate the object.
364 The file is opened for read only and close directly after the construction
365 of this object is complete.
366 User will need to explicitly call Externalise(aFileName) to write the content back to ini file.
367 @param aFs the handle to the file session
368 @param aFileName the ini file name to read from
369 @return A pointer to a newly created CIniDocument16 object
371 EXPORT_C CIniDocument16* CIniDocument16::NewL(RFs& aFs,const TDesC& aFileName)
373 CIniDocument16* self=new (ELeave)CIniDocument16();
374 CleanupStack::PushL(self);
375 self->iImpl=CIniDocument16Impl::NewL(aFs,aFileName);
381 Flush the buffered content to an output file name
382 This will first write into a temporary file in the same directory and path
383 as the supplied aFileName.It will then replace the existing file or
384 create a new file if does not exist yet.
385 @param aFileName the output file name to write to
386 @return KErrNone if no error
387 Other System Wide errors
389 EXPORT_C TInt CIniDocument16::Externalise(const TDesC& aFileName)
391 TRAPD(r,iImpl->FlushL(aFileName));
396 Get an array of the section name present in the ini document object
397 Note that any items inside this array will be cleared and the array will
398 be populated with the sections' names from this document object.
399 @param aSectionList an array of descriptor to contain the section name
400 @return KErrNone if successful, otherwise another of the system-wide error codes
401 @post aSectionList contains all the section name in the document object
403 EXPORT_C TInt CIniDocument16::GetSectionList(RArray<TPtrC16>& aSectionList) const
405 return iImpl->GetSectionList(aSectionList);
409 Get the value of a key within a section
410 @param aSectionName the section where the key resides
411 @param aKey the key name
412 @param aValue pointer to the key value
414 KErrNotFound if either section or keyname not found
415 KErrNone if successful
416 @post aKeyValue now points to the key value
418 EXPORT_C TInt CIniDocument16::GetKeyValue(const TDesC16& aSectionName,const TDesC16& aKey,TPtrC16& aValue) const
420 TRAPD(ret,iImpl->GetKeyValueL(aSectionName,aKey,aValue));
425 Add a section to the ini document object
426 @param aSectionName the name of the section to be added
428 KErrNone if successful
429 KErrAlreadyExists if the section with that name already exists
430 Any other system wide error code
431 @post a section with that name is created and added to the document object
433 EXPORT_C TInt CIniDocument16::AddSection(const TDesC16& aSectionName)
435 TRAPD(ret,iImpl->AddSectionL(aSectionName));
440 Remove an existing section from the ini document object
441 @param aSectionName the name of the section to be removed
442 @return KErrNone if successful
443 KErrNotFound if section does not exist
444 Any other system wide error code
445 @post if exist that section is removed from the document object
447 EXPORT_C TInt CIniDocument16::RemoveSection(const TDesC16& aSectionName)
449 TRAPD(ret,iImpl->RemoveSectionL(aSectionName));
454 Set the value of a key within a section.
455 This API offers the following flexibility:
456 -If section does not exist,create a section and key and value
457 -If section exists but key does not exist, create the key and value
458 -Else replace the existing key value with the new value
459 @param aSectionName the name of the section
460 @param aKey the name of the key
461 @param aValue the new value for this key
463 KErrNone if successful,any other system wide error code
465 EXPORT_C TInt CIniDocument16::SetKey(const TDesC16& aSectionName,const TDesC16& aKey,const TDesC16& aValue)
467 TRAPD(ret,iImpl->SetKeyL(aSectionName,aKey,aValue));
472 Remove an existing key within a section
473 if supplied section or key name does not exist, it does nothing
474 @param aSectionName the name of the section where the key resides
475 @param aKey the name of the key to be removed
476 @post if exist that key is removed from the section
478 EXPORT_C TInt CIniDocument16::RemoveKey(const TDesC16& aSectionName,const TDesC16& aKey)
480 TRAPD(ret,iImpl->RemoveKeyL(aSectionName,aKey));
484 Compare two document objects. If names, keys or values differ, a false is returned,
485 else a true is returned.
486 @param aDoc name of the document to compare against this object.
488 EXPORT_C TBool CIniDocument16::CompareDocs(CIniDocument16& aDoc)
490 return (iImpl->CompareDocs( *(aDoc.iImpl) ));
495 EXPORT_C CIniDocument16::~CIniDocument16()
500 CIniDocument16::CIniDocument16(){}
504 Creates a 16 bit light weight parser
505 @param aFs the handle to the file session
506 @param aFileName the ini file name to open
507 @return A pointer to a newly created CIniFile16 object
508 @leave KErrNoMemory if not enough memory
509 KErrNotFound if the supplied file does not exist
511 EXPORT_C CIniFile16* CIniFile16::NewL(RFs& aFs,const TDesC& aFileName)
513 return CIniFile16::NewL(aFs,aFileName,EFalse);
517 Creates a 16 bit light weight parser
518 @param aFs the handle to the file session
519 @param aFileName the ini file name to open
520 @param aConvert8To16 upconvert 8 bit files otherwise leave with KErrCorrupt
521 @return A pointer to a newly created CIniFile16 object
522 @leave KErrNoMemory if not enough memory
523 KErrNotFound if the supplied file does not exist
525 EXPORT_C CIniFile16* CIniFile16::NewL(RFs& aFs,const TDesC& aFileName,TBool aConvert8To16)
527 CIniFile16* self=new (ELeave)CIniFile16;
528 CleanupStack::PushL(self);
529 self->iImpl=CIniFile16Impl::NewL(aFs,aFileName,aConvert8To16);
537 EXPORT_C CIniFile16::~CIniFile16()
543 Get the value of a key within a section
544 @param aSectionName the section where the key resides
545 @param aKeyName the key name
546 @param aValue pointer to the key value
548 KErrNotFound if either section or keyname not found
549 KErrNone if successful
551 EXPORT_C TInt CIniFile16::FindVar(const TDesC16& aSectionName,const TDesC16& aKeyName,TPtrC16& aValue)const
553 return iImpl->FindVar(aSectionName,aKeyName,aValue);
556 CIniFile16::CIniFile16(){}
560 CIniDocument8Impl* CIniDocument8Impl::NewL(RFs& aFs,const TDesC& aFileName)
562 CIniDocument8Impl* self= new (ELeave) CIniDocument8Impl();
563 CleanupStack::PushL(self);
564 self->ConstructL(aFs,aFileName);
569 // This method will panic if, when reading the input configuration file, a key
570 // is attempted to be processed without a valid section name being already defined.
571 void CIniDocument8Impl::ConstructL(RFs& aFs,const TDesC& aFileName)
575 CIniSection8* section = NULL;
576 HBufC8* fileBuffer=NULL;
577 iTempImpl=new (ELeave)CIniDocumentTmpl8(aFs,ETrue);
579 TRAPD(ret,GetBufferL(aFs,aFileName,fileBuffer));
580 //if the file is not found, assume we are creating a new file.
581 if (ret==KErrNotFound)
585 User::LeaveIfError(ret);
590 CleanupStack::PushL(fileBuffer);
591 filesize = fileBuffer->Length();
592 TPtrC8 bufferDescriptor = fileBuffer->Des();
593 while (startOfLine < filesize)
595 TPtrC8 myBuffer = ExtractLineFromBuffer<HBufC8, TPtrC8>(bufferDescriptor, startOfLine);
596 CIniLine8* line = CIniLine8::NewLC(myBuffer);
597 startOfLine += (line->LineBuffer()).Length();
599 switch(line->LineType())
602 section = CIniSection8::NewLC(line);
603 iTempImpl->AddSectionL(section);
604 CleanupStack::Pop(section);
609 CIniKey8* key = CIniKey8::NewLC(line);
612 User::Leave(KErrCorrupt); //Unnamed sections within the file are not allowed but not preventable, hence leave if found.
614 section->InsertKeyL(key);
615 CleanupStack::Pop(key);
623 User::Panic(_L("Invalid LineType"), KErrCorrupt); // programming error.
625 iTempImpl->AppendIntoQueue(line);
626 CleanupStack::Pop(line);
628 CleanupStack::PopAndDestroy(fileBuffer);
631 void CIniDocument8Impl::FlushL(const TDesC& aFileName)
633 iTempImpl->FlushL(aFileName);
636 TInt CIniDocument8Impl::GetSectionList(RArray<TPtrC8>& aSectionList) const
638 return iTempImpl->GetSectionList(aSectionList);
641 void CIniDocument8Impl::GetKeyValueL(const TDesC8& aSectionName,const TDesC8& aKeyName,TPtrC8& aKeyValue) const
643 iTempImpl->GetKeyValueL(aSectionName,aKeyName,aKeyValue);
646 void CIniDocument8Impl::AddSectionL(const TDesC8& aSectionName)
648 iTempImpl->AddSectionL(aSectionName);
651 void CIniDocument8Impl::RemoveSectionL(const TDesC8& aSectionName)
653 iTempImpl->RemoveSectionL(aSectionName);
656 void CIniDocument8Impl::SetKeyL(const TDesC8& aSectionName,const TDesC8& aKeyName,const TDesC8& aKeyValue)
658 iTempImpl->SetKeyL(aSectionName,aKeyName,aKeyValue);
661 void CIniDocument8Impl::RemoveKeyL(const TDesC8& aSectionName,const TDesC8& aKeyName)
663 iTempImpl->RemoveKeyL(aSectionName,aKeyName);
666 CIniDocument8Impl::~CIniDocument8Impl()
671 CIniSection8* CIniDocument8Impl::SectionL(const TDesC8& aSectionName) const
673 return iTempImpl->SectionL(aSectionName);
676 TBool CIniDocument8Impl::CompareDocs(CIniDocument8Impl& aDocImpl)
678 return(iTempImpl->CompareDocs(*aDocImpl.iTempImpl));
682 CIniDocument16Impl* CIniDocument16Impl::NewL(RFs& aFs,const TDesC& aFileName)
684 CIniDocument16Impl* self= new (ELeave) CIniDocument16Impl();
685 CleanupStack::PushL(self);
686 self->ConstructL(aFs,aFileName);
691 void CIniDocument16Impl::ConstructL(RFs& aFs,const TDesC& aFileName)
695 CIniSection16* section = NULL;
696 HBufC8* fileBuffer=NULL;
697 iTempImpl=new (ELeave)CIniDocumentTmpl16(aFs,EFalse);
699 TRAPD(ret,GetBufferL(aFs,aFileName,fileBuffer));
700 //if the file is not found, assume we are creating a new file.
701 if (ret==KErrNotFound)
705 User::LeaveIfError(ret);
710 CleanupStack::PushL(fileBuffer);
711 filesize = fileBuffer->Length()/2;
713 // process the filemark at the start of the file.
714 const TUint16* rawptr16=reinterpret_cast<const TUint16*>(fileBuffer->Ptr());
717 //must always start with the byte ordering characters
718 bufferPtr.Set(rawptr16,1);
719 if (bufferPtr.Compare(_L("\xFEFF"))!=0)
720 User::Leave(KErrCorrupt);
721 //skip the byte ordering character(FEFF) assuming little endian
722 bufferPtr.Set(rawptr16+1,(filesize - 1));
724 while (startOfLine < (filesize-1))
726 TPtrC16 myBuffer = ExtractLineFromBuffer<HBufC16, TPtrC16>(bufferPtr, startOfLine);
727 CIniLine16* line = CIniLine16::NewLC(myBuffer);
728 startOfLine += (line->LineBuffer()).Length();
730 TLineType lineType = line->LineType();
734 section = CIniSection16::NewLC(line);
735 iTempImpl->AddSectionL(section);
736 CleanupStack::Pop(section);
741 CIniKey16* key = CIniKey16::NewLC(line);
745 User::Leave(KErrCorrupt); //Unnamed sections are not allowed hence leave if found.
747 section->InsertKeyL(key);
748 CleanupStack::Pop(key);
756 User::Panic(_L("Invalid LineType"), KErrCorrupt);
758 iTempImpl->AppendIntoQueue(line);
759 CleanupStack::Pop(line);
761 CleanupStack::PopAndDestroy(fileBuffer);
764 void CIniDocument16Impl::FlushL(const TDesC& aFileName)
766 iTempImpl->FlushL(aFileName);
769 TInt CIniDocument16Impl::GetSectionList(RArray<TPtrC16>& aSectionList) const
771 return iTempImpl->GetSectionList(aSectionList);
774 void CIniDocument16Impl::GetKeyValueL(const TDesC16& aSectionName,const TDesC16& aKeyName,TPtrC16& aKeyValue) const
776 iTempImpl->GetKeyValueL(aSectionName,aKeyName,aKeyValue);
779 void CIniDocument16Impl::AddSectionL(const TDesC16& aSectionName)
781 iTempImpl->AddSectionL(aSectionName);
784 void CIniDocument16Impl::RemoveSectionL(const TDesC16& aSectionName)
786 iTempImpl->RemoveSectionL(aSectionName);
789 void CIniDocument16Impl::SetKeyL(const TDesC16& aSectionName,const TDesC16& aKeyName,const TDesC16& aKeyValue)
791 iTempImpl->SetKeyL(aSectionName,aKeyName,aKeyValue);
794 void CIniDocument16Impl::RemoveKeyL(const TDesC16& aSectionName,const TDesC16& aKeyName)
796 iTempImpl->RemoveKeyL(aSectionName,aKeyName);
799 CIniDocument16Impl::~CIniDocument16Impl()
804 CIniSection16* CIniDocument16Impl::SectionL(const TDesC16& aSectionName) const
806 return iTempImpl->SectionL(aSectionName);
809 TBool CIniDocument16Impl::CompareDocs(CIniDocument16Impl& aDocImpl)
811 return(iTempImpl->CompareDocs(*(aDocImpl.iTempImpl)));
816 CIniSecIter8Impl* CIniSecIter8Impl::NewL(const TDesC8& aSectionName,const CIniDocument8* aIniDocument)
818 CIniSecIter8Impl* self=new (ELeave)CIniSecIter8Impl();
819 CleanupStack::PushL(self);
820 self->ConstructL(aSectionName,aIniDocument);
825 void CIniSecIter8Impl::ConstructL(const TDesC8& aSectionName,const CIniDocument8* aIniDocument)
827 iTempImpl=new (ELeave)CIniSecIterTmpl8();
829 User::Leave(KErrArgument);
830 iTempImpl->iSection=aIniDocument->iImpl->SectionL(aSectionName);
833 TBool CIniSecIter8Impl::Next(TPtrC8& aKeyName,TPtrC8& aKeyValue)
835 return iTempImpl->Next(aKeyName,aKeyValue);
838 void CIniSecIter8Impl::Reset()
844 CIniSecIter16Impl* CIniSecIter16Impl::NewL(const TDesC16& aSectionName,const CIniDocument16* aIniDocument)
846 CIniSecIter16Impl* self=new (ELeave)CIniSecIter16Impl();
847 CleanupStack::PushL(self);
848 self->ConstructL(aSectionName,aIniDocument);
853 void CIniSecIter16Impl::ConstructL(const TDesC16& aSectionName,const CIniDocument16* aIniDocument)
855 iTempImpl=new (ELeave)CIniSecIterTmpl16();
857 User::Leave(KErrArgument);
858 iTempImpl->iSection=aIniDocument->iImpl->SectionL(aSectionName);
861 TBool CIniSecIter16Impl::Next(TPtrC16& aKeyName,TPtrC16& aKeyValue)
863 return iTempImpl->Next(aKeyName,aKeyValue);
866 void CIniSecIter16Impl::Reset()
872 CIniFile8Impl* CIniFile8Impl::NewL(RFs& aFs,const TDesC& aFileName)
874 CIniFile8Impl* self=new (ELeave)CIniFile8Impl;
875 CleanupStack::PushL(self);
876 self->ConstructL(aFs,aFileName);
881 void CIniFile8Impl::ConstructL(RFs& aFs,const TDesC& aFileName)
883 iTempImpl=new (ELeave)CIniFileTmpl8();
884 HBufC8* tempBuffer=NULL;
886 GetBufferL(aFs,aFileName,tempBuffer);
889 CleanupStack::PushL(tempBuffer);
890 iTempImpl->ProcessBufferL(*tempBuffer);
896 TInt CIniFile8Impl::FindVar(const TDesC8& aSection,const TDesC8& aKey,TPtrC8& aValue)
898 return iTempImpl->FindVar(aSection,aKey,aValue);
902 CIniFile16Impl* CIniFile16Impl::NewL(RFs& aFs,const TDesC& aFileName,TBool aConvert8To16)
904 CIniFile16Impl* self=new (ELeave)CIniFile16Impl;
905 CleanupStack::PushL(self);
906 self->ConstructL(aFs,aFileName,aConvert8To16);
911 void CIniFile16Impl::ConstructL(RFs& aFs,const TDesC& aFileName,TBool aConvert8To16)
913 iTempImpl=new (ELeave)CIniFileTmpl16();
914 HBufC8* tempBuffer=NULL;
916 GetBufferL(aFs,aFileName,tempBuffer);
919 CleanupStack::PushL(tempBuffer);
921 const TUint16* rawptr16=reinterpret_cast<const TUint16*>(tempBuffer->Ptr());
922 //must always start with the byte ordering characters
923 bufferPtr.Set(rawptr16,1);
924 if (bufferPtr.Compare(_L("\xFEFF"))==0)
926 //skip the byte ordering character(FEFF) assuming little endian
927 bufferPtr.Set(rawptr16+1,(tempBuffer->Length()/2)-1);
931 //byte ordering characters not found, so leave, unless we should upconvert
934 User::Leave(KErrCorrupt);
936 //treat as an 8-bit file and upconvert to 16
937 HBufC16* tempBuffer16=HBufC16::NewL(tempBuffer->Length());
938 tempBuffer16->Des().Copy(*tempBuffer);
939 CleanupStack::PopAndDestroy(tempBuffer);
940 CleanupStack::PushL(tempBuffer16);
941 bufferPtr.Set(*tempBuffer16);
943 iTempImpl->ProcessBufferL(bufferPtr);
944 CleanupStack::PopAndDestroy();
948 TInt CIniFile16Impl::FindVar(const TDesC16& aSection,const TDesC16& aKey,TPtrC16& aValue)
950 return iTempImpl->FindVar(aSection,aKey,aValue);