mirror of
https://github.com/Icinga/icinga2.git
synced 2026-05-28 04:12:13 -04:00
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' {} +
```
49 lines
1.4 KiB
C++
49 lines
1.4 KiB
C++
// SPDX-FileCopyrightText: 2025 Icinga GmbH <https://icinga.com>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "base/i2-base.hpp"
|
|
#include "base/value.hpp"
|
|
#include <optional>
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
/**
|
|
* ValueGenerator is a class that defines a generator function type for producing Values on demand.
|
|
*
|
|
* This class is used to create generator functions that can yield any values that can be represented by the
|
|
* Icinga Value type. The generator function is exhausted when it returns `std::nullopt`, indicating that there
|
|
* are no more values to produce. Subsequent calls to `Next()` will always return `std::nullopt` after exhaustion.
|
|
*
|
|
* @ingroup base
|
|
*/
|
|
class ValueGenerator final : public Object
|
|
{
|
|
public:
|
|
DECLARE_PTR_TYPEDEFS(ValueGenerator);
|
|
|
|
/**
|
|
* Generates a Value using the provided generator function.
|
|
*
|
|
* The generator function should return an `std::optional<Value>` which contains the produced Value or
|
|
* `std::nullopt` when there are no more values to produce. After the generator function returns `std::nullopt`,
|
|
* the generator is considered exhausted, and further calls to `Next()` will always return `std::nullopt`.
|
|
*/
|
|
using GenFunc = std::function<std::optional<Value>()>;
|
|
|
|
explicit ValueGenerator(GenFunc generator): m_Generator(std::move(generator))
|
|
{
|
|
}
|
|
|
|
std::optional<Value> Next() const
|
|
{
|
|
return m_Generator();
|
|
}
|
|
|
|
private:
|
|
GenFunc m_Generator; // The generator function that produces Values.
|
|
};
|
|
|
|
}
|