]> granicus.if.org Git - icinga2/commitdiff
livestatus: add commands table (thruk now shows extinfo)
authorMichael Friedrich <michael.friedrich@netways.de>
Tue, 9 Jul 2013 16:09:03 +0000 (18:09 +0200)
committerMichael Friedrich <michael.friedrich@netways.de>
Tue, 9 Jul 2013 16:09:03 +0000 (18:09 +0200)
refs #4372

components/livestatus/Makefile.am
components/livestatus/commandstable.cpp [new file with mode: 0644]
components/livestatus/commandstable.h [new file with mode: 0644]
components/livestatus/livestatus.vcxproj
components/livestatus/livestatus.vcxproj.filters
components/livestatus/table.cpp

index 3a16b1109619ed5541c31ce945d3afa168933891..2bfaa58d9e61a205bc973db4d91adeef6b15ff92 100644 (file)
@@ -18,6 +18,8 @@ liblivestatus_la_SOURCES = \
        column.h \
        combinerfilter.cpp \
        combinerfilter.h \
+       commandstable.cpp \
+       commandstable.h \
        commentstable.cpp \
        commentstable.h \
        component.cpp \
diff --git a/components/livestatus/commandstable.cpp b/components/livestatus/commandstable.cpp
new file mode 100644 (file)
index 0000000..4c86e72
--- /dev/null
@@ -0,0 +1,71 @@
+/******************************************************************************
+ * 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     *
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
+ ******************************************************************************/
+
+#include "livestatus/commandstable.h"
+#include "icinga/icingaapplication.h"
+#include "icinga/checkcommand.h"
+#include "icinga/eventcommand.h"
+#include "icinga/notificationcommand.h"
+#include "base/dynamictype.h"
+#include <boost/foreach.hpp>
+
+using namespace icinga;
+using namespace livestatus;
+
+CommandsTable::CommandsTable(void)
+{
+       AddColumns(this);
+}
+
+void CommandsTable::AddColumns(Table *table, const String& prefix,
+    const Column::ObjectAccessor& objectAccessor)
+{
+       table->AddColumn(prefix + "name", Column(&CommandsTable::NameAccessor, objectAccessor));
+       table->AddColumn(prefix + "line", Column(&CommandsTable::LineAccessor, objectAccessor));
+}
+
+String CommandsTable::GetName(void) const
+{
+       return "command";
+}
+
+void CommandsTable::FetchRows(const AddRowFunction& addRowFn)
+{
+       BOOST_FOREACH(const DynamicObject::Ptr& object, DynamicType::GetObjects("CheckCommand")) {
+               addRowFn(object);
+       }
+       BOOST_FOREACH(const DynamicObject::Ptr& object, DynamicType::GetObjects("EventCommand")) {
+               addRowFn(object);
+       }
+       BOOST_FOREACH(const DynamicObject::Ptr& object, DynamicType::GetObjects("NotificationCommand")) {
+               addRowFn(object);
+       }
+}
+
+Value CommandsTable::NameAccessor(const Object::Ptr& object)
+{
+       /* TODO */
+       return Value();
+}
+
+Value CommandsTable::LineAccessor(const Object::Ptr& object)
+{
+       /* TODO */
+       return Value();
+}
diff --git a/components/livestatus/commandstable.h b/components/livestatus/commandstable.h
new file mode 100644 (file)
index 0000000..aca18d6
--- /dev/null
@@ -0,0 +1,54 @@
+/******************************************************************************
+ * 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     *
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
+ ******************************************************************************/
+
+#ifndef COMMANDSTABLE_H
+#define COMMANDSTABLE_H
+
+#include "livestatus/table.h"
+
+using namespace icinga;
+
+namespace livestatus
+{
+
+/**
+ * @ingroup livestatus
+ */
+class CommandsTable : public Table
+{
+public:
+       DECLARE_PTR_TYPEDEFS(CommandsTable);
+
+       CommandsTable(void);
+
+       static void AddColumns(Table *table, const String& prefix = String(),
+           const Column::ObjectAccessor& objectAccessor = Column::ObjectAccessor());
+
+       virtual String GetName(void) const;
+
+protected:
+       virtual void FetchRows(const AddRowFunction& addRowFn);
+
+       static Value NameAccessor(const Object::Ptr& object);
+       static Value LineAccessor(const Object::Ptr& object);
+};
+
+}
+
+#endif /* COMMANDSTABLE_H */
index 891587b5c4f0bd1616113ff8ac433bbd9131466e..f6e66b707fbefc89420745ce63875a8d27745b6b 100644 (file)
@@ -23,6 +23,7 @@
     <ClInclude Include="attributefilter.h" />
     <ClInclude Include="column.h" />
     <ClInclude Include="combinerfilter.h" />
+    <ClInclude Include="commandstable.h" />
     <ClInclude Include="commentstable.h" />
     <ClInclude Include="contactgroupstable.h" />
     <ClInclude Include="contactstable.h" />
@@ -44,6 +45,7 @@
     <ClCompile Include="attributefilter.cpp" />
     <ClCompile Include="column.cpp" />
     <ClCompile Include="combinerfilter.cpp" />
+    <ClCompile Include="commandstable.cpp" />
     <ClCompile Include="commentstable.cpp" />
     <ClCompile Include="component.cpp" />
     <ClCompile Include="contactgroupstable.cpp" />
index cb27231b44f99c3832f7a2cb12f8705d2c69c3ea..38b49902c99a200f66270c91c04b29abe6f52a3e 100644 (file)
@@ -60,6 +60,9 @@
     <ClInclude Include="servicestable.h">
       <Filter>Headerdateien</Filter>
     </ClInclude>
+    <ClInclude Include="commandstable.h">
+      <Filter>Headerdateien</Filter>
+    </ClInclude>
     <ClInclude Include="commentstable.h">
       <Filter>Headerdateien</Filter>
     </ClInclude>
     <ClCompile Include="servicestable.cpp">
       <Filter>Quelldateien</Filter>
     </ClCompile>
+    <ClCompile Include="commandstable.cpp">
+      <Filter>Quelldateien</Filter>
+    </ClCompile>
     <ClCompile Include="commentstable.cpp">
       <Filter>Quelldateien</Filter>
     </ClCompile>
index bdb70d1921698e240fd5d69432e832c1d6639978..7c6a18fe28c7c1462161d271b658222e32b53ac5 100644 (file)
@@ -23,6 +23,7 @@
 #include "livestatus/contactstable.h"
 #include "livestatus/hoststable.h"
 #include "livestatus/servicestable.h"
+#include "livestatus/commandstable.h"
 #include "livestatus/commentstable.h"
 #include "livestatus/downtimestable.h"
 #include "livestatus/logtable.h"
@@ -52,6 +53,8 @@ Table::Ptr Table::GetByName(const String& name)
                return boost::make_shared<HostsTable>();
        else if (name == "services")
                return boost::make_shared<ServicesTable>();
+       else if (name == "commands")
+               return boost::make_shared<CommandsTable>();
        else if (name == "comments")
                return boost::make_shared<CommentsTable>();
        else if (name == "downtimes")