ini_file.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * ini_file.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2006 the VideoLAN team
  5.  * $Id: 7fe8282eb67ea4c417051f6ce7f1cb580b218f52 $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. #include "ini_file.hpp"
  24. #include "var_manager.hpp"
  25. #include <fstream>
  26. IniFile::IniFile( intf_thread_t *pIntf, const string &rName,
  27.                   const string &rPath ):
  28.     SkinObject( pIntf ), m_name( rName ), m_path( rPath )
  29. {
  30. }
  31. void IniFile::parseFile()
  32. {
  33.     VarManager *pVarManager = VarManager::instance( getIntf() );
  34.     // Open the file
  35.     fstream fs( m_path.c_str(), fstream::in );
  36.     if( fs.is_open() )
  37.     {
  38.         string section;
  39.         string line;
  40.         while( !fs.eof() )
  41.         {
  42.             // Read the next line
  43.             fs >> line;
  44.             switch( line[0] )
  45.             {
  46.             // "[section]" line ?
  47.             case '[':
  48.                 section = line.substr( 1, line.size() - 2);
  49.                 break;
  50.             // Comment
  51.             case ';':
  52.             case '#':
  53.                 break;
  54.             // Variable declaration
  55.             default:
  56.                 size_t eqPos = line.find( '=' );
  57.                 string var = line.substr( 0, eqPos );
  58.                 string val = line.substr( eqPos + 1, line.size() - eqPos - 1);
  59.                 string name = m_name + "." + section + "." + var;
  60. #ifdef WIN32
  61.                 // Convert to lower case because of some buggy winamp2 skins
  62.                 for( size_t i=0; i< name.size(); i++)
  63.                 {
  64.                     name[i] = tolower( name[i] );
  65.                 }
  66. #endif
  67.                 // Register the value in the var manager
  68.                 pVarManager->registerConst( name, val );
  69.             }
  70.         }
  71.         fs.close();
  72.     }
  73.     else
  74.     {
  75.         msg_Err( getIntf(), "Failed to open INI file %s", m_path.c_str() );
  76.     }
  77. }