blob: 090d8609fa57d75918207006802faae862d90dc4 (
plain)
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
67
68
69
70
71
72
73
74
75
|
/* Copyright (C) 2003 MySQL AB
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */
#include <signaldata/TestOrd.hpp>
#include <OutputStream.hpp>
#include "MgmtSrvr.hpp"
#include "SignalQueue.hpp"
#include <InitConfigFileParser.hpp>
#include <ConfigRetriever.hpp>
#include <ndb_version.h>
/**
* Save a configuration to the running configuration file
*/
int
MgmtSrvr::saveConfig(const Config *conf) {
BaseString newfile;
newfile.appfmt("%s.new", m_configFilename.c_str());
/* Open and write to the new config file */
FILE *f = fopen(newfile.c_str(), "w");
if(f == NULL) {
/** @todo Send something apropriate to the log */
return -1;
}
FileOutputStream stream(f);
conf->printConfigFile(stream);
fclose(f);
/* Rename file to real name */
rename(newfile.c_str(), m_configFilename.c_str());
return 0;
}
Config *
MgmtSrvr::readConfig() {
Config *conf;
InitConfigFileParser parser;
if (m_configFilename.length())
{
conf = parser.parseConfig(m_configFilename.c_str());
}
else
{
ndbout_c("Reading cluster configuration using my.cnf");
conf = parser.parse_mycnf();
}
return conf;
}
Config *
MgmtSrvr::fetchConfig() {
struct ndb_mgm_configuration * tmp = m_config_retriever->getConfig();
if(tmp != 0){
Config * conf = new Config();
conf->m_configValues = tmp;
return conf;
}
return 0;
}
|