mirror of
https://github.com/Icinga/icinga2.git
synced 2026-04-15 22:00:07 -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' {} +
```
79 lines
2.6 KiB
C++
79 lines
2.6 KiB
C++
// SPDX-FileCopyrightText: 2012 Icinga GmbH <https://icinga.com>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#ifndef CLICOMMAND_H
|
|
#define CLICOMMAND_H
|
|
|
|
#include "cli/i2-cli.hpp"
|
|
#include "base/value.hpp"
|
|
#include "base/utility.hpp"
|
|
#include "base/type.hpp"
|
|
#include <vector>
|
|
#include <boost/program_options.hpp>
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
std::vector<String> GetBashCompletionSuggestions(const String& type, const String& word);
|
|
std::vector<String> GetFieldCompletionSuggestions(const Type::Ptr& type, const String& word);
|
|
|
|
enum ImpersonationLevel
|
|
{
|
|
ImpersonateNone,
|
|
ImpersonateRoot,
|
|
ImpersonateIcinga
|
|
};
|
|
|
|
/**
|
|
* A CLI command.
|
|
*
|
|
* @ingroup base
|
|
*/
|
|
class CLICommand : public Object
|
|
{
|
|
public:
|
|
DECLARE_PTR_TYPEDEFS(CLICommand);
|
|
|
|
typedef std::vector<String>(*ArgumentCompletionCallback)(const String&, const String&);
|
|
|
|
virtual String GetDescription() const = 0;
|
|
virtual String GetShortDescription() const = 0;
|
|
virtual int GetMinArguments() const;
|
|
virtual int GetMaxArguments() const;
|
|
virtual bool IsHidden() const;
|
|
virtual bool IsDeprecated() const;
|
|
virtual void InitParameters(boost::program_options::options_description& visibleDesc,
|
|
boost::program_options::options_description& hiddenDesc) const;
|
|
virtual ImpersonationLevel GetImpersonationLevel() const;
|
|
virtual int Run(const boost::program_options::variables_map& vm, const std::vector<std::string>& ap) const = 0;
|
|
virtual std::vector<String> GetArgumentSuggestions(const String& argument, const String& word) const;
|
|
virtual std::vector<String> GetPositionalSuggestions(const String& word) const;
|
|
|
|
static CLICommand::Ptr GetByName(const std::vector<String>& name);
|
|
static void Register(const std::vector<String>& name, const CLICommand::Ptr& command);
|
|
static void Unregister(const std::vector<String>& name);
|
|
|
|
static bool ParseCommand(int argc, char **argv, boost::program_options::options_description& visibleDesc,
|
|
boost::program_options::options_description& hiddenDesc,
|
|
boost::program_options::positional_options_description& positionalDesc,
|
|
boost::program_options::variables_map& vm, String& cmdname, CLICommand::Ptr& command, bool autocomplete);
|
|
|
|
static void ShowCommands(int argc, char **argv,
|
|
boost::program_options::options_description *visibleDesc = nullptr,
|
|
ArgumentCompletionCallback globalArgCompletionCallback = nullptr,
|
|
bool autocomplete = false, int autoindex = -1);
|
|
|
|
private:
|
|
static std::mutex& GetRegistryMutex();
|
|
static std::map<std::vector<String>, CLICommand::Ptr>& GetRegistry();
|
|
};
|
|
|
|
#define REGISTER_CLICOMMAND(name, klass) \
|
|
INITIALIZE_ONCE([]() { \
|
|
std::vector<String> vname = String(name).Split("/"); \
|
|
CLICommand::Register(vname, new klass()); \
|
|
})
|
|
|
|
}
|
|
|
|
#endif /* CLICOMMAND_H */
|