-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dnfdaemon-client: Clean command implemetation
- Loading branch information
Showing
3 changed files
with
127 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/* | ||
Copyright Contributors to the libdnf project. | ||
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 General Public License as published by | ||
the Free Software Foundation, either version 2 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 General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with libdnf. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include "clean.hpp" | ||
|
||
#include "commands/shared_options.hpp" | ||
#include "context.hpp" | ||
#include "exception.hpp" | ||
#include "utils/auth.hpp" | ||
|
||
#include <dnf5daemon-server/dbus.hpp> | ||
#include <libdnf5/conf/option_string.hpp> | ||
#include <libdnf5/utils/bgettext/bgettext-mark-domain.h> | ||
|
||
#include <iostream> | ||
#include <memory> | ||
|
||
namespace dnfdaemon::client { | ||
|
||
using namespace libdnf5::cli; | ||
|
||
void CleanCommand::set_parent_command() { | ||
auto * arg_parser_parent_cmd = get_session().get_argument_parser().get_root_command(); | ||
auto * arg_parser_this_cmd = get_argument_parser_command(); | ||
arg_parser_parent_cmd->register_command(arg_parser_this_cmd); | ||
arg_parser_parent_cmd->get_group("software_management_commands").register_argument(arg_parser_this_cmd); | ||
} | ||
|
||
void CleanCommand::set_argument_parser() { | ||
auto & parser = get_context().get_argument_parser(); | ||
auto & cmd = *get_argument_parser_command(); | ||
|
||
cmd.set_description("Remove or expire cached data"); | ||
|
||
cache_types = parser.add_new_values(); | ||
auto cache_types_arg = parser.add_new_positional_arg( | ||
"cache_types", | ||
1, | ||
parser.add_init_value(std::unique_ptr<libdnf5::Option>(new libdnf5::OptionString(nullptr))), | ||
cache_types); | ||
cache_types_arg->set_description("Cache type to clean up"); | ||
cmd.register_positional_arg(cache_types_arg); | ||
} | ||
|
||
void CleanCommand::run() { | ||
auto & ctx = get_context(); | ||
|
||
if (!libdnf5::utils::am_i_root()) { | ||
throw UnprivilegedUserError(); | ||
} | ||
|
||
bool success; | ||
std::string error_msg; | ||
ctx.session_proxy->callMethod("clean") | ||
.onInterface(dnfdaemon::INTERFACE_BASE) | ||
.withTimeout(static_cast<uint64_t>(-1)) | ||
.withArguments(dynamic_cast<libdnf5::OptionString *>((*cache_types)[0].get())->get_value()) | ||
.storeResultsTo(success, error_msg); | ||
|
||
if (success) { | ||
std::cout << "Cache successfully cleaned." << std::endl; | ||
} else { | ||
throw libdnf5::cli::CommandExitError(1, M_("Error cleaning the cache: {}"), error_msg); | ||
} | ||
} | ||
|
||
} // namespace dnfdaemon::client |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* | ||
Copyright Contributors to the libdnf project. | ||
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 General Public License as published by | ||
the Free Software Foundation, either version 2 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 General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with libdnf. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#ifndef DNF5DAEMON_CLIENT_COMMANDS_CLEAN_CLEAN_HPP | ||
#define DNF5DAEMON_CLIENT_COMMANDS_CLEAN_CLEAN_HPP | ||
|
||
#include "commands/command.hpp" | ||
|
||
#include <libdnf5/conf/option_bool.hpp> | ||
|
||
namespace dnfdaemon::client { | ||
|
||
class CleanCommand : public TransactionCommand { | ||
public: | ||
explicit CleanCommand(Context & context) : TransactionCommand(context, "clean") {} | ||
void set_parent_command() override; | ||
void set_argument_parser() override; | ||
void run() override; | ||
|
||
private: | ||
std::vector<std::unique_ptr<libdnf5::Option>> * cache_types{nullptr}; | ||
}; | ||
|
||
} // namespace dnfdaemon::client | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters