Blame view

sip/ConfigParser.hpp 1.1 KB
c887a0f0   Hu Chunming   提交初成版代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
  #ifndef __CONFIG_PARSER_H__
  #define __CONFIG_PARSER_H__
  
  #include <fstream>
  #include "./Message/CatalogParser.h"
  #include "sip_header.h"
  #include "./Utils/logger.hpp"
  
  
  class ConfigParser
  {
  public:
      static ConfigParser* getInstance(){
  		static ConfigParser* singleton = nullptr;
  		if (singleton == nullptr){
  			singleton = new ConfigParser();
  		}
  		return singleton;
  	}
  
  public:
      ConfigParser(/* args */);
      ~ConfigParser();
  
      bool init();
  
      ServerInfo getServerCfg();
  
  private:
      ServerInfo mInfo;
  
  };
  
  ConfigParser::ConfigParser(/* args */)
  {
  }
  
  ConfigParser::~ConfigParser()
  {
  }
  
  bool ConfigParser::init() {
      std::ifstream cfgFile("./sip_server_cfg.xml");
      if(cfgFile.is_open()) {
          string strConfig;
          string str;
          while(cfgFile >> str)
          {
              strConfig += str;
          }
          CCatalogParser catPaser;
          mInfo = catPaser.DecodeServerConfig(strConfig.c_str());
      } else {
          LOG_ERROR("read config file failed!");
          return false;
      }
      cfgFile.close();
  
      return true;
  }
  
  ServerInfo ConfigParser::getServerCfg() {
      return mInfo;
  }
  
  #endif