2012-06-27 18:43:34 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
|
|
|
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
|
|
|
|
* *
|
|
|
|
* 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; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* 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 St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#include "i2-compat.h"
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2012-06-29 14:14:51 +02:00
|
|
|
/**
|
|
|
|
* Hint: The reason why we're using "\n" rather than std::endl is because
|
|
|
|
* std::endl also _flushes_ the output stream which severely degrades
|
|
|
|
* performance (see http://gcc.gnu.org/onlinedocs/libstdc++/manual/bk01pt11ch25s02.html).
|
|
|
|
*/
|
|
|
|
|
2012-09-28 14:26:01 +02:00
|
|
|
const String CompatComponent::DefaultStatusPath = Application::GetLocalStateDir() + "/status.dat";
|
|
|
|
const String CompatComponent::DefaultObjectsPath = Application::GetLocalStateDir() + "/objects.cache";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads status path from config
|
|
|
|
* @returns statuspath from config, or static default
|
|
|
|
*/
|
|
|
|
String CompatComponent::GetStatusPath(void) const
|
|
|
|
{
|
2012-10-02 14:44:57 +02:00
|
|
|
Value statuspath = GetConfig()->Get("status_path");
|
2012-09-28 14:26:01 +02:00
|
|
|
if(statuspath.IsEmpty())
|
|
|
|
return DefaultStatusPath;
|
|
|
|
else
|
|
|
|
return statuspath;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads objects path from config
|
|
|
|
* @returns objectspath from config, or static default
|
|
|
|
*/
|
|
|
|
String CompatComponent::GetObjectsPath(void) const
|
|
|
|
{
|
2012-10-02 14:44:57 +02:00
|
|
|
Value objectspath = GetConfig()->Get("objects_path");
|
2012-09-28 14:26:01 +02:00
|
|
|
if(objectspath.IsEmpty())
|
|
|
|
return DefaultObjectsPath;
|
|
|
|
else
|
|
|
|
return objectspath;
|
|
|
|
}
|
|
|
|
|
2012-06-27 18:43:34 +02:00
|
|
|
/**
|
|
|
|
* Starts the component.
|
|
|
|
*/
|
|
|
|
void CompatComponent::Start(void)
|
|
|
|
{
|
|
|
|
m_StatusTimer = boost::make_shared<Timer>();
|
|
|
|
m_StatusTimer->SetInterval(15);
|
|
|
|
m_StatusTimer->OnTimerExpired.connect(boost::bind(&CompatComponent::StatusTimerHandler, this));
|
|
|
|
m_StatusTimer->Start();
|
2012-07-09 16:22:38 +02:00
|
|
|
m_StatusTimer->Reschedule(0);
|
2012-06-27 18:43:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stops the component.
|
|
|
|
*/
|
|
|
|
void CompatComponent::Stop(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-07-27 16:05:02 +02:00
|
|
|
void CompatComponent::DumpHostStatus(ofstream& fp, const Host::Ptr& host)
|
2012-06-27 18:43:34 +02:00
|
|
|
{
|
2012-07-09 13:27:02 +02:00
|
|
|
int state;
|
2012-07-27 16:05:02 +02:00
|
|
|
if (!host->IsReachable())
|
2012-07-09 13:27:02 +02:00
|
|
|
state = 2; /* unreachable */
|
2012-07-27 16:05:02 +02:00
|
|
|
else if (!host->IsUp())
|
2012-07-09 13:27:02 +02:00
|
|
|
state = 1; /* down */
|
|
|
|
else
|
|
|
|
state = 0; /* up */
|
2012-07-09 10:09:53 +02:00
|
|
|
|
2012-06-29 14:14:51 +02:00
|
|
|
fp << "hoststatus {" << "\n"
|
2012-07-27 16:05:02 +02:00
|
|
|
<< "\t" << "host_name=" << host->GetName() << "\n"
|
2012-06-29 14:14:51 +02:00
|
|
|
<< "\t" << "has_been_checked=1" << "\n"
|
|
|
|
<< "\t" << "should_be_scheduled=1" << "\n"
|
|
|
|
<< "\t" << "check_execution_time=0" << "\n"
|
|
|
|
<< "\t" << "check_latency=0" << "\n"
|
2012-07-09 10:09:53 +02:00
|
|
|
<< "\t" << "current_state=" << state << "\n"
|
2012-06-29 14:14:51 +02:00
|
|
|
<< "\t" << "state_type=1" << "\n"
|
2012-08-03 18:17:47 +02:00
|
|
|
<< "\t" << "last_check=" << Utility::GetTime() << "\n"
|
|
|
|
<< "\t" << "next_check=" << Utility::GetTime() << "\n"
|
2012-06-29 14:14:51 +02:00
|
|
|
<< "\t" << "current_attempt=1" << "\n"
|
|
|
|
<< "\t" << "max_attempts=1" << "\n"
|
|
|
|
<< "\t" << "active_checks_enabled=1" << "\n"
|
|
|
|
<< "\t" << "passive_checks_enabled=1" << "\n"
|
2012-08-03 18:17:47 +02:00
|
|
|
<< "\t" << "last_update=" << Utility::GetTime() << "\n"
|
2012-06-29 14:14:51 +02:00
|
|
|
<< "\t" << "}" << "\n"
|
|
|
|
<< "\n";
|
2012-06-27 18:43:34 +02:00
|
|
|
}
|
|
|
|
|
2012-07-27 16:05:02 +02:00
|
|
|
void CompatComponent::DumpHostObject(ofstream& fp, const Host::Ptr& host)
|
2012-06-27 18:43:34 +02:00
|
|
|
{
|
2012-06-29 14:14:51 +02:00
|
|
|
fp << "define host {" << "\n"
|
2012-07-27 16:05:02 +02:00
|
|
|
<< "\t" << "host_name" << "\t" << host->GetName() << "\n"
|
|
|
|
<< "\t" << "alias" << "\t" << host->GetAlias() << "\n"
|
2012-06-29 14:14:51 +02:00
|
|
|
<< "\t" << "check_interval" << "\t" << 1 << "\n"
|
|
|
|
<< "\t" << "retry_interval" << "\t" << 1 << "\n"
|
|
|
|
<< "\t" << "max_check_attempts" << "\t" << 1 << "\n"
|
|
|
|
<< "\t" << "active_checks_enabled" << "\t" << 1 << "\n"
|
2012-07-09 12:44:31 +02:00
|
|
|
<< "\t" << "passive_checks_enabled" << "\t" << 1 << "\n";
|
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
set<String> parents = host->GetParents();
|
2012-07-09 12:44:31 +02:00
|
|
|
|
|
|
|
if (!parents.empty()) {
|
|
|
|
fp << "\t" << "parents" << "\t";
|
|
|
|
DumpStringList(fp, parents);
|
|
|
|
fp << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
fp << "\t" << "}" << "\n"
|
2012-06-29 14:14:51 +02:00
|
|
|
<< "\n";
|
2012-06-27 18:43:34 +02:00
|
|
|
}
|
|
|
|
|
2012-07-27 16:05:02 +02:00
|
|
|
void CompatComponent::DumpServiceStatus(ofstream& fp, const Service::Ptr& service)
|
2012-06-27 18:43:34 +02:00
|
|
|
{
|
2012-08-02 09:38:08 +02:00
|
|
|
String output;
|
|
|
|
String perfdata;
|
2012-07-25 12:59:17 +02:00
|
|
|
double schedule_start = -1, schedule_end = -1;
|
|
|
|
double execution_start = -1, execution_end = -1;
|
2012-08-02 09:38:08 +02:00
|
|
|
|
|
|
|
Dictionary::Ptr cr = service->GetLastCheckResult();
|
|
|
|
if (cr) {
|
|
|
|
output = cr->Get("output");
|
|
|
|
schedule_start = cr->Get("schedule_start");
|
|
|
|
schedule_end = cr->Get("schedule_end");
|
|
|
|
execution_start = cr->Get("execution_start");
|
|
|
|
execution_end = cr->Get("execution_end");
|
|
|
|
perfdata = cr->Get("performance_data_raw");
|
2012-06-27 18:43:34 +02:00
|
|
|
}
|
|
|
|
|
2012-07-25 12:59:17 +02:00
|
|
|
double execution_time = (execution_end - execution_start);
|
|
|
|
double latency = (schedule_end - schedule_start) - execution_time;
|
2012-06-27 23:38:50 +02:00
|
|
|
|
2012-07-27 16:05:02 +02:00
|
|
|
int state = service->GetState();
|
2012-07-02 15:48:49 +02:00
|
|
|
|
2012-07-09 10:09:53 +02:00
|
|
|
if (state > StateUnknown)
|
2012-07-02 15:48:49 +02:00
|
|
|
state = StateUnknown;
|
|
|
|
|
2012-06-29 14:14:51 +02:00
|
|
|
fp << "servicestatus {" << "\n"
|
2012-07-27 16:05:02 +02:00
|
|
|
<< "\t" << "host_name=" << service->GetHost()->GetName() << "\n"
|
|
|
|
<< "\t" << "service_description=" << service->GetAlias() << "\n"
|
|
|
|
<< "\t" << "check_interval=" << service->GetCheckInterval() / 60.0 << "\n"
|
|
|
|
<< "\t" << "retry_interval=" << service->GetRetryInterval() / 60.0 << "\n"
|
2012-08-02 09:38:08 +02:00
|
|
|
<< "\t" << "has_been_checked=" << (service->GetLastCheckResult() ? 1 : 0) << "\n"
|
2012-06-29 14:14:51 +02:00
|
|
|
<< "\t" << "should_be_scheduled=1" << "\n"
|
|
|
|
<< "\t" << "check_execution_time=" << execution_time << "\n"
|
|
|
|
<< "\t" << "check_latency=" << latency << "\n"
|
2012-07-02 15:48:49 +02:00
|
|
|
<< "\t" << "current_state=" << state << "\n"
|
2012-07-27 16:05:02 +02:00
|
|
|
<< "\t" << "state_type=" << service->GetStateType() << "\n"
|
2012-06-29 14:14:51 +02:00
|
|
|
<< "\t" << "plugin_output=" << output << "\n"
|
|
|
|
<< "\t" << "performance_data=" << perfdata << "\n"
|
|
|
|
<< "\t" << "last_check=" << schedule_end << "\n"
|
2012-07-27 16:05:02 +02:00
|
|
|
<< "\t" << "next_check=" << service->GetNextCheck() << "\n"
|
|
|
|
<< "\t" << "current_attempt=" << service->GetCurrentCheckAttempt() << "\n"
|
|
|
|
<< "\t" << "max_attempts=" << service->GetMaxCheckAttempts() << "\n"
|
|
|
|
<< "\t" << "last_state_change=" << service->GetLastStateChange() << "\n"
|
|
|
|
<< "\t" << "last_hard_state_change=" << service->GetLastHardStateChange() << "\n"
|
2012-06-29 14:14:51 +02:00
|
|
|
<< "\t" << "last_update=" << time(NULL) << "\n"
|
|
|
|
<< "\t" << "active_checks_enabled=1" << "\n"
|
|
|
|
<< "\t" << "passive_checks_enabled=1" << "\n"
|
|
|
|
<< "\t" << "}" << "\n"
|
|
|
|
<< "\n";
|
2012-06-27 18:43:34 +02:00
|
|
|
}
|
|
|
|
|
2012-07-27 16:05:02 +02:00
|
|
|
void CompatComponent::DumpServiceObject(ofstream& fp, const Service::Ptr& service)
|
2012-06-27 18:43:34 +02:00
|
|
|
{
|
2012-06-29 14:14:51 +02:00
|
|
|
fp << "define service {" << "\n"
|
2012-07-27 16:05:02 +02:00
|
|
|
<< "\t" << "host_name" << "\t" << service->GetHost()->GetName() << "\n"
|
|
|
|
<< "\t" << "service_description" << "\t" << service->GetAlias() << "\n"
|
2012-06-29 14:14:51 +02:00
|
|
|
<< "\t" << "check_command" << "\t" << "check_i2" << "\n"
|
2012-07-27 16:05:02 +02:00
|
|
|
<< "\t" << "check_interval" << "\t" << service->GetCheckInterval() / 60.0 << "\n"
|
|
|
|
<< "\t" << "retry_interval" << "\t" << service->GetRetryInterval() / 60.0 << "\n"
|
2012-06-29 14:14:51 +02:00
|
|
|
<< "\t" << "max_check_attempts" << "\t" << 1 << "\n"
|
|
|
|
<< "\t" << "active_checks_enabled" << "\t" << 1 << "\n"
|
|
|
|
<< "\t" << "passive_checks_enabled" << "\t" << 1 << "\n"
|
|
|
|
<< "\t" << "}" << "\n"
|
|
|
|
<< "\n";
|
2012-06-27 18:43:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Periodically writes the status.dat and objects.cache files.
|
|
|
|
*/
|
|
|
|
void CompatComponent::StatusTimerHandler(void)
|
|
|
|
{
|
2012-07-18 11:15:39 +02:00
|
|
|
Logger::Write(LogInformation, "compat", "Writing compat status information");
|
|
|
|
|
2012-09-28 14:26:01 +02:00
|
|
|
String statuspath = GetStatusPath();
|
|
|
|
String objectspath = GetObjectsPath();
|
|
|
|
String statuspathtmp = statuspath + ".tmp"; /* XXX make this a global definition */
|
|
|
|
String objectspathtmp = objectspath + ".tmp";
|
|
|
|
|
2012-06-27 18:43:34 +02:00
|
|
|
ofstream statusfp;
|
2012-09-28 14:26:01 +02:00
|
|
|
statusfp.open(statuspathtmp.CStr(), ofstream::out | ofstream::trunc);
|
2012-06-27 18:43:34 +02:00
|
|
|
|
2012-07-25 12:59:17 +02:00
|
|
|
statusfp << std::fixed;
|
|
|
|
|
2012-06-29 14:14:51 +02:00
|
|
|
statusfp << "# Icinga status file" << "\n"
|
|
|
|
<< "# This file is auto-generated. Do not modify this file." << "\n"
|
|
|
|
<< "\n";
|
|
|
|
|
|
|
|
statusfp << "info {" << "\n"
|
2012-08-03 18:17:47 +02:00
|
|
|
<< "\t" << "created=" << Utility::GetTime() << "\n"
|
2012-06-29 14:14:51 +02:00
|
|
|
<< "\t" << "version=2.0" << "\n"
|
|
|
|
<< "\t" << "}" << "\n"
|
|
|
|
<< "\n";
|
|
|
|
|
|
|
|
statusfp << "programstatus {" << "\n"
|
2012-09-19 14:10:34 +02:00
|
|
|
<< "icinga_pid=" << Utility::GetPid() << "\n"
|
2012-06-29 14:14:51 +02:00
|
|
|
<< "\t" << "daemon_mode=1" << "\n"
|
|
|
|
<< "\t" << "program_start=" << IcingaApplication::GetInstance()->GetStartTime() << "\n"
|
|
|
|
<< "\t" << "active_service_checks_enabled=1" << "\n"
|
|
|
|
<< "\t" << "passive_service_checks_enabled=1" << "\n"
|
|
|
|
<< "\t" << "active_host_checks_enabled=0" << "\n"
|
|
|
|
<< "\t" << "passive_host_checks_enabled=0" << "\n"
|
2012-07-02 15:49:36 +02:00
|
|
|
<< "\t" << "check_service_freshness=0" << "\n"
|
2012-06-29 14:14:51 +02:00
|
|
|
<< "\t" << "check_host_freshness=0" << "\n"
|
|
|
|
<< "\t" << "enable_flap_detection=1" << "\n"
|
|
|
|
<< "\t" << "enable_failure_prediction=0" << "\n"
|
|
|
|
<< "\t" << "active_scheduled_service_check_stats=" << CIB::GetTaskStatistics(60) << "," << CIB::GetTaskStatistics(5 * 60) << "," << CIB::GetTaskStatistics(15 * 60) << "\n"
|
|
|
|
<< "\t" << "}" << "\n"
|
|
|
|
<< "\n";
|
2012-06-27 23:38:50 +02:00
|
|
|
|
2012-06-27 18:43:34 +02:00
|
|
|
ofstream objectfp;
|
2012-09-28 14:26:01 +02:00
|
|
|
objectfp.open(objectspathtmp.CStr(), ofstream::out | ofstream::trunc);
|
2012-06-27 18:43:34 +02:00
|
|
|
|
2012-07-25 12:59:17 +02:00
|
|
|
objectfp << std::fixed;
|
|
|
|
|
2012-09-25 11:38:40 +02:00
|
|
|
objectfp << "# Icinga objects cache file" << "\n"
|
2012-06-29 14:14:51 +02:00
|
|
|
<< "# This file is auto-generated. Do not modify this file." << "\n"
|
|
|
|
<< "\n";
|
2012-06-27 18:43:34 +02:00
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
map<String, vector<String> > hostgroups;
|
2012-06-27 18:43:34 +02:00
|
|
|
|
2012-07-30 10:17:29 +02:00
|
|
|
DynamicObject::Ptr object;
|
|
|
|
BOOST_FOREACH(tie(tuples::ignore, object), DynamicObject::GetObjects("Host")) {
|
2012-07-27 16:05:02 +02:00
|
|
|
const Host::Ptr& host = static_pointer_cast<Host>(object);
|
2012-06-27 18:43:34 +02:00
|
|
|
|
2012-06-30 13:39:55 +02:00
|
|
|
Dictionary::Ptr dict;
|
2012-07-27 16:05:02 +02:00
|
|
|
dict = host->GetGroups();
|
2012-06-27 18:43:34 +02:00
|
|
|
|
2012-06-30 13:39:55 +02:00
|
|
|
if (dict) {
|
2012-08-02 09:38:08 +02:00
|
|
|
Value hostgroup;
|
2012-07-17 19:19:03 +02:00
|
|
|
BOOST_FOREACH(tie(tuples::ignore, hostgroup), dict) {
|
2012-07-27 16:05:02 +02:00
|
|
|
hostgroups[hostgroup].push_back(host->GetName());
|
2012-07-16 22:00:50 +02:00
|
|
|
}
|
2012-06-27 18:43:34 +02:00
|
|
|
}
|
2012-06-30 13:39:55 +02:00
|
|
|
|
|
|
|
DumpHostStatus(statusfp, host);
|
|
|
|
DumpHostObject(objectfp, host);
|
2012-06-27 18:43:34 +02:00
|
|
|
}
|
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
pair<String, vector<String > > hgt;
|
2012-07-16 22:00:50 +02:00
|
|
|
BOOST_FOREACH(hgt, hostgroups) {
|
2012-08-02 09:38:08 +02:00
|
|
|
const String& name = hgt.first;
|
|
|
|
const vector<String>& hosts = hgt.second;
|
2012-07-16 22:00:50 +02:00
|
|
|
|
2012-06-30 13:39:55 +02:00
|
|
|
objectfp << "define hostgroup {" << "\n"
|
2012-07-16 22:00:50 +02:00
|
|
|
<< "\t" << "hostgroup_name" << "\t" << name << "\n";
|
2012-06-27 18:43:34 +02:00
|
|
|
|
2012-07-16 22:00:50 +02:00
|
|
|
if (HostGroup::Exists(name)) {
|
2012-07-27 16:05:02 +02:00
|
|
|
HostGroup::Ptr hg = HostGroup::GetByName(name);
|
|
|
|
objectfp << "\t" << "alias" << "\t" << hg->GetAlias() << "\n"
|
|
|
|
<< "\t" << "notes_url" << "\t" << hg->GetNotesUrl() << "\n"
|
|
|
|
<< "\t" << "action_url" << "\t" << hg->GetActionUrl() << "\n";
|
2012-06-30 13:39:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
objectfp << "\t" << "members" << "\t";
|
|
|
|
|
2012-07-16 22:00:50 +02:00
|
|
|
DumpStringList(objectfp, hosts);
|
2012-06-30 13:39:55 +02:00
|
|
|
|
|
|
|
objectfp << "\n"
|
|
|
|
<< "}" << "\n";
|
2012-06-27 18:43:34 +02:00
|
|
|
}
|
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
map<String, vector<Service::Ptr> > servicegroups;
|
2012-06-30 13:39:55 +02:00
|
|
|
|
2012-07-30 10:17:29 +02:00
|
|
|
BOOST_FOREACH(tie(tuples::ignore, object), DynamicObject::GetObjects("Service")) {
|
2012-07-27 16:05:02 +02:00
|
|
|
Service::Ptr service = static_pointer_cast<Service>(object);
|
2012-06-30 13:39:55 +02:00
|
|
|
|
|
|
|
Dictionary::Ptr dict;
|
|
|
|
|
2012-07-27 16:05:02 +02:00
|
|
|
dict = service->GetGroups();
|
2012-06-30 13:39:55 +02:00
|
|
|
|
|
|
|
if (dict) {
|
2012-08-02 09:38:08 +02:00
|
|
|
Value servicegroup;
|
2012-07-17 19:19:03 +02:00
|
|
|
BOOST_FOREACH(tie(tuples::ignore, servicegroup), dict) {
|
2012-07-16 22:00:50 +02:00
|
|
|
servicegroups[servicegroup].push_back(service);
|
|
|
|
}
|
2012-06-30 13:39:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DumpServiceStatus(statusfp, service);
|
|
|
|
DumpServiceObject(objectfp, service);
|
|
|
|
}
|
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
pair<String, vector<Service::Ptr> > sgt;
|
2012-07-16 22:00:50 +02:00
|
|
|
BOOST_FOREACH(sgt, servicegroups) {
|
2012-08-02 09:38:08 +02:00
|
|
|
const String& name = sgt.first;
|
2012-07-27 16:05:02 +02:00
|
|
|
const vector<Service::Ptr>& services = sgt.second;
|
2012-07-16 22:00:50 +02:00
|
|
|
|
2012-06-30 13:39:55 +02:00
|
|
|
objectfp << "define servicegroup {" << "\n"
|
2012-07-16 22:00:50 +02:00
|
|
|
<< "\t" << "servicegroup_name" << "\t" << name << "\n";
|
2012-06-30 13:39:55 +02:00
|
|
|
|
2012-07-16 22:00:50 +02:00
|
|
|
if (ServiceGroup::Exists(name)) {
|
2012-07-27 16:05:02 +02:00
|
|
|
ServiceGroup::Ptr sg = ServiceGroup::GetByName(name);
|
|
|
|
objectfp << "\t" << "alias" << "\t" << sg->GetAlias() << "\n"
|
|
|
|
<< "\t" << "notes_url" << "\t" << sg->GetNotesUrl() << "\n"
|
|
|
|
<< "\t" << "action_url" << "\t" << sg->GetActionUrl() << "\n";
|
2012-06-30 13:39:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
objectfp << "\t" << "members" << "\t";
|
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
vector<String> sglist;
|
2012-07-27 16:05:02 +02:00
|
|
|
vector<Service::Ptr>::iterator vt;
|
2012-06-30 13:39:55 +02:00
|
|
|
|
2012-07-27 16:05:02 +02:00
|
|
|
BOOST_FOREACH(const Service::Ptr& service, services) {
|
|
|
|
sglist.push_back(service->GetHost()->GetName());
|
|
|
|
sglist.push_back(service->GetAlias());
|
2012-06-30 13:39:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DumpStringList(objectfp, sglist);
|
|
|
|
|
|
|
|
objectfp << "\n"
|
|
|
|
<< "}" << "\n";
|
2012-06-27 18:43:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
statusfp.close();
|
2012-09-28 14:26:01 +02:00
|
|
|
rename(statuspathtmp.CStr(), statuspath.CStr());
|
2012-06-27 18:43:34 +02:00
|
|
|
|
|
|
|
objectfp.close();
|
2012-09-28 14:26:01 +02:00
|
|
|
rename(objectspathtmp.CStr(), objectspath.CStr());
|
2012-06-27 18:43:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
EXPORT_COMPONENT(compat, CompatComponent);
|