os/graphics/windowing/windowserver/test/PARSEINIDATA.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 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
// Parse the ini file
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
@file
sl@0
    20
@test
sl@0
    21
@internalComponent
sl@0
    22
*/
sl@0
    23
sl@0
    24
#include "PARSEINIDATA.H"
sl@0
    25
#include <f32file.h>
sl@0
    26
#include <e32std.h>
sl@0
    27
sl@0
    28
// Default directory to look for INI file
sl@0
    29
_LIT(KIniFileDir,"Z:\\System\\Data\\");
sl@0
    30
sl@0
    31
// Constant Value changed for DEF047130 fix
sl@0
    32
const TInt KTokenSize = 256;
sl@0
    33
sl@0
    34
enum TIniPanic
sl@0
    35
	{
sl@0
    36
	ESectionNameTooBig,
sl@0
    37
	EKeyNameTooBig,
sl@0
    38
	};
sl@0
    39
sl@0
    40
//
sl@0
    41
void Panic(TIniPanic aPanic)
sl@0
    42
	{
sl@0
    43
	_LIT(CIniData,"CIniData");
sl@0
    44
	User::Panic(CIniData,aPanic);
sl@0
    45
	}
sl@0
    46
sl@0
    47
/**
sl@0
    48
Constructor
sl@0
    49
*/
sl@0
    50
CIniData::CIniData() : iPtr(NULL,0)
sl@0
    51
	{
sl@0
    52
	__DECLARE_NAME(_S("CIniData"));
sl@0
    53
	}
sl@0
    54
sl@0
    55
/**
sl@0
    56
Destructor.
sl@0
    57
Frees the resources located in second-phase constructor
sl@0
    58
*/
sl@0
    59
CIniData::~CIniData()
sl@0
    60
	{
sl@0
    61
	delete (TText*)iPtr.Ptr();
sl@0
    62
	delete iToken;
sl@0
    63
	delete iName;
sl@0
    64
	}
sl@0
    65
sl@0
    66
/**
sl@0
    67
 Creates, and returns a pointer to CIniData object, leave on failure
sl@0
    68
 @param aName the name of the file which contains the ini data
sl@0
    69
 @param aDelimeter	Delimiter used in wsini.ini file between variable and value
sl@0
    70
 @return A pointer to the CiniData object
sl@0
    71
*/
sl@0
    72
CIniData* CIniData::NewL(const TDesC& aName, char aDelimiter)
sl@0
    73
	{
sl@0
    74
	CIniData* p = new(ELeave) CIniData;
sl@0
    75
	CleanupStack::PushL(p);
sl@0
    76
	p->ConstructL(aName, aDelimiter);
sl@0
    77
	CleanupStack::Pop();
sl@0
    78
	return p;
sl@0
    79
	}
sl@0
    80
sl@0
    81
/**
sl@0
    82
 Second-phase constructor.
sl@0
    83
 The function attempts to allocate a buffer and Read file's contents into iPtr
sl@0
    84
 @param aName the name of the file which contains the ini data
sl@0
    85
 @param aDelimeter	Delimiter used in wsini.ini file between variable and value
sl@0
    86
 @leave One of the system-wide error codes
sl@0
    87
*/
sl@0
    88
