os/ossrv/lowlevellibsandfws/apputils/bsul/src/IniParserImpl.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2005-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
// 8 and 16 bit ini file parser
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @internalAll
sl@0
    21
*/
sl@0
    22
sl@0
    23
#include "IniParserImpl.h"
sl@0
    24
#include "inifile.h"
sl@0
    25
#include "s32file.h"
sl@0
    26
sl@0
    27
namespace BSUL
sl@0
    28
{
sl@0
    29
/**
sl@0
    30
Creates a 8 bit section content iterator
sl@0
    31
this iterator is used to navigate through the key value pairs
sl@0
    32
within the section.Useful when the number of keys within the 
sl@0
    33
section is unknown.
sl@0
    34
@param aSectionName the name of the section to iterate
sl@0
    35
@param aIniDocument the document object containing the section
sl@0
    36
@return A pointer to a newly created CIniSecIter8 object
sl@0
    37
@leave	KErrNoMemory if not enough memory
sl@0
    38
		KErrArgument if aIniDocument is NULL
sl@0
    39
*/
sl@0
    40
EXPORT_C CIniSecIter8* CIniSecIter8::NewL(const TDesC8& aSectionName,const CIniDocument8* aIniDocument)
sl@0
    41
{
sl@0
    42
	CIniSecIter8* self=new (ELeave)CIniSecIter8();
sl@0
    43
	CleanupStack::PushL(self);
sl@0
    44
	self->iImpl=CIniSecIter8Impl::NewL(aSectionName,aIniDocument);
sl@0
    45
	CleanupStack::Pop();
sl@0
    46
	return self;	
sl@0
    47
}
sl@0
    48
sl@0
    49
/**
sl@0
    50
Return the next key value pair within the section
sl@0
    51
@param aKey a pointer to contain the key name
sl@0
    52
@param aValue a pointer to contain the key value
sl@0
    53
@return ETrue if there are keyvalue pairs to return
sl@0
    54
	    EFalse if it is already end of section
sl@0
    55
@post the iterator points to the next available keyvalue pair
sl@0
    56
	  the aKeyName points to  the key name
sl@0
    57
	  the aKeyValue points to the key value
sl@0
    58
*/	
sl@0
    59
EXPORT_C TBool CIniSecIter8::Next(TPtrC8& aKey,TPtrC8& aValue)
sl@0
    60
{
sl@0
    61
	return iImpl->Next(aKey,aValue);
sl@0
    62
}
sl@0
    63
sl@0
    64
/**
sl@0
    65
Look ahead in the section to check whether there is 
sl@0
    66
still any keyvalue pair in the section to be read
sl@0
    67
@return ETrue if it is already end of section
sl@0
    68
	    EFalse indicating the next keyvalue pair exists
sl@0
    69
*/
sl@0
    70
EXPORT_C TBool CIniSecIter8::End()
sl@0
    71
{
sl@0
    72
	return iImpl->End();
sl@0
    73
}
sl@0
    74
sl@0
    75
/**
sl@0
    76
Reset the iterator to point to the first keypair value within
sl@0
    77
the section.
sl@0
    78
@post the iterator now points to first keypair in the section
sl@0
    79
*/
sl@0
    80
EXPORT_C void CIniSecIter8::Reset()
sl@0
    81
{
sl@0
    82
	iImpl->Reset();
sl@0
    83
}
sl@0
    84
sl@0
    85
/**
sl@0
    86
Destructor
sl@0
    87
*/
sl@0
    88
EXPORT_C CIniSecIter8::~CIniSecIter8()
sl@0
    89
{
sl@0
    90
	delete iImpl;
sl@0
    91
}
sl@0
    92
sl@0
    93
//Default constructor
sl@0
    94
CIniSecIter8::CIniSecIter8()
sl@0
    95
{
sl@0
    96
}
sl@0
    97
sl@0
    98
//
sl@0
    99
sl@0
   100
/** 
sl@0
   101
Opening 8 bit ini file for reading.If the supplied file name is a valid
sl@0
   102
ini file, it will instantiate the object and read the content of 
sl@0
   103
the ini file.If file not found it will simply instantiate the object.
sl@0
   104
The file is opened for read only and close directly after the construction
sl@0
   105
of this object is complete.
sl@0
   106
User will need to explicitly call Externalise(aFileName) to write the content back to ini file.
sl@0
   107
@param aFs the handle to the file session
sl@0
   108
@param aFileName the ini file name to read from
sl@0
   109
@return A pointer to a newly created CIniDocument8 object
sl@0
   110
*/
sl@0
   111
EXPORT_C CIniDocument8* CIniDocument8::NewL(RFs& aFs,const TDesC& aFileName)
sl@0
   112
	{
sl@0
   113
	CIniDocument8* self=new (ELeave)CIniDocument8();
sl@0
   114
	CleanupStack::PushL(self);
sl@0
   115
	self->iImpl=CIniDocument8Impl::NewL(aFs,aFileName);
sl@0
   116
	CleanupStack::Pop();
sl@0
   117
	return self;	
sl@0
   118
	}
sl@0
   119
sl@0
   120
/**
sl@0
   121
Externalise the buffered content to an output file name
sl@0
   122
This will first write into a temporary file in the same directory and path
sl@0
   123
as the supplied aFileName.It will then replace the existing file or 
sl@0
   124
create a new file if does not exist yet.
sl@0
   125
@param aFileName the output file name to write to
sl@0
   126
@return KErrNone if no error
sl@0
   127
		Other System Wide errors
sl@0
   128
*/
sl@0
   129
EXPORT_C TInt CIniDocument8::Externalise(const TDesC& aFileName)
sl@0
   130
{
sl@0
   131
	TRAPD(r,iImpl->FlushL(aFileName));
sl@0
   132
	return r;
sl@0
   133
}
sl@0
   134
/**
sl@0
   135
Compare this document against another for differences.
sl@0
   136
@param aDoc to compare against.
sl@0
   137
@return True if same
sl@0
   138
		Otherwise false
sl@0
   139
*/
sl@0
   140
EXPORT_C TBool CIniDocument8::CompareDocs(CIniDocument8& aDoc) 
sl@0
   141
	{
sl@0
   142
	return (iImpl->CompareDocs( *(aDoc.iImpl) ));
sl@0
   143
	}	
sl@0
   144
sl@0
   145
/** 
sl@0
   146
Get an array of the section name present in the ini document object
sl@0
   147
Note that any items inside this array will be cleared and the array will
sl@0
   148
be populated with the sections' names from this document object.
sl@0
   149
@param aSectionList an array of descriptor to contain the section name
sl@0
   150
@return KErrNone if successful, otherwise another of the system-wide error codes
sl@0
   151
@post aSectionList contains all the section name in the document object
sl@0
   152
*/
sl@0
   153
EXPORT_C TInt CIniDocument8::GetSectionList(RArray<TPtrC8>& aSectionList) const
sl@0
   154
	{
sl@0
   155
	return iImpl->GetSectionList(aSectionList);
sl@0
   156
	}
sl@0
   157
sl@0
   158
/**
sl@0
   159
Get the value of a key within a section
sl@0
   160
@param aSectionName the section where the key resides
sl@0
   161
@param aKey the key name
sl@0
   162
@param aValue pointer to the key value
sl@0
   163
@return
sl@0
   164
	KErrNotFound if either section or keyname not found
sl@0
   165
	KErrNone if successful
sl@0
   166
@post aKeyValue now points to the key value
sl@0
   167
*/
sl@0
   168
EXPORT_C TInt CIniDocument8::GetKeyValue(const TDesC8& aSectionName,const TDesC8& aKey,TPtrC8& aValue) const
sl@0
   169
	{
sl@0
   170
	TRAPD(ret,iImpl->GetKeyValueL(aSectionName,aKey,aValue));
sl@0
   171
	return ret;
sl@0
   172
	}
sl@0
   173
sl@0
   174
/**
sl@0
   175
Add a section to the ini document object
sl@0
   176
@param aSectionName the name of the section to be added
sl@0
   177
@return
sl@0
   178
	KErrNone if successful
sl@0
   179
	KErrAlreadyExists if the section with that name already exists
sl@0
   180
	Any other system wide error code
sl@0
   181
@post a section with that name is created and added to the document object
sl@0
   182
*/
sl@0
   183
EXPORT_C TInt CIniDocument8::AddSection(const TDesC8& aSectionName)
sl@0
   184
	{
sl@0
   185
	TRAPD(ret,iImpl->AddSectionL(aSectionName));
sl@0
   186
	return ret;	
sl@0
   187
	}
sl@0
   188
sl@0
   189
/**
sl@0
   190
Remove an existing section from the ini document object
sl@0
   191
@param aSectionName the name of the section to be removed
sl@0
   192
@return KErrNone if successful
sl@0
   193
	    KErrNotFound if section does not exist
sl@0
   194
	    Any other system wide error code
sl@0
   195
@post if exist that section is removed from the document object	
sl@0
   196
*/	
sl@0
   197
EXPORT_C TInt CIniDocument8::RemoveSection(const TDesC8& aSectionName)
sl@0
   198
	{
sl@0
   199
	TRAPD(ret,iImpl->RemoveSectionL(aSectionName));
sl@0
   200
	return ret;
sl@0
   201
	}
sl@0
   202
sl@0
   203
/**
sl@0
   204
Set the value of a key within a section.
sl@0
   205
This API offers the following flexibility:
sl@0
   206
-If section does not exist,create a section and key and value
sl@0
   207
-If section exists but key does not exist, create the key and value
sl@0
   208
-Else replace the existing key value with the new value
sl@0
   209
@param aSectionName the name of the section
sl@0
   210
@param aKey the name of the key
sl@0
   211
@param aValue the new value for this key
sl@0
   212
@return
sl@0
   213
	KErrNone if successful,any other system wide error code
sl@0
   214
*/
sl@0
   215
EXPORT_C TInt CIniDocument8::SetKey(const TDesC8& aSectionName,const TDesC8& aKey,const TDesC8& aValue)
sl@0
   216
	{
sl@0
   217
	TRAPD(ret,iImpl->SetKeyL(aSectionName,aKey,aValue));	
sl@0
   218
	return ret;
sl@0
   219
	}
sl@0
   220
sl@0
   221
/**
sl@0
   222
Remove an existing key within a section
sl@0
   223
if supplied section or key name does not exist, it does nothing
sl@0
   224
@param aSectionName the name of the section where the key resides
sl@0
   225
@param aKey the name of the key to be removed
sl@0
   226
@post if exist that key is removed from the section
sl@0
   227
*/
sl@0
   228
EXPORT_C TInt CIniDocument8::RemoveKey(const TDesC8& aSectionName,const TDesC8& aKey)
sl@0
   229
	{
sl@0
   230
	TRAPD(ret,iImpl->RemoveKeyL(aSectionName,aKey));
sl@0
   231
	return ret;	
sl@0
   232
	}
sl@0
   233
sl@0
   234
/**
sl@0
   235
Destructor
sl@0
   236
*/	
sl@0
   237
EXPORT_C CIniDocument8::~CIniDocument8()
sl@0
   238
	{
sl@0
   239
	delete iImpl;
sl@0
   240
	}
sl@0
   241
sl@0
   242
CIniDocument8::CIniDocument8()
sl@0
   243
{
sl@0
   244
}
sl@0
   245
sl@0
   246
//
sl@0
   247
/**
sl@0
   248
Creates a 8 bit light weight parser
sl@0
   249
@param aFs the handle to the file session
sl@0
   250
@param aFileName the ini file name to open
sl@0
   251
@return A pointer to a newly created CIniFile8 object
sl@0
   252
@leave	KErrNoMemory if not enough memory
sl@0
   253
		KErrNotFound if the supplied file does not exist
sl@0
   254
*/
sl@0
   255
EXPORT_C CIniFile8* CIniFile8::NewL(RFs& aFs,const TDesC& aFileName)
sl@0
   256
	{
sl@0
   257
	CIniFile8* self=new (ELeave)CIniFile8;
sl@0
   258
	CleanupStack::PushL(self);
sl@0
   259
	self->iImpl=CIniFile8Impl::NewL(aFs,aFileName);
sl@0
   260
	CleanupStack::Pop();
sl@0
   261
	return self;
sl@0
   262
	}
sl@0
   263
sl@0
   264
/**
sl@0
   265
Public destructor
sl@0
   266
*/	
sl@0
   267
EXPORT_C CIniFile8::~CIniFile8()
sl@0
   268
	{
sl@0
   269
	delete iImpl;	
sl@0
   270
	}
sl@0
   271
sl@0
   272
/**
sl@0
   273
Get the value of a key within a section
sl@0
   274
@param aSectionName the section where the key resides
sl@0
   275
@param aKeyName the key name
sl@0
   276
@param aValue pointer to the key value
sl@0
   277
@return
sl@0
   278
	KErrNotFound if either section or keyname not found
sl@0
   279
	KErrNone if successful
sl@0
   280
*/	
sl@0
   281
EXPORT_C TInt CIniFile8::FindVar(const TDesC8& aSectionName,const TDesC8& aKeyName,TPtrC8& aValue)	const
sl@0
   282
	{
sl@0
   283
	return iImpl->FindVar(aSectionName,aKeyName,aValue);
sl@0
   284
	}
sl@0
   285
	
sl@0
   286
CIniFile8::CIniFile8(){}
sl@0
   287
sl@0
   288
//
sl@0
   289
/**
sl@0
   290
Creates a 16 bit section content iterator
sl@0
   291
this iterator is used to navigate through the key value pairs
sl@0
   292
within the section.Useful when the number of keys within the 
sl@0
   293
section is unknown.
sl@0
   294
@param aSectionName the name of the section to iterate
sl@0
   295
@param aIniDocument the document object containing the section
sl@0
   296
@return A pointer to a newly created CIniSecIter16 object
sl@0
   297
@leave	KErrNoMemory if not enough memory
sl@0
   298
		KErrArgument if aIniDocument is NULL
sl@0
   299
*/
sl@0
   300
EXPORT_C CIniSecIter16* CIniSecIter16::NewL(const TDesC16& aSectionName,const CIniDocument16* aIniDocument)
sl@0
   301
{
sl@0
   302
	CIniSecIter16* self=new (ELeave)CIniSecIter16();
sl@0
   303
	CleanupStack::PushL(self);
sl@0
   304
	self->iImpl=CIniSecIter16Impl::NewL(aSectionName,aIniDocument);
sl@0
   305
	CleanupStack::Pop();
sl@0
   306
	return self;	
sl@0
   307
}
sl@0
   308
sl@0
   309
/**
sl@0
   310
Return the next key value pair within the section
sl@0
   311
@param aKey a pointer to contain the key name
sl@0
   312
@param aValue a pointer to contain the key value
sl@0
   313
@return ETrue if there are keyvalue pairs to return
sl@0
   314
	    EFalse if it is already end of section
sl@0
   315
@post the iterator points to the next available keyvalue pair
sl@0
   316
	  the aKeyName points to  the key name
sl@0
   317
	  the aKeyValue points to the key value
sl@0
   318
*/	
sl@0
   319
EXPORT_C TBool CIniSecIter16::Next(TPtrC16& aKey,TPtrC16& aValue)
sl@0
   320
{
sl@0
   321
	return iImpl->Next(aKey,aValue);
sl@0
   322
}
sl@0
   323
sl@0
   324
/**
sl@0
   325
Look ahead in the section to check whether there is 
sl@0
   326
still any keyvalue pair in the section to be read
sl@0
   327
@return ETrue if it is already end of section
sl@0
   328
	    EFalse indicating the next keyvalue pair exists
sl@0
   329
*/
sl@0
   330
EXPORT_C TBool CIniSecIter16::End()
sl@0
   331
{
sl@0
   332
	return iImpl->End();
sl@0
   333
}
sl@0
   334
sl@0
   335
/**
sl@0
   336
Reset the iterator to point to the first keypair value within
sl@0
   337
the section.
sl@0
   338
@post the iterator now points to first keypair in the section
sl@0
   339
*/
sl@0
   340
EXPORT_C void CIniSecIter16::Reset()
sl@0
   341
{
sl@0
   342
	iImpl->Reset();
sl@0
   343
}
sl@0
   344
sl@0
   345
/**
sl@0
   346
Destructor
sl@0
   347
*/
sl@0
   348
EXPORT_C CIniSecIter16::~CIniSecIter16()
sl@0
   349
{
sl@0
   350
	delete iImpl;
sl@0
   351
}
sl@0
   352
sl@0
   353
//Default constructor
sl@0
   354
CIniSecIter16::CIniSecIter16()
sl@0
   355
{
sl@0
   356
}
sl@0
   357
sl@0
   358
//
sl@0
   359
sl@0
   360
/** 
sl@0
   361
Opening 16 bit ini file for reading.If the supplied file name is a valid
sl@0
   362
ini file, it will instantiate the object and read the content of 
sl@0
   363
the ini file.If file not found it will simply instantiate the object.
sl@0
   364
The file is opened for read only and close directly after the construction
sl@0
   365
of this object is complete.
sl@0
   366
User will need to explicitly call Externalise(aFileName) to write the content back to ini file.
sl@0
   367
@param aFs the handle to the file session
sl@0
   368
@param aFileName the ini file name to read from
sl@0
   369
@return A pointer to a newly created CIniDocument16 object
sl@0
   370
*/
sl@0
   371
EXPORT_C CIniDocument16* CIniDocument16::NewL(RFs& aFs,const TDesC& aFileName)
sl@0
   372
	{
sl@0
   373
	CIniDocument16* self=new (ELeave)CIniDocument16();
sl@0
   374
	CleanupStack::PushL(self);
sl@0
   375
	self->iImpl=CIniDocument16Impl::NewL(aFs,aFileName);
sl@0
   376
	CleanupStack::Pop();
sl@0
   377
	return self;	
sl@0
   378
	}
sl@0
   379
sl@0
   380
/**
sl@0
   381
Flush the buffered content to an output file name
sl@0
   382
This will first write into a temporary file in the same directory and path
sl@0
   383
as the supplied aFileName.It will then replace the existing file or 
sl@0
   384
create a new file if does not exist yet.
sl@0
   385
@param aFileName the output file name to write to
sl@0
   386
@return KErrNone if no error
sl@0
   387
		Other System Wide errors
sl@0
   388
*/
sl@0
   389
EXPORT_C TInt CIniDocument16::Externalise(const TDesC& aFileName)
sl@0
   390
{
sl@0
   391
	TRAPD(r,iImpl->FlushL(aFileName));
sl@0
   392
	return r;
sl@0
   393
}
sl@0
   394
	
sl@0
   395
/** 
sl@0
   396
Get an array of the section name present in the ini document object
sl@0
   397
Note that any items inside this array will be cleared and the array will
sl@0
   398
be populated with the sections' names from this document object.
sl@0
   399
@param aSectionList an array of descriptor to contain the section name
sl@0
   400
@return KErrNone if successful, otherwise another of the system-wide error codes
sl@0
   401
@post aSectionList contains all the section name in the document object
sl@0
   402
*/
sl@0
   403
EXPORT_C TInt CIniDocument16::GetSectionList(RArray<TPtrC16>& aSectionList) const
sl@0
   404
	{
sl@0
   405
	return iImpl->GetSectionList(aSectionList);
sl@0
   406
	}
sl@0
   407
sl@0
   408
/**
sl@0
   409
Get the value of a key within a section
sl@0
   410
@param aSectionName the section where the key resides
sl@0
   411
@param aKey the key name
sl@0
   412
@param aValue pointer to the key value
sl@0
   413
@return
sl@0
   414
	KErrNotFound if either section or keyname not found
sl@0
   415
	KErrNone if successful
sl@0
   416
@post aKeyValue now points to the key value
sl@0
   417
*/
sl@0
   418
EXPORT_C TInt CIniDocument16::GetKeyValue(const TDesC16& aSectionName,const TDesC16& aKey,TPtrC16& aValue) const
sl@0
   419
	{
sl@0
   420
	TRAPD(ret,iImpl->GetKeyValueL(aSectionName,aKey,aValue));
sl@0
   421
	return ret;
sl@0
   422
	}
sl@0
   423
sl@0
   424
/**
sl@0
   425
Add a section to the ini document object
sl@0
   426
@param aSectionName the name of the section to be added
sl@0
   427
@return
sl@0
   428
	KErrNone if successful
sl@0
   429
	KErrAlreadyExists if the section with that name already exists
sl@0
   430
	Any other system wide error code
sl@0
   431
@post a section with that name is created and added to the document object
sl@0
   432
*/
sl@0
   433
EXPORT_C TInt CIniDocument16::AddSection(const TDesC16& aSectionName)
sl@0
   434
	{
sl@0
   435
	TRAPD(ret,iImpl->AddSectionL(aSectionName));
sl@0
   436
	return ret;	
sl@0
   437
	}
sl@0
   438
sl@0
   439
/**
sl@0
   440
Remove an existing section from the ini document object
sl@0
   441
@param aSectionName the name of the section to be removed
sl@0
   442
@return KErrNone if successful
sl@0
   443
	    KErrNotFound if section does not exist
sl@0
   444
	    Any other system wide error code
sl@0
   445
@post if exist that section is removed from the document object	
sl@0
   446
*/	
sl@0
   447
EXPORT_C TInt CIniDocument16::RemoveSection(const TDesC16& aSectionName)
sl@0
   448
	{
sl@0
   449
	TRAPD(ret,iImpl->RemoveSectionL(aSectionName));
sl@0
   450
	return ret;
sl@0
   451
	}
sl@0
   452
sl@0
   453
/**
sl@0
   454
Set the value of a key within a section.
sl@0
   455
This API offers the following flexibility:
sl@0
   456
-If section does not exist,create a section and key and value
sl@0
   457
-If section exists but key does not exist, create the key and value
sl@0
   458
-Else replace the existing key value with the new value
sl@0
   459
@param aSectionName the name of the section
sl@0
   460
@param aKey the name of the key
sl@0
   461
@param aValue the new value for this key
sl@0
   462
@return
sl@0
   463
	KErrNone if successful,any other system wide error code
sl@0
   464
*/
sl@0
   465
EXPORT_C TInt CIniDocument16::SetKey(const TDesC16& aSectionName,const TDesC16& aKey,const TDesC16& aValue)
sl@0
   466
	{
sl@0
   467
	TRAPD(ret,iImpl->SetKeyL(aSectionName,aKey,aValue));	
sl@0
   468
	return ret;
sl@0
   469
	}
sl@0
   470
sl@0
   471
/**
sl@0
   472
Remove an existing key within a section
sl@0
   473
if supplied section or key name does not exist, it does nothing
sl@0
   474
@param aSectionName the name of the section where the key resides
sl@0
   475
@param aKey the name of the key to be removed
sl@0
   476
@post if exist that key is removed from the section
sl@0
   477
*/
sl@0
   478
EXPORT_C TInt CIniDocument16::RemoveKey(const TDesC16& aSectionName,const TDesC16& aKey)
sl@0
   479
	{
sl@0
   480
	TRAPD(ret,iImpl->RemoveKeyL(aSectionName,aKey));
sl@0
   481
	return ret;	
sl@0
   482
	}
sl@0
   483
/**
sl@0
   484
Compare two document objects. If names, keys or values differ, a false is returned,
sl@0
   485
else a true is returned.
sl@0
   486
@param aDoc name of the document to compare against this object.
sl@0
   487
*/
sl@0
   488
EXPORT_C TBool CIniDocument16::CompareDocs(CIniDocument16& aDoc)	
sl@0
   489
	{
sl@0
   490
	return (iImpl->CompareDocs( *(aDoc.iImpl) ));
sl@0
   491
	}	
sl@0
   492
/**
sl@0
   493
Destructor
sl@0
   494
*/	
sl@0
   495
EXPORT_C CIniDocument16::~CIniDocument16()
sl@0
   496
	{
sl@0
   497
	delete iImpl;
sl@0
   498
	}
sl@0
   499
sl@0
   500
CIniDocument16::CIniDocument16(){}
sl@0
   501
sl@0
   502
//
sl@0
   503
/**
sl@0
   504
Creates a 16 bit light weight parser
sl@0
   505
@param aFs the handle to the file session
sl@0
   506
@param aFileName the ini file name to open
sl@0
   507
@return A pointer to a newly created CIniFile16 object
sl@0
   508
@leave	KErrNoMemory if not enough memory
sl@0
   509
		KErrNotFound if the supplied file does not exist
sl@0
   510
*/
sl@0
   511
EXPORT_C CIniFile16* CIniFile16::NewL(RFs& aFs,const TDesC& aFileName)
sl@0
   512
	{
sl@0
   513
	return CIniFile16::NewL(aFs,aFileName,EFalse);
sl@0
   514
	}
sl@0
   515
sl@0
   516
/**
sl@0
   517
Creates a 16 bit light weight parser
sl@0
   518
@param aFs the handle to the file session
sl@0
   519
@param aFileName the ini file name to open
sl@0
   520
@param aConvert8To16 upconvert 8 bit files otherwise leave with KErrCorrupt
sl@0
   521
@return A pointer to a newly created CIniFile16 object
sl@0
   522
@leave	KErrNoMemory if not enough memory
sl@0
   523
		KErrNotFound if the supplied file does not exist
sl@0
   524
*/
sl@0
   525
EXPORT_C CIniFile16* CIniFile16::NewL(RFs& aFs,const TDesC& aFileName,TBool aConvert8To16)
sl@0
   526
	{
sl@0
   527
	CIniFile16* self=new (ELeave)CIniFile16;
sl@0
   528
	CleanupStack::PushL(self);
sl@0
   529
	self->iImpl=CIniFile16Impl::NewL(aFs,aFileName,aConvert8To16);
sl@0
   530
	CleanupStack::Pop();
sl@0
   531
	return self;
sl@0
   532
	}
sl@0
   533
sl@0
   534
/**
sl@0
   535
Public Destructor
sl@0
   536
*/	
sl@0
   537
EXPORT_C CIniFile16::~CIniFile16()
sl@0
   538
	{
sl@0
   539
	delete iImpl;	
sl@0
   540
	}
sl@0
   541
sl@0
   542
/**
sl@0
   543
Get the value of a key within a section
sl@0
   544
@param aSectionName the section where the key resides
sl@0
   545
@param aKeyName the key name
sl@0
   546
@param aValue pointer to the key value
sl@0
   547
@return
sl@0
   548
	KErrNotFound if either section or keyname not found
sl@0
   549
	KErrNone if successful
sl@0
   550
*/		
sl@0
   551
EXPORT_C TInt CIniFile16::FindVar(const TDesC16& aSectionName,const TDesC16& aKeyName,TPtrC16& aValue)const
sl@0
   552
	{
sl@0
   553
	return iImpl->FindVar(aSectionName,aKeyName,aValue);
sl@0
   554
	}
sl@0
   555
	
sl@0
   556
CIniFile16::CIniFile16(){}
sl@0
   557
sl@0
   558
//
sl@0
   559
sl@0
   560
CIniDocument8Impl* CIniDocument8Impl::NewL(RFs& aFs,const TDesC& aFileName)
sl@0
   561
{
sl@0
   562
	CIniDocument8Impl* self= new (ELeave) CIniDocument8Impl();
sl@0
   563
	CleanupStack::PushL(self);
sl@0
   564
	self->ConstructL(aFs,aFileName);
sl@0
   565
	CleanupStack::Pop();
sl@0
   566
	return self;
sl@0
   567
}
sl@0
   568
sl@0
   569
// This method will panic if, when reading the input configuration file, a key
sl@0
   570
// is attempted to be processed without a valid section name being already defined.
sl@0
   571
void CIniDocument8Impl::ConstructL(RFs& aFs,const TDesC& aFileName)
sl@0
   572
{
sl@0
   573
	TInt    filesize=0;
sl@0
   574
	TInt    startOfLine=0;
sl@0
   575
	CIniSection8* section = NULL;
sl@0
   576
	HBufC8* fileBuffer=NULL;
sl@0
   577
	iTempImpl=new (ELeave)CIniDocumentTmpl8(aFs,ETrue);
sl@0
   578
	
sl@0
   579
	TRAPD(ret,GetBufferL(aFs,aFileName,fileBuffer));
sl@0
   580
	//if the file is not found, assume we are creating a new file.
sl@0
   581
	if (ret==KErrNotFound)
sl@0
   582
		{
sl@0
   583
		return;
sl@0
   584
		}
sl@0
   585
	User::LeaveIfError(ret);
sl@0
   586
	if (!fileBuffer)
sl@0
   587
		{	
sl@0
   588
		return;	
sl@0
   589
		}	
sl@0
   590
	CleanupStack::PushL(fileBuffer);
sl@0
   591
	filesize = fileBuffer->Length();
sl@0
   592
	TPtrC8 bufferDescriptor = fileBuffer->Des();
sl@0
   593
	while (startOfLine < filesize)
sl@0
   594
		{
sl@0
   595
		TPtrC8 myBuffer = ExtractLineFromBuffer<HBufC8, TPtrC8>(bufferDescriptor, startOfLine);
sl@0
   596
		CIniLine8* line = CIniLine8::NewLC(myBuffer);
sl@0
   597
		startOfLine += (line->LineBuffer()).Length();
sl@0
   598
		
sl@0
   599
		switch(line->LineType())
sl@0
   600
			{
sl@0
   601
			case ESection:
sl@0
   602
			 	section = CIniSection8::NewLC(line);
sl@0
   603
			 	iTempImpl->AddSectionL(section);
sl@0
   604
			 	CleanupStack::Pop(section);
sl@0
   605
			 	break;
sl@0
   606
			 	
sl@0
   607
			case EKeyValue:
sl@0
   608
				{
sl@0
   609
				CIniKey8* key = CIniKey8::NewLC(line);
sl@0
   610
				if (section == NULL)
sl@0
   611
					{
sl@0
   612
					User::Leave(KErrCorrupt);	//Unnamed sections within the file are not allowed but not preventable, hence leave if found. 
sl@0
   613
					}
sl@0
   614
			 	section->InsertKeyL(key);
sl@0
   615
			 	CleanupStack::Pop(key);
sl@0
   616
			 	break;
sl@0
   617
				}
sl@0
   618
				
sl@0
   619
			case EComment:
sl@0
   620
				break;
sl@0
   621
				
sl@0
   622
			default:
sl@0
   623
				User::Panic(_L("Invalid LineType"), KErrCorrupt);	// programming error.
sl@0
   624
			}
sl@0
   625
		iTempImpl->AppendIntoQueue(line);
sl@0
   626
		CleanupStack::Pop(line);
sl@0
   627
		}
sl@0
   628
	CleanupStack::PopAndDestroy(fileBuffer);
sl@0
   629
}
sl@0
   630
sl@0
   631
void CIniDocument8Impl::FlushL(const TDesC& aFileName)
sl@0
   632
{
sl@0
   633
	iTempImpl->FlushL(aFileName);
sl@0
   634
}
sl@0
   635
sl@0
   636
TInt CIniDocument8Impl::GetSectionList(RArray<TPtrC8>& aSectionList) const
sl@0
   637
{
sl@0
   638
	return iTempImpl->GetSectionList(aSectionList);
sl@0
   639
}
sl@0
   640
sl@0
   641
void CIniDocument8Impl::GetKeyValueL(const TDesC8& aSectionName,const TDesC8& aKeyName,TPtrC8& aKeyValue) const
sl@0
   642
{
sl@0
   643
	iTempImpl->GetKeyValueL(aSectionName,aKeyName,aKeyValue);
sl@0
   644
}
sl@0
   645
sl@0
   646
void CIniDocument8Impl::AddSectionL(const TDesC8& aSectionName)
sl@0
   647
{
sl@0
   648
	iTempImpl->AddSectionL(aSectionName);
sl@0
   649
}
sl@0
   650
sl@0
   651
void CIniDocument8Impl::RemoveSectionL(const TDesC8& aSectionName)
sl@0
   652
{
sl@0
   653
	iTempImpl->RemoveSectionL(aSectionName);
sl@0
   654
}
sl@0
   655
sl@0
   656
void CIniDocument8Impl::SetKeyL(const TDesC8& aSectionName,const TDesC8& aKeyName,const TDesC8& aKeyValue)
sl@0
   657
{
sl@0
   658
	iTempImpl->SetKeyL(aSectionName,aKeyName,aKeyValue);
sl@0
   659
}
sl@0
   660
sl@0
   661
void CIniDocument8Impl::RemoveKeyL(const TDesC8& aSectionName,const TDesC8& aKeyName)
sl@0
   662
{
sl@0
   663
	iTempImpl->RemoveKeyL(aSectionName,aKeyName);
sl@0
   664
}
sl@0
   665
sl@0
   666
CIniDocument8Impl::~CIniDocument8Impl()
sl@0
   667
{
sl@0
   668
	delete iTempImpl;
sl@0
   669
}
sl@0
   670
sl@0
   671
CIniSection8* CIniDocument8Impl::SectionL(const TDesC8& aSectionName) const
sl@0
   672
{
sl@0
   673
	return iTempImpl->SectionL(aSectionName);
sl@0
   674
}
sl@0
   675
sl@0
   676
TBool CIniDocument8Impl::CompareDocs(CIniDocument8Impl& aDocImpl) 
sl@0
   677
{
sl@0
   678
	return(iTempImpl->CompareDocs(*aDocImpl.iTempImpl));
sl@0
   679
}
sl@0
   680
sl@0
   681
//
sl@0
   682
CIniDocument16Impl* CIniDocument16Impl::NewL(RFs& aFs,const TDesC& aFileName)
sl@0
   683
{
sl@0
   684
	CIniDocument16Impl* self= new (ELeave) CIniDocument16Impl();
sl@0
   685
	CleanupStack::PushL(self);
sl@0
   686
	self->ConstructL(aFs,aFileName);
sl@0
   687
	CleanupStack::Pop();
sl@0
   688
	return self;
sl@0
   689
}
sl@0
   690
sl@0
   691
void CIniDocument16Impl::ConstructL(RFs& aFs,const TDesC& aFileName)
sl@0
   692
{
sl@0
   693
	TInt    filesize=0;
sl@0
   694
	TInt    startOfLine=0;
sl@0
   695
	CIniSection16* section = NULL;
sl@0
   696
	HBufC8* fileBuffer=NULL;
sl@0
   697
	iTempImpl=new (ELeave)CIniDocumentTmpl16(aFs,EFalse);
sl@0
   698
	
sl@0
   699
	TRAPD(ret,GetBufferL(aFs,aFileName,fileBuffer));
sl@0
   700
	//if the file is not found, assume we are creating a new file.
sl@0
   701
	if (ret==KErrNotFound)
sl@0
   702
		{
sl@0
   703
		return;
sl@0
   704
		}
sl@0
   705
	User::LeaveIfError(ret);
sl@0
   706
	if (!fileBuffer)
sl@0
   707
		{	
sl@0
   708
		return;	
sl@0
   709
		}	
sl@0
   710
	CleanupStack::PushL(fileBuffer);
sl@0
   711
	filesize = fileBuffer->Length()/2;
sl@0
   712
	
sl@0
   713
	// process the filemark at the start of the file.
sl@0
   714
	const TUint16* rawptr16=reinterpret_cast<const TUint16*>(fileBuffer->Ptr());
sl@0
   715
	TPtrC16 bufferPtr;
sl@0
   716
	
sl@0
   717
	//must always start with the byte ordering characters
sl@0
   718
	bufferPtr.Set(rawptr16,1);
sl@0
   719
	if (bufferPtr.Compare(_L("\xFEFF"))!=0)
sl@0
   720
		User::Leave(KErrCorrupt);
sl@0
   721
	//skip the byte ordering character(FEFF) assuming little endian
sl@0
   722
	bufferPtr.Set(rawptr16+1,(filesize - 1));	
sl@0
   723
	
sl@0
   724
	while (startOfLine < (filesize-1))
sl@0
   725
		{
sl@0
   726
		TPtrC16 myBuffer = ExtractLineFromBuffer<HBufC16, TPtrC16>(bufferPtr, startOfLine);
sl@0
   727
		CIniLine16* line = CIniLine16::NewLC(myBuffer);
sl@0
   728
		startOfLine += (line->LineBuffer()).Length();
sl@0
   729
		
sl@0
   730
		TLineType lineType = line->LineType();
sl@0
   731
		switch (lineType)
sl@0
   732
			{
sl@0
   733
			case ESection:
sl@0
   734
				section = CIniSection16::NewLC(line);
sl@0
   735
				iTempImpl->AddSectionL(section);
sl@0
   736
			 	CleanupStack::Pop(section);
sl@0
   737
			 	break;
sl@0
   738
			 	
sl@0
   739
			case EKeyValue:
sl@0
   740
				{
sl@0
   741
				CIniKey16* key = CIniKey16::NewLC(line);
sl@0
   742
				
sl@0
   743
				if (section == NULL)
sl@0
   744
					{
sl@0
   745
					User::Leave(KErrCorrupt);	//Unnamed sections are not allowed hence leave if found.
sl@0
   746
					}
sl@0
   747
				section->InsertKeyL(key);
sl@0
   748
				CleanupStack::Pop(key);
sl@0
   749
			 	break;
sl@0
   750
				}
sl@0
   751
				
sl@0
   752
			case EComment:
sl@0
   753
				break;
sl@0
   754
				
sl@0
   755
			default:
sl@0
   756
				User::Panic(_L("Invalid LineType"), KErrCorrupt);
sl@0
   757
			}
sl@0
   758
		iTempImpl->AppendIntoQueue(line);
sl@0
   759
		CleanupStack::Pop(line);
sl@0
   760
	}	
sl@0
   761
	CleanupStack::PopAndDestroy(fileBuffer);
sl@0
   762
}
sl@0
   763
sl@0
   764
void CIniDocument16Impl::FlushL(const TDesC& aFileName)
sl@0
   765
{
sl@0
   766
	iTempImpl->FlushL(aFileName);
sl@0
   767
}
sl@0
   768
sl@0
   769
TInt CIniDocument16Impl::GetSectionList(RArray<TPtrC16>& aSectionList) const
sl@0
   770
{
sl@0
   771
	return iTempImpl->GetSectionList(aSectionList);
sl@0
   772
}
sl@0
   773
sl@0
   774
void CIniDocument16Impl::GetKeyValueL(const TDesC16& aSectionName,const TDesC16& aKeyName,TPtrC16& aKeyValue) const
sl@0
   775
{
sl@0
   776
	iTempImpl->GetKeyValueL(aSectionName,aKeyName,aKeyValue);
sl@0
   777
}
sl@0
   778
sl@0
   779
void CIniDocument16Impl::AddSectionL(const TDesC16& aSectionName)
sl@0
   780
{
sl@0
   781
	iTempImpl->AddSectionL(aSectionName);
sl@0
   782
}
sl@0
   783
sl@0
   784
void CIniDocument16Impl::RemoveSectionL(const TDesC16& aSectionName)
sl@0
   785
{
sl@0
   786
	iTempImpl->RemoveSectionL(aSectionName);
sl@0
   787
}
sl@0
   788
sl@0
   789
void CIniDocument16Impl::SetKeyL(const TDesC16& aSectionName,const TDesC16& aKeyName,const TDesC16& aKeyValue)
sl@0
   790
{
sl@0
   791
	iTempImpl->SetKeyL(aSectionName,aKeyName,aKeyValue);
sl@0
   792
}
sl@0
   793
sl@0
   794
void CIniDocument16Impl::RemoveKeyL(const TDesC16& aSectionName,const TDesC16& aKeyName)
sl@0
   795
{
sl@0
   796
	iTempImpl->RemoveKeyL(aSectionName,aKeyName);
sl@0
   797
}
sl@0
   798
sl@0
   799
CIniDocument16Impl::~CIniDocument16Impl()
sl@0
   800
	{
sl@0
   801
	delete iTempImpl;
sl@0
   802
	}
sl@0
   803
sl@0
   804
CIniSection16* CIniDocument16Impl::SectionL(const TDesC16& aSectionName) const
sl@0
   805
{
sl@0
   806
	return iTempImpl->SectionL(aSectionName);
sl@0
   807
}
sl@0
   808
sl@0
   809
TBool CIniDocument16Impl::CompareDocs(CIniDocument16Impl& aDocImpl) 
sl@0
   810
{
sl@0
   811
	return(iTempImpl->CompareDocs(*(aDocImpl.iTempImpl)));
sl@0
   812
}
sl@0
   813
sl@0
   814
//	
sl@0
   815
sl@0
   816
CIniSecIter8Impl* CIniSecIter8Impl::NewL(const TDesC8& aSectionName,const CIniDocument8* aIniDocument) 
sl@0
   817
	{
sl@0
   818
	CIniSecIter8Impl* self=new (ELeave)CIniSecIter8Impl();
sl@0
   819
	CleanupStack::PushL(self);
sl@0
   820
	self->ConstructL(aSectionName,aIniDocument);
sl@0
   821
	CleanupStack::Pop();
sl@0
   822
	return self;
sl@0
   823
	}
sl@0
   824
sl@0
   825
void CIniSecIter8Impl::ConstructL(const TDesC8& aSectionName,const CIniDocument8* aIniDocument)
sl@0
   826
	{
sl@0
   827
	iTempImpl=new (ELeave)CIniSecIterTmpl8();
sl@0
   828
	if (!aIniDocument)
sl@0
   829
		User::Leave(KErrArgument);
sl@0
   830
	iTempImpl->iSection=aIniDocument->iImpl->SectionL(aSectionName);
sl@0
   831
	}
sl@0
   832
	
sl@0
   833
TBool CIniSecIter8Impl::Next(TPtrC8& aKeyName,TPtrC8& aKeyValue)	
sl@0
   834
	{
sl@0
   835
	return iTempImpl->Next(aKeyName,aKeyValue);
sl@0
   836
	}
sl@0
   837
	
sl@0
   838
void CIniSecIter8Impl::Reset()
sl@0
   839
	{
sl@0
   840
	iTempImpl->Reset();	
sl@0
   841
	}
sl@0
   842
sl@0
   843
//
sl@0
   844
CIniSecIter16Impl* CIniSecIter16Impl::NewL(const TDesC16& aSectionName,const CIniDocument16* aIniDocument) 
sl@0
   845
	{
sl@0
   846
	CIniSecIter16Impl* self=new (ELeave)CIniSecIter16Impl();
sl@0
   847
	CleanupStack::PushL(self);
sl@0
   848
	self->ConstructL(aSectionName,aIniDocument);
sl@0
   849
	CleanupStack::Pop();
sl@0
   850
	return self;
sl@0
   851
	}
sl@0
   852
sl@0
   853
void CIniSecIter16Impl::ConstructL(const TDesC16& aSectionName,const CIniDocument16* aIniDocument)
sl@0
   854
	{
sl@0
   855
	iTempImpl=new (ELeave)CIniSecIterTmpl16();
sl@0
   856
	if (!aIniDocument)
sl@0
   857
		User::Leave(KErrArgument);	
sl@0
   858
	iTempImpl->iSection=aIniDocument->iImpl->SectionL(aSectionName);
sl@0
   859
	}
sl@0
   860
	
sl@0
   861
TBool CIniSecIter16Impl::Next(TPtrC16& aKeyName,TPtrC16& aKeyValue)	
sl@0
   862
	{
sl@0
   863
	return iTempImpl->Next(aKeyName,aKeyValue);
sl@0
   864
	}
sl@0
   865
	
sl@0
   866
void CIniSecIter16Impl::Reset()
sl@0
   867
	{
sl@0
   868
	iTempImpl->Reset();
sl@0
   869
	}
sl@0
   870
sl@0
   871
//
sl@0
   872
CIniFile8Impl* CIniFile8Impl::NewL(RFs& aFs,const TDesC& aFileName)
sl@0
   873
	{
sl@0
   874
	CIniFile8Impl* self=new (ELeave)CIniFile8Impl;
sl@0
   875
	CleanupStack::PushL(self);
sl@0
   876
	self->ConstructL(aFs,aFileName);
sl@0
   877
	CleanupStack::Pop();
sl@0
   878
	return self;
sl@0
   879
	}
sl@0
   880
sl@0
   881
void CIniFile8Impl::ConstructL(RFs& aFs,const TDesC& aFileName)
sl@0
   882
	{
sl@0
   883
	iTempImpl=new (ELeave)CIniFileTmpl8();
sl@0
   884
	HBufC8* tempBuffer=NULL;
sl@0
   885
	//read the file
sl@0
   886
	GetBufferL(aFs,aFileName,tempBuffer);
sl@0
   887
	if (tempBuffer)
sl@0
   888
		{
sl@0
   889
		CleanupStack::PushL(tempBuffer);
sl@0
   890
		iTempImpl->ProcessBufferL(*tempBuffer);
sl@0
   891
		CleanupStack::Pop();
sl@0
   892
		delete tempBuffer;
sl@0
   893
		}
sl@0
   894
	}
sl@0
   895
sl@0
   896
TInt CIniFile8Impl::FindVar(const TDesC8& aSection,const TDesC8& aKey,TPtrC8& aValue)
sl@0
   897
	{
sl@0
   898
	return iTempImpl->FindVar(aSection,aKey,aValue);	
sl@0
   899
	}
sl@0
   900
sl@0
   901
//
sl@0
   902
CIniFile16Impl* CIniFile16Impl::NewL(RFs& aFs,const TDesC& aFileName,TBool aConvert8To16)
sl@0
   903
	{
sl@0
   904
	CIniFile16Impl* self=new (ELeave)CIniFile16Impl;
sl@0
   905
	CleanupStack::PushL(self);
sl@0
   906
	self->ConstructL(aFs,aFileName,aConvert8To16);
sl@0
   907
	CleanupStack::Pop();
sl@0
   908
	return self;
sl@0
   909
	}
sl@0
   910
sl@0
   911
void CIniFile16Impl::ConstructL(RFs& aFs,const TDesC& aFileName,TBool aConvert8To16)
sl@0
   912
	{
sl@0
   913
	iTempImpl=new (ELeave)CIniFileTmpl16();
sl@0
   914
	HBufC8* tempBuffer=NULL;
sl@0
   915
	//read the file
sl@0
   916
	GetBufferL(aFs,aFileName,tempBuffer);
sl@0
   917
	if (tempBuffer)
sl@0
   918
		{
sl@0
   919
		CleanupStack::PushL(tempBuffer);
sl@0
   920
		TPtrC16 bufferPtr;
sl@0
   921
		const TUint16* rawptr16=reinterpret_cast<const TUint16*>(tempBuffer->Ptr());
sl@0
   922
		//must always start with the byte ordering characters
sl@0
   923
		bufferPtr.Set(rawptr16,1);
sl@0
   924
		if (bufferPtr.Compare(_L("\xFEFF"))==0)
sl@0
   925
			{
sl@0
   926
			//skip the byte ordering character(FEFF) assuming little endian
sl@0
   927
			bufferPtr.Set(rawptr16+1,(tempBuffer->Length()/2)-1);
sl@0
   928
			}
sl@0
   929
		else
sl@0
   930
			{
sl@0
   931
			//byte ordering characters not found, so leave, unless we should upconvert
sl@0
   932
			if (!aConvert8To16)
sl@0
   933
				{			
sl@0
   934
				User::Leave(KErrCorrupt);
sl@0
   935
				}
sl@0
   936
			//treat as an 8-bit file and upconvert to 16
sl@0
   937
			HBufC16* tempBuffer16=HBufC16::NewL(tempBuffer->Length());
sl@0
   938
			tempBuffer16->Des().Copy(*tempBuffer);
sl@0
   939
			CleanupStack::PopAndDestroy(tempBuffer);
sl@0
   940
			CleanupStack::PushL(tempBuffer16);	
sl@0
   941
			bufferPtr.Set(*tempBuffer16);
sl@0
   942
			}	
sl@0
   943
		iTempImpl->ProcessBufferL(bufferPtr);
sl@0
   944
		CleanupStack::PopAndDestroy();
sl@0
   945
		}
sl@0
   946
	}
sl@0
   947
sl@0
   948
TInt CIniFile16Impl::FindVar(const TDesC16& aSection,const TDesC16& aKey,TPtrC16& aValue)
sl@0
   949
	{
sl@0
   950
	return iTempImpl->FindVar(aSection,aKey,aValue);	
sl@0
   951
	}
sl@0
   952
	
sl@0
   953
}//namespace
sl@0
   954
sl@0
   955