]> granicus.if.org Git - icinga2/blob - lib/db_ido/servicegroupdbobject.cpp
Replace boost::shared_ptr with boost::intrusive_ptr
[icinga2] / lib / db_ido / servicegroupdbobject.cpp
1 /******************************************************************************
2  * Icinga 2                                                                   *
3  * Copyright (C) 2012-2014 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 "db_ido/servicegroupdbobject.hpp"
21 #include "db_ido/dbtype.hpp"
22 #include "db_ido/dbvalue.hpp"
23 #include "base/objectlock.hpp"
24 #include "base/initialize.hpp"
25 #include <boost/foreach.hpp>
26
27 using namespace icinga;
28
29 REGISTER_DBTYPE(ServiceGroup, "servicegroup", DbObjectTypeServiceGroup, "servicegroup_object_id", ServiceGroupDbObject);
30
31 ServiceGroupDbObject::ServiceGroupDbObject(const DbType::Ptr& type, const String& name1, const String& name2)
32         : DbObject(type, name1, name2)
33 { }
34
35 Dictionary::Ptr ServiceGroupDbObject::GetConfigFields(void) const
36 {
37         Dictionary::Ptr fields = new Dictionary();
38         ServiceGroup::Ptr group = static_pointer_cast<ServiceGroup>(GetObject());
39
40         fields->Set("alias", group->GetDisplayName());
41         fields->Set("notes", group->GetNotes());
42         fields->Set("notes_url", group->GetNotesUrl());
43         fields->Set("action_url", group->GetActionUrl());
44
45         return fields;
46 }
47
48 Dictionary::Ptr ServiceGroupDbObject::GetStatusFields(void) const
49 {
50         return Empty;
51 }
52
53 void ServiceGroupDbObject::OnConfigUpdate(void)
54 {
55         ServiceGroup::Ptr group = static_pointer_cast<ServiceGroup>(GetObject());
56
57         BOOST_FOREACH(const Service::Ptr& service, group->GetMembers()) {
58                 DbQuery query1;
59                 query1.Table = DbType::GetByName("ServiceGroup")->GetTable() + "_members";
60                 query1.Type = DbQueryInsert;
61                 query1.Category = DbCatConfig;
62                 query1.Fields = new Dictionary();
63                 query1.Fields->Set("instance_id", 0); /* DbConnection class fills in real ID */
64                 query1.Fields->Set("servicegroup_id", DbValue::FromObjectInsertID(group));
65                 query1.Fields->Set("service_object_id", service);
66                 OnQuery(query1);
67         }
68 }