icinga2/lib/livestatus/commentstable.cpp

180 lines
4.7 KiB
C++
Raw Permalink Normal View History

Replace all existing copyright headers with `SPDX` headers I've used the following command to replace the original copyright header lines in a C-style comment block: ``` $ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f -exec perl -pi -e 's{/\*[^*]*\(\s*c\s*\)\s*(\d{4})\s*Icinga\s+GmbH[^*]*\*/}{// SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n// SPDX-License-Identifier: GPL-2.0-or-later}gi' {} + ``` For files that use shell-style comments (#) like CMakeLists.txt, I've used this command: ``` $ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f -exec perl -pi -e 's{#.*\(\s*c\s*\)\s(\d{4})\sIcinga\s+GmbH.*}{# SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n# SPDX-License-Identifier: GPL-2.0-or-later}gi' {} + ``` And for SQL files: ``` $ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f \( -name '*.sql' \) -exec perl -pi -e 's{--.*\(c\)\s(\d{4})\sIcinga\sGmbH.*}{-- SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n-- SPDX-License-Identifier: GPL-2.0-or-later}gi' {} + $ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f \( -name '*.sql' \) -exec perl -pi -e 's{-- Copyright \(c\)\s(\d{4})\sIcinga\s+Development\sTeam.*}{-- SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n-- SPDX-License-Identifier: GPL-2.0-or-later}gi' {} + ```
2026-01-27 09:06:40 -05:00
// SPDX-FileCopyrightText: 2012 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-2.0-or-later
2013-03-10 17:20:13 -04:00
2014-05-25 10:23:35 -04:00
#include "livestatus/commentstable.hpp"
#include "livestatus/hoststable.hpp"
2014-05-25 10:23:35 -04:00
#include "livestatus/servicestable.hpp"
#include "icinga/service.hpp"
#include "base/configtype.hpp"
2014-05-25 10:23:35 -04:00
#include "base/objectlock.hpp"
2013-03-10 17:20:13 -04:00
using namespace icinga;
CommentsTable::CommentsTable()
2013-03-10 17:20:13 -04:00
{
AddColumns(this);
}
void CommentsTable::AddColumns(Table *table, const String& prefix,
const Column::ObjectAccessor& objectAccessor)
2013-03-10 17:20:13 -04:00
{
table->AddColumn(prefix + "author", Column(&CommentsTable::AuthorAccessor, objectAccessor));
table->AddColumn(prefix + "comment", Column(&CommentsTable::CommentAccessor, objectAccessor));
table->AddColumn(prefix + "id", Column(&CommentsTable::IdAccessor, objectAccessor));
table->AddColumn(prefix + "entry_time", Column(&CommentsTable::EntryTimeAccessor, objectAccessor));
table->AddColumn(prefix + "type", Column(&CommentsTable::TypeAccessor, objectAccessor));
table->AddColumn(prefix + "is_service", Column(&CommentsTable::IsServiceAccessor, objectAccessor));
2013-10-03 12:58:48 -04:00
table->AddColumn(prefix + "persistent", Column(&Table::OneAccessor, objectAccessor));
table->AddColumn(prefix + "source", Column(&Table::OneAccessor, objectAccessor));
table->AddColumn(prefix + "entry_type", Column(&CommentsTable::EntryTypeAccessor, objectAccessor));
table->AddColumn(prefix + "expires", Column(&CommentsTable::ExpiresAccessor, objectAccessor));
table->AddColumn(prefix + "expire_time", Column(&CommentsTable::ExpireTimeAccessor, objectAccessor));
2013-03-10 17:20:13 -04:00
/* order is important - host w/o services must not be empty */
ServicesTable::AddColumns(table, "service_", [objectAccessor](const Value& row, LivestatusGroupByType, const Object::Ptr&) -> Value {
return ServiceAccessor(row, objectAccessor);
});
HostsTable::AddColumns(table, "host_", [objectAccessor](const Value& row, LivestatusGroupByType, const Object::Ptr&) -> Value {
return HostAccessor(row, objectAccessor);
});
2013-03-10 17:20:13 -04:00
}
String CommentsTable::GetName() const
2013-03-10 17:20:13 -04:00
{
return "comments";
}
String CommentsTable::GetPrefix() const
{
return "comment";
}
2013-03-15 13:21:29 -04:00
void CommentsTable::FetchRows(const AddRowFunction& addRowFn)
2013-03-10 17:20:13 -04:00
{
for (const Comment::Ptr& comment : ConfigType::GetObjectsByType<Comment>()) {
if (!addRowFn(comment, LivestatusGroupByNone, Empty))
return;
2013-03-10 17:20:13 -04:00
}
}
Object::Ptr CommentsTable::HostAccessor(const Value& row, const Column::ObjectAccessor&)
{
Comment::Ptr comment = static_cast<Comment::Ptr>(row);
Checkable::Ptr checkable = comment->GetCheckable();
2015-01-27 04:50:15 -05:00
Host::Ptr host;
Service::Ptr service;
tie(host, service) = GetHostService(checkable);
return host;
}
2014-05-22 03:02:44 -04:00
Object::Ptr CommentsTable::ServiceAccessor(const Value& row, const Column::ObjectAccessor&)
{
Comment::Ptr comment = static_cast<Comment::Ptr>(row);
Checkable::Ptr checkable = comment->GetCheckable();
2015-01-27 04:50:15 -05:00
Host::Ptr host;
Service::Ptr service;
tie(host, service) = GetHostService(checkable);
return service;
}
Value CommentsTable::AuthorAccessor(const Value& row)
{
Comment::Ptr comment = static_cast<Comment::Ptr>(row);
if (!comment)
return Empty;
return comment->GetAuthor();
}
Value CommentsTable::CommentAccessor(const Value& row)
{
Comment::Ptr comment = static_cast<Comment::Ptr>(row);
if (!comment)
return Empty;
return comment->GetText();
}
Value CommentsTable::IdAccessor(const Value& row)
{
Comment::Ptr comment = static_cast<Comment::Ptr>(row);
if (!comment)
return Empty;
return comment->GetLegacyId();
}
Value CommentsTable::EntryTimeAccessor(const Value& row)
{
Comment::Ptr comment = static_cast<Comment::Ptr>(row);
if (!comment)
return Empty;
return static_cast<int>(comment->GetEntryTime());
}
Value CommentsTable::TypeAccessor(const Value& row)
{
Comment::Ptr comment = static_cast<Comment::Ptr>(row);
Checkable::Ptr checkable = comment->GetCheckable();
2014-04-03 09:36:13 -04:00
if (!checkable)
return Empty;
2014-04-03 09:36:13 -04:00
if (dynamic_pointer_cast<Host>(checkable))
return 1;
else
return 2;
}
Value CommentsTable::IsServiceAccessor(const Value& row)
{
Comment::Ptr comment = static_cast<Comment::Ptr>(row);
Checkable::Ptr checkable = comment->GetCheckable();
2014-04-03 09:36:13 -04:00
if (!checkable)
return Empty;
2014-04-03 09:36:13 -04:00
return (dynamic_pointer_cast<Host>(checkable) ? 0 : 1);
}
Value CommentsTable::EntryTypeAccessor(const Value& row)
{
Comment::Ptr comment = static_cast<Comment::Ptr>(row);
if (!comment)
return Empty;
return comment->GetEntryType();
}
Value CommentsTable::ExpiresAccessor(const Value& row)
{
Comment::Ptr comment = static_cast<Comment::Ptr>(row);
if (!comment)
return Empty;
return comment->GetExpireTime() != 0;
}
Value CommentsTable::ExpireTimeAccessor(const Value& row)
{
Comment::Ptr comment = static_cast<Comment::Ptr>(row);
if (!comment)
return Empty;
return static_cast<int>(comment->GetExpireTime());
}