First public contribution.
1 // Copyright (c) 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.
24 #include "PARSEINIDATA.H"
28 // Default directory to look for INI file
29 _LIT(KIniFileDir,"Z:\\System\\Data\\");
31 // Constant Value changed for DEF047130 fix
32 const TInt KTokenSize = 256;
41 void Panic(TIniPanic aPanic)
43 _LIT(CIniData,"CIniData");
44 User::Panic(CIniData,aPanic);
50 CIniData::CIniData() : iPtr(NULL,0)
52 __DECLARE_NAME(_S("CIniData"));
57 Frees the resources located in second-phase constructor
61 delete (TText*)iPtr.Ptr();
67 Creates, and returns a pointer to CIniData object, leave on failure
68 @param aName the name of the file which contains the ini data
69 @param aDelimeter Delimiter used in wsini.ini file between variable and value
70 @return A pointer to the CiniData object
72 CIniData* CIniData::NewL(const TDesC& aName, char aDelimiter)
74 CIniData* p = new(ELeave) CIniData;
75 CleanupStack::PushL(p);
76 p->ConstructL(aName, aDelimiter);
82 Second-phase constructor.
83 The function attempts to allocate a buffer and Read file's contents into iPtr
84 @param aName the name of the file which contains the ini data
85 @param aDelimeter Delimiter used in wsini.ini file between variable and value
86 @leave One of the system-wide error codes
88 void CIniData::ConstructL(const TDesC& aName, char aDelimiter)
91 iDelimiter = aDelimiter;
93 // Allocate space for token
94 iToken=HBufC::NewL(KTokenSize+2); // 2 extra chars for [tokenName]
96 // Connect to file server
98 User::LeaveIfError(fs.iObj.Connect());
101 // Find file, given name
102 TFindFile ff(fs.iObj);
103 User::LeaveIfError(ff.FindByDir(aName, KIniFileDir));
104 iName = ff.File().AllocL();
107 TAutoClose<RFile> file;
109 User::LeaveIfError(file.iObj.Open(fs.iObj,*iName,EFileStreamText|EFileShareReadersOrWriters));
112 // Get file size and read in
113 User::LeaveIfError(file.iObj.Size(size));
114 TText* data = (TText*)User::AllocL(size);
115 iPtr.Set(data, size/sizeof(TText), size/sizeof(TText));
116 TPtr8 dest((TUint8*)data, 0, size);
117 User::LeaveIfError(file.iObj.Read(dest));
118 TUint8* ptr = (TUint8*)data;
121 // This is orderred as FEFF assuming the processor is Little Endian
122 // The data in the file is FFFE. PRR 28/9/98
124 if(size>=(TInt)sizeof(TText) && iPtr[0]==0xFEFF)
126 // UNICODE Text file so lose the FFFE
127 Mem::Copy(ptr, ptr+sizeof(TText), size-sizeof(TText));
128 iPtr.Set(data, size/sizeof(TText)-1, size/sizeof(TText)-1);
132 // NON-UNICODE so convert to UNICODE
133 TText* newdata = (TText*)User::AllocL(size*sizeof(TText));
134 iPtr.Set(newdata, size, size);
136 for(i = 0 ; i<size ; ++i)
146 Find a text value from given aKeyName regardless the section in the ini data file
147 @param aKeyName Key being searched for
148 @param aResult On return, contains the text result
149 @return ETrue if found, otherwise EFalse
151 TBool CIniData::FindVar(const TDesC& aKeyName, TPtrC& aResult)
153 // Call with no section, so starts at beginning
154 if (FindVar((TDesC&)KNullDesC , aKeyName, aResult))
161 Find a text value from given aKeyName and aSecName in the ini data file
162 @param aSectName Section containing key
163 @param aKeyName Key being searched for in aSectName
164 @param aResult On return, contains the text result
165 @return ETrue if found, otherwise EFalse
167 TBool CIniData::FindVar(const TDesC& aSectName,const TDesC& aKeyName,TPtrC& aResult)
170 __ASSERT_DEBUG(aSectName.Length()<=KTokenSize,Panic(ESectionNameTooBig));
171 __ASSERT_DEBUG(aKeyName.Length()<=KTokenSize,Panic(EKeyNameTooBig));
173 TInt posStartOfSection(0);
174 TInt posEndOfSection(iPtr.Length()); // Default to the entire length of the ini data
177 // If we have a section, set pos to section start
178 TInt posI(0); // Position in internal data Buffer
179 if( aSectName.Length() > 0 )
181 TBool FoundSection(false);
182 while ( ! FoundSection )
184 // Move search buffer to next area of interest
185 SearchBuf.Set(iPtr.Mid(posI));
187 // Make up token "[SECTIONNAME]", to search for
188 TPtr sectionToken = iToken->Des();
189 _LIT(sectionTokenFmtString,"[%S]");
190 sectionToken.Format(sectionTokenFmtString,&aSectName);
192 // Search for next occurrence of aSectName
193 TInt posSB = SearchBuf.Find(sectionToken);
195 if (posSB == KErrNotFound)
198 // Check this is at beginning of line (ie. non-commented)
199 // ie. Check preceding char was LF
202 // Create a Buffer, starting one char before found subBuf
203 TPtrC CharBefore(SearchBuf.Right(SearchBuf.Length()-posSB+1));
204 // Check first char is end of prev
205 if(CharBefore[0] == '\n')
207 FoundSection = ETrue; // found
212 posI = posI + posSB + 1; // try again
217 FoundSection = ETrue;
220 } // while ( ! FoundSection )
222 // Set start of section, after section name, (incl '[' and ']')
223 posStartOfSection = posI + aSectName.Length() + 2;
225 // Set end of section, by finding begin of next section or end
226 SearchBuf.Set(iPtr.Mid(posI));
227 _LIT(nextSectionBuf,"\n[");
228 TInt posSB = SearchBuf.Find(nextSectionBuf);
229 if(posSB != KErrNotFound)
231 posEndOfSection = posI + posSB;
235 posEndOfSection = iPtr.Length();
238 } // if( aSectName.Length() > 0 )
240 // Look for key in ini file data Buffer
241 posI = posStartOfSection;
242 TBool FoundKey(false);
245 // Search for next occurrence of aKeyName
246 SearchBuf.Set(iPtr.Mid(posI,posEndOfSection-posI));
247 TInt posSB = SearchBuf.Find(aKeyName);
249 // If not found, return
250 if (posSB == KErrNotFound)
253 // Check this is at beginning of line (ie. non-commented)
254 // ie. Check preceding char was CR or LF
257 // Create a Buffer, starting one char before found subBuf
258 TPtrC CharBefore(SearchBuf.Right(SearchBuf.Length()-posSB+1));
259 // Check if the first char is end of prev and also check
260 // if the token found is not a substring of another string
261 TBool beginningOK = ((CharBefore[0] == '\n') || (CharBefore[0] == ' ') || (CharBefore[0] == '\t'));
262 TBool endingOK = ((CharBefore[aKeyName.Length()+1] == iDelimiter) || (CharBefore[aKeyName.Length()+1] == ' ') || (CharBefore[aKeyName.Length()+1] == '\t'));
263 if (beginningOK && endingOK)
270 posI = posI + posSB + 1;
277 } // while ( ! FoundKey )
279 // Set pos, to just after iDelimiter sign
280 SearchBuf.Set(iPtr.Mid(posI));
281 TInt posSB = SearchBuf.Locate(iDelimiter);
282 if(posSB==KErrNotFound) // Illegal format, should flag this...
285 // Identify start and end of data (EOL or EOF)
286 posI = posI + posSB + 1; // 1 char after iDelimiter
287 TInt posValStart = posI;
289 SearchBuf.Set(iPtr.Mid(posI));
290 posSB = SearchBuf.Locate('\r');
291 if(posSB != KErrNotFound)
293 posValEnd = posI + posSB;
297 posValEnd = iPtr.Length();
300 // Check we are still in the section requested
301 if( aSectName.Length() > 0 )
303 if( posValEnd > posEndOfSection )
308 // Parse Buffer from posn of key
309 // Start one space after '='
310 TLex lex(iPtr.Mid(posValStart, posValEnd-posValStart));
311 lex.SkipSpaceAndMark(); // Should be at the start of the data
312 aResult.Set(lex.MarkedToken().Ptr(),posValEnd-posValStart - lex.Offset() );
317 Find an integer value from given aKeyName regardless the section in the ini data file
318 @param aKeyName Key being searched for
319 @param aResult On return, contains the TInt result
320 @return ETrue if found, otherwise EFalse
322 TBool CIniData::FindVar(const TDesC& aKeyName, TInt& aResult)
325 if (FindVar(aKeyName,ptr))
328 if (lex.Val(aResult) == KErrNone)
335 Find an integer value from given aKeyName and aSecName in the ini data file
336 @param aSectName Section containing key
337 @param aKeyName Key being searched for in aSectName
338 @param aResult On return, contains TInt result
339 @return ETrue if found, otherwise EFalse
341 TBool CIniData::FindVar(const TDesC& aSection,const TDesC& aKeyName,TInt& aResult)
344 if (FindVar(aSection,aKeyName,ptr))
347 if (lex.Val(aResult) == KErrNone)