2012-05-10 12:06:41 +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 *
|
2012-05-11 13:33:57 +02:00
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
2012-05-10 12:06:41 +02:00
|
|
|
******************************************************************************/
|
|
|
|
|
2012-04-13 13:16:54 +02:00
|
|
|
#include "i2-configfile.h"
|
2012-03-31 16:26:51 +02:00
|
|
|
|
2012-06-15 19:32:41 +02:00
|
|
|
using std::ifstream;
|
|
|
|
|
2012-03-31 16:26:51 +02:00
|
|
|
using namespace icinga;
|
|
|
|
|
2012-04-19 11:29:36 +02:00
|
|
|
string ConfigFileComponent::GetName(void) const
|
2012-03-31 16:26:51 +02:00
|
|
|
{
|
|
|
|
return "configfilecomponent";
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigFileComponent::Start(void)
|
|
|
|
{
|
|
|
|
ifstream fp;
|
2012-06-15 19:32:41 +02:00
|
|
|
FIFO::Ptr fifo = boost::make_shared<FIFO>();
|
2012-03-31 16:26:51 +02:00
|
|
|
|
2012-04-01 19:32:41 +02:00
|
|
|
string filename;
|
2012-05-16 11:30:54 +02:00
|
|
|
if (!GetConfig()->GetProperty("configFilename", &filename))
|
2012-05-26 21:30:04 +02:00
|
|
|
throw logic_error("Missing 'configFilename' property");
|
2012-04-01 19:32:41 +02:00
|
|
|
|
2012-06-12 09:36:18 +02:00
|
|
|
vector<ConfigItem::Ptr> configItems = ConfigCompiler::CompileFile(filename);
|
2012-07-06 11:35:20 +02:00
|
|
|
|
2012-07-10 12:21:19 +02:00
|
|
|
Logger::Write(LogInformation, "configfile", "Executing config items...");
|
2012-07-06 11:35:20 +02:00
|
|
|
|
|
|
|
vector<ConfigItem::Ptr>::iterator it;
|
|
|
|
for (it = configItems.begin(); it != configItems.end(); it++) {
|
|
|
|
ConfigItem::Ptr item = *it;
|
|
|
|
item->Commit();
|
|
|
|
}
|
2012-03-31 16:26:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigFileComponent::Stop(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-05-12 16:12:26 +02:00
|
|
|
EXPORT_COMPONENT(configfile, ConfigFileComponent);
|