os/graphics/windowing/windowserver/nga/SERVER/inifile.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/nga/SERVER/inifile.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,84 @@
     1.4 +// Copyright (c) 2006-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 +// CIniFile Class definitions
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#ifndef __INIFILE_H__
    1.22 +#define __INIFILE_H__
    1.23 +
    1.24 +#include "server.h"
    1.25 +
    1.26 +class CIniSection : public CBase
    1.27 +	{
    1.28 +	friend class CIniFile;
    1.29 +public:
    1.30 +	~CIniSection();
    1.31 +	void AddVariableL(const TDesC& aNewVariable);
    1.32 +private:
    1.33 +	CIniSection(TInt aScreen);
    1.34 +	void ConstructL();
    1.35 +	void ConstructL(const TDesC& aName);
    1.36 +	TBool FindVar(const TDesC &aVarName, TInt &aResult);
    1.37 +	TBool FindVar(const TDesC &aVarName, TPtrC &aResult);
    1.38 +	TBool FindVarName(const TDesC& aVarName, TInt& index);
    1.39 +	static TPtrC VarName(const TDesC& aVarString);
    1.40 +	inline TInt Screen() const;
    1.41 +	inline const TDesC& Name() const;
    1.42 +private:
    1.43 +	TInt iScreen;
    1.44 +	RBuf iName;
    1.45 +	CArrayPtrFlat<TDesC>* iPtrArray ;
    1.46 +	} ;
    1.47 +
    1.48 +class CIniFile : public CBase, public MWsIniFile
    1.49 +	{
    1.50 +public:
    1.51 +    static CIniFile* NewL();
    1.52 +	~CIniFile();
    1.53 +	TInt NumberOfScreens() const;
    1.54 +	void FreeData();
    1.55 +
    1.56 +public: // from MWsIniFile
    1.57 +	TBool FindVar(const TDesC &aVarName, TPtrC &aResult);
    1.58 +	TBool FindVar(const TDesC &aVarName, TInt &aResult);
    1.59 +	TBool FindVar(const TDesC &aVarName);
    1.60 +
    1.61 +	TBool FindVar( TInt aScreen, const TDesC &aVarName);
    1.62 +	TBool FindVar( TInt aScreen, const TDesC &aVarName, TInt &aResult);
    1.63 +	TBool FindVar( TInt aScreen, const TDesC& aVarName, TPtrC &aResult);
    1.64 +
    1.65 +	TBool FindVar(const TDesC& aSection, const TDesC &aVarName);
    1.66 +	TBool FindVar(const TDesC& aSection, const TDesC &aVarName, TInt &aResult);
    1.67 +	TBool FindVar(const TDesC& aSection, const TDesC& aVarName, TPtrC &aResult);
    1.68 +
    1.69 +private:
    1.70 +    CIniFile();
    1.71 +    void ConstructL();
    1.72 +	void doConstructL(RFile &aFile);
    1.73 +	CIniSection * AddOrFindIniSectionL(TPtr& aSectionName);
    1.74 +	CIniSection * AddOrFindScreenSectionL(TInt aScreen);
    1.75 +	CIniSection * AddOrFindNamedSectionL(const TDesC& aName);
    1.76 +	CIniSection * CreateSectionL(TInt aScreen); // utility function
    1.77 +	CIniSection * CreateSectionL(const TDesC& aSectionName); // utility function
    1.78 +	CIniSection * FindSection(TInt aScreen);
    1.79 +	CIniSection * FindSection(const TDesC& aName);
    1.80 +private:
    1.81 +	RPointerArray<CIniSection> iSectionArray;
    1.82 +	TInt iScreenCount;
    1.83 +	};
    1.84 +
    1.85 +GLREF_D CIniFile * WsIniFile;
    1.86 +
    1.87 +#endif