-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dnfdaemon: system-upgrade API and command #1588
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
81 changes: 81 additions & 0 deletions
81
dnf5daemon-client/commands/system-upgrade/system-upgrade.cpp
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,81 @@ | ||
/* | ||
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 "system-upgrade.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> | ||
|
||
namespace dnfdaemon::client { | ||
|
||
using namespace libdnf5::cli; | ||
|
||
void SystemUpgradeCommand::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 SystemUpgradeCommand::set_argument_parser() { | ||
auto & parser = get_context().get_argument_parser(); | ||
auto & cmd = *get_argument_parser_command(); | ||
|
||
cmd.set_description("prepare system for upgrade to a new release"); | ||
|
||
auto no_downgrade = parser.add_new_named_arg("no_downgrade"); | ||
no_downgrade->set_long_name("no-downgrade"); | ||
no_downgrade->set_description( | ||
"Do not install packages from the new release if they are older than what is currently installed"); | ||
no_downgrade->set_has_value(true); | ||
no_downgrade->set_arg_value_help("<yes|no>"); | ||
no_downgrade->link_value(&no_downgrade_option); | ||
cmd.register_named_arg(no_downgrade); | ||
|
||
// TODO(mblaha): set the releasever named arg as required (currently no API for this) | ||
} | ||
|
||
void SystemUpgradeCommand::run() { | ||
auto & ctx = get_context(); | ||
|
||
if (!libdnf5::utils::am_i_root()) { | ||
throw UnprivilegedUserError(); | ||
} | ||
|
||
// TODO(mblaha): check the target releasever is set and different from the detected one | ||
|
||
dnfdaemon::KeyValueMap options = {}; | ||
if (no_downgrade_option.get_value()) { | ||
options["mode"] = "upgrade"; | ||
} | ||
|
||
ctx.session_proxy->callMethod("system_upgrade") | ||
.onInterface(dnfdaemon::INTERFACE_RPM) | ||
.withTimeout(static_cast<uint64_t>(-1)) | ||
.withArguments(options); | ||
|
||
run_transaction(true); | ||
} | ||
|
||
} // namespace dnfdaemon::client |
42 changes: 42 additions & 0 deletions
42
dnf5daemon-client/commands/system-upgrade/system-upgrade.hpp
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_SYSTEM_UPGRADE_SYSTEM_UPGRADE_HPP | ||
#define DNF5DAEMON_CLIENT_COMMANDS_SYSTEM_UPGRADE_SYSTEM_UPGRADE_HPP | ||
|
||
#include "commands/command.hpp" | ||
|
||
#include <libdnf5/conf/option_bool.hpp> | ||
|
||
namespace dnfdaemon::client { | ||
|
||
class SystemUpgradeCommand : public TransactionCommand { | ||
public: | ||
explicit SystemUpgradeCommand(Context & context) : TransactionCommand(context, "system-upgrade") {} | ||
void set_parent_command() override; | ||
void set_argument_parser() override; | ||
void run() override; | ||
|
||
private: | ||
libdnf5::OptionBool no_downgrade_option{false}; | ||
}; | ||
|
||
} // 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
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
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
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
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
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,69 @@ | ||
#!/usr/bin/python3 | ||
# 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/>. | ||
|
||
""" | ||
This is an example how to perform a system-upgrade with dnf5daemon-server. | ||
""" | ||
|
||
import dbus | ||
|
||
DNFDAEMON_BUS_NAME = 'org.rpm.dnf.v0' | ||
DNFDAEMON_OBJECT_PATH = '/' + DNFDAEMON_BUS_NAME.replace('.', '/') | ||
|
||
IFACE_SESSION_MANAGER = '{}.SessionManager'.format(DNFDAEMON_BUS_NAME) | ||
IFACE_RPM = '{}.rpm.Rpm'.format(DNFDAEMON_BUS_NAME) | ||
IFACE_GOAL = '{}.Goal'.format(DNFDAEMON_BUS_NAME) | ||
|
||
|
||
bus = dbus.SystemBus() | ||
iface_session = dbus.Interface( | ||
bus.get_object(DNFDAEMON_BUS_NAME, DNFDAEMON_OBJECT_PATH), | ||
dbus_interface=IFACE_SESSION_MANAGER) | ||
|
||
# set the releasever to the new distribution release | ||
session = iface_session.open_session( | ||
dbus.Dictionary({"releasever": "40"}, signature=dbus.Signature('sv'))) | ||
|
||
iface_rpm = dbus.Interface( | ||
bus.get_object(DNFDAEMON_BUS_NAME, session), | ||
dbus_interface=IFACE_RPM) | ||
iface_goal = dbus.Interface( | ||
bus.get_object(DNFDAEMON_BUS_NAME, session), | ||
dbus_interface=IFACE_GOAL) | ||
|
||
# Add system upgrade to the transaction | ||
options = { | ||
"mode": "distrosync", | ||
} | ||
iface_rpm.system_upgrade(options) | ||
|
||
# resolve the transaction | ||
resolved, result = iface_goal.resolve({}) | ||
|
||
# now you can print the transaction table and ask the user for confirmation | ||
print("Resolved.") | ||
|
||
if result == 0: | ||
# execute the transaction offline (durint the next reboot) | ||
iface_goal.do_transaction({"offline": True}, timeout=2000) | ||
print("Reboot to continue with system upgrade...") | ||
else: | ||
errors = iface_goal.get_transaction_problems_string() | ||
print("Errors while resolving the transaction:") | ||
for error in errors: | ||
print(error) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
how to I set the release version to be upgraded to? It seems to be "detected" somehow, but one can upgrade both to N+1 and N+2. An explicit "upgrade to
releasever
X" would be better.The python example suggests the
releasever
is set within theopen_session
. Could there be added an argument, which will override that value if set, here as well, please?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Releasever should be set using the
open_session()
option. It needs to be set before the repositories metadata are loaded and setting it here can be too late. I'll add this information to the method description.