Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
19 #include "DataWrapperBase.h"
22 /// Constant Literals used.
23 _LIT(KIncludeSection, "include");
24 _LIT(KFile, "file%d");
25 _LIT(KMatch, "*{*,*}*");
27 _LIT(KSeparator, ",");
29 _LIT(KDataRead, "INI READ : %S %S %S");
32 CDataWrapperBase::CDataWrapperBase()
37 CDataWrapperBase::~CDataWrapperBase()
42 iInclude.ResetAndDestroy();
43 iBuffer.ResetAndDestroy();
47 void CDataWrapperBase::InitialiseL()
49 CDataWrapper::InitialiseL();
51 TBuf<KMaxTestExecuteCommandLength> tempStore;
57 tempStore.Format(KFile(), ++index);
58 moreData=GetStringFromConfig(KIncludeSection, tempStore, fileName);
62 CIniData* iniData=CIniData::NewL(fileName);
63 CleanupStack::PushL(iniData);
64 iInclude.Append(iniData);
65 CleanupStack::Pop(iniData);
68 User::LeaveIfError(iFs.Connect());
71 TBool CDataWrapperBase::GetBoolFromConfig(const TDesC& aSectName,const TDesC& aKeyName,TBool& aResult)
75 TRAPD(err, ret=GetCommandStringParameterL(aSectName, aKeyName, result));
76 if ( err != KErrNone )
83 aResult=(result.FindF(KTrue) != KErrNotFound);
89 TBool CDataWrapperBase::GetIntFromConfig(const TDesC& aSectName, const TDesC& aKeyName, TInt& aResult)
93 TRAPD(err, ret=GetCommandStringParameterL(aSectName, aKeyName, result));
94 if ( err != KErrNone )
101 ret=(lex.Val(aResult)==KErrNone);
107 TBool CDataWrapperBase::GetStringFromConfig(const TDesC& aSectName, const TDesC& aKeyName, TPtrC& aResult)
110 TRAPD(err, ret=GetCommandStringParameterL(aSectName, aKeyName, aResult));
111 if ( err != KErrNone )
118 TBool CDataWrapperBase::GetHexFromConfig(const TDesC& aSectName, const TDesC& aKeyName, TInt& aResult)
122 TRAPD(err, ret=GetCommandStringParameterL(aSectName, aKeyName, result));
123 if ( err != KErrNone )
130 ret=(lex.Val((TUint &)aResult, EHex)==KErrNone);
136 TBool CDataWrapperBase::GetCommandStringParameterL(const TDesC& aSectName, const TDesC& aKeyName, TPtrC& aResult)
140 if ( aSectName.Length()!=0 )
142 ret=CDataWrapper::GetStringFromConfig(aSectName, aKeyName, aResult);
144 for ( TInt index=iInclude.Count(); (index>0) && (!ret); )
146 ret=iInclude[--index]->FindVar(aSectName, aKeyName, aResult);
152 if ( aResult.Match(KMatch)!=KErrNotFound )
154 // We have an entry of the format
155 // entry =*{section,entry}*
156 // where * is one or more characters
157 // We need to construct this from other data in the ini file replacing {*,*}
158 // with the data from
161 HBufC* buffer=HBufC::NewLC(aResult.Length());
162 buffer->Des().Copy(aResult);
164 TInt startLength=KStart().Length();
165 TInt sparatorLength=KSeparator().Length();
166 TInt endLength=KEnd().Length();
175 bufferLength=buffer->Length();
176 start=buffer->Find(KStart);
178 remaining.Set(buffer->Des().Right(bufferLength-start-startLength));
179 sparator=remaining.Find(KSeparator);
180 remaining.Set(remaining.Right(remaining.Length()-sparator-sparatorLength));
181 sparator += (start + startLength);
183 end=remaining.Find(KEnd) + sparator + sparatorLength;
185 TPtrC sectionName(buffer->Ptr()+start+startLength, sparator-start-startLength);
186 TPtrC keyName(buffer->Ptr()+sparator+sparatorLength, end-sparator-sparatorLength);
187 sectionName.Set(TLex(sectionName).NextToken());
188 keyName.Set(TLex(keyName).NextToken());
192 TBool found=CDataWrapper::GetStringFromConfig(sectionName, keyName, entryData);
193 for ( TInt index=iInclude.Count(); (index>0) && (!found); )
195 found=iInclude[--index]->FindVar(sectionName, keyName, entryData);
199 entrySize=entryData.Length();
202 TInt newLength=start + bufferLength - end - endLength + entrySize;
203 HBufC* bufferNew=HBufC::NewLC(newLength);
204 bufferNew->Des().Copy(buffer->Ptr(), start);
207 bufferNew->Des().Append(entryData);
209 bufferNew->Des().Append(buffer->Ptr() + end + endLength, bufferLength - end - endLength);
210 CleanupStack::Pop(bufferNew);
211 CleanupStack::PopAndDestroy(buffer);
213 CleanupStack::PushL(buffer);
215 while ( buffer->Match(KMatch)!=KErrNotFound );
216 iBuffer.Append(buffer);
217 CleanupStack::Pop(buffer);
218 aResult.Set(*buffer);
219 INFO_PRINTF4(KDataRead, &aSectName, &aKeyName , &aResult);