#include "global.h" #include "IniFile.h" #include "RageUtil.h" #include "RageLog.h" #include "RageFile.h" bool IniFile::ReadFile( const CString &sPath ) { m_sPath = sPath; CHECKPOINT_M( ssprintf("Reading '%s'",m_sPath.c_str()) ); RageFile f; if( !f.Open( m_sPath ) ) { LOG->Trace( "Reading '%s' failed: %s", m_sPath.c_str(), f.GetError().c_str() ); m_sError = f.GetError(); return 0; } CString keyname; while( 1 ) { CString line; switch( f.GetLine(line) ) { case -1: m_sError = f.GetError(); return false; case 0: return true; /* eof */ } if( line.size() >= 3 && line[0] == '\xef' && line[1] == '\xbb' && line[2] == '\xbf' ) { /* Obnoxious NT marker for UTF-8. Remove it. */ line.erase(0, 3); } if( line == "" ) continue; if( line.substr(0, 2) == "//" || line.substr(0) == "#" ) continue; /* comment */ if( line[0] == '[' && line[line.GetLength()-1] == ']' ) { /* New section. */ keyname = line.substr(1, line.size()-2); } else //if a value { int iEqualIndex = line.Find("="); if( iEqualIndex != -1 ) { CString valuename = line.Left(iEqualIndex); CString value = line.Right(line.GetLength()-valuename.GetLength()-1); SetValue(keyname,valuename,value); } } } } bool IniFile::WriteFile( const CString &sPath ) { RageFile f; if( !f.Open( sPath, RageFile::WRITE ) ) { LOG->Trace( "Writing '%s' failed: %s", sPath.c_str(), f.GetError().c_str() ); m_sError = f.GetError(); return false; } for( keymap::const_iterator k = keys.begin(); k != keys.end(); ++k ) { if (k->second.empty()) continue; if( f.PutLine( ssprintf("[%s]", k->first.c_str()) ) == -1 ) { m_sError = f.GetError(); return false; } for( key::const_iterator i = k->second.begin(); i != k->second.end(); ++i ) f.PutLine( ssprintf("%s=%s", i->first.c_str(), i->second.c_str()) ); if( f.PutLine( "" ) == -1 ) { m_sError = f.GetError(); return false; } } return true; } void IniFile::Reset() { keys.clear(); } int IniFile::GetNumKeys() const { return keys.size(); } int IniFile::GetNumValues( const CString &keyname ) const { keymap::const_iterator k = keys.find(keyname); if( k == keys.end() ) return -1; return k->second.size(); } bool IniFile::GetValue( const CString &keyname, const CString &valuename, CString& value ) const { keymap::const_iterator k = keys.find(keyname); if (k == keys.end()) return false; key::const_iterator i = k->second.find(valuename); if( i == k->second.end() ) return false; value = i->second; return true; } bool IniFile::GetValue(const CString &keyname, const CString &valuename, int& value) const { CString sValue; if( !GetValue(keyname,valuename,sValue) ) return false; sscanf( sValue.c_str(), "%d", &value ); return true; } bool IniFile::GetValue(const CString &keyname, const CString &valuename, unsigned &value) const { CString sValue; if( !GetValue(keyname,valuename,sValue) ) return false; sscanf( sValue.c_str(), "%u", &value ); return true; } bool IniFile::GetValue(const CString &keyname, const CString &valuename, float& value) const { CString sValue; if( !GetValue(keyname,valuename,sValue) ) return false; value = strtof( sValue, NULL ); return true; } bool IniFile::GetValue( const CString &keyname, const CString &valuename, bool& value ) const { CString sValue; if( !GetValue(keyname,valuename,sValue) ) return false; value = atoi(sValue) != 0; return true; } bool IniFile::SetValue( const CString &keyname, const CString &valuename, const CString &value ) { keys[keyname][valuename] = value; return true; } bool IniFile::SetValue( const CString &keyname, const CString &valuename, int value ) { return SetValue( keyname, valuename, ssprintf("%d",value) ); } bool IniFile::SetValue( const CString &keyname, const CString &valuename, unsigned value ) { return SetValue( keyname, valuename, ssprintf("%u",value) ); } bool IniFile::SetValue( const CString &keyname, const CString &valuename, float value ) { return SetValue( keyname, valuename, ssprintf("%f",value) ); } bool IniFile::SetValue( const CString &keyname, const CString &valuename, bool value ) { return SetValue( keyname, valuename, ssprintf("%d",value) ); } bool IniFile::DeleteValue(const CString &keyname, const CString &valuename) { keymap::iterator k = keys.find(keyname); if( k == keys.end() ) return false; key::iterator i = k->second.find(valuename); if( i == k->second.end() ) return false; k->second.erase(i); return true; } bool IniFile::DeleteKey(const CString &keyname) { keymap::iterator k = keys.find(keyname); if( k == keys.end() ) return false; keys.erase(k); return true; } const IniFile::key *IniFile::GetKey(const CString &keyname) const { keymap::const_iterator i = keys.find(keyname); if( i == keys.end() ) return NULL; return &i->second; } void IniFile::SetValue(const CString &keyname, const key &key) { keys[keyname] = key; } void IniFile::RenameKey(const CString &from, const CString &to) { if( keys.find(from) == keys.end() ) return; if( keys.find(to) != keys.end() ) return; keys[to] = keys[from]; keys.erase(from); } bool IniFilePreserveOrder::ReadFile( const CString &sPath ) { m_sPath = sPath; CHECKPOINT_M( ssprintf("Reading '%s'",m_sPath.c_str()) ); RageFile f; if( !f.Open( m_sPath ) ) { LOG->Trace( "Reading '%s' failed: %s", m_sPath.c_str(), f.GetError().c_str() ); m_sError = f.GetError(); return 0; } CString keyname; while( 1 ) { CString line; switch( f.GetLine(line) ) { case -1: m_sError = f.GetError(); return false; case 0: return true; /* eof */ } if( line.size() >= 3 && line[0] == '\xef' && line[1] == '\xbb' && line[2] == '\xbf' ) { /* Obnoxious NT marker for UTF-8. Remove it. */ line.erase(0, 3); } if( line == "" ) continue; if( line.substr(0, 2) == "//" || line.substr(0) == "#" ) continue; /* comment */ if( line[0] == '[' && line[line.GetLength()-1] == ']' ) { /* New section. */ keyname = line.substr(1, line.size()-2); } else //if a value { int iEqualIndex = line.Find("="); if( iEqualIndex != -1 ) { CString valuename = line.Left(iEqualIndex); CString value = line.Right(line.GetLength()-valuename.GetLength()-1); SetValue(keyname,valuename,value); } } } } bool IniFilePreserveOrder::WriteFile( const CString &sPath ) { RageFile f; if( !f.Open( sPath, RageFile::WRITE ) ) { LOG->Trace( "Writing '%s' failed: %s", sPath.c_str(), f.GetError().c_str() ); m_sError = f.GetError(); return false; } for( keymap::const_iterator k = keys.begin(); k != keys.end(); ++k ) { if (k->second.empty()) continue; if( f.PutLine( ssprintf("[%s]", k->first.c_str()) ) == -1 ) { m_sError = f.GetError(); return false; } for( key::const_iterator i = k->second.begin(); i != k->second.end(); ++i ) f.PutLine( ssprintf("%s=%s", i->first.c_str(), i->second.c_str()) ); if( f.PutLine( "" ) == -1 ) { m_sError = f.GetError(); return false; } } return true; } bool IniFilePreserveOrder::SetValue( const CString &keyname, const CString &valuename, const CString &value ) { int iIndexOfKey = -1; for( unsigned i=0; i