sl@0: // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // @internalComponent sl@0: // sl@0: // sl@0: sl@0: #ifndef __INIPARSERIMPL_H__ sl@0: #define __INIPARSERIMPL_H__ sl@0: sl@0: #include sl@0: #include sl@0: #include "IniTemplate.h" sl@0: #include "inifile.h" sl@0: sl@0: namespace BSUL sl@0: { sl@0: sl@0: //typedef for 8 and 16 bit sl@0: typedef CIniLine CIniLine8; sl@0: typedef CIniLine CIniLine16; sl@0: sl@0: typedef CIniKey CIniKey8; sl@0: typedef CIniKey CIniKey16; sl@0: sl@0: typedef CIniSection CIniSection8; sl@0: typedef CIniSection CIniSection16; sl@0: sl@0: typedef CIniSecIterImplX CIniSecIterTmpl8; sl@0: typedef CIniSecIterImplX CIniSecIterTmpl16; sl@0: sl@0: typedef CIniDocumentTmplX CIniDocumentTmpl8; sl@0: typedef CIniDocumentTmplX CIniDocumentTmpl16; sl@0: sl@0: typedef TBuf8<6> TPattern8; sl@0: typedef TBuf16<6> TPattern16; sl@0: sl@0: typedef CIniFileImplX CIniFileTmpl8; sl@0: typedef CIniFileImplX CIniFileTmpl16; sl@0: sl@0: //8 bit light sl@0: NONSHARABLE_CLASS(CIniFile8Impl): public CBase sl@0: { sl@0: public: sl@0: static CIniFile8Impl* NewL(RFs& aFs,const TDesC& aFileName); sl@0: ~CIniFile8Impl(){delete iTempImpl;} sl@0: TInt FindVar(const TDesC8& aSection,const TDesC8& aKey,TPtrC8& aValue); sl@0: private: sl@0: CIniFile8Impl(){} sl@0: void ConstructL(RFs& aFs,const TDesC& aFileName); sl@0: CIniFileTmpl8* iTempImpl; sl@0: }; sl@0: sl@0: //16 bit light sl@0: NONSHARABLE_CLASS(CIniFile16Impl): public CBase sl@0: { sl@0: public: sl@0: static CIniFile16Impl* NewL(RFs& aFs,const TDesC& aFileName,TBool aConvert8To16=EFalse); sl@0: ~CIniFile16Impl(){delete iTempImpl;} sl@0: TInt FindVar(const TDesC16& aSection,const TDesC16& aKey,TPtrC16& aValue); sl@0: private: sl@0: CIniFile16Impl(){} sl@0: void ConstructL(RFs& aFs,const TDesC& aFileName,TBool aConvert8To16); sl@0: CIniFileTmpl16* iTempImpl; sl@0: }; sl@0: sl@0: //8 bit sl@0: NONSHARABLE_CLASS(CIniSecIter8Impl): public CBase sl@0: { sl@0: public: sl@0: static CIniSecIter8Impl* NewL(const TDesC8& aSectionName,const CIniDocument8* aIniDocument); sl@0: TBool Next(TPtrC8& aKeyName,TPtrC8& aKeyValue); sl@0: void Reset(); sl@0: TBool End(){return iTempImpl->End();} sl@0: ~CIniSecIter8Impl(){delete iTempImpl;} sl@0: private: sl@0: CIniSecIter8Impl(){} sl@0: void ConstructL(const TDesC8& aSectionName,const CIniDocument8* aIniDocument); sl@0: private: sl@0: CIniSecIterTmpl8* iTempImpl; sl@0: }; sl@0: sl@0: //16 bit sl@0: NONSHARABLE_CLASS(CIniSecIter16Impl): public CBase sl@0: { sl@0: public: sl@0: static CIniSecIter16Impl* NewL(const TDesC16& aSectionName,const CIniDocument16* aIniDocument); sl@0: TBool Next(TPtrC16& aKeyName,TPtrC16& aKeyValue); sl@0: void Reset(); sl@0: TBool End(){return iTempImpl->End();} sl@0: ~CIniSecIter16Impl(){delete iTempImpl;} sl@0: private: sl@0: CIniSecIter16Impl(){} sl@0: void ConstructL(const TDesC16& aSectionName,const CIniDocument16* aIniDocument); sl@0: private: sl@0: CIniSecIterTmpl16* iTempImpl; sl@0: }; sl@0: sl@0: //8 bit sl@0: NONSHARABLE_CLASS(CIniDocument8Impl): public CBase sl@0: { sl@0: public: sl@0: static CIniDocument8Impl* NewL(RFs& aFs,const TDesC& aFileName); sl@0: ~CIniDocument8Impl(); sl@0: void FlushL(const TDesC& aFileName); sl@0: sl@0: TInt GetSectionList(RArray& aSectionList) const; sl@0: void GetKeyValueL(const TDesC8& aSectionName,const TDesC8& aKeyName,TPtrC8& aKeyValue) const; sl@0: CIniSection8* SectionL(const TDesC8& aSectionName) const; sl@0: sl@0: void AddSectionL(const TDesC8& aSectionName); sl@0: void RemoveSectionL(const TDesC8& aSectionName); sl@0: void SetKeyL(const TDesC8& aSectionName,const TDesC8& aKeyName,const TDesC8& aKeyValue); sl@0: void RemoveKeyL(const TDesC8& aSectionName,const TDesC8& aKeyName); sl@0: TBool CompareDocs(CIniDocument8Impl& aDoc); sl@0: private: sl@0: CIniDocument8Impl(){} sl@0: void ConstructL(RFs& aFs,const TDesC& aFileName); sl@0: private: sl@0: CIniDocumentTmpl8* iTempImpl; sl@0: sl@0: }; sl@0: sl@0: //16 bit sl@0: NONSHARABLE_CLASS(CIniDocument16Impl): public CBase sl@0: { sl@0: public: sl@0: static CIniDocument16Impl* NewL(RFs& aFs,const TDesC& aFileName); sl@0: ~CIniDocument16Impl(); sl@0: void FlushL(const TDesC& aFileName); sl@0: sl@0: TInt GetSectionList(RArray& aSectionList) const; sl@0: void GetKeyValueL(const TDesC16& aSectionName,const TDesC16& aKeyName,TPtrC16& aKeyValue) const; sl@0: CIniSection16* SectionL(const TDesC16& aSectionName) const; sl@0: sl@0: void AddSectionL(const TDesC16& aSectionName); sl@0: void RemoveSectionL(const TDesC16& aSectionName); sl@0: void SetKeyL(const TDesC16& aSectionName,const TDesC16& aKeyName,const TDesC16& aKeyValue); sl@0: void RemoveKeyL(const TDesC16& aSectionName,const TDesC16& aKeyName); sl@0: TBool CompareDocs(CIniDocument16Impl& aDoc); sl@0: private: sl@0: CIniDocument16Impl(){} sl@0: void ConstructL(RFs& aFs,const TDesC& aFileName); sl@0: private: sl@0: CIniDocumentTmpl16* iTempImpl; sl@0: }; sl@0: sl@0: }//namespace BSUL sl@0: sl@0: #endif//__INIPARSERIMPL_H__