Update contrib.
1 // Copyright (c) 1996-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.
20 // uncomment so that if the wsini.ini file is not found on drive Wserv loaded from or drive Z: (if different)
21 // it will be searched for on drive C: (if different from Wserv's drive)
22 //#define LOAD_INI_FILE_FROM_DRIVE_Z_OR_C
25 GLREF_D CDebugLogBase *wsDebugLog;
27 _LIT(KDefaultSectionName,"DEFAULT");
28 _LIT(KCommentMarker,"//");
29 _LIT(KScreenSectionName,"SCREEN");
30 const TUint16 KNewSection('[');
31 const TUint16 KSpaceChar(' ');
32 const TUint16 KNewSection2(']');
33 const TInt KDefaultSectionNumber(0);
34 const TInt KDefaultScreenId(-1);
45 CIniSection * CIniFile::FindSection(TInt aScreen)
47 for (TInt sect = 0; sect < iSectionArray.Count(); ++sect)
49 if (iSectionArray[sect]->Screen() == aScreen)
51 return iSectionArray[sect];
57 CIniSection * CIniFile::FindSection(const TDesC& aName)
59 for (TInt sect = 0; sect < iSectionArray.Count(); ++sect)
61 if (iSectionArray[sect]->Screen() == KDefaultScreenId && !iSectionArray[sect]->Name().CompareF(aName))
63 return iSectionArray[sect];
69 /* Processes a .ini file entry section name.
71 @return the corresponding index.
72 @param aLine Input line of text from the .ini file, stripped of comments & excess whitespace.
75 CIniSection * CIniFile::AddOrFindIniSectionL(TPtr& aSectionName)
80 if (aSectionName.CompareF(KDefaultSectionName) == 0)
82 return iSectionArray[KDefaultSectionNumber];
86 if (0 == aSectionName.FindF(KScreenSectionName))
88 TLex lex(aSectionName.Mid(KScreenSectionName().Length()));
91 if (lex.Val(screenNum) == KErrNone)
93 return AddOrFindScreenSectionL(screenNum);
98 return AddOrFindNamedSectionL(aSectionName);
101 CIniSection * CIniFile::CreateSectionL(TInt aScreen)
103 CIniSection* newSection = new (ELeave) CIniSection(aScreen);
104 CleanupStack::PushL( newSection ) ;
105 newSection->ConstructL() ;
106 User::LeaveIfError(iSectionArray.Append(newSection));
107 CleanupStack::Pop( newSection ) ;
108 if (aScreen + 1 > iScreenCount)
109 iScreenCount = aScreen + 1;
113 CIniSection * CIniFile::CreateSectionL(const TDesC& aName)
115 CIniSection* newSection = new (ELeave) CIniSection(KDefaultScreenId);
116 CleanupStack::PushL( newSection ) ;
117 newSection->ConstructL(aName) ;
118 User::LeaveIfError(iSectionArray.Append(newSection));
119 CleanupStack::Pop( newSection ) ;
124 void CIniFile::doConstructL(RFile &aFile)
128 const TInt KMaxIniLine=256;
129 TBuf<KMaxIniLine> readLine;
132 // always have a [DEFAULT] section
133 CIniSection * currentSection = CreateSectionL(KDefaultSectionName);
137 TInt err=textFile.Read(readLine);
140 User::LeaveIfError(err);
142 if (readLine.Length()>0)
144 if (first && (readLine[0]==0xFFFE || readLine[0]==0xFEFF))
145 readLine.Delete(0,1);
147 // Comment marker "//" indicates the rest of the line should be discarded
148 TInt commentStart = readLine.Find(KCommentMarker);
149 if (commentStart != KErrNotFound)
151 readLine.Delete(commentStart, readLine.Length());
154 // compact unnecessary whitespace
157 // anything left in buffer?
158 if (readLine.Length() > 0)
160 // section name requires "[" and "]"
161 if (readLine[0] == KNewSection && readLine.LocateReverse(KNewSection2) == readLine.Length() - 1)
163 TPtr nameText = readLine.MidTPtr(1, readLine.Length() - 2); // strip [ and ]
164 currentSection = AddOrFindIniSectionL(nameText);
170 currentSection->AddVariableL(readLine);
178 if (iScreenCount == 0)
184 CIniFile* CIniFile::NewL()
186 CIniFile* self = new(ELeave) CIniFile();
187 CleanupStack::PushL(self);
189 CleanupStack::Pop(self);
193 void CIniFile::FreeData()
195 iSectionArray.ResetAndDestroy() ;
199 void errFreeData(TAny *aIniFile)
201 ((CIniFile *)aIniFile)->FreeData();
204 HBufC* IniFileSearchPathLC()
206 _LIT(KPath,"\\SYSTEM\\DATA\\");
208 const TInt KLengthPerPath = 2 + KPath().Length();
209 // work out which drive Wserv loaded from
211 TFileName myPath = self.FileName();
212 TParsePtrC myDrive(myPath);
213 TDriveUnit myDriveUnit(myDrive.Drive());
214 // need extra buffer space for search paths for drives Z: or C: ?
215 #if defined(LOAD_INI_FILE_FROM_DRIVE_Z_OR_C)
217 if (myDriveUnit != EDriveZ && myDriveUnit != EDriveC)
223 if (myDriveUnit != EDriveZ)
228 HBufC* searchPath = HBufC::NewLC(numPaths * KLengthPerPath + (numPaths - 1) * KPathSep().Length());
229 TPtr pPath(searchPath->Des());
230 pPath.Append(myDrive.Drive());
232 if (myDriveUnit != EDriveZ)
234 pPath.Append(KPathSep);
235 pPath.Append(TDriveUnit(EDriveZ).Name());
238 #if defined(LOAD_INI_FILE_FROM_DRIVE_Z_OR_C)
239 if (myDriveUnit != EDriveC)
241 pPath.Append(KPathSep);
242 pPath.Append(TDriveUnit(EDriveC).Name());
249 void CIniFile::ConstructL()
252 User::LeaveIfError(fs.iObj.Connect());
253 fs.iObj.SetNotifyUser(EFalse);
255 HBufC* searchPath = IniFileSearchPathLC();
256 _LIT(KFileName,"WSINI.INI");
257 TFindFile findinifile(fs.iObj);
258 TInt err=findinifile.FindByPath(KFileName,searchPath);
259 User::LeaveIfError(err);
260 CleanupStack::PopAndDestroy(searchPath);
261 TAutoClose<RFile> file;
262 User::LeaveIfError(file.iObj.Open(fs.iObj,findinifile.File(),EFileStreamText|EFileRead));
264 CleanupStack::PushL(TCleanupItem(errFreeData,this));
265 doConstructL(file.iObj);
266 CleanupStack::Pop(); // TCleanupItem
271 /* If the Section for the screen exists find the data, otherwise create a new data structure.
273 @param aScreen Screen number
274 @return index to section
277 CIniSection * CIniFile::AddOrFindScreenSectionL(TInt aScreen)
279 CIniSection * section = FindSection(aScreen);
281 section = CreateSectionL(aScreen);
285 /* If the Section exists find the data, otherwise create a new data structure.
287 @param aName section name
288 @return index to section
291 CIniSection * CIniFile::AddOrFindNamedSectionL(const TDesC& aName)
293 CIniSection * section = FindSection(aName);
295 section = CreateSectionL(aName);
299 TBool CIniFile::FindVar(const TDesC &aVarName, TPtrC &aResult)
301 return iSectionArray[KDefaultSectionNumber]->FindVar(aVarName, aResult);
305 TBool CIniFile::FindVar(const TDesC &aVarName, TInt &aResult)
307 return iSectionArray[KDefaultSectionNumber]->FindVar(aVarName, aResult);
310 TBool CIniFile::FindVar(const TDesC &aVarName)
312 // Used to simply detect the presence of the specified variable name
316 return FindVar(aVarName, ptr);
319 // FindVar in [SCREENx] sections
320 TBool CIniFile::FindVar( TInt aScreen, const TDesC &aVarName)
323 return FindVar(aScreen, aVarName, ptr);
326 TBool CIniFile::FindVar( TInt aScreen, const TDesC& aVarName, TPtrC &aResult )
328 CIniSection * section = FindSection(aScreen);
329 TBool found = EFalse;
331 found = section->FindVar(aVarName, aResult);
333 found = FindVar(aVarName, aResult);
337 TBool CIniFile::FindVar(TInt aScreen, const TDesC &aVarName, TInt &aResult)
339 CIniSection * section = FindSection(aScreen);
340 TBool found = EFalse;
342 found = section->FindVar(aVarName, aResult);
344 found = FindVar(aVarName, aResult);
348 // FindVar in named sections
349 TBool CIniFile::FindVar(const TDesC& aSectionName, const TDesC &aVarName)
352 return FindVar(aSectionName, aVarName, ptr);
355 TBool CIniFile::FindVar(const TDesC& aSectionName, const TDesC& aVarName, TPtrC &aResult )
357 CIniSection * section = FindSection(aSectionName);
358 TBool found = EFalse;
360 found = section->FindVar(aVarName, aResult);
362 found = FindVar(aVarName, aResult);
366 TBool CIniFile::FindVar(const TDesC& aSectionName, const TDesC &aVarName, TInt &aResult)
368 CIniSection * section = FindSection(aSectionName);
369 TBool found = EFalse;
371 found = section->FindVar(aVarName, aResult);
373 found = FindVar(aVarName, aResult);
377 TInt CIniFile::NumberOfScreens() const
384 // ini file structure is now in sections like this
393 // CIniSection represents a section - i.e. section name and content pairs.
394 // Content pairs are as ini file was previously (so use same code)
395 // [default] section name is optional to support backwards compatibility
396 // if no sutable value is found in a [screenN] section the [default] section will be searched.
399 CIniSection::CIniSection(TInt aScreen) : iScreen(aScreen)
402 void CIniSection::ConstructL()
404 iPtrArray = new (ELeave) CArrayPtrFlat<TDesC>(8) ;
407 void CIniSection::ConstructL(const TDesC& aName)
409 iName.CreateL(aName);
413 CIniSection::~CIniSection()
416 iPtrArray->ResetAndDestroy() ;
420 inline TInt CIniSection::Screen() const
423 inline const TDesC& CIniSection::Name() const
426 TBool CIniSection::FindVar( const TDesC& aVarName, TPtrC &aResult )
430 TInt index(KErrNotFound);
432 if (FindVarName(aVarName, index))
434 TLex lex((*iPtrArray)[index]->Mid(aVarName.Length()));
436 aResult.Set(lex.Remainder());
440 wsDebugLog->IniFileSettingRead(iScreen, aVarName, ETrue, aResult);
448 wsDebugLog->IniFileSettingRead(iScreen, aVarName, EFalse, KNullDesC);
454 create a TPtrC with just the first word (variable name) in the given string
456 TPtrC CIniSection::VarName(const TDesC& aVarString)
458 TInt varLength = aVarString.Locate(KSpaceChar);
459 if (varLength == KErrNotFound)
461 varLength = aVarString.Length();
463 return aVarString.Left(varLength);
467 TBool CIniSection::FindVar(const TDesC &aVarName, TInt &aResult)
471 if (FindVar(aVarName, ptr))
474 _LIT(HexFormatCheck,"0x");
475 TPtrC hexPtr(HexFormatCheck);
476 if(ptr.Left(2) != hexPtr)
478 if (lex.Val(aResult) == KErrNone)
485 lex.SkipAndMark(2); //To skip 0x in hex code
486 if (lex.Val((TUint32&)aResult, EHex) == KErrNone)
498 Find variable name in sorted array, using binary search
499 @param aVarName variable name to search for, must have any space and variable value stripped.
500 @param aIndex output index of matching or preceeding item
503 TBool CIniSection::FindVarName(const TDesC& aVarName, TInt& aIndex)
506 // left is lowest index to include, right is highest index + 1;
508 TInt right = iPtrArray->Count();
512 TInt middle = (left + right)>>1;
513 // compare to start of variable string
514 TPtrC cmpString = VarName(*(*iPtrArray)[middle]);
515 TInt cmp = aVarName.CompareF(cmpString);
536 void CIniSection::AddVariableL(const TDesC& aNewVariable)
538 // use variable name only for search
539 TPtrC varName = VarName(aNewVariable);
542 // ignore duplicate definitions
543 if (0 == FindVarName(varName, index))
544 { // insert in sorted array
545 HBufC* hbuf = aNewVariable.AllocLC() ;
546 iPtrArray->InsertL(index, hbuf);
547 CleanupStack::Pop(hbuf);