void CIniData::ConstructL(const TDesC& aName, char aDelimiter)
sl@0
    89
	{
sl@0
    90
	//Set delimiter
sl@0
    91
	iDelimiter = aDelimiter;
sl@0
    92
	
sl@0
    93
 	// Allocate space for token
sl@0
    94
	iToken=HBufC::NewL(KTokenSize+2);	// 2 extra chars for [tokenName]
sl@0
    95
sl@0
    96
	// Connect to file server
sl@0
    97
	TAutoClose<RFs> fs;
sl@0
    98
	User::LeaveIfError(fs.iObj.Connect());
sl@0
    99
	fs.PushL();
sl@0
   100
sl@0
   101
	// Find file, given name
sl@0
   102
	TFindFile ff(fs.iObj);
sl@0
   103
	User::LeaveIfError(ff.FindByDir(aName, KIniFileDir));
sl@0
   104
	iName = ff.File().AllocL();
sl@0
   105
sl@0
   106
	// Open file
sl@0
   107
	TAutoClose<RFile> file;
sl@0
   108
	TInt size;
sl@0
   109
	User::LeaveIfError(file.iObj.Open(fs.iObj,*iName,EFileStreamText|EFileShareReadersOrWriters));
sl@0
   110
	file.PushL();
sl@0
   111
sl@0
   112
	// Get file size and read in
sl@0
   113
	User::LeaveIfError(file.iObj.Size(size));
sl@0
   114
	TText* data = (TText*)User::AllocL(size);
sl@0
   115
	iPtr.Set(data, size/sizeof(TText), size/sizeof(TText));
sl@0
   116
	TPtr8 dest((TUint8*)data, 0, size);
sl@0
   117
	User::LeaveIfError(file.iObj.Read(dest));
sl@0
   118
	TUint8* ptr = (TUint8*)data;
sl@0
   119
sl@0
   120
	//
sl@0
   121
	// This is orderred as FEFF assuming the processor is Little Endian
sl@0
   122
	// The data in the file is FFFE.		PRR 28/9/98
sl@0
   123
	//
sl@0
   124
	if(size>=(TInt)sizeof(TText) && iPtr[0]==0xFEFF)
sl@0
   125
	{
sl@0
   126
		// UNICODE Text file so lose the FFFE
sl@0
   127
		Mem::Copy(ptr, ptr+sizeof(TText), size-sizeof(TText));
sl@0
   128
		iPtr.Set(data, size/sizeof(TText)-1, size/sizeof(TText)-1);
sl@0
   129
	}
sl@0
   130
	else if(size)
sl@0
   131
	{
sl@0
   132
		// NON-UNICODE so convert to UNICODE
sl@0
   133
		TText* newdata = (TText*)User::AllocL(size*sizeof(TText));
sl@0
   134
		iPtr.Set(newdata, size, size);
sl@0
   135
		TInt i;
sl@0
   136
		for(i = 0 ; i<size ; ++i)
sl@0
   137
			iPtr[i] = ptr[i];
sl@0
   138
		delete data;
sl@0
   139
	}
sl@0
   140
sl@0
   141
	file.Pop();
sl@0
   142
	fs.Pop();
sl@0
   143
}
sl@0
   144
sl@0
   145
/**
sl@0
   146
Find a text value from given aKeyName regardless the section in the ini data file
sl@0
   147
@param aKeyName Key being searched for
sl@0
   148
@param aResult On return, contains the text result 
sl@0
   149
@return ETrue if found, otherwise EFalse
sl@0
   150
*/
sl@0
   151
TBool CIniData::FindVar(const TDesC& aKeyName, TPtrC& aResult)
sl@0
   152
	{
sl@0
   153
	// Call with no section, so starts at beginning
sl@0
   154
	if (FindVar((TDesC&)KNullDesC , aKeyName, aResult))
sl@0
   155
		return(ETrue);
sl@0
   156
	else
sl@0
   157
		return(EFalse);
sl@0
   158
	}
sl@0
   159
sl@0
   160
/**
sl@0
   161
Find a text value from given aKeyName and aSecName in the ini data file
sl@0
   162
@param aSectName Section containing key
sl@0
   163
@param aKeyName Key being searched for in aSectName
sl@0
   164
@param aResult On return, contains the text result 
sl@0
   165
@return ETrue if found, otherwise EFalse
sl@0
   166
*/
sl@0
   167
TBool CIniData::FindVar(const TDesC& aSectName,const TDesC& aKeyName,TPtrC& aResult)
sl@0
   168
	{
sl@0
   169
sl@0
   170
	__ASSERT_DEBUG(aSectName.Length()<=KTokenSize,Panic(ESectionNameTooBig));
sl@0
   171
	__ASSERT_DEBUG(aKeyName.Length()<=KTokenSize,Panic(EKeyNameTooBig));
sl@0
   172
sl@0
   173
	TInt posStartOfSection(0);
sl@0
   174
	TInt posEndOfSection(iPtr.Length()); // Default to the entire length of the ini data
sl@0
   175
	TPtrC SearchBuf;
sl@0
   176
sl@0
   177
	// If we have a section, set pos to section start
sl@0
   178
	TInt posI(0);	// Position in internal data Buffer
sl@0
   179
	if( aSectName.Length() > 0 )
sl@0
   180
		{
sl@0
   181
		TBool FoundSection(false);
sl@0
   182
		while ( ! FoundSection )
sl@0
   183
			{
sl@0
   184
			// Move search buffer to next area of interest
sl@0
   185
			SearchBuf.Set(iPtr.Mid(posI));
sl@0
   186
sl@0
   187
			// Make up token "[SECTIONNAME]", to search for
sl@0
   188
			TPtr sectionToken = iToken->Des();
sl@0
   189
			_LIT(sectionTokenFmtString,"[%S]");
sl@0
   190
			sectionToken.Format(sectionTokenFmtString,&aSectName);
sl@0
   191
sl@0
   192
			// Search for next occurrence of aSectName
sl@0
   193
			TInt posSB = SearchBuf.Find(sectionToken);
sl@0
   194
sl@0
   195
			if (posSB == KErrNotFound)
sl@0
   196
				return(EFalse);
sl@0
   197
sl@0
   198
			// Check this is at beginning of line (ie. non-commented)
sl@0
   199
			// ie. Check preceding char was LF
sl@0
   200
			if(posSB>0)
sl@0
   201
				{
sl@0
   202
				// Create a Buffer, starting one char before found subBuf
sl@0
   203
				TPtrC CharBefore(SearchBuf.Right(SearchBuf.Length()-posSB+1));
sl@0
   204
				// Check first char is end of prev
sl@0
   205
				if(CharBefore[0] == '\n')
sl@0
   206
					{
sl@0
   207
					FoundSection = ETrue;		// found
sl@0
   208
					posI = posI + posSB;
sl@0
   209
					}
sl@0
   210
				else
sl@0
   211
					{
sl@0
   212
					posI = posI + posSB + 1;	// try again
sl@0
   213
					}
sl@0
   214
				}
sl@0
   215
			else
sl@0
   216
				{
sl@0
   217
				FoundSection = ETrue;
sl@0
   218
				}
sl@0
   219
sl@0
   220
			}	// while ( ! FoundSection ) 
sl@0
   221
sl@0
   222
		// Set start of section, after section name, (incl '[' and ']')
sl@0
   223
		posStartOfSection = posI + aSectName.Length() + 2;
sl@0
   224
sl@0
   225
		// Set end of section, by finding begin of next section or end
sl@0
   226
		SearchBuf.Set(iPtr.Mid(posI));
sl@0
   227
		_LIT(nextSectionBuf,"\n[");
sl@0
   228
		TInt posSB = SearchBuf.Find(nextSectionBuf);
sl@0
   229
		if(posSB != KErrNotFound)
sl@0
   230
			{
sl@0
   231
			posEndOfSection = posI + posSB;
sl@0
   232
			}
sl@0
   233
		else
sl@0
   234
			{
sl@0
   235
			posEndOfSection = iPtr.Length();
sl@0
   236
			}
sl@0
   237
sl@0
   238
		}	// if( aSectName.Length() > 0 )
sl@0
   239
sl@0
   240
	// Look for key in ini file data Buffer
sl@0
   241
	posI = posStartOfSection;
sl@0
   242
	TBool FoundKey(false);
sl@0
   243
	while ( ! FoundKey )
sl@0
   244
		{
sl@0
   245
		// Search for next occurrence of aKeyName
sl@0
   246
		SearchBuf.Set(iPtr.Mid(posI,posEndOfSection-posI));
sl@0
   247
		TInt posSB = SearchBuf.Find(aKeyName);
sl@0
   248
sl@0
   249
		// If not found, return
sl@0
   250
		if (posSB == KErrNotFound)
sl@0
   251
			return(EFalse);
sl@0
   252
sl@0
   253
		// Check this is at beginning of line (ie. non-commented)
sl@0
   254
		// ie. Check preceding char was CR or LF
sl@0
   255
		if(posSB>0)
sl@0
   256
			{
sl@0
   257
			// Create a Buffer, starting one char before found subBuf
sl@0
   258
			TPtrC CharBefore(SearchBuf.Right(SearchBuf.Length()-posSB+1));
sl@0
   259
			// Check if the first char is end of prev and also check 
sl@0
   260
			// if the token found is not a substring of another string  
sl@0
   261
			TBool beginningOK = ((CharBefore[0] == '\n') || (CharBefore[0] == ' ') || (CharBefore[0] == '\t'));
sl@0
   262
			TBool endingOK = ((CharBefore[aKeyName.Length()+1] == iDelimiter) || (CharBefore[aKeyName.Length()+1] == ' ') || (CharBefore[aKeyName.Length()+1] == '\t'));
sl@0
   263
			if (beginningOK && endingOK)
sl@0
   264
				{
sl@0
   265
				FoundKey = ETrue;
sl@0
   266
				posI = posI + posSB;
sl@0
   267
				}
sl@0
   268
			else
sl@0
   269
				{
sl@0
   270
				posI = posI + posSB + 1;
sl@0
   271
				}
sl@0
   272
			}
sl@0
   273
		else
sl@0
   274
			{
sl@0
   275
			FoundKey = ETrue;
sl@0
   276
			}
sl@0
   277
		}	// while ( ! FoundKey )
sl@0
   278
sl@0
   279
	// Set pos, to just after iDelimiter sign
sl@0
   280
	SearchBuf.Set(iPtr.Mid(posI));
sl@0
   281
	TInt posSB = SearchBuf.Locate(iDelimiter);
sl@0
   282
	if(posSB==KErrNotFound)		// Illegal format, should flag this...
sl@0
   283
		return(EFalse);
sl@0
   284
sl@0
   285
	// Identify start and end of data (EOL or EOF)
sl@0
   286
	posI = posI + posSB + 1;	// 1 char after iDelimiter
sl@0
   287
	TInt posValStart = posI;
sl@0
   288
	TInt posValEnd;
sl@0
   289
	SearchBuf.Set(iPtr.Mid(posI));
sl@0
   290
	posSB = SearchBuf.Locate('\r');
sl@0
   291
	if(posSB != KErrNotFound)
sl@0
   292
		{
sl@0
   293
		posValEnd = posI + posSB;
sl@0
   294
		}
sl@0
   295
	else
sl@0
   296
		{
sl@0
   297
		posValEnd = iPtr.Length();
sl@0
   298
		}
sl@0
   299
sl@0
   300
	// Check we are still in the section requested
sl@0
   301
	if( aSectName.Length() > 0 )
sl@0
   302
		{
sl@0
   303
		if( posValEnd > posEndOfSection )
sl@0
   304
			{
sl@0
   305
			return(EFalse);
sl@0
   306
			}
sl@0
   307
		}
sl@0
   308
	// Parse Buffer from posn of key
sl@0
   309
	// Start one space after '='
sl@0
   310
	TLex lex(iPtr.Mid(posValStart, posValEnd-posValStart));
sl@0
   311
	lex.SkipSpaceAndMark();		// Should be at the start of the data
sl@0
   312
	aResult.Set(lex.MarkedToken().Ptr(),posValEnd-posValStart - lex.Offset() );
sl@0
   313
	return(ETrue);
sl@0
   314
	}
