ConfigFile.cpp
上传用户:liguizhu
上传日期:2015-11-01
资源大小:2422k
文件大小:2k
源码类别:

P2P编程

开发平台:

Visual C++

  1. /*
  2.  *  Openmysee
  3.  *
  4.  *  This program is free software; you can redistribute it and/or modify
  5.  *  it under the terms of the GNU General Public License as published by
  6.  *  the Free Software Foundation; either version 2 of the License, or
  7.  *  (at your option) any later version.
  8.  *
  9.  *  This program is distributed in the hope that it will be useful,
  10.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  *  GNU General Public License for more details.
  13.  *
  14.  *  You should have received a copy of the GNU General Public License
  15.  *  along with this program; if not, write to the Free Software
  16.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.  *
  18.  */
  19. #include "StdAfx.h"
  20. #include "ConfigFile.h"
  21. #pragma warning(disable: 4786)
  22. ConfigFile::ConfigFile(string const& configFile) {
  23. ifstream file(configFile.c_str());
  24. string line;
  25. string name;
  26. string value;
  27. string inSection;
  28. int posEqual;
  29. while (getline(file,line)) {
  30. if ( !line.length()) continue;
  31. if ( line[0] == '#') continue;
  32. if ( line[0] == ';') continue;
  33. if ( line[0] == '[') {
  34. inSection=line.substr(1,line.find(']')-1);
  35. continue;
  36. }
  37. posEqual=line.find('=');
  38. name = line.substr(0,posEqual);
  39. value = line.substr(posEqual+1);
  40. int index = value.find('r');
  41. if(index != -1)
  42. value = value.substr(0, index);
  43. index = value.find('n');
  44. if(index != -1)
  45. value = value.substr(0, index);
  46. content_[inSection + '/' + name]=value;
  47. }
  48. fileNotFound = (content_.size() == 0);
  49. }
  50. string ConfigFile::Value(string const& section, string const& entry) {
  51. stringNotFound = false;
  52. map<string,string>::const_iterator ci = content_.find(section + '/' + entry);
  53. if (ci == content_.end()) {
  54. stringNotFound = true;
  55. return ""; // does not exist
  56. }
  57. return ci->second;
  58. }