icinga2/lib/icinga/dependency.ti

109 lines
2.8 KiB
Text
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
2014-05-25 10:23:35 -04:00
#include "icinga/customvarobject.hpp"
#include "icinga/checkable.hpp"
#impl_include "icinga/service.hpp"
library icinga;
namespace icinga
{
code {{{
2017-12-31 01:22:16 -05:00
class DependencyNameComposer : public NameComposer
{
public:
virtual String MakeName(const String& shortName, const Object::Ptr& context) const override;
virtual Dictionary::Ptr ParseName(const String& name) const override;
};
}}}
class Dependency : CustomVarObject < DependencyNameComposer
{
activation_priority -10;
load_after Host;
load_after Service;
[config, no_user_modify, required, navigation(child_host)] name(Host) child_host_name {
navigate {{{
return Host::GetByName(GetChildHostName());
}}}
};
[config, no_user_modify, navigation(child_service)] String child_service_name {
track {{{
if (!oldValue.IsEmpty()) {
2021-02-04 12:29:54 -05:00
Service::Ptr service = Service::GetByNamePair(GetChildHostName(), oldValue);
DependencyGraph::RemoveDependency(this, service.get());
}
if (!newValue.IsEmpty()) {
2021-02-04 12:29:54 -05:00
Service::Ptr service = Service::GetByNamePair(GetChildHostName(), newValue);
DependencyGraph::AddDependency(this, service.get());
}
}}}
navigate {{{
if (!GetChildServiceName().IsEmpty()) {
Host::Ptr host = Host::GetByName(GetChildHostName());
if (host)
return host->GetServiceByShortName(GetChildServiceName());
}
return nullptr;
}}}
};
[config, no_user_modify, required, navigation(parent_host)] name(Host) parent_host_name {
navigate {{{
return Host::GetByName(GetParentHostName());
}}}
};
[config, no_user_modify, navigation(parent_service)] String parent_service_name {
track {{{
if (!oldValue.IsEmpty()) {
Service::Ptr service = Service::GetByNamePair(GetParentHostName(), oldValue);
DependencyGraph::RemoveDependency(this, service.get());
}
if (!newValue.IsEmpty()) {
Service::Ptr service = Service::GetByNamePair(GetParentHostName(), newValue);
DependencyGraph::AddDependency(this, service.get());
}
}}}
navigate {{{
if (!GetParentServiceName().IsEmpty()) {
Host::Ptr host = Host::GetByName(GetParentHostName());
if (host)
return host->GetServiceByShortName(GetParentServiceName());
}
return nullptr;
}}}
};
[config, no_user_modify] String redundancy_group;
[config, no_user_modify, navigation] name(TimePeriod) period (PeriodRaw) {
navigate {{{
return TimePeriod::GetByName(GetPeriodRaw());
}}}
};
[config, no_user_modify] array(Value) states;
[no_user_view, no_user_modify] int state_filter_real (StateFilter);
[config, no_user_modify] bool ignore_soft_states {
default {{{ return true; }}}
};
[config] bool disable_checks;
[config] bool disable_notifications {
default {{{ return true; }}}
};
};
}