96 lines
3.1 KiB
C++
96 lines
3.1 KiB
C++
/** @brief IniFile - Reading and writing .INI files. */
|
|
|
|
#ifndef INIFILE_H
|
|
#define INIFILE_H
|
|
|
|
#include "XmlFile.h"
|
|
using namespace std;
|
|
|
|
class RageFileBasic;
|
|
/** @brief The functions to read and write .INI files. */
|
|
class IniFile : public XNode
|
|
{
|
|
public:
|
|
/** @brief Set up an INI file with the defaults. */
|
|
IniFile();
|
|
|
|
/**
|
|
* @brief Retrieve the filename of the last file loaded.
|
|
* @return the filename. */
|
|
RString GetPath() const { return m_sPath; }
|
|
/**
|
|
* @brief Retrieve any errors that have occurred.
|
|
* @return the latest error. */
|
|
const RString &GetError() const { return m_sError; }
|
|
|
|
bool ReadFile( const RString &sPath );
|
|
bool ReadFile( RageFileBasic &sFile );
|
|
bool WriteFile( const RString &sPath ) const;
|
|
bool WriteFile( RageFileBasic &sFile ) const;
|
|
|
|
template <typename T>
|
|
bool GetValue( const RString &sKey, const RString &sValueName, T& value ) const
|
|
{
|
|
const XNode* pNode = GetChild( sKey );
|
|
if( pNode == NULL )
|
|
return false;
|
|
return pNode->GetAttrValue<T>( sValueName, value );
|
|
}
|
|
template <typename T>
|
|
void SetValue( const RString &sKey, const RString &sValueName, const T &value )
|
|
{
|
|
XNode* pNode = GetChild( sKey );
|
|
if( pNode == NULL )
|
|
pNode = AppendChild( sKey );
|
|
pNode->AppendAttr<T>( sValueName, value );
|
|
}
|
|
|
|
bool DeleteKey( const RString &keyname );
|
|
bool DeleteValue( const RString &keyname, const RString &valuename );
|
|
|
|
/**
|
|
* @brief Rename a key.
|
|
*
|
|
* For example, call RenameKey("foo", "main") after reading an INI
|
|
* where [foo] is an alias to [main]. If to already exists,
|
|
* nothing happens.
|
|
* @param from the key to rename.
|
|
* @param to the new key name.
|
|
* @return its success or failure. */
|
|
bool RenameKey( const RString &from, const RString &to );
|
|
|
|
private:
|
|
RString m_sPath;
|
|
|
|
mutable RString m_sError;
|
|
};
|
|
|
|
#endif
|
|
|
|
/**
|
|
* @file
|
|
* @author Adam Clauss, Chris Danford (c) 2001-2004
|
|
* @section LICENSE
|
|
* All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the
|
|
* "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, and/or sell copies of the Software, and to permit persons to
|
|
* whom the Software is furnished to do so, provided that the above
|
|
* copyright notice(s) and this permission notice appear in all copies of
|
|
* the Software and that both the above copyright notice(s) and this
|
|
* permission notice appear in supporting documentation.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
|
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
|
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
|
|
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|