Update contrib.
1 // Copyright (c) 2008-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.
22 #include "t_cinidata.h"
26 // Default directory to look for INI file
27 _LIT(KIniFileDir,"Z:\\System\\Data\\");
29 // Constant Value changed for DEF047130 fix
30 const TInt KTokenSize = 256;
39 void Panic(TIniPanic aPanic)
41 _LIT(CIniData,"CIniData");
42 User::Panic(CIniData,aPanic);
48 CIniData::CIniData() : iPtr(NULL,0)
50 __DECLARE_NAME(_S("CIniData"));
55 Frees the resources located in second-phase constructor
59 delete (TText*)iPtr.Ptr();
65 Creates, and returns a pointer to CIniData object, leave on failure
66 @param aName the name of the file which contains the ini data
67 @param aDelimeter Delimiter used in wsini.ini file between variable and value
68 @return A pointer to the CiniData object
70 CIniData* CIniData::NewL(const TDesC& aName, char aDelimiter)
72 CIniData* p = new(ELeave) CIniData;
73 CleanupStack::PushL(p);
74 p->ConstructL(aName, aDelimiter);
80 Second-phase constructor.
81 The function attempts to allocate a buffer and Read file's contents into iPtr
82 @param aName the name of the file which contains the ini data
83 @param aDelimeter Delimiter used in wsini.ini file between variable and value
84 @leave One of the system-wide error codes
86 void CIniData::ConstructL(const TDesC& aName, char aDelimiter)
89 iDelimiter = aDelimiter;
91 // Allocate space for token
92 iToken=HBufC::NewL(KTokenSize+2); // 2 extra chars for [tokenName]
94 // Connect to file server
96 User::LeaveIfError(fs.iObj.Connect());
99 // Find file, given name
100 TFindFile ff(fs.iObj);
101 User::LeaveIfError(ff.FindByDir(aName, KIniFileDir));
102 iName = ff.File().AllocL();
105 TAutoClose<RFile> file;
107 User::LeaveIfError(file.iObj.Open(fs.iObj,*iName,EFileStreamText|EFileShareReadersOrWriters));
110 // Get file size and read in
111 User::LeaveIfError(file.iObj.Size(size));
112 TText* data = (TText*)User::AllocL(size);
113 iPtr.Set(data, size/sizeof(TText), size/sizeof(TText));
114 TPtr8 dest((TUint8*)data, 0, size);
115 User::LeaveIfError(file.iObj.Read(dest));
116 TUint8* ptr = (TUint8*)data;
119 // This is orderred as FEFF assuming the processor is Little Endian
120 // The data in the file is FFFE. PRR 28/9/98
122 if(size>=(TInt)sizeof(TText) && iPtr[0]==0xFEFF)
124 // UNICODE Text file so lose the FFFE
125 Mem::Copy(ptr, ptr+sizeof(TText), size-sizeof(TText));
126 iPtr.Set(data, size/sizeof(TText)-1, size/sizeof(TText)-1);
130 // NON-UNICODE so convert to UNICODE
131 TText* newdata = (TText*)User::AllocL(size*sizeof(TText));
132 iPtr.Set(newdata, size, size);
134 for(i = 0 ; i<size ; ++i)
144 Find a text value from given aKeyName regardless the section in the ini data file
145 @param aKeyName Key being searched for
146 @param aResult On return, contains the text result
147 @return ETrue if found, otherwise EFalse
149 TBool CIniData::FindVar(const TDesC& aKeyName, TPtrC& aResult)
151 // Call with no section, so starts at beginning
152 if (FindVar((TDesC&)KNullDesC , aKeyName, aResult))
159 Find a text value from given aKeyName and aSecName in the ini data file
160 @param aSectName Section containing key
161 @param aKeyName Key being searched for in aSectName
162 @param aResult On return, contains the text result
163 @return ETrue if found, otherwise EFalse
165 TBool CIniData::FindVar(const TDesC& aSectName,const TDesC& aKeyName,TPtrC& aResult)
168 __ASSERT_DEBUG(aSectName.Length()<=KTokenSize,Panic(ESectionNameTooBig));
169 __ASSERT_DEBUG(aKeyName.Length()<=KTokenSize,Panic(EKeyNameTooBig));
171 TInt posStartOfSection(0);
172 TInt posEndOfSection(iPtr.Length()); // Default to the entire length of the ini data
175 // If we have a section, set pos to section start
176 TInt posI(0); // Position in internal data Buffer
177 if( aSectName.Length() > 0 )
179 TBool FoundSection(false);
180 while ( ! FoundSection )
182 // Move search buffer to next area of interest
183 SearchBuf.Set(iPtr.Mid(posI));
185 // Make up token "[SECTIONNAME]", to search for
186 TPtr sectionToken = iToken->Des();
187 _LIT(sectionTokenFmtString,"[%S]");
188 sectionToken.Format(sectionTokenFmtString,&aSectName);
190 // Search for next occurrence of aSectName
191 TInt posSB = SearchBuf.Find(sectionToken);
193 if (posSB == KErrNotFound)
196 // Check this is at beginning of line (ie. non-commented)
197 // ie. Check preceding char was LF
200 // Create a Buffer, starting one char before found subBuf
201 TPtrC CharBefore(SearchBuf.Right(SearchBuf.Length()-posSB+1));
202 // Check first char is end of prev
203 if(CharBefore[0] == '\n')
205 FoundSection = ETrue; // found
210 posI = posI + posSB + 1; // try again
215 FoundSection = ETrue;
218 } // while ( ! FoundSection )
220 // Set start of section, after section name, (incl '[' and ']')
221 posStartOfSection = posI + aSectName.Length() + 2;
223 // Set end of section, by finding begin of next section or end
224 SearchBuf.Set(iPtr.Mid(posI));
225 _LIT(nextSectionBuf,"\n[");
226 TInt posSB = SearchBuf.Find(nextSectionBuf);
227 if(posSB != KErrNotFound)
229 posEndOfSection = posI + posSB;
233 posEndOfSection = iPtr.Length();
236 } // if( aSectName.Length() > 0 )
238 // Look for key in ini file data Buffer
239 posI = posStartOfSection;
240 TBool FoundKey(false);
243 // Search for next occurrence of aKeyName
244 SearchBuf.Set(iPtr.Mid(posI,posEndOfSection-posI));
245 TInt posSB = SearchBuf.Find(aKeyName);
247 // If not found, return
248 if (posSB == KErrNotFound)
251 // Check this is at beginning of line (ie. non-commented)
252 // ie. Check preceding char was CR or LF
255 // Create a Buffer, starting one char before found subBuf
256 TPtrC CharBefore(SearchBuf.Right(SearchBuf.Length()-posSB+1));
257 // Check if the first char is end of prev and also check
258 // if the token found is not a substring of another string
259 TBool beginningOK = ((CharBefore[0] == '\n') || (CharBefore[0] == ' ') || (CharBefore[0] == '\t'));
260 TBool endingOK = ((CharBefore[aKeyName.Length()+1] == iDelimiter) || (CharBefore[aKeyName.Length()+1] == ' ') || (CharBefore[aKeyName.Length()+1] == '\t'));
261 if (beginningOK && endingOK)
268 posI = posI + posSB + 1;
275 } // while ( ! FoundKey )
277 // Set pos, to just after iDelimiter sign
278 SearchBuf.Set(iPtr.Mid(posI));
279 TInt posSB = SearchBuf.Locate(iDelimiter);
280 if(posSB==KErrNotFound) // Illegal format, should flag this...
283 // Identify start and end of data (EOL or EOF)
284 posI = posI + posSB + 1; // 1 char after iDelimiter
285 TInt posValStart = posI;
287 SearchBuf.Set(iPtr.Mid(posI));
288 posSB = SearchBuf.Locate('\r');
289 if(posSB != KErrNotFound)
291 posValEnd = posI + posSB;
295 posValEnd = iPtr.Length();
298 // Check we are still in the section requested
299 if( aSectName.Length() > 0 )
301 if( posValEnd > posEndOfSection )
306 // Parse Buffer from posn of key
307 // Start one space after '='
308 TLex lex(iPtr.Mid(posValStart, posValEnd-posValStart));
309 lex.SkipSpaceAndMark(); // Should be at the start of the data
310 aResult.Set(lex.MarkedToken().Ptr(),posValEnd-posValStart - lex.Offset() );
315 Find an integer value from given aKeyName regardless the section in the ini data file
316 @param aKeyName Key being searched for
317 @param aResult On return, contains the TInt result
318 @return ETrue if found, otherwise EFalse
320 TBool CIniData::FindVar(const TDesC& aKeyName, TInt& aResult)
323 if (FindVar(aKeyName,ptr))
326 if (lex.Val(aResult) == KErrNone)
333 Find an integer value from given aKeyName and aSecName in the ini data file
334 @param aSectName Section containing key
335 @param aKeyName Key being searched for in aSectName
336 @param aResult On return, contains TInt result
337 @return ETrue if found, otherwise EFalse
339 TBool CIniData::FindVar(const TDesC& aSection,const TDesC& aKeyName,TInt& aResult)
342 if (FindVar(aSection,aKeyName,ptr))
345 if (lex.Val(aResult) == KErrNone)