os/mm/mmtestenv/mmtestfw/Source/TestFrameworkClient/TestIniData.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/mmtestenv/mmtestfw/Source/TestFrameworkClient/TestIniData.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,73 @@
     1.4 +// Copyright (c) 1997-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 +// Local CTestIniData class, derived from CIniData.lib
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#if !defined(__CTESTINIDATA_H__)
    1.22 +#define __CTESTINIDATA_H__
    1.23 +
    1.24 +#include <e32base.h>
    1.25 +
    1.26 +enum TTestIniPanic
    1.27 +        {
    1.28 +        ESectionNameTooBig,
    1.29 +        EKeyNameTooBig,
    1.30 +        };
    1.31 +
    1.32 +class CTestIniData : public CBase 
    1.33 +        {
    1.34 +public:
    1.35 +        // Constructor, pass in name of ini file to open
    1.36 +        // Default search path is 'c:\system\data' on target filesystem
    1.37 +        // ie. 'NewL(_L("c:\\system\\data\\ttools.ini"))' is equivalent 
    1.38 +        // to 'NewL(_L("ttools.ini"))' 
    1.39 +        static CTestIniData* NewL(const TDesC& aName);
    1.40 +        virtual ~CTestIniData();
    1.41 +
    1.42 +		// Panic
    1.43 +		void Panic(TTestIniPanic aPanic);
    1.44 +
    1.45 +        // Read text value reguardless of section
    1.46 +        // Returns: True(Success) or false(Failure)
    1.47 +        TBool FindVar(const TDesC &aKeyName,   // Key to look for
    1.48 +                      TPtrC &aResult);         // Buffer to store value
    1.49 +
    1.50 +        // Read integer value reguardless of section
    1.51 +        // Returns: True(Success) or false(Failure)
    1.52 +        TBool FindVar(const TDesC &aKeyName,   // Key to look for
    1.53 +                      TInt &aResult);          // Int ref to store result
    1.54 +
    1.55 +        // Read text value under section
    1.56 +        // Returns: True(Success) or false(Failure)
    1.57 +        TBool FindVar(const TDesC &aSection,   // Section to look under
    1.58 +                      const TDesC &aKeyName,   // Key to look for
    1.59 +                      TPtrC &aResult);         // Buffer to store result
    1.60 +
    1.61 +        // Read integer value under section
    1.62 +        // Returns: True(Success) or false(Failure)
    1.63 +        TBool FindVar(const TDesC &aSection,   // Section to look under
    1.64 +                      const TDesC &aKeyName,   // Key to look for
    1.65 +                      TInt &aResult);          // Int ref to store result
    1.66 +
    1.67 +protected:
    1.68 +        CTestIniData();
    1.69 +        void ConstructL(const TDesC& aName);
    1.70 +private:
    1.71 +        HBufC* iName;
    1.72 +        HBufC* iToken;
    1.73 +        TPtr iPtr;
    1.74 +        };
    1.75 +
    1.76 +#endif