os/ossrv/lowlevellibsandfws/apputils/bsul/src/IniParserImpl.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/bsul/src/IniParserImpl.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,160 @@
     1.4 +// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// @internalComponent
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#ifndef __INIPARSERIMPL_H__
    1.22 +#define __INIPARSERIMPL_H__
    1.23 +
    1.24 +#include <e32std.h>
    1.25 +#include <f32file.h>
    1.26 +#include "IniTemplate.h"
    1.27 +#include "inifile.h"
    1.28 +
    1.29 +namespace BSUL
    1.30 +{
    1.31 +
    1.32 +//typedef for 8 and 16 bit
    1.33 +typedef CIniLine<TDesC8,HBufC8,TPtrC8,TPtr8> CIniLine8;
    1.34 +typedef CIniLine<TDesC16,HBufC16,TPtrC16,TPtr16> CIniLine16;
    1.35 +
    1.36 +typedef CIniKey<TDesC8,HBufC8,TPtrC8,CIniLine8,TPtr8,TLex8> CIniKey8;
    1.37 +typedef CIniKey<TDesC16,HBufC16,TPtrC16,CIniLine16,TPtr16,TLex16> CIniKey16;
    1.38 +
    1.39 +typedef CIniSection<TDesC8,HBufC8,TPtrC8,CIniKey8,CIniLine8,TPtr8,TLex8> CIniSection8;
    1.40 +typedef CIniSection<TDesC16,HBufC16,TPtrC16,CIniKey16,CIniLine16,TPtr16,TLex16> CIniSection16;
    1.41 +
    1.42 +typedef CIniSecIterImplX<TDesC8,TPtrC8,CIniSection8,CIniDocument8,CIniKey8> CIniSecIterTmpl8;
    1.43 +typedef CIniSecIterImplX<TDesC16,TPtrC16,CIniSection16,CIniDocument16,CIniKey16> CIniSecIterTmpl16;
    1.44 +
    1.45 +typedef CIniDocumentTmplX<TDesC8,TPtrC8,CIniSection8,TLex8,TPtr8,HBufC8,CIniLine8,CIniKey8> CIniDocumentTmpl8;
    1.46 +typedef CIniDocumentTmplX<TDesC16,TPtrC16,CIniSection16,TLex16,TPtr16,HBufC16,CIniLine16,CIniKey16> CIniDocumentTmpl16;
    1.47 +
    1.48 +typedef TBuf8<6> TPattern8;
    1.49 +typedef TBuf16<6> TPattern16;
    1.50 +
    1.51 +typedef CIniFileImplX<TDesC8,TPtrC8,HBufC8,TLex8,TPtr8,TPattern8,CIniLine8> CIniFileTmpl8;
    1.52 +typedef CIniFileImplX<TDesC16,TPtrC16,HBufC16,TLex16,TPtr16,TPattern16,CIniLine16> CIniFileTmpl16;
    1.53 +
    1.54 +//8 bit light
    1.55 +NONSHARABLE_CLASS(CIniFile8Impl): public CBase
    1.56 +	{
    1.57 +public:
    1.58 +	static CIniFile8Impl* NewL(RFs& aFs,const TDesC& aFileName);
    1.59 +	~CIniFile8Impl(){delete iTempImpl;}
    1.60 +	TInt FindVar(const TDesC8& aSection,const TDesC8& aKey,TPtrC8& aValue);
    1.61 +private:
    1.62 +	CIniFile8Impl(){}
    1.63 +	void ConstructL(RFs& aFs,const TDesC& aFileName);
    1.64 +	CIniFileTmpl8* iTempImpl;	
    1.65 +	};
    1.66 +	
    1.67 +//16 bit light	
    1.68 +NONSHARABLE_CLASS(CIniFile16Impl): public CBase
    1.69 +	{
    1.70 +public:
    1.71 +	static CIniFile16Impl* NewL(RFs& aFs,const TDesC& aFileName,TBool aConvert8To16=EFalse);
    1.72 +	~CIniFile16Impl(){delete iTempImpl;}
    1.73 +	TInt FindVar(const TDesC16& aSection,const TDesC16& aKey,TPtrC16& aValue);
    1.74 +private:
    1.75 +	CIniFile16Impl(){}
    1.76 +	void ConstructL(RFs& aFs,const TDesC& aFileName,TBool aConvert8To16);
    1.77 +	CIniFileTmpl16* iTempImpl;	
    1.78 +	};
    1.79 +	
    1.80 +//8 bit
    1.81 +NONSHARABLE_CLASS(CIniSecIter8Impl): public CBase
    1.82 +{
    1.83 +public:
    1.84 +	static CIniSecIter8Impl* NewL(const TDesC8& aSectionName,const CIniDocument8* aIniDocument);
    1.85 +	TBool Next(TPtrC8& aKeyName,TPtrC8& aKeyValue);
    1.86 +	void Reset();
    1.87 +	TBool End(){return iTempImpl->End();}
    1.88 +	~CIniSecIter8Impl(){delete iTempImpl;}
    1.89 +private:
    1.90 +	CIniSecIter8Impl(){}
    1.91 +	void ConstructL(const TDesC8& aSectionName,const CIniDocument8* aIniDocument);
    1.92 +private:	
    1.93 +	CIniSecIterTmpl8* iTempImpl;
    1.94 +};
    1.95 +
    1.96 +//16 bit
    1.97 +NONSHARABLE_CLASS(CIniSecIter16Impl): public CBase
    1.98 +{
    1.99 +public:
   1.100 +	static CIniSecIter16Impl* NewL(const TDesC16& aSectionName,const CIniDocument16* aIniDocument);
   1.101 +	TBool Next(TPtrC16& aKeyName,TPtrC16& aKeyValue);
   1.102 +	void Reset();
   1.103 +	TBool End(){return iTempImpl->End();}
   1.104 +	~CIniSecIter16Impl(){delete iTempImpl;}	
   1.105 +private:
   1.106 +	CIniSecIter16Impl(){}
   1.107 +	void ConstructL(const TDesC16& aSectionName,const CIniDocument16* aIniDocument);
   1.108 +private:	
   1.109 +	CIniSecIterTmpl16* iTempImpl;	
   1.110 +};
   1.111 +
   1.112 +//8 bit
   1.113 +NONSHARABLE_CLASS(CIniDocument8Impl): public CBase
   1.114 +{
   1.115 +public:
   1.116 +	static CIniDocument8Impl* NewL(RFs& aFs,const TDesC& aFileName);
   1.117 +	~CIniDocument8Impl();
   1.118 +	void FlushL(const TDesC& aFileName);
   1.119 +	
   1.120 +	TInt GetSectionList(RArray<TPtrC8>& aSectionList) const;
   1.121 +	void GetKeyValueL(const TDesC8& aSectionName,const TDesC8& aKeyName,TPtrC8& aKeyValue) const;
   1.122 +	CIniSection8* SectionL(const TDesC8& aSectionName) const;
   1.123 +	
   1.124 +	void AddSectionL(const TDesC8& aSectionName);
   1.125 +	void RemoveSectionL(const TDesC8& aSectionName);
   1.126 +	void SetKeyL(const TDesC8& aSectionName,const TDesC8& aKeyName,const TDesC8& aKeyValue);
   1.127 +	void RemoveKeyL(const TDesC8& aSectionName,const TDesC8& aKeyName);
   1.128 +	TBool CompareDocs(CIniDocument8Impl& aDoc);
   1.129 +private:
   1.130 +	CIniDocument8Impl(){}
   1.131 +	void ConstructL(RFs& aFs,const TDesC& aFileName);
   1.132 +private:
   1.133 +	CIniDocumentTmpl8* iTempImpl;
   1.134 +	
   1.135 +};
   1.136 +
   1.137 +//16 bit
   1.138 +NONSHARABLE_CLASS(CIniDocument16Impl): public CBase
   1.139 +{
   1.140 +public:
   1.141 +	static CIniDocument16Impl* NewL(RFs& aFs,const TDesC& aFileName);
   1.142 +	~CIniDocument16Impl();
   1.143 +	void FlushL(const TDesC& aFileName);
   1.144 +	
   1.145 +	TInt GetSectionList(RArray<TPtrC16>& aSectionList) const;
   1.146 +	void GetKeyValueL(const TDesC16& aSectionName,const TDesC16& aKeyName,TPtrC16& aKeyValue) const;
   1.147 +	CIniSection16* SectionL(const TDesC16& aSectionName) const;
   1.148 +
   1.149 +	void AddSectionL(const TDesC16& aSectionName);
   1.150 +	void RemoveSectionL(const TDesC16& aSectionName);
   1.151 +	void SetKeyL(const TDesC16& aSectionName,const TDesC16& aKeyName,const TDesC16& aKeyValue);
   1.152 +	void RemoveKeyL(const TDesC16& aSectionName,const TDesC16& aKeyName);
   1.153 +	TBool CompareDocs(CIniDocument16Impl& aDoc);
   1.154 +private:
   1.155 +	CIniDocument16Impl(){}
   1.156 +	void ConstructL(RFs& aFs,const TDesC& aFileName);	
   1.157 +private:
   1.158 +	CIniDocumentTmpl16* iTempImpl;
   1.159 +};
   1.160 +
   1.161 +}//namespace BSUL
   1.162 +
   1.163 +#endif//__INIPARSERIMPL_H__