2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-05-10 06:06:41 -04:00
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "icinga/icingaapplication.hpp"
|
2018-01-18 07:50:38 -05:00
|
|
|
#include "icinga/icingaapplication-ti.cpp"
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "icinga/cib.hpp"
|
2015-09-22 12:18:29 -04:00
|
|
|
#include "icinga/macroprocessor.hpp"
|
2015-08-17 13:31:39 -04:00
|
|
|
#include "config/configcompiler.hpp"
|
2015-10-26 06:05:24 -04:00
|
|
|
#include "base/configwriter.hpp"
|
2015-08-15 14:28:05 -04:00
|
|
|
#include "base/configtype.hpp"
|
2014-10-19 08:21:12 -04:00
|
|
|
#include "base/logger.hpp"
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/objectlock.hpp"
|
|
|
|
|
#include "base/convert.hpp"
|
|
|
|
|
#include "base/debug.hpp"
|
|
|
|
|
#include "base/utility.hpp"
|
|
|
|
|
#include "base/timer.hpp"
|
2014-12-14 05:33:45 -05:00
|
|
|
#include "base/scriptglobal.hpp"
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/initialize.hpp"
|
|
|
|
|
#include "base/statsfunction.hpp"
|
2016-08-28 11:03:08 -04:00
|
|
|
#include "base/loader.hpp"
|
2018-01-04 12:24:45 -05:00
|
|
|
#include <fstream>
|
2012-03-31 10:29:53 -04:00
|
|
|
|
2012-12-04 02:42:24 -05:00
|
|
|
using namespace icinga;
|
|
|
|
|
|
2013-03-18 06:02:18 -04:00
|
|
|
static Timer::Ptr l_RetentionTimer;
|
|
|
|
|
|
2013-03-01 06:07:52 -05:00
|
|
|
REGISTER_TYPE(IcingaApplication);
|
2018-09-04 09:17:34 -04:00
|
|
|
/* Ensure that the priority is lower than the basic System namespace initialization in scriptframe.cpp. */
|
2018-08-07 07:55:41 -04:00
|
|
|
INITIALIZE_ONCE_WITH_PRIORITY(&IcingaApplication::StaticInitialize, 50);
|
2012-12-04 02:42:24 -05:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
void IcingaApplication::StaticInitialize()
|
2013-10-08 05:57:35 -04:00
|
|
|
{
|
2019-04-15 10:56:30 -04:00
|
|
|
/* Pre-fill global constants, can be overridden with user input later in icinga-app/icinga.cpp. */
|
2014-06-04 05:29:29 -04:00
|
|
|
String node_name = Utility::GetFQDN();
|
|
|
|
|
|
|
|
|
|
if (node_name.IsEmpty()) {
|
|
|
|
|
Log(LogNotice, "IcingaApplication", "No FQDN available. Trying Hostname.");
|
|
|
|
|
node_name = Utility::GetHostName();
|
|
|
|
|
|
|
|
|
|
if (node_name.IsEmpty()) {
|
|
|
|
|
Log(LogWarning, "IcingaApplication", "No FQDN nor Hostname available. Setting Nodename to 'localhost'.");
|
|
|
|
|
node_name = "localhost";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-14 05:33:45 -05:00
|
|
|
ScriptGlobal::Set("NodeName", node_name);
|
2015-09-22 12:18:29 -04:00
|
|
|
|
2019-04-15 10:56:30 -04:00
|
|
|
ScriptGlobal::Set("ReloadTimeout", 300);
|
|
|
|
|
ScriptGlobal::Set("MaxConcurrentChecks", 512);
|
|
|
|
|
|
2018-09-04 09:17:34 -04:00
|
|
|
Namespace::Ptr systemNS = ScriptGlobal::Get("System");
|
|
|
|
|
/* Ensure that the System namespace is already initialized. Otherwise this is a programming error. */
|
|
|
|
|
VERIFY(systemNS);
|
2018-04-06 07:25:48 -04:00
|
|
|
|
2018-09-04 09:17:34 -04:00
|
|
|
systemNS->Set("ApplicationType", "IcingaApplication", true);
|
|
|
|
|
systemNS->Set("ApplicationVersion", Application::GetAppVersion(), true);
|
2018-08-07 07:55:41 -04:00
|
|
|
|
|
|
|
|
Namespace::Ptr globalNS = ScriptGlobal::GetGlobals();
|
2018-09-04 09:17:34 -04:00
|
|
|
VERIFY(globalNS);
|
2018-08-07 07:55:41 -04:00
|
|
|
|
|
|
|
|
auto icingaNSBehavior = new ConstNamespaceBehavior();
|
|
|
|
|
icingaNSBehavior->Freeze();
|
|
|
|
|
Namespace::Ptr icingaNS = new Namespace(icingaNSBehavior);
|
2019-07-26 08:45:11 -04:00
|
|
|
globalNS->SetAttribute("Icinga", new ConstEmbeddedNamespaceValue(icingaNS));
|
2013-10-08 05:57:35 -04:00
|
|
|
}
|
|
|
|
|
|
2015-09-21 05:44:58 -04:00
|
|
|
REGISTER_STATSFUNCTION(IcingaApplication, &IcingaApplication::StatsFunc);
|
2014-02-17 10:34:18 -05:00
|
|
|
|
2015-02-13 05:28:43 -05:00
|
|
|
void IcingaApplication::StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata)
|
2014-02-17 10:34:18 -05:00
|
|
|
{
|
2018-01-11 05:17:38 -05:00
|
|
|
DictionaryData nodes;
|
2014-02-18 04:53:44 -05:00
|
|
|
|
2016-08-25 00:19:44 -04:00
|
|
|
for (const IcingaApplication::Ptr& icingaapplication : ConfigType::GetObjectsByType<IcingaApplication>()) {
|
2018-01-11 05:17:38 -05:00
|
|
|
nodes.emplace_back(icingaapplication->GetName(), new Dictionary({
|
|
|
|
|
{ "node_name", icingaapplication->GetNodeName() },
|
|
|
|
|
{ "enable_notifications", icingaapplication->GetEnableNotifications() },
|
|
|
|
|
{ "enable_event_handlers", icingaapplication->GetEnableEventHandlers() },
|
|
|
|
|
{ "enable_flapping", icingaapplication->GetEnableFlapping() },
|
|
|
|
|
{ "enable_host_checks", icingaapplication->GetEnableHostChecks() },
|
|
|
|
|
{ "enable_service_checks", icingaapplication->GetEnableServiceChecks() },
|
|
|
|
|
{ "enable_perfdata", icingaapplication->GetEnablePerfdata() },
|
2018-08-10 07:01:53 -04:00
|
|
|
{ "environment", icingaapplication->GetEnvironment() },
|
2018-01-11 05:17:38 -05:00
|
|
|
{ "pid", Utility::GetPid() },
|
|
|
|
|
{ "program_start", Application::GetStartTime() },
|
2018-08-02 08:09:21 -04:00
|
|
|
{ "version", Application::GetAppVersion() }
|
2018-01-11 05:17:38 -05:00
|
|
|
}));
|
2014-02-18 04:53:44 -05:00
|
|
|
}
|
|
|
|
|
|
2018-01-11 05:17:38 -05:00
|
|
|
status->Set("icingaapplication", new Dictionary(std::move(nodes)));
|
2014-02-17 10:34:18 -05:00
|
|
|
}
|
|
|
|
|
|
2012-05-15 10:24:04 -04:00
|
|
|
/**
|
|
|
|
|
* The entry point for the Icinga application.
|
|
|
|
|
*
|
|
|
|
|
* @returns An exit status.
|
|
|
|
|
*/
|
2018-01-03 22:25:35 -05:00
|
|
|
int IcingaApplication::Main()
|
2012-03-31 10:29:53 -04:00
|
|
|
{
|
2014-05-28 07:45:45 -04:00
|
|
|
Log(LogDebug, "IcingaApplication", "In IcingaApplication::Main()");
|
2012-04-01 14:04:30 -04:00
|
|
|
|
2012-08-04 21:10:53 -04:00
|
|
|
/* periodically dump the program state */
|
2014-11-08 15:17:16 -05:00
|
|
|
l_RetentionTimer = new Timer();
|
2013-03-18 06:02:18 -04:00
|
|
|
l_RetentionTimer->SetInterval(300);
|
2017-11-21 05:52:55 -05:00
|
|
|
l_RetentionTimer->OnTimerExpired.connect(std::bind(&IcingaApplication::DumpProgramState, this));
|
2013-03-18 06:02:18 -04:00
|
|
|
l_RetentionTimer->Start();
|
2012-08-04 21:10:53 -04:00
|
|
|
|
2012-03-31 10:29:53 -04:00
|
|
|
RunEventLoop();
|
|
|
|
|
|
2014-05-28 07:45:45 -04:00
|
|
|
Log(LogInformation, "IcingaApplication", "Icinga has shut down.");
|
2012-07-24 09:38:19 -04:00
|
|
|
|
2012-04-02 07:09:33 -04:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
void IcingaApplication::OnShutdown()
|
2013-02-23 19:10:34 -05:00
|
|
|
{
|
2013-03-02 03:07:47 -05:00
|
|
|
{
|
|
|
|
|
ObjectLock olock(this);
|
2013-03-18 06:02:18 -04:00
|
|
|
l_RetentionTimer->Stop();
|
2013-03-02 03:07:47 -05:00
|
|
|
}
|
2013-02-23 19:10:34 -05:00
|
|
|
|
|
|
|
|
DumpProgramState();
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-22 10:47:41 -05:00
|
|
|
static void PersistModAttrHelper(std::fstream& fp, ConfigObject::Ptr& previousObject, const ConfigObject::Ptr& object, const String& attr, const Value& value)
|
2015-08-12 03:52:29 -04:00
|
|
|
{
|
|
|
|
|
if (object != previousObject) {
|
2015-08-20 10:43:03 -04:00
|
|
|
if (previousObject) {
|
|
|
|
|
ConfigWriter::EmitRaw(fp, "\tobj.version = ");
|
|
|
|
|
ConfigWriter::EmitValue(fp, 0, previousObject->GetVersion());
|
|
|
|
|
ConfigWriter::EmitRaw(fp, "\n}\n\n");
|
|
|
|
|
}
|
2015-08-12 03:52:29 -04:00
|
|
|
|
2015-08-20 10:43:03 -04:00
|
|
|
ConfigWriter::EmitRaw(fp, "var obj = ");
|
2015-08-12 03:52:29 -04:00
|
|
|
|
2018-01-11 05:17:38 -05:00
|
|
|
Array::Ptr args1 = new Array({
|
|
|
|
|
object->GetReflectionType()->GetName(),
|
|
|
|
|
object->GetName()
|
|
|
|
|
});
|
2015-08-20 10:43:03 -04:00
|
|
|
ConfigWriter::EmitFunctionCall(fp, "get_object", args1);
|
2015-08-12 08:15:01 -04:00
|
|
|
|
2015-08-20 10:43:03 -04:00
|
|
|
ConfigWriter::EmitRaw(fp, "\nif (obj) {\n");
|
2015-08-12 03:52:29 -04:00
|
|
|
}
|
|
|
|
|
|
2015-08-20 10:43:03 -04:00
|
|
|
ConfigWriter::EmitRaw(fp, "\tobj.");
|
2015-08-12 03:52:29 -04:00
|
|
|
|
2018-01-11 05:17:38 -05:00
|
|
|
Array::Ptr args2 = new Array({
|
|
|
|
|
attr,
|
|
|
|
|
value
|
|
|
|
|
});
|
2015-08-20 10:43:03 -04:00
|
|
|
ConfigWriter::EmitFunctionCall(fp, "modify_attribute", args2);
|
2015-08-12 03:52:29 -04:00
|
|
|
|
2015-08-20 10:43:03 -04:00
|
|
|
ConfigWriter::EmitRaw(fp, "\n");
|
2015-08-12 03:52:29 -04:00
|
|
|
|
|
|
|
|
previousObject = object;
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
void IcingaApplication::DumpProgramState()
|
2013-02-23 19:10:34 -05:00
|
|
|
{
|
2018-08-09 09:37:23 -04:00
|
|
|
ConfigObject::DumpObjects(Configuration::StatePath);
|
2015-09-29 12:40:04 -04:00
|
|
|
DumpModifiedAttributes();
|
|
|
|
|
}
|
2015-08-12 03:52:29 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
void IcingaApplication::DumpModifiedAttributes()
|
2015-09-29 12:40:04 -04:00
|
|
|
{
|
2018-08-09 09:37:23 -04:00
|
|
|
String path = Configuration::ModAttrPath;
|
2015-09-29 12:40:04 -04:00
|
|
|
|
2016-02-22 10:47:41 -05:00
|
|
|
std::fstream fp;
|
2016-02-24 07:55:25 -05:00
|
|
|
String tempFilename = Utility::CreateTempFile(path + ".XXXXXX", 0644, fp);
|
2016-08-09 04:59:08 -04:00
|
|
|
fp.exceptions(std::ofstream::failbit | std::ofstream::badbit);
|
2015-09-29 12:40:04 -04:00
|
|
|
|
2015-08-15 14:28:05 -04:00
|
|
|
ConfigObject::Ptr previousObject;
|
2017-11-23 00:51:48 -05:00
|
|
|
ConfigObject::DumpModifiedAttributes(std::bind(&PersistModAttrHelper, std::ref(fp), std::ref(previousObject), _1, _2, _3));
|
2015-08-12 03:52:29 -04:00
|
|
|
|
2015-08-20 10:43:03 -04:00
|
|
|
if (previousObject) {
|
|
|
|
|
ConfigWriter::EmitRaw(fp, "\tobj.version = ");
|
|
|
|
|
ConfigWriter::EmitValue(fp, 0, previousObject->GetVersion());
|
|
|
|
|
ConfigWriter::EmitRaw(fp, "\n}\n");
|
|
|
|
|
}
|
2015-09-29 12:40:04 -04:00
|
|
|
|
|
|
|
|
fp.close();
|
|
|
|
|
|
2019-04-10 07:44:13 -04:00
|
|
|
Utility::RenameFile(tempFilename, path);
|
2012-07-24 07:13:02 -04:00
|
|
|
}
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
IcingaApplication::Ptr IcingaApplication::GetInstance()
|
2012-06-27 12:43:34 -04:00
|
|
|
{
|
|
|
|
|
return static_pointer_cast<IcingaApplication>(Application::GetInstance());
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-26 14:43:42 -05:00
|
|
|
bool IcingaApplication::ResolveMacro(const String& macro, const CheckResult::Ptr&, Value *result) const
|
2013-02-23 19:10:34 -05:00
|
|
|
{
|
2014-04-08 07:23:24 -04:00
|
|
|
double now = Utility::GetTime();
|
|
|
|
|
|
|
|
|
|
if (macro == "timet") {
|
2016-06-21 02:23:31 -04:00
|
|
|
*result = static_cast<long>(now);
|
2014-04-08 07:23:24 -04:00
|
|
|
return true;
|
|
|
|
|
} else if (macro == "long_date_time") {
|
|
|
|
|
*result = Utility::FormatDateTime("%Y-%m-%d %H:%M:%S %z", now);
|
|
|
|
|
return true;
|
|
|
|
|
} else if (macro == "short_date_time") {
|
|
|
|
|
*result = Utility::FormatDateTime("%Y-%m-%d %H:%M:%S", now);
|
|
|
|
|
return true;
|
|
|
|
|
} else if (macro == "date") {
|
|
|
|
|
*result = Utility::FormatDateTime("%Y-%m-%d", now);
|
|
|
|
|
return true;
|
|
|
|
|
} else if (macro == "time") {
|
|
|
|
|
*result = Utility::FormatDateTime("%H:%M:%S %z", now);
|
|
|
|
|
return true;
|
2014-05-02 20:06:58 -04:00
|
|
|
} else if (macro == "uptime") {
|
2020-02-11 06:49:40 -05:00
|
|
|
*result = Utility::FormatDuration(Application::GetUptime());
|
2014-05-02 20:06:58 -04:00
|
|
|
return true;
|
2014-04-05 03:19:42 -04:00
|
|
|
}
|
2014-04-04 14:09:23 -04:00
|
|
|
|
2014-04-05 03:19:42 -04:00
|
|
|
Dictionary::Ptr vars = GetVars();
|
|
|
|
|
|
|
|
|
|
if (vars && vars->Contains(macro)) {
|
|
|
|
|
*result = vars->Get(macro);
|
|
|
|
|
return true;
|
2013-03-22 09:40:55 -04:00
|
|
|
}
|
2013-02-23 19:10:34 -05:00
|
|
|
|
2014-05-02 20:06:58 -04:00
|
|
|
if (macro.Contains("num_services")) {
|
|
|
|
|
ServiceStatistics ss = CIB::CalculateServiceStats();
|
|
|
|
|
|
|
|
|
|
if (macro == "num_services_ok") {
|
2016-06-16 09:14:35 -04:00
|
|
|
*result = ss.services_ok;
|
2014-05-02 20:06:58 -04:00
|
|
|
return true;
|
|
|
|
|
} else if (macro == "num_services_warning") {
|
2016-06-16 09:14:35 -04:00
|
|
|
*result = ss.services_warning;
|
2014-05-02 20:06:58 -04:00
|
|
|
return true;
|
|
|
|
|
} else if (macro == "num_services_critical") {
|
2016-06-16 09:14:35 -04:00
|
|
|
*result = ss.services_critical;
|
2014-05-02 20:06:58 -04:00
|
|
|
return true;
|
|
|
|
|
} else if (macro == "num_services_unknown") {
|
2016-06-16 09:14:35 -04:00
|
|
|
*result = ss.services_unknown;
|
2014-05-02 20:06:58 -04:00
|
|
|
return true;
|
|
|
|
|
} else if (macro == "num_services_pending") {
|
2016-06-16 09:14:35 -04:00
|
|
|
*result = ss.services_pending;
|
2014-05-02 20:06:58 -04:00
|
|
|
return true;
|
|
|
|
|
} else if (macro == "num_services_unreachable") {
|
2016-06-16 09:14:35 -04:00
|
|
|
*result = ss.services_unreachable;
|
2014-05-02 20:06:58 -04:00
|
|
|
return true;
|
|
|
|
|
} else if (macro == "num_services_flapping") {
|
2016-06-16 09:14:35 -04:00
|
|
|
*result = ss.services_flapping;
|
2014-05-02 20:06:58 -04:00
|
|
|
return true;
|
|
|
|
|
} else if (macro == "num_services_in_downtime") {
|
2016-06-16 09:14:35 -04:00
|
|
|
*result = ss.services_in_downtime;
|
2014-05-02 20:06:58 -04:00
|
|
|
return true;
|
|
|
|
|
} else if (macro == "num_services_acknowledged") {
|
2016-06-16 09:14:35 -04:00
|
|
|
*result = ss.services_acknowledged;
|
2014-05-02 20:06:58 -04:00
|
|
|
return true;
|
2019-08-29 11:04:23 -04:00
|
|
|
} else if (macro == "num_services_handled") {
|
|
|
|
|
*result = ss.services_handled;
|
|
|
|
|
return true;
|
|
|
|
|
} else if (macro == "num_services_problem") {
|
|
|
|
|
*result = ss.services_problem;
|
|
|
|
|
return true;
|
2014-05-02 20:06:58 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (macro.Contains("num_hosts")) {
|
|
|
|
|
HostStatistics hs = CIB::CalculateHostStats();
|
|
|
|
|
|
|
|
|
|
if (macro == "num_hosts_up") {
|
2016-06-16 09:14:35 -04:00
|
|
|
*result = hs.hosts_up;
|
2014-05-02 20:06:58 -04:00
|
|
|
return true;
|
|
|
|
|
} else if (macro == "num_hosts_down") {
|
2016-06-16 09:14:35 -04:00
|
|
|
*result = hs.hosts_down;
|
2014-05-02 20:06:58 -04:00
|
|
|
return true;
|
2015-11-26 14:03:46 -05:00
|
|
|
} else if (macro == "num_hosts_pending") {
|
2016-06-16 09:14:35 -04:00
|
|
|
*result = hs.hosts_pending;
|
2015-11-26 14:03:46 -05:00
|
|
|
return true;
|
2014-05-02 20:06:58 -04:00
|
|
|
} else if (macro == "num_hosts_unreachable") {
|
2016-06-16 09:14:35 -04:00
|
|
|
*result = hs.hosts_unreachable;
|
2014-05-02 20:06:58 -04:00
|
|
|
return true;
|
|
|
|
|
} else if (macro == "num_hosts_flapping") {
|
2016-06-16 09:14:35 -04:00
|
|
|
*result = hs.hosts_flapping;
|
2014-05-02 20:06:58 -04:00
|
|
|
return true;
|
|
|
|
|
} else if (macro == "num_hosts_in_downtime") {
|
2016-06-16 09:14:35 -04:00
|
|
|
*result = hs.hosts_in_downtime;
|
2014-05-02 20:06:58 -04:00
|
|
|
return true;
|
|
|
|
|
} else if (macro == "num_hosts_acknowledged") {
|
2016-06-16 09:14:35 -04:00
|
|
|
*result = hs.hosts_acknowledged;
|
2014-05-02 20:06:58 -04:00
|
|
|
return true;
|
2019-08-29 11:04:23 -04:00
|
|
|
} else if (macro == "num_hosts_handled") {
|
|
|
|
|
*result = hs.hosts_handled;
|
|
|
|
|
return true;
|
|
|
|
|
} else if (macro == "num_hosts_problem") {
|
|
|
|
|
*result = hs.hosts_problem;
|
|
|
|
|
return true;
|
2014-05-02 20:06:58 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-22 09:40:55 -04:00
|
|
|
return false;
|
2013-02-23 19:10:34 -05:00
|
|
|
}
|
2013-10-08 05:57:35 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
String IcingaApplication::GetNodeName() const
|
2013-10-08 05:57:35 -04:00
|
|
|
{
|
2015-09-22 12:18:29 -04:00
|
|
|
return ScriptGlobal::Get("NodeName");
|
2013-10-08 05:57:35 -04:00
|
|
|
}
|
|
|
|
|
|
2019-04-15 10:56:30 -04:00
|
|
|
/* Intentionally kept here, since an agent may not have the CheckerComponent loaded. */
|
|
|
|
|
int IcingaApplication::GetMaxConcurrentChecks() const
|
|
|
|
|
{
|
|
|
|
|
return ScriptGlobal::Get("MaxConcurrentChecks");
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-10 04:15:41 -04:00
|
|
|
String IcingaApplication::GetEnvironment() const
|
|
|
|
|
{
|
|
|
|
|
return Application::GetAppEnvironment();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IcingaApplication::SetEnvironment(const String& value, bool suppress_events, const Value& cookie)
|
|
|
|
|
{
|
|
|
|
|
Application::SetAppEnvironment(value);
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-11 01:08:09 -05:00
|
|
|
void IcingaApplication::ValidateVars(const Lazy<Dictionary::Ptr>& lvalue, const ValidationUtils& utils)
|
2013-10-08 05:57:35 -04:00
|
|
|
{
|
2018-01-11 01:08:09 -05:00
|
|
|
MacroProcessor::ValidateCustomVars(this, lvalue());
|
2013-10-08 05:57:35 -04:00
|
|
|
}
|