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