1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
#include "changelog.hpp"
#include <dnf5/iplugin.hpp>
#include <iostream>
using namespace dnf5;
namespace {
constexpr const char * PLUGIN_NAME{"changelog"};
constexpr PluginVersion PLUGIN_VERSION{.major = 1, .minor = 0, .micro = 0};
constexpr PluginAPIVersion REQUIRED_PLUGIN_API_VERSION{.major = 2, .minor = 0};
constexpr const char * attrs[]{"author.name", "author.email", "description", nullptr};
constexpr const char * attrs_value[]{"Jaroslav Rohel", "jrohel@redhat.com", "changelog command."};
class ChangelogCmdPlugin : public IPlugin {
public:
using IPlugin::IPlugin;
PluginAPIVersion get_api_version() const noexcept override { return REQUIRED_PLUGIN_API_VERSION; }
const char * get_name() const noexcept override { return PLUGIN_NAME; }
PluginVersion get_version() const noexcept override { return PLUGIN_VERSION; }
const char * const * get_attributes() const noexcept override { return attrs; }
const char * get_attribute(const char * attribute) const noexcept override {
for (size_t i = 0; attrs[i]; ++i) {
if (std::strcmp(attribute, attrs[i]) == 0) {
return attrs_value[i];
}
}
return nullptr;
}
std::vector<std::unique_ptr<Command>> create_commands() override;
void finish() noexcept override {}
};
std::vector<std::unique_ptr<Command>> ChangelogCmdPlugin::create_commands() {
std::vector<std::unique_ptr<Command>> commands;
commands.push_back(std::make_unique<ChangelogCommand>(get_context()));
return commands;
}
std::exception_ptr last_exception;
} // namespace
PluginAPIVersion dnf5_plugin_get_api_version(void) {
return REQUIRED_PLUGIN_API_VERSION;
}
const char * dnf5_plugin_get_name(void) {
return PLUGIN_NAME;
}
PluginVersion dnf5_plugin_get_version(void) {
return PLUGIN_VERSION;
}
IPlugin * dnf5_plugin_new_instance([[maybe_unused]] ApplicationVersion application_version, Context & context) try {
return new ChangelogCmdPlugin(context);
} catch (...) {
last_exception = std::current_exception();
return nullptr;
}
void dnf5_plugin_delete_instance(IPlugin * plugin_object) {
delete plugin_object;
}
std::exception_ptr * dnf5_plugin_get_last_exception(void) {
return &last_exception;
}
|