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