icinga2/components/livestatus/table.cpp

82 lines
2.6 KiB
C++
Raw Normal View History

2013-03-10 03:09:01 +01:00
/******************************************************************************
* 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 "i2-livestatus.h"
using namespace icinga;
using namespace livestatus;
2013-03-10 03:09:01 +01:00
Table::Table(void)
2013-03-10 03:09:01 +01:00
{ }
Table::Ptr Table::GetByName(const String& name)
2013-03-10 03:09:01 +01:00
{
if (name == "status")
return boost::make_shared<StatusTable>();
2013-03-10 03:09:01 +01:00
return Table::Ptr();
}
void Table::AddColumn(const String& name, const ColumnAccessor& accessor)
{
m_Columns[name] = accessor;
}
Table::ColumnAccessor Table::GetColumn(const String& name) const
{
map<String, ColumnAccessor>::const_iterator it = m_Columns.find(name);
if (it == m_Columns.end())
return ColumnAccessor();
2013-03-10 05:10:51 +01:00
return it->second;
}
vector<String> Table::GetColumnNames(void) const
{
vector<String> names;
String name;
BOOST_FOREACH(tie(name, tuples::ignore), m_Columns) {
names.push_back(name);
2013-03-10 05:10:51 +01:00
}
return names;
}
2013-03-10 03:09:01 +01:00
vector<Object::Ptr> Table::FilterRows(const Filter::Ptr& filter)
{
vector<Object::Ptr> rs;
2013-03-10 05:10:51 +01:00
FetchRows(boost::bind(&Table::FilteredAddRow, boost::ref(rs), filter, _1));
return rs;
}
2013-03-10 05:10:51 +01:00
void Table::FilteredAddRow(vector<Object::Ptr>& rs, const Filter::Ptr& filter, const Object::Ptr& object)
{
if (!filter || filter->Apply(object))
rs.push_back(object);
}
Value Table::ZeroAccessor(const Object::Ptr&)
{
return 0;
2013-03-10 03:09:01 +01:00
}