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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
// Copyright Contributors to the DNF5 project.
// Copyright Contributors to the libdnf project.
// SPDX-License-Identifier: LGPL-2.1-or-later
//
// This file is part of libdnf: https://github.com/rpm-software-management/libdnf/
//
// Libdnf is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 2.1 of the License, or
// (at your option) any later version.
//
// Libdnf is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with libdnf. If not, see <https://www.gnu.org/licenses/>.
#ifndef LIBDNF5_CLI_EXCEPTION_HPP
#define LIBDNF5_CLI_EXCEPTION_HPP
#include "exit-codes.hpp"
#include "libdnf5-cli/defs.h"
#include <libdnf5/base/transaction.hpp>
#include <libdnf5/common/exception.hpp>
namespace libdnf5::cli {
/// Base class for libdnf5-cli exceptions.
class Error : public libdnf5::Error {
public:
using libdnf5::Error::Error;
const char * get_domain_name() const noexcept override { return "libdnf5::cli"; }
const char * get_name() const noexcept override { return "Error"; }
};
/// Exception is thrown when the user does not confirm the transaction.
class LIBDNF_CLI_API AbortedByUserError : public Error {
public:
AbortedByUserError();
const char * get_name() const noexcept override { return "AbortedByUserError"; }
};
/// Exception is thrown when the user does not have enough privileges to perform requested operation.
class InsufficientPrivilegesError : public Error {
public:
using Error::Error;
const char * get_name() const noexcept override { return "InsufficientPrivilegesError"; }
};
/// Exception is thrown when trying to write to a read-only system
class ReadOnlySystemError : public Error {
public:
using Error::Error;
const char * get_name() const noexcept override { return "ReadOnlySystemError"; }
};
/// Exception is thrown when libdnf5 fails to resolve the transaction.
class LIBDNF_CLI_API GoalResolveError : public Error {
public:
/// Construct Error from a list of string representations of resolve logs.
/// @param resolve_logs List of resolve logs
explicit GoalResolveError(const std::vector<std::string> resolve_logs);
/// A constructor that extracts errors from the transaction.
///
/// @param transaction The failed transaction
explicit GoalResolveError(const libdnf5::base::Transaction & transaction)
: GoalResolveError(transaction.get_resolve_logs_as_strings()) {}
const char * get_name() const noexcept override { return "GoalResolveError"; }
const char * what() const noexcept override;
private:
std::vector<std::string> resolve_logs;
};
/// Exception used when non-standard exit code should be returned
class CommandExitError : public Error {
public:
/// Constructs the error with given exit code and with custom formatted error
/// message.
///
/// @param exit_code The exit code
/// @param format The format string for the message
/// @param args The format arguments
template <typename... Ss>
explicit CommandExitError(int exit_code, BgettextMessage format, Ss &&... args)
: Error(format, std::forward<Ss>(args)...),
exit_code(exit_code) {}
const char * get_name() const noexcept override { return "CommandExitError"; }
/// @return The exit code
int get_exit_code() const noexcept { return exit_code; }
private:
int exit_code;
};
/// Exception used when non-standard exit code should be returned without displaying any message to the user
class LIBDNF_CLI_API SilentCommandExitError : public Error {
public:
/// Constructs the error with given exit code.
///
/// @param exit_code The exit code
explicit SilentCommandExitError(int exit_code);
const char * get_name() const noexcept override { return "SilentCommandExitError"; }
/// @return The exit code
int get_exit_code() const noexcept { return exit_code; }
private:
int exit_code;
};
} // namespace libdnf5::cli
#endif
|