MgmtSrvrConfig.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include <signaldata/TestOrd.hpp>
  14. #include <OutputStream.hpp>
  15. #include "MgmtSrvr.hpp"
  16. #include "SignalQueue.hpp"
  17. #include <InitConfigFileParser.hpp>
  18. #include <ConfigRetriever.hpp>
  19. #include <ndb_version.h>
  20. /**
  21.  * Save a configuration to the running configuration file
  22.  */
  23. int
  24. MgmtSrvr::saveConfig(const Config *conf) {
  25.   BaseString newfile;
  26.   newfile.appfmt("%s.new", m_configFilename.c_str());
  27.   
  28.   /* Open and write to the new config file */
  29.   FILE *f = fopen(newfile.c_str(), "w");
  30.   if(f == NULL) {
  31.     /** @todo Send something apropriate to the log */
  32.     return -1;
  33.   }
  34.   FileOutputStream stream(f);
  35.   conf->printConfigFile(stream);
  36.   fclose(f);
  37.   /* Rename file to real name */
  38.   rename(newfile.c_str(), m_configFilename.c_str());
  39.   return 0;
  40. }
  41. Config *
  42. MgmtSrvr::readConfig() {
  43.   Config *conf;
  44.   InitConfigFileParser parser;
  45.   conf = parser.parseConfig(m_configFilename.c_str());
  46.   return conf;
  47. }
  48. Config *
  49. MgmtSrvr::fetchConfig() {
  50.   struct ndb_mgm_configuration * tmp = m_config_retriever->getConfig();
  51.   if(tmp != 0){
  52.     Config * conf = new Config();
  53.     conf->m_configValues = tmp;
  54.     return conf;
  55.   }
  56.   return 0;
  57. }