]> granicus.if.org Git - icinga2/blob - components/compat/statusdatawriter.cpp
Add check authority to service.
[icinga2] / components / compat / statusdatawriter.cpp
1 /******************************************************************************
2  * Icinga 2                                                                   *
3  * Copyright (C) 2012-2013 Icinga Development Team (http://www.icinga.org/)   *
4  *                                                                            *
5  * This program is free software; you can redistribute it and/or              *
6  * modify it under the terms of the GNU General Public License                *
7  * as published by the Free Software Foundation; either version 2             *
8  * of the License, or (at your option) any later version.                     *
9  *                                                                            *
10  * This program is distributed in the hope that it will be useful,            *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
13  * GNU General Public License for more details.                               *
14  *                                                                            *
15  * You should have received a copy of the GNU General Public License          *
16  * along with this program; if not, write to the Free Software Foundation     *
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
18  ******************************************************************************/
19
20 #include "compat/statusdatawriter.h"
21 #include "icinga/icingaapplication.h"
22 #include "icinga/cib.h"
23 #include "icinga/hostgroup.h"
24 #include "icinga/servicegroup.h"
25 #include "icinga/checkcommand.h"
26 #include "icinga/eventcommand.h"
27 #include "icinga/timeperiod.h"
28 #include "icinga/notificationcommand.h"
29 #include "icinga/compatutility.h"
30 #include "base/dynamictype.h"
31 #include "base/objectlock.h"
32 #include "base/convert.h"
33 #include "base/logger_fwd.h"
34 #include "base/exception.h"
35 #include "base/application.h"
36 #include <boost/smart_ptr/make_shared.hpp>
37 #include <boost/foreach.hpp>
38 #include <boost/tuple/tuple.hpp>
39 #include <boost/exception/diagnostic_information.hpp>
40 #include <boost/algorithm/string/replace.hpp>
41 #include <fstream>
42
43 using namespace icinga;
44
45 REGISTER_TYPE(StatusDataWriter);
46
47 /**
48  * Hint: The reason why we're using "\n" rather than std::endl is because
49  * std::endl also _flushes_ the output stream which severely degrades
50  * performance (see http://gcc.gnu.org/onlinedocs/libstdc++/manual/bk01pt11ch25s02.html).
51  */
52
53 /**
54  * Starts the component.
55  */
56 void StatusDataWriter::Start(void)
57 {
58         DynamicObject::Start();
59
60         m_StatusTimer = boost::make_shared<Timer>();
61         m_StatusTimer->SetInterval(15);
62         m_StatusTimer->OnTimerExpired.connect(boost::bind(&StatusDataWriter::StatusTimerHandler, this));
63         m_StatusTimer->Start();
64         m_StatusTimer->Reschedule(0);
65 }
66
67 /**
68  * Retrieves the status.dat path.
69  *
70  * @returns statuspath from config, or static default
71  */
72 String StatusDataWriter::GetStatusPath(void) const
73 {
74         if (m_StatusPath.IsEmpty())
75                 return Application::GetLocalStateDir() + "/cache/icinga2/status.dat";
76         else
77                 return m_StatusPath;
78 }
79
80 /**
81  * Retrieves the objects.cache path.
82  *
83  * @returns objectspath from config, or static default
84  */
85 String StatusDataWriter::GetObjectsPath(void) const
86 {
87         if (m_ObjectsPath.IsEmpty())
88                 return Application::GetLocalStateDir() + "/cache/icinga2/objects.cache";
89         else
90                 return m_ObjectsPath;
91 }
92
93 void StatusDataWriter::DumpComments(std::ostream& fp, const Service::Ptr& owner, CompatObjectType type)
94 {
95         Service::Ptr service;
96         Dictionary::Ptr comments = owner->GetComments();
97
98         if (!comments)
99                 return;
100
101         Host::Ptr host = owner->GetHost();
102
103         if (!host)
104                 return;
105
106         ObjectLock olock(comments);
107
108         String id;
109         Dictionary::Ptr comment;
110         BOOST_FOREACH(boost::tie(id, comment), comments) {
111                 if (Service::IsCommentExpired(comment))
112                         continue;
113
114                 if (type == CompatTypeHost)
115                         fp << "hostcomment {" << "\n";
116                 else
117                         fp << "servicecomment {" << "\n"
118                            << "\t" << "service_description=" << owner->GetShortName() << "\n";
119
120                 fp << "\t" << "host_name=" << host->GetName() << "\n"
121                    << "\t" << "comment_id=" << static_cast<String>(comment->Get("legacy_id")) << "\n"
122                    << "\t" << "entry_time=" << static_cast<double>(comment->Get("entry_time")) << "\n"
123                    << "\t" << "entry_type=" << static_cast<long>(comment->Get("entry_type")) << "\n"
124                    << "\t" << "persistent=" << 1 << "\n"
125                    << "\t" << "author=" << static_cast<String>(comment->Get("author")) << "\n"
126                    << "\t" << "comment_data=" << static_cast<String>(comment->Get("text")) << "\n"
127                    << "\t" << "expires=" << (static_cast<double>(comment->Get("expire_time")) != 0 ? 1 : 0) << "\n"
128                    << "\t" << "expire_time=" << static_cast<double>(comment->Get("expire_time")) << "\n"
129                    << "\t" << "}" << "\n"
130                    << "\n";
131         }
132 }
133
134 void StatusDataWriter::DumpTimePeriod(std::ostream& fp, const TimePeriod::Ptr& tp)
135 {
136         fp << "define timeperiod {" << "\n"
137            << "\t" << "timeperiod_name" << "\t" << tp->GetName() << "\n"
138            << "\t" << "alias" << "\t" << tp->GetName() << "\n";
139
140         Dictionary::Ptr ranges = tp->GetRanges();
141
142         if (ranges) {
143                 ObjectLock olock(ranges);
144                 String key;
145                 Value value;
146                 BOOST_FOREACH(boost::tie(key, value), ranges) {
147                         fp << "\t" << key << "\t" << Convert::ToString(value) << "\n";
148                 }
149         }
150
151         fp << "\t" << "}" << "\n"
152            << "\n";
153 }
154
155 void StatusDataWriter::DumpCommand(std::ostream& fp, const Command::Ptr& command)
156 {
157         fp << "define command {" << "\n"
158            << "\t" << "command_name\t";
159
160
161         if (command->GetType() == DynamicType::GetByName("CheckCommand"))
162                 fp << "check_";
163         else if (command->GetType() == DynamicType::GetByName("NotificationCommand"))
164                 fp << "notification_";
165         else if (command->GetType() == DynamicType::GetByName("EventCommand"))
166                 fp << "event_";
167
168         fp << command->GetName() << "\n";
169
170         fp << "\t" << "command_line\t";
171
172         Value commandLine = command->GetCommandLine();
173
174         if (commandLine.IsObjectType<Array>()) {
175                 Array::Ptr args = commandLine;
176
177                 ObjectLock olock(args);
178                 String arg;
179                 BOOST_FOREACH(arg, args) {
180                         // This is obviously incorrect for non-trivial cases.
181                         fp << " \"" << CompatUtility::EscapeString(arg) << "\"";
182                 }
183         } else if (!commandLine.IsEmpty()) {
184                 fp << CompatUtility::EscapeString(Convert::ToString(commandLine));
185         } else {
186                 fp << "<internal>";
187         }
188
189         fp << "\n";
190
191         fp << "\t" << "}" << "\n"
192            << "\n";
193
194 }
195
196 void StatusDataWriter::DumpDowntimes(std::ostream& fp, const Service::Ptr& owner, CompatObjectType type)
197 {
198         Host::Ptr host = owner->GetHost();
199
200         if (!host)
201                 return;
202
203         Dictionary::Ptr downtimes = owner->GetDowntimes();
204
205         if (!downtimes)
206                 return;
207
208         ObjectLock olock(downtimes);
209
210         String id;
211         Dictionary::Ptr downtime;
212         BOOST_FOREACH(boost::tie(id, downtime), downtimes) {
213                 if (Service::IsDowntimeExpired(downtime))
214                         continue;
215
216                 if (type == CompatTypeHost)
217                         fp << "hostdowntime {" << "\n";
218                 else
219                         fp << "servicedowntime {" << "\n"
220                            << "\t" << "service_description=" << owner->GetShortName() << "\n";
221
222                 Dictionary::Ptr triggeredByObj = Service::GetDowntimeByID(downtime->Get("triggered_by"));
223                 int triggeredByLegacy = 0;
224                 if (triggeredByObj)
225                         triggeredByLegacy = triggeredByObj->Get("legacy_id");
226
227                 fp << "\t" << "host_name=" << host->GetName() << "\n"
228                    << "\t" << "downtime_id=" << static_cast<String>(downtime->Get("legacy_id")) << "\n"
229                    << "\t" << "entry_time=" << static_cast<double>(downtime->Get("entry_time")) << "\n"
230                    << "\t" << "start_time=" << static_cast<double>(downtime->Get("start_time")) << "\n"
231                    << "\t" << "end_time=" << static_cast<double>(downtime->Get("end_time")) << "\n"
232                    << "\t" << "triggered_by=" << triggeredByLegacy << "\n"
233                    << "\t" << "fixed=" << static_cast<long>(downtime->Get("fixed")) << "\n"
234                    << "\t" << "duration=" << static_cast<long>(downtime->Get("duration")) << "\n"
235                    << "\t" << "is_in_effect=" << (Service::IsDowntimeActive(downtime) ? 1 : 0) << "\n"
236                    << "\t" << "author=" << static_cast<String>(downtime->Get("author")) << "\n"
237                    << "\t" << "comment=" << static_cast<String>(downtime->Get("comment")) << "\n"
238                    << "\t" << "trigger_time=" << static_cast<double>(downtime->Get("trigger_time")) << "\n"
239                    << "\t" << "}" << "\n"
240                    << "\n";
241         }
242 }
243
244 void StatusDataWriter::DumpHostStatus(std::ostream& fp, const Host::Ptr& host)
245 {
246         fp << "hoststatus {" << "\n"
247            << "\t" << "host_name=" << host->GetName() << "\n";
248
249         Service::Ptr hc = host->GetCheckService();
250         ObjectLock olock(hc);
251
252         if (hc)
253                 DumpServiceStatusAttrs(fp, hc, CompatTypeHost);
254
255         /* ugly but cgis parse only that */
256         fp << "\t" << "last_time_up=" << host->GetLastStateUp() << "\n"
257            << "\t" << "last_time_down=" << host->GetLastStateDown() << "\n"
258            << "\t" << "last_time_unreachable=" << host->GetLastStateUnreachable() << "\n";
259
260         fp << "\t" << "}" << "\n"
261            << "\n";
262
263         if (hc) {
264                 DumpDowntimes(fp, hc, CompatTypeHost);
265                 DumpComments(fp, hc, CompatTypeHost);
266         }
267 }
268
269 void StatusDataWriter::DumpHostObject(std::ostream& fp, const Host::Ptr& host)
270 {
271         fp << "define host {" << "\n"
272            << "\t" << "host_name" << "\t" << host->GetName() << "\n"
273            << "\t" << "alias" << "\t" << host->GetDisplayName() << "\n";
274
275         std::set<Host::Ptr> parents = host->GetParentHosts();
276
277         if (!parents.empty()) {
278                 fp << "\t" << "parents" << "\t";
279                 DumpNameList(fp, parents);
280                 fp << "\n";
281         }
282
283         Service::Ptr hc = host->GetCheckService();
284         if (hc) {
285                 ObjectLock olock(hc);
286
287                 fp << "\t" << "check_interval" << "\t" << hc->GetCheckInterval() / 60.0 << "\n"
288                    << "\t" << "retry_interval" << "\t" << hc->GetRetryInterval() / 60.0 << "\n"
289                    << "\t" << "max_check_attempts" << "\t" << hc->GetMaxCheckAttempts() << "\n"
290                    << "\t" << "active_checks_enabled" << "\t" << (hc->GetEnableActiveChecks() ? 1 : 0) << "\n"
291                    << "\t" << "passive_checks_enabled" << "\t" << (hc->GetEnablePassiveChecks() ? 1 : 0) << "\n"
292                    << "\t" << "notifications_enabled" << "\t" << (hc->GetEnableNotifications() ? 1 : 0) << "\n"
293                    << "\t" << "notification_options" << "\t" << "d,u,r" << "\n"
294                    << "\t" << "notification_interval" << "\t" << 1 << "\n";
295
296                 CheckCommand::Ptr checkcommand = hc->GetCheckCommand();
297                 if (checkcommand)
298                         fp << "\t" << "check_command" << "\t" << "check_" << checkcommand->GetName() << "\n";
299
300                 EventCommand::Ptr eventcommand = hc->GetEventCommand();
301                 if (eventcommand)
302                         fp << "\t" << "event_handler" << "\t" << "event_" << eventcommand->GetName() << "\n";
303         } else {
304                 fp << "\t" << "check_interval" << "\t" << 60 << "\n"
305                    << "\t" << "retry_interval" << "\t" << 60 << "\n"
306                    << "\t" << "max_check_attempts" << "\t" << 1 << "\n"
307                    << "\t" << "active_checks_enabled" << "\t" << 0 << "\n"
308                    << "\t" << "passive_checks_enabled" << "\t" << 0 << "\n"
309                    << "\t" << "notifications_enabled" << "\t" << 0 << "\n";
310
311         }
312
313         DumpCustomAttributes(fp, host);
314
315         fp << "\t" << "}" << "\n"
316            << "\n";
317 }
318
319 void StatusDataWriter::DumpServiceStatusAttrs(std::ostream& fp, const Service::Ptr& service, CompatObjectType type)
320 {
321         Dictionary::Ptr attrs = CompatUtility::GetServiceStatusAttributes(service, type);
322
323         fp << "\t" << "check_command=" << attrs->Get("check_command") << "\n"
324            << "\t" << "event_handler=" << attrs->Get("event_handler") << "\n"
325            << "\t" << "check_period=" << attrs->Get("check_period") << "\n"
326            << "\t" << "check_interval=" << static_cast<double>(attrs->Get("check_interval")) << "\n"
327            << "\t" << "retry_interval=" << static_cast<double>(attrs->Get("retry_interval")) << "\n"
328            << "\t" << "has_been_checked=" << attrs->Get("has_been_checked") << "\n"
329            << "\t" << "should_be_scheduled=" << attrs->Get("should_be_scheduled") << "\n"
330            << "\t" << "check_execution_time=" << static_cast<double>(attrs->Get("check_execution_time")) << "\n"
331            << "\t" << "check_latency=" << static_cast<double>(attrs->Get("check_latency")) << "\n"
332            << "\t" << "current_state=" << attrs->Get("current_state") << "\n"
333            << "\t" << "state_type=" << attrs->Get("state_type") << "\n"
334            << "\t" << "plugin_output=" << attrs->Get("plugin_output") << "\n"
335            << "\t" << "long_plugin_output=" << attrs->Get("long_plugin_output") << "\n"
336            << "\t" << "performance_data=" << attrs->Get("performance_data") << "\n"
337            << "\t" << "check_source=" << attrs->Get("check_source") << "\n"
338            << "\t" << "last_check=" << static_cast<long>(attrs->Get("last_check")) << "\n"
339            << "\t" << "next_check=" << static_cast<long>(attrs->Get("next_check")) << "\n"
340            << "\t" << "current_attempt=" << attrs->Get("current_attempt") << "\n"
341            << "\t" << "max_attempts=" << attrs->Get("max_attempts") << "\n"
342            << "\t" << "last_state_change=" << static_cast<long>(attrs->Get("last_state_change")) << "\n"
343            << "\t" << "last_hard_state_change=" << static_cast<long>(attrs->Get("last_hard_state_change")) << "\n"
344            << "\t" << "last_time_ok=" << static_cast<long>(attrs->Get("last_time_ok")) << "\n"
345            << "\t" << "last_time_warn=" << static_cast<long>(attrs->Get("last_time_warn")) << "\n"
346            << "\t" << "last_time_critical=" << static_cast<long>(attrs->Get("last_time_critical")) << "\n"
347            << "\t" << "last_time_unknown=" << static_cast<long>(attrs->Get("last_time_unknown")) << "\n"
348            << "\t" << "last_update=" << static_cast<long>(attrs->Get("last_update")) << "\n"
349            << "\t" << "notifications_enabled=" << attrs->Get("notifications_enabled") << "\n"
350            << "\t" << "active_checks_enabled=" << attrs->Get("active_checks_enabled") << "\n"
351            << "\t" << "passive_checks_enabled=" << attrs->Get("passive_checks_enabled") << "\n"
352            << "\t" << "flap_detection_enabled=" << attrs->Get("flap_detection_enabled") << "\n"
353            << "\t" << "is_flapping=" << attrs->Get("is_flapping") << "\n"
354            << "\t" << "percent_state_change=" << attrs->Get("percent_state_change") << "\n"
355            << "\t" << "problem_has_been_acknowledged=" << attrs->Get("problem_has_been_acknowledged") << "\n"
356            << "\t" << "acknowledgement_type=" << attrs->Get("acknowledgement_type") << "\n"
357            << "\t" << "acknowledgement_end_time=" << attrs->Get("acknowledgement_end_time") << "\n"
358            << "\t" << "scheduled_downtime_depth=" << attrs->Get("scheduled_downtime_depth") << "\n"
359            << "\t" << "last_notification=" << static_cast<long>(attrs->Get("last_notification")) << "\n"
360            << "\t" << "next_notification=" << static_cast<long>(attrs->Get("next_notification")) << "\n"
361            << "\t" << "current_notification_number=" << attrs->Get("current_notification_number") << "\n";
362 }
363
364 void StatusDataWriter::DumpServiceStatus(std::ostream& fp, const Service::Ptr& service)
365 {
366         Host::Ptr host = service->GetHost();
367
368         if (!host)
369                 return;
370
371         fp << "servicestatus {" << "\n"
372            << "\t" << "host_name=" << host->GetName() << "\n"
373            << "\t" << "service_description=" << service->GetShortName() << "\n";
374
375         {
376                 ObjectLock olock(service);
377                 DumpServiceStatusAttrs(fp, service, CompatTypeService);
378         }
379
380         fp << "\t" << "}" << "\n"
381            << "\n";
382
383         DumpDowntimes(fp, service, CompatTypeService);
384         DumpComments(fp, service, CompatTypeService);
385 }
386
387 void StatusDataWriter::DumpServiceObject(std::ostream& fp, const Service::Ptr& service)
388 {
389         Host::Ptr host = service->GetHost();
390
391         if (!host)
392                 return;
393
394         String check_period_str;
395         TimePeriod::Ptr check_period = service->GetCheckPeriod();
396         if (check_period)
397                 check_period_str = check_period->GetName();
398         else
399                 check_period_str = "24x7";
400
401         double notification_interval = -1;
402         BOOST_FOREACH(const Notification::Ptr& notification, service->GetNotifications()) {
403                 if (notification_interval == -1 || notification->GetNotificationInterval() < notification_interval)
404                         notification_interval = notification->GetNotificationInterval();
405         }
406
407         if (notification_interval == -1)
408                 notification_interval = 60;
409
410         {
411                 ObjectLock olock(service);
412
413                 fp << "define service {" << "\n"
414                    << "\t" << "host_name" << "\t" << host->GetName() << "\n"
415                    << "\t" << "service_description" << "\t" << service->GetShortName() << "\n"
416                    << "\t" << "display_name" << "\t" << service->GetDisplayName() << "\n"
417                    << "\t" << "check_period" << "\t" << check_period_str << "\n"
418                    << "\t" << "check_interval" << "\t" << service->GetCheckInterval() / 60.0 << "\n"
419                    << "\t" << "retry_interval" << "\t" << service->GetRetryInterval() / 60.0 << "\n"
420                    << "\t" << "max_check_attempts" << "\t" << service->GetMaxCheckAttempts() << "\n"
421                    << "\t" << "active_checks_enabled" << "\t" << (service->GetEnableActiveChecks() ? 1 : 0) << "\n"
422                    << "\t" << "passive_checks_enabled" << "\t" << (service->GetEnablePassiveChecks() ? 1 : 0) << "\n"
423                    << "\t" << "flap_detection_enabled" << "\t" << (service->GetEnableFlapping() ? 1 : 0) << "\n"
424                    << "\t" << "is_volatile" << "\t" << (service->IsVolatile() ? 1 : 0) << "\n"
425                    << "\t" << "notifications_enabled" << "\t" << (service->GetEnableNotifications() ? 1 : 0) << "\n"
426                    << "\t" << "notification_options" << "\t" << "u,w,c,r" << "\n"
427                    << "\t" << "notification_interval" << "\t" << notification_interval / 60.0 << "\n";
428
429                 CheckCommand::Ptr checkcommand = service->GetCheckCommand();
430                 if (checkcommand)
431                         fp << "\t" << "check_command" << "\t" << "check_" << checkcommand->GetName() << "\n";
432
433                 EventCommand::Ptr eventcommand = service->GetEventCommand();
434                 if (eventcommand)
435                         fp << "\t" << "event_handler" << "\t" << "event_" << eventcommand->GetName() << "\n";
436         }
437
438         DumpCustomAttributes(fp, service);
439
440         fp << "\t" << "}" << "\n"
441            << "\n";
442
443         BOOST_FOREACH(const Service::Ptr& parent, service->GetParentServices()) {
444                 Host::Ptr host = service->GetHost();
445
446                 if (!host)
447                         continue;
448
449                 Host::Ptr parent_host = parent->GetHost();
450
451                 if (!parent_host)
452                         continue;
453
454                 fp << "define servicedependency {" << "\n"
455                    << "\t" << "dependent_host_name" << "\t" << host->GetName() << "\n"
456                    << "\t" << "dependent_service_description" << "\t" << service->GetShortName() << "\n"
457                    << "\t" << "host_name" << "\t" << parent_host->GetName() << "\n"
458                    << "\t" << "service_description" << "\t" << parent->GetShortName() << "\n"
459                    << "\t" << "execution_failure_criteria" << "\t" << "n" << "\n"
460                    << "\t" << "notification_failure_criteria" << "\t" << "w,u,c" << "\n"
461                    << "\t" << "}" << "\n"
462                    << "\n";
463         }
464 }
465
466 void StatusDataWriter::DumpCustomAttributes(std::ostream& fp, const DynamicObject::Ptr& object)
467 {
468         Dictionary::Ptr custom = object->GetCustom();
469
470         if (!custom)
471                 return;
472
473         ObjectLock olock(custom);
474         String key;
475         Value value;
476         BOOST_FOREACH(boost::tie(key, value), custom) {
477                 fp << "\t";
478
479                 if (key != "notes" && key != "action_url" && key != "notes_url" &&
480                     key != "icon_image" && key != "icon_image_alt" && key != "statusmap_image" && "2d_coords")
481                         fp << "_";
482
483                 fp << key << "\t" << Convert::ToString(value) << "\n";
484         }
485 }
486
487 /**
488  * Periodically writes the status.dat and objects.cache files.
489  */
490 void StatusDataWriter::StatusTimerHandler(void)
491 {
492         Log(LogInformation, "compat", "Writing compat status information");
493
494         String statuspath = GetStatusPath();
495         String objectspath = GetObjectsPath();
496         String statuspathtmp = statuspath + ".tmp"; /* XXX make this a global definition */
497         String objectspathtmp = objectspath + ".tmp";
498
499         std::ofstream statusfp;
500         statusfp.open(statuspathtmp.CStr(), std::ofstream::out | std::ofstream::trunc);
501
502         statusfp << std::fixed;
503
504         statusfp << "# Icinga status file" << "\n"
505                  << "# This file is auto-generated. Do not modify this file." << "\n"
506                  << "\n";
507
508         statusfp << "info {" << "\n"
509                  << "\t" << "created=" << Utility::GetTime() << "\n"
510                  << "\t" << "version=2.0" << "\n"
511                  << "\t" << "}" << "\n"
512                  << "\n";
513
514         statusfp << "programstatus {" << "\n"
515                  << "\t" << "icinga_pid=" << Utility::GetPid() << "\n"
516                  << "\t" << "daemon_mode=1" << "\n"
517                  << "\t" << "program_start=" << static_cast<long>(IcingaApplication::GetInstance()->GetStartTime()) << "\n"
518                  << "\t" << "active_service_checks_enabled=1" << "\n"
519                  << "\t" << "passive_service_checks_enabled=1" << "\n"
520                  << "\t" << "active_host_checks_enabled=1" << "\n"
521                  << "\t" << "passive_host_checks_enabled=1" << "\n"
522                  << "\t" << "check_service_freshness=0" << "\n"
523                  << "\t" << "check_host_freshness=0" << "\n"
524                  << "\t" << "enable_notifications=1" << "\n"
525                  << "\t" << "enable_flap_detection=1" << "\n"
526                  << "\t" << "enable_failure_prediction=0" << "\n"
527                  << "\t" << "active_scheduled_service_check_stats=" << CIB::GetActiveChecksStatistics(60) << "," << CIB::GetActiveChecksStatistics(5 * 60) << "," << CIB::GetActiveChecksStatistics(15 * 60) << "\n"
528                  << "\t" << "passive_service_check_stats=" << CIB::GetPassiveChecksStatistics(60) << "," << CIB::GetPassiveChecksStatistics(5 * 60) << "," << CIB::GetPassiveChecksStatistics(15 * 60) << "\n"
529                  << "\t" << "next_downtime_id=" << Service::GetNextDowntimeID() << "\n"
530                  << "\t" << "next_comment_id=" << Service::GetNextCommentID() << "\n"
531                  << "\t" << "}" << "\n"
532                  << "\n";
533
534         std::ofstream objectfp;
535         objectfp.open(objectspathtmp.CStr(), std::ofstream::out | std::ofstream::trunc);
536
537         objectfp << std::fixed;
538
539         objectfp << "# Icinga objects cache file" << "\n"
540                  << "# This file is auto-generated. Do not modify this file." << "\n"
541                  << "\n";
542
543         BOOST_FOREACH(const Host::Ptr& host, DynamicType::GetObjects<Host>()) {
544                 std::ostringstream tempstatusfp;
545                 tempstatusfp << std::fixed;
546                 DumpHostStatus(tempstatusfp, host);
547                 statusfp << tempstatusfp.str();
548
549                 std::ostringstream tempobjectfp;
550                 tempobjectfp << std::fixed;
551                 DumpHostObject(tempobjectfp, host);
552                 objectfp << tempobjectfp.str();
553         }
554
555         BOOST_FOREACH(const HostGroup::Ptr& hg, DynamicType::GetObjects<HostGroup>()) {
556                 std::ostringstream tempobjectfp;
557                 tempobjectfp << std::fixed;
558
559                 tempobjectfp << "define hostgroup {" << "\n"
560                          << "\t" << "hostgroup_name" << "\t" << hg->GetName() << "\n";
561
562                 DumpCustomAttributes(tempobjectfp, hg);
563
564                 tempobjectfp << "\t" << "members" << "\t";
565                 DumpNameList(tempobjectfp, hg->GetMembers());
566                 tempobjectfp << "\n"
567                              << "\t" << "}" << "\n";
568
569                 objectfp << tempobjectfp.str();
570         }
571
572         BOOST_FOREACH(const Service::Ptr& service, DynamicType::GetObjects<Service>()) {
573                 std::ostringstream tempstatusfp;
574                 tempstatusfp << std::fixed;
575                 DumpServiceStatus(tempstatusfp, service);
576                 statusfp << tempstatusfp.str();
577
578                 std::ostringstream tempobjectfp;
579                 tempobjectfp << std::fixed;
580                 DumpServiceObject(tempobjectfp, service);
581                 objectfp << tempobjectfp.str();
582         }
583
584         BOOST_FOREACH(const ServiceGroup::Ptr& sg, DynamicType::GetObjects<ServiceGroup>()) {
585                 std::ostringstream tempobjectfp;
586                 tempobjectfp << std::fixed;
587
588                 tempobjectfp << "define servicegroup {" << "\n"
589                          << "\t" << "servicegroup_name" << "\t" << sg->GetName() << "\n";
590
591                 DumpCustomAttributes(tempobjectfp, sg);
592
593                 tempobjectfp << "\t" << "members" << "\t";
594
595                 std::vector<String> sglist;
596                 BOOST_FOREACH(const Service::Ptr& service, sg->GetMembers()) {
597                         Host::Ptr host = service->GetHost();
598
599                         if (!host)
600                                 continue;
601
602                         sglist.push_back(host->GetName());
603                         sglist.push_back(service->GetShortName());
604                 }
605
606                 DumpStringList(tempobjectfp, sglist);
607
608                 tempobjectfp << "\n"
609                          << "}" << "\n";
610
611                 objectfp << tempobjectfp.str();
612         }
613
614         BOOST_FOREACH(const User::Ptr& user, DynamicType::GetObjects<User>()) {
615                 std::ostringstream tempobjectfp;
616                 tempobjectfp << std::fixed;
617
618                 tempobjectfp << "define contact {" << "\n"
619                          << "\t" << "contact_name" << "\t" << user->GetName() << "\n"
620                          << "\t" << "alias" << "\t" << user->GetDisplayName() << "\n"
621                          << "\t" << "service_notification_options" << "\t" << "w,u,c,r,f,s" << "\n"
622                          << "\t" << "host_notification_options" << "\t" << "d,u,r,f,s" << "\n"
623                          << "\t" << "host_notifications_enabled" << "\t" << 1 << "\n"
624                          << "\t" << "service_notifications_enabled" << "\t" << 1 << "\n"
625                          << "\t" << "}" << "\n"
626                          << "\n";
627
628                 objectfp << tempobjectfp.str();
629         }
630
631         BOOST_FOREACH(const UserGroup::Ptr& ug, DynamicType::GetObjects<UserGroup>()) {
632                 std::ostringstream tempobjectfp;
633                 tempobjectfp << std::fixed;
634
635                 tempobjectfp << "define contactgroup {" << "\n"
636                          << "\t" << "contactgroup_name" << "\t" << ug->GetName() << "\n"
637                          << "\t" << "alias" << "\t" << ug->GetDisplayName() << "\n";
638
639                 tempobjectfp << "\t" << "members" << "\t";
640                 DumpNameList(tempobjectfp, ug->GetMembers());
641                 tempobjectfp << "\n"
642                              << "\t" << "}" << "\n";
643
644                 objectfp << tempobjectfp.str();
645         }
646
647         BOOST_FOREACH(const Command::Ptr& command, DynamicType::GetObjects<CheckCommand>()) {
648                 DumpCommand(objectfp, command);
649         }
650
651         BOOST_FOREACH(const Command::Ptr& command, DynamicType::GetObjects<NotificationCommand>()) {
652                 DumpCommand(objectfp, command);
653         }
654
655         BOOST_FOREACH(const Command::Ptr& command, DynamicType::GetObjects<EventCommand>()) {
656                 DumpCommand(objectfp, command);
657         }
658
659         BOOST_FOREACH(const TimePeriod::Ptr& tp, DynamicType::GetObjects<TimePeriod>()) {
660                 DumpTimePeriod(objectfp, tp);
661         }
662
663         statusfp.close();
664         objectfp.close();
665
666 #ifdef _WIN32
667         _unlink(statuspath.CStr());
668         _unlink(objectspath.CStr());
669 #endif /* _WIN32 */
670
671         statusfp.close();
672         if (rename(statuspathtmp.CStr(), statuspath.CStr()) < 0) {
673                 BOOST_THROW_EXCEPTION(posix_error()
674                     << boost::errinfo_api_function("rename")
675                     << boost::errinfo_errno(errno)
676                     << boost::errinfo_file_name(statuspathtmp));
677         }
678
679         objectfp.close();
680         if (rename(objectspathtmp.CStr(), objectspath.CStr()) < 0) {
681                 BOOST_THROW_EXCEPTION(posix_error()
682                     << boost::errinfo_api_function("rename")
683                     << boost::errinfo_errno(errno)
684                     << boost::errinfo_file_name(objectspathtmp));
685         }
686 }
687
688 void StatusDataWriter::InternalSerialize(const Dictionary::Ptr& bag, int attributeTypes) const
689 {
690         DynamicObject::InternalSerialize(bag, attributeTypes);
691
692         if (attributeTypes & Attribute_Config) {
693                 bag->Set("status_path", m_StatusPath);
694                 bag->Set("objects_path", m_ObjectsPath);
695         }
696 }
697
698 void StatusDataWriter::InternalDeserialize(const Dictionary::Ptr& bag, int attributeTypes)
699 {
700         DynamicObject::InternalDeserialize(bag, attributeTypes);
701
702         if (attributeTypes & Attribute_Config) {
703                 m_StatusPath = bag->Get("status_path");
704                 m_ObjectsPath = bag->Get("objects_path");
705         }
706 }