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. #include <fstream>
  22. using namespace std;
  23. ConfigFile::ConfigFile(mystring const& configFile) {
  24. #ifdef UNICODE
  25. typedef std::wifstream myifstream;
  26. #else
  27. typedef std::ifstream myifstream;
  28. #endif
  29. myifstream file(configFile.c_str());
  30. mystring line;
  31. mystring name;
  32. mystring value;
  33. mystring inSection;
  34. int posEqual;
  35. while (getline(file,line)) {
  36. if ( !line.length()) continue;
  37. if ( line[0] == '#') continue;
  38. if ( line[0] == ';') continue;
  39. if ( line[0] == '[') {
  40. inSection=line.substr(1,line.find(']')-1);
  41. continue;
  42. }
  43. posEqual=line.find('=');
  44. name = line.substr(0,posEqual);
  45. value = line.substr(posEqual+1);
  46. int index = value.find('r');
  47. if(index != -1)
  48. value = value.substr(0, index);
  49. index = value.find('n');
  50. if(index != -1)
  51. value = value.substr(0, index);
  52. ToLower(name);
  53. ToLower(value);
  54. content_[inSection + '/' + name]=value;
  55. }
  56. fileNotFound = (content_.empty());
  57. }
  58. mystring ConfigFile::Value(mystring const& section, mystring const& entry) {
  59. stringNotFound = false;
  60. mystring tmpSection = section;
  61. mystring tmpentry = entry;
  62. ToLower(tmpSection);
  63. ToLower(tmpentry);
  64. map<mystring,mystring>::const_iterator ci = content_.find(tmpSection + _T('/') + tmpentry);
  65. if (ci == content_.end()) {
  66. stringNotFound = true;
  67. return ""; // does not exist
  68. }
  69. return ci->second;
  70. }
  71. void ConfigFile::ToLower(mystring& str) {
  72. _tcscpy(tmpStr, str.data());
  73. _tcslwr(tmpStr);
  74. str = tmpStr;
  75. }