]> granicus.if.org Git - icinga2/blob - components/compat/statusdatawriter.cpp
Update copyright information.
[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->GetHostCheckService();
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->GetHostCheckService();
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" << "last_check=" << static_cast<long>(attrs->Get("last_check")) << "\n"
338            << "\t" << "next_check=" << static_cast<long>(attrs->Get("next_check")) << "\n"
339            << "\t" << "current_attempt=" << attrs->Get("current_attempt") << "\n"
340            << "\t" << "max_attempts=" << attrs->Get("max_attempts") << "\n"
341            << "\t" << "last_state_change=" << static_cast<long>(attrs->Get("last_state_change")) << "\n"
342            << "\t" << "last_hard_state_change=" << static_cast<long>(attrs->Get("last_hard_state_change")) << "\n"
343            << "\t" << "last_time_ok=" << static_cast<long>(attrs->Get("last_time_ok")) << "\n"
344            << "\t" << "last_time_warn=" << static_cast<long>(attrs->Get("last_time_warn")) << "\n"
345            << "\t" << "last_time_critical=" << static_cast<long>(attrs->Get("last_time_critical")) << "\n"
346            << "\t" << "last_time_unknown=" << static_cast<long>(attrs->Get("last_time_unknown")) << "\n"
347            << "\t" << "last_update=" << static_cast<long>(attrs->Get("last_update")) << "\n"
348            << "\t" << "notifications_enabled=" << attrs->Get("notifications_enabled") << "\n"
349            << "\t" << "active_checks_enabled=" << attrs->Get("active_checks_enabled") << "\n"
350            << "\t" << "passive_checks_enabled=" << attrs->Get("passive_checks_enabled") << "\n"
351            << "\t" << "flap_detection_enabled=" << attrs->Get("flap_detection_enabled") << "\n"
352            << "\t" << "is_flapping=" << attrs->Get("is_flapping") << "\n"
353            << "\t" << "percent_state_change=" << attrs->Get("percent_state_change") << "\n"
354            << "\t" << "problem_has_been_acknowledged=" << attrs->Get("problem_has_been_acknowledged") << "\n"
355            << "\t" << "acknowledgement_type=" << attrs->Get("acknowledgement_type") << "\n"
356            << "\t" << "acknowledgement_end_time=" << attrs->Get("acknowledgement_end_time") << "\n"
357            << "\t" << "scheduled_downtime_depth=" << attrs->Get("scheduled_downtime_depth") << "\n"
358            << "\t" << "last_notification=" << static_cast<long>(attrs->Get("last_notification")) << "\n"
359            << "\t" << "next_notification=" << static_cast<long>(attrs->Get("next_notification")) << "\n"
360            << "\t" << "current_notification_number=" << attrs->Get("current_notification_number") << "\n";
361 }
362
363 void StatusDataWriter::DumpServiceStatus(std::ostream& fp, const Service::Ptr& service)
364 {
365         Host::Ptr host = service->GetHost();
366
367         if (!host)
368                 return;
369
370         fp << "servicestatus {" << "\n"
371            << "\t" << "host_name=" << host->GetName() << "\n"
372            << "\t" << "service_description=" << service->GetShortName() << "\n";
373
374         {
375                 ObjectLock olock(service);
376                 DumpServiceStatusAttrs(fp, service, CompatTypeService);
377         }
378
379         fp << "\t" << "}" << "\n"
380            << "\n";
381
382         DumpDowntimes(fp, service, CompatTypeService);
383         DumpComments(fp, service, CompatTypeService);
384 }
385
386 void StatusDataWriter::DumpServiceObject(std::ostream& fp, const Service::Ptr& service)
387 {
388         Host::Ptr host = service->GetHost();
389
390         if (!host)
391                 return;
392
393         String check_period_str;
394         TimePeriod::Ptr check_period = service->GetCheckPeriod();
395         if (check_period)
396                 check_period_str = check_period->GetName();
397         else
398                 check_period_str = "24x7";
399
400         double notification_interval = -1;
401         BOOST_FOREACH(const Notification::Ptr& notification, service->GetNotifications()) {
402                 if (notification_interval == -1 || notification->GetNotificationInterval() < notification_interval)
403                         notification_interval = notification->GetNotificationInterval();
404         }
405
406         if (notification_interval == -1)
407                 notification_interval = 60;
408
409         {
410                 ObjectLock olock(service);
411
412                 fp << "define service {" << "\n"
413                    << "\t" << "host_name" << "\t" << host->GetName() << "\n"
414                    << "\t" << "service_description" << "\t" << service->GetShortName() << "\n"
415                    << "\t" << "display_name" << "\t" << service->GetDisplayName() << "\n"
416                    << "\t" << "check_period" << "\t" << check_period_str << "\n"
417                    << "\t" << "check_interval" << "\t" << service->GetCheckInterval() / 60.0 << "\n"
418                    << "\t" << "retry_interval" << "\t" << service->GetRetryInterval() / 60.0 << "\n"
419                    << "\t" << "max_check_attempts" << "\t" << service->GetMaxCheckAttempts() << "\n"
420                    << "\t" << "active_checks_enabled" << "\t" << (service->GetEnableActiveChecks() ? 1 : 0) << "\n"
421                    << "\t" << "passive_checks_enabled" << "\t" << (service->GetEnablePassiveChecks() ? 1 : 0) << "\n"
422                    << "\t" << "flap_detection_enabled" << "\t" << (service->GetEnableFlapping() ? 1 : 0) << "\n"
423                    << "\t" << "is_volatile" << "\t" << (service->IsVolatile() ? 1 : 0) << "\n"
424                    << "\t" << "notifications_enabled" << "\t" << (service->GetEnableNotifications() ? 1 : 0) << "\n"
425                    << "\t" << "notification_options" << "\t" << "u,w,c,r" << "\n"
426                    << "\t" << "notification_interval" << "\t" << notification_interval / 60.0 << "\n";
427
428                 CheckCommand::Ptr checkcommand = service->GetCheckCommand();
429                 if (checkcommand)
430                         fp << "\t" << "check_command" << "\t" << "check_" << checkcommand->GetName() << "\n";
431
432                 EventCommand::Ptr eventcommand = service->GetEventCommand();
433                 if (eventcommand)
434                         fp << "\t" << "event_handler" << "\t" << "event_" << eventcommand->GetName() << "\n";
435         }
436
437         DumpCustomAttributes(fp, service);
438
439         fp << "\t" << "}" << "\n"
440            << "\n";
441
442         BOOST_FOREACH(const Service::Ptr& parent, service->GetParentServices()) {
443                 Host::Ptr host = service->GetHost();
444
445                 if (!host)
446                         continue;
447
448                 Host::Ptr parent_host = parent->GetHost();
449
450                 if (!parent_host)
451                         continue;
452
453                 fp << "define servicedependency {" << "\n"
454                    << "\t" << "dependent_host_name" << "\t" << host->GetName() << "\n"
455                    << "\t" << "dependent_service_description" << "\t" << service->GetShortName() << "\n"
456                    << "\t" << "host_name" << "\t" << parent_host->GetName() << "\n"
457                    << "\t" << "service_description" << "\t" << parent->GetShortName() << "\n"
458                    << "\t" << "execution_failure_criteria" << "\t" << "n" << "\n"
459                    << "\t" << "notification_failure_criteria" << "\t" << "w,u,c" << "\n"
460                    << "\t" << "}" << "\n"
461                    << "\n";
462         }
463 }
464
465 void StatusDataWriter::DumpCustomAttributes(std::ostream& fp, const DynamicObject::Ptr& object)
466 {
467         Dictionary::Ptr custom = object->GetCustom();
468
469         if (!custom)
470                 return;
471
472         ObjectLock olock(custom);
473         String key;
474         Value value;
475         BOOST_FOREACH(boost::tie(key, value), custom) {
476                 fp << "\t";
477
478                 if (key != "notes" && key != "action_url" && key != "notes_url" &&
479                     key != "icon_image" && key != "icon_image_alt" && key != "statusmap_image" && "2d_coords")
480                         fp << "_";
481
482                 fp << key << "\t" << Convert::ToString(value) << "\n";
483         }
484 }
485
486 /**
487  * Periodically writes the status.dat and objects.cache files.
488  */
489 void StatusDataWriter::StatusTimerHandler(void)
490 {
491         Log(LogInformation, "compat", "Writing compat status information");
492
493         String statuspath = GetStatusPath();
494         String objectspath = GetObjectsPath();
495         String statuspathtmp = statuspath + ".tmp"; /* XXX make this a global definition */
496         String objectspathtmp = objectspath + ".tmp";
497
498         std::ofstream statusfp;
499         statusfp.open(statuspathtmp.CStr(), std::ofstream::out | std::ofstream::trunc);
500
501         statusfp << std::fixed;
502
503         statusfp << "# Icinga status file" << "\n"
504                  << "# This file is auto-generated. Do not modify this file." << "\n"
505                  << "\n";
506
507         statusfp << "info {" << "\n"
508                  << "\t" << "created=" << Utility::GetTime() << "\n"
509                  << "\t" << "version=2.0" << "\n"
510                  << "\t" << "}" << "\n"
511                  << "\n";
512
513         statusfp << "programstatus {" << "\n"
514                  << "\t" << "icinga_pid=" << Utility::GetPid() << "\n"
515                  << "\t" << "daemon_mode=1" << "\n"
516                  << "\t" << "program_start=" << static_cast<long>(IcingaApplication::GetInstance()->GetStartTime()) << "\n"
517                  << "\t" << "active_service_checks_enabled=1" << "\n"
518                  << "\t" << "passive_service_checks_enabled=1" << "\n"
519                  << "\t" << "active_host_checks_enabled=1" << "\n"
520                  << "\t" << "passive_host_checks_enabled=1" << "\n"
521                  << "\t" << "check_service_freshness=0" << "\n"
522                  << "\t" << "check_host_freshness=0" << "\n"
523                  << "\t" << "enable_notifications=1" << "\n"
524                  << "\t" << "enable_flap_detection=1" << "\n"
525                  << "\t" << "enable_failure_prediction=0" << "\n"
526                  << "\t" << "active_scheduled_service_check_stats=" << CIB::GetActiveChecksStatistics(60) << "," << CIB::GetActiveChecksStatistics(5 * 60) << "," << CIB::GetActiveChecksStatistics(15 * 60) << "\n"
527                  << "\t" << "passive_service_check_stats=" << CIB::GetPassiveChecksStatistics(60) << "," << CIB::GetPassiveChecksStatistics(5 * 60) << "," << CIB::GetPassiveChecksStatistics(15 * 60) << "\n"
528                  << "\t" << "next_downtime_id=" << Service::GetNextDowntimeID() << "\n"
529                  << "\t" << "next_comment_id=" << Service::GetNextCommentID() << "\n"
530                  << "\t" << "}" << "\n"
531                  << "\n";
532
533         std::ofstream objectfp;
534         objectfp.open(objectspathtmp.CStr(), std::ofstream::out | std::ofstream::trunc);
535
536         objectfp << std::fixed;
537
538         objectfp << "# Icinga objects cache file" << "\n"
539                  << "# This file is auto-generated. Do not modify this file." << "\n"
540                  << "\n";
541
542         BOOST_FOREACH(const Host::Ptr& host, DynamicType::GetObjects<Host>()) {
543                 std::ostringstream tempstatusfp;
544                 tempstatusfp << std::fixed;
545                 DumpHostStatus(tempstatusfp, host);
546                 statusfp << tempstatusfp.str();
547
548                 std::ostringstream tempobjectfp;
549                 tempobjectfp << std::fixed;
550                 DumpHostObject(tempobjectfp, host);
551                 objectfp << tempobjectfp.str();
552         }
553
554         BOOST_FOREACH(const HostGroup::Ptr& hg, DynamicType::GetObjects<HostGroup>()) {
555                 std::ostringstream tempobjectfp;
556                 tempobjectfp << std::fixed;
557
558                 tempobjectfp << "define hostgroup {" << "\n"
559                          << "\t" << "hostgroup_name" << "\t" << hg->GetName() << "\n";
560
561                 DumpCustomAttributes(tempobjectfp, hg);
562
563                 tempobjectfp << "\t" << "members" << "\t";
564                 DumpNameList(tempobjectfp, hg->GetMembers());
565                 tempobjectfp << "\n"
566                              << "\t" << "}" << "\n";
567
568                 objectfp << tempobjectfp.str();
569         }
570
571         BOOST_FOREACH(const Service::Ptr& service, DynamicType::GetObjects<Service>()) {
572                 std::ostringstream tempstatusfp;
573                 tempstatusfp << std::fixed;
574                 DumpServiceStatus(tempstatusfp, service);
575                 statusfp << tempstatusfp.str();
576
577                 std::ostringstream tempobjectfp;
578                 tempobjectfp << std::fixed;
579                 DumpServiceObject(tempobjectfp, service);
580                 objectfp << tempobjectfp.str();
581         }
582
583         BOOST_FOREACH(const ServiceGroup::Ptr& sg, DynamicType::GetObjects<ServiceGroup>()) {
584                 std::ostringstream tempobjectfp;
585                 tempobjectfp << std::fixed;
586
587                 tempobjectfp << "define servicegroup {" << "\n"
588                          << "\t" << "servicegroup_name" << "\t" << sg->GetName() << "\n";
589
590                 DumpCustomAttributes(tempobjectfp, sg);
591
592                 tempobjectfp << "\t" << "members" << "\t";
593
594                 std::vector<String> sglist;
595                 BOOST_FOREACH(const Service::Ptr& service, sg->GetMembers()) {
596                         Host::Ptr host = service->GetHost();
597
598                         if (!host)
599                                 continue;
600
601                         sglist.push_back(host->GetName());
602                         sglist.push_back(service->GetShortName());
603                 }
604
605                 DumpStringList(tempobjectfp, sglist);
606
607                 tempobjectfp << "\n"
608                          << "}" << "\n";
609
610                 objectfp << tempobjectfp.str();
611         }
612
613         BOOST_FOREACH(const User::Ptr& user, DynamicType::GetObjects<User>()) {
614                 std::ostringstream tempobjectfp;
615                 tempobjectfp << std::fixed;
616
617                 tempobjectfp << "define contact {" << "\n"
618                          << "\t" << "contact_name" << "\t" << user->GetName() << "\n"
619                          << "\t" << "alias" << "\t" << user->GetDisplayName() << "\n"
620                          << "\t" << "service_notification_options" << "\t" << "w,u,c,r,f,s" << "\n"
621                          << "\t" << "host_notification_options" << "\t" << "d,u,r,f,s" << "\n"
622                          << "\t" << "host_notifications_enabled" << "\t" << 1 << "\n"
623                          << "\t" << "service_notifications_enabled" << "\t" << 1 << "\n"
624                          << "\t" << "}" << "\n"
625                          << "\n";
626
627                 objectfp << tempobjectfp.str();
628         }
629
630         BOOST_FOREACH(const UserGroup::Ptr& ug, DynamicType::GetObjects<UserGroup>()) {
631                 std::ostringstream tempobjectfp;
632                 tempobjectfp << std::fixed;
633
634                 tempobjectfp << "define contactgroup {" << "\n"
635                          << "\t" << "contactgroup_name" << "\t" << ug->GetName() << "\n"
636                          << "\t" << "alias" << "\t" << ug->GetDisplayName() << "\n";
637
638                 tempobjectfp << "\t" << "members" << "\t";
639                 DumpNameList(tempobjectfp, ug->GetMembers());
640                 tempobjectfp << "\n"
641                              << "\t" << "}" << "\n";
642
643                 objectfp << tempobjectfp.str();
644         }
645
646         BOOST_FOREACH(const Command::Ptr& command, DynamicType::GetObjects<CheckCommand>()) {
647                 DumpCommand(objectfp, command);
648         }
649
650         BOOST_FOREACH(const Command::Ptr& command, DynamicType::GetObjects<NotificationCommand>()) {
651                 DumpCommand(objectfp, command);
652         }
653
654         BOOST_FOREACH(const Command::Ptr& command, DynamicType::GetObjects<EventCommand>()) {
655                 DumpCommand(objectfp, command);
656         }
657
658         BOOST_FOREACH(const TimePeriod::Ptr& tp, DynamicType::GetObjects<TimePeriod>()) {
659                 DumpTimePeriod(objectfp, tp);
660         }
661
662         statusfp.close();
663         objectfp.close();
664
665 #ifdef _WIN32
666         _unlink(statuspath.CStr());
667         _unlink(objectspath.CStr());
668 #endif /* _WIN32 */
669
670         statusfp.close();
671         if (rename(statuspathtmp.CStr(), statuspath.CStr()) < 0) {
672                 BOOST_THROW_EXCEPTION(posix_error()
673                     << boost::errinfo_api_function("rename")
674                     << boost::errinfo_errno(errno)
675                     << boost::errinfo_file_name(statuspathtmp));
676         }
677
678         objectfp.close();
679         if (rename(objectspathtmp.CStr(), objectspath.CStr()) < 0) {
680                 BOOST_THROW_EXCEPTION(posix_error()
681                     << boost::errinfo_api_function("rename")
682                     << boost::errinfo_errno(errno)
683                     << boost::errinfo_file_name(objectspathtmp));
684         }
685 }
686
687 void StatusDataWriter::InternalSerialize(const Dictionary::Ptr& bag, int attributeTypes) const
688 {
689         DynamicObject::InternalSerialize(bag, attributeTypes);
690
691         if (attributeTypes & Attribute_Config) {
692                 bag->Set("status_path", m_StatusPath);
693                 bag->Set("objects_path", m_ObjectsPath);
694         }
695 }
696
697 void StatusDataWriter::InternalDeserialize(const Dictionary::Ptr& bag, int attributeTypes)
698 {
699         DynamicObject::InternalDeserialize(bag, attributeTypes);
700
701         if (attributeTypes & Attribute_Config) {
702                 m_StatusPath = bag->Get("status_path");
703                 m_ObjectsPath = bag->Get("objects_path");
704         }
705 }