sl@0
   315
sl@0
   316
/**
sl@0
   317
Find an integer value from given aKeyName regardless the section in the ini data file
sl@0
   318
@param aKeyName Key being searched for
sl@0
   319
@param aResult On return, contains the TInt result 
sl@0
   320
@return ETrue if found, otherwise EFalse
sl@0
   321
*/
sl@0
   322
TBool CIniData::FindVar(const TDesC& aKeyName, TInt& aResult)
sl@0
   323
	{
sl@0
   324
	TPtrC ptr(NULL,0);
sl@0
   325
	if (FindVar(aKeyName,ptr))
sl@0
   326
		{
sl@0
   327
		TLex lex(ptr);
sl@0
   328
		if (lex.Val(aResult) == KErrNone)
sl@0
   329
			return(ETrue);
sl@0
   330
		}
sl@0
   331
	return(EFalse);
sl@0
   332
	}
sl@0
   333
sl@0
   334
/**
sl@0
   335
Find an integer value from given aKeyName and aSecName in the ini data file
sl@0
   336
@param aSectName Section containing key
sl@0
   337
@param aKeyName Key being searched for  in aSectName
sl@0
   338
@param aResult On return, contains TInt result 
sl@0
   339
@return ETrue if found, otherwise EFalse
sl@0
   340
*/
sl@0
   341
TBool CIniData::FindVar(const TDesC& aSection,const TDesC& aKeyName,TInt& aResult)
sl@0
   342
	{
sl@0
   343
	TPtrC ptr(NULL,0);
sl@0
   344
	if (FindVar(aSection,aKeyName,ptr))
sl@0
   345
		{
sl@0
   346
		TLex lex(ptr);
sl@0
   347
		if (lex.Val(aResult) == KErrNone)
sl@0
   348
			return(ETrue);
sl@0
   349
		}
sl@0
   350
	return(EFalse);
sl@0
   351
}