2014-10-22 13:44:02 -03:00
|
|
|
/*
|
|
|
|
* pamac-vala
|
|
|
|
*
|
2017-01-03 05:43:19 -03:00
|
|
|
* Copyright (C) 2014-2017 Guillaume Benoit <guillaume@manjaro.org>
|
2014-10-22 13:44:02 -03:00
|
|
|
*
|
|
|
|
* This program 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 get of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Pamac {
|
2017-07-29 10:35:04 -04:00
|
|
|
[DBus (name = "org.manjaro.pamac.user")]
|
|
|
|
interface UserDaemon : Object {
|
|
|
|
public abstract void refresh_handle () throws IOError;
|
2016-04-14 13:19:20 -03:00
|
|
|
public abstract AlpmPackage get_installed_pkg (string pkgname) throws IOError;
|
|
|
|
public abstract bool get_checkspace () throws IOError;
|
|
|
|
public abstract string[] get_ignorepkgs () throws IOError;
|
|
|
|
public abstract bool should_hold (string pkgname) throws IOError;
|
|
|
|
public abstract uint get_pkg_reason (string pkgname) throws IOError;
|
|
|
|
public abstract uint get_pkg_origin (string pkgname) throws IOError;
|
|
|
|
public abstract async AlpmPackage[] get_installed_pkgs () throws IOError;
|
2017-02-20 17:18:58 -03:00
|
|
|
public abstract async AlpmPackage[] get_explicitly_installed_pkgs () throws IOError;
|
2016-04-14 13:19:20 -03:00
|
|
|
public abstract async AlpmPackage[] get_foreign_pkgs () throws IOError;
|
|
|
|
public abstract async AlpmPackage[] get_orphans () throws IOError;
|
|
|
|
public abstract AlpmPackage find_installed_satisfier (string depstring) throws IOError;
|
|
|
|
public abstract AlpmPackage get_sync_pkg (string pkgname) throws IOError;
|
|
|
|
public abstract AlpmPackage find_sync_satisfier (string depstring) throws IOError;
|
|
|
|
public abstract async AlpmPackage[] search_pkgs (string search_string) throws IOError;
|
|
|
|
public abstract async AURPackage[] search_in_aur (string search_string) throws IOError;
|
|
|
|
public abstract string[] get_repos_names () throws IOError;
|
|
|
|
public abstract async AlpmPackage[] get_repo_pkgs (string repo) throws IOError;
|
|
|
|
public abstract string[] get_groups_names () throws IOError;
|
|
|
|
public abstract async AlpmPackage[] get_group_pkgs (string groupname) throws IOError;
|
2017-10-02 10:23:53 -03:00
|
|
|
public abstract AlpmPackageDetails get_pkg_details (string pkgname) throws IOError;
|
2017-03-03 08:21:27 -03:00
|
|
|
public abstract string[] get_pkg_files (string pkgname) throws IOError;
|
2016-04-14 13:19:20 -03:00
|
|
|
public abstract async AURPackageDetails get_aur_details (string pkgname) throws IOError;
|
|
|
|
public abstract string[] get_pkg_uninstalled_optdeps (string pkgname) throws IOError;
|
2016-02-02 05:28:07 -03:00
|
|
|
public abstract void start_get_updates (bool check_aur_updates) throws IOError;
|
2017-07-29 10:35:04 -04:00
|
|
|
[DBus (no_reply = true)]
|
|
|
|
public abstract void quit () throws IOError;
|
|
|
|
public signal void get_updates_finished (Updates updates);
|
|
|
|
}
|
|
|
|
[DBus (name = "org.manjaro.pamac.system")]
|
|
|
|
interface SystemDaemon : Object {
|
|
|
|
public abstract void set_environment_variables (HashTable<string,string> variables) throws IOError;
|
|
|
|
public abstract string[] get_mirrors_countries () throws IOError;
|
|
|
|
public abstract ErrorInfos get_current_error () throws IOError;
|
|
|
|
public abstract bool get_lock () throws IOError;
|
|
|
|
public abstract bool unlock () throws IOError;
|
|
|
|
public abstract void start_get_authorization () throws IOError;
|
|
|
|
public abstract void start_write_pamac_config (HashTable<string,Variant> new_pamac_conf) throws IOError;
|
|
|
|
public abstract void start_write_alpm_config (HashTable<string,Variant> new_alpm_conf) throws IOError;
|
|
|
|
public abstract void start_write_mirrors_config (HashTable<string,Variant> new_mirrors_conf) throws IOError;
|
|
|
|
public abstract void start_generate_mirrors_list () throws IOError;
|
2017-10-02 10:23:53 -03:00
|
|
|
public abstract void clean_cache (uint keep_nb, bool only_uninstalled) throws IOError;
|
2017-07-29 10:35:04 -04:00
|
|
|
public abstract void start_set_pkgreason (string pkgname, uint reason) throws IOError;
|
|
|
|
public abstract void start_refresh (bool force) throws IOError;
|
2016-08-27 09:51:34 -03:00
|
|
|
public abstract void start_sysupgrade_prepare (bool enable_downgrade, string[] temporary_ignorepkgs) throws IOError;
|
2017-02-18 13:10:26 -03:00
|
|
|
public abstract void start_trans_prepare (int transflags, string[] to_install, string[] to_remove, string[] to_load, string[] to_build) throws IOError;
|
2014-10-22 13:44:02 -03:00
|
|
|
public abstract void choose_provider (int provider) throws IOError;
|
2016-04-14 13:19:20 -03:00
|
|
|
public abstract TransactionSummary get_transaction_summary () throws IOError;
|
2015-03-04 11:55:36 -03:00
|
|
|
public abstract void start_trans_commit () throws IOError;
|
2016-02-02 05:28:07 -03:00
|
|
|
public abstract void trans_release () throws IOError;
|
2014-10-22 13:44:02 -03:00
|
|
|
public abstract void trans_cancel () throws IOError;
|
2017-07-29 10:35:04 -04:00
|
|
|
public abstract void start_get_updates (bool check_aur_updates) throws IOError;
|
2014-10-22 13:44:02 -03:00
|
|
|
[DBus (no_reply = true)]
|
|
|
|
public abstract void quit () throws IOError;
|
2017-07-29 10:35:04 -04:00
|
|
|
public signal void get_updates_finished (Updates updates);
|
2014-12-03 12:02:14 -03:00
|
|
|
public signal void emit_event (uint primary_event, uint secondary_event, string[] details);
|
2014-10-22 13:44:02 -03:00
|
|
|
public signal void emit_providers (string depend, string[] providers);
|
2016-02-02 05:28:07 -03:00
|
|
|
public signal void emit_progress (uint progress, string pkgname, uint percent, uint n_targets, uint current_target);
|
2014-10-22 13:44:02 -03:00
|
|
|
public signal void emit_download (string filename, uint64 xfered, uint64 total);
|
|
|
|
public signal void emit_totaldownload (uint64 total);
|
|
|
|
public signal void emit_log (uint level, string msg);
|
2015-03-04 11:55:36 -03:00
|
|
|
public signal void set_pkgreason_finished ();
|
2016-02-02 05:28:07 -03:00
|
|
|
public signal void refresh_finished (bool success);
|
|
|
|
public signal void trans_prepare_finished (bool success);
|
|
|
|
public signal void trans_commit_finished (bool success);
|
2015-08-20 10:11:18 -03:00
|
|
|
public signal void get_authorization_finished (bool authorized);
|
2016-02-02 05:28:07 -03:00
|
|
|
public signal void write_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon,
|
2017-10-02 10:23:53 -03:00
|
|
|
bool enable_aur, bool search_aur, bool check_aur_updates);
|
2015-08-20 10:11:18 -03:00
|
|
|
public signal void write_alpm_config_finished (bool checkspace);
|
|
|
|
public signal void write_mirrors_config_finished (string choosen_country, string choosen_generation_method);
|
|
|
|
public signal void generate_mirrors_list_data (string line);
|
|
|
|
public signal void generate_mirrors_list_finished ();
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
public class Transaction: Object {
|
|
|
|
|
2016-02-26 06:37:26 -03:00
|
|
|
enum Type {
|
|
|
|
STANDARD = (1 << 0),
|
|
|
|
UPDATE = (1 << 1),
|
|
|
|
BUILD = (1 << 2)
|
|
|
|
}
|
|
|
|
|
2017-09-09 04:43:18 -03:00
|
|
|
public enum Mode {
|
|
|
|
MANAGER,
|
|
|
|
INSTALLER
|
|
|
|
}
|
|
|
|
|
2017-07-29 10:35:04 -04:00
|
|
|
UserDaemon user_daemon;
|
|
|
|
SystemDaemon system_daemon;
|
2016-02-26 06:37:26 -03:00
|
|
|
|
2017-09-09 04:43:18 -03:00
|
|
|
public Mode mode;
|
2016-04-14 13:19:20 -03:00
|
|
|
Pamac.Config pamac_config;
|
|
|
|
public bool check_aur_updates { get { return pamac_config.check_aur_updates; } }
|
|
|
|
public bool enable_aur { get { return pamac_config.enable_aur; } }
|
|
|
|
public unowned GLib.HashTable<string,string> environment_variables { get {return pamac_config.environment_variables; } }
|
|
|
|
public bool no_update_hide_icon { get { return pamac_config.no_update_hide_icon; } }
|
2016-05-13 12:57:43 -03:00
|
|
|
public bool recurse { get { return pamac_config.recurse; } }
|
2016-04-14 13:19:20 -03:00
|
|
|
public uint64 refresh_period { get { return pamac_config.refresh_period; } }
|
2017-10-02 10:23:53 -03:00
|
|
|
public bool search_aur { get { return pamac_config.search_aur; } }
|
2016-02-02 05:28:07 -03:00
|
|
|
|
2016-04-14 13:19:20 -03:00
|
|
|
//Alpm.TransFlag
|
|
|
|
int flags;
|
2016-02-02 05:28:07 -03:00
|
|
|
|
2016-04-14 13:19:20 -03:00
|
|
|
public GenericSet<string?> to_install;
|
2015-04-11 13:00:49 -03:00
|
|
|
public GenericSet<string?> to_remove;
|
|
|
|
public GenericSet<string?> to_load;
|
|
|
|
public GenericSet<string?> to_build;
|
2017-07-29 10:35:04 -04:00
|
|
|
public GenericSet<string?> to_update;
|
2017-02-18 13:10:26 -03:00
|
|
|
Queue<string> to_build_queue;
|
|
|
|
string[] aur_pkgs_to_install;
|
2016-04-14 13:19:20 -03:00
|
|
|
GenericSet<string?> previous_to_install;
|
|
|
|
GenericSet<string?> previous_to_remove;
|
|
|
|
public GenericSet<string?> transaction_summary;
|
2016-02-26 06:37:26 -03:00
|
|
|
public GenericSet<string?> temporary_ignorepkgs;
|
|
|
|
|
2014-10-22 13:44:02 -03:00
|
|
|
uint64 total_download;
|
|
|
|
uint64 already_downloaded;
|
|
|
|
string previous_textbar;
|
2016-02-02 05:28:07 -03:00
|
|
|
float previous_percent;
|
2014-10-22 13:44:02 -03:00
|
|
|
string previous_filename;
|
2014-12-30 11:04:40 -03:00
|
|
|
uint pulse_timeout_id;
|
2014-10-22 13:44:02 -03:00
|
|
|
bool sysupgrade_after_trans;
|
2016-02-02 05:28:07 -03:00
|
|
|
bool enable_downgrade;
|
2017-02-18 13:10:26 -03:00
|
|
|
bool no_confirm_commit;
|
|
|
|
bool build_after_sysupgrade;
|
|
|
|
bool building;
|
2016-02-02 05:28:07 -03:00
|
|
|
uint64 previous_xfered;
|
|
|
|
uint64 download_rate;
|
|
|
|
uint64 rates_nb;
|
|
|
|
Timer timer;
|
2016-03-01 11:04:02 -03:00
|
|
|
bool success;
|
2016-08-27 09:51:34 -03:00
|
|
|
StringBuilder warning_textbuffer;
|
2014-10-22 13:44:02 -03:00
|
|
|
|
|
|
|
//dialogs
|
|
|
|
TransactionSumDialog transaction_sum_dialog;
|
2016-05-17 13:11:49 -04:00
|
|
|
public ProgressBox progress_box;
|
|
|
|
Vte.Terminal term;
|
|
|
|
Vte.Pty pty;
|
2017-02-18 13:10:26 -03:00
|
|
|
Cancellable build_cancellable;
|
|
|
|
public Gtk.ScrolledWindow term_window;
|
2014-10-22 13:44:02 -03:00
|
|
|
//parent window
|
2016-04-14 13:19:20 -03:00
|
|
|
public Gtk.ApplicationWindow? application_window { get; private set; }
|
2014-10-22 13:44:02 -03:00
|
|
|
|
2017-03-06 16:58:30 -03:00
|
|
|
public signal void start_downloading ();
|
|
|
|
public signal void stop_downloading ();
|
2017-02-18 13:10:26 -03:00
|
|
|
public signal void start_building ();
|
2017-03-06 16:58:30 -03:00
|
|
|
public signal void stop_building ();
|
2016-05-17 13:11:49 -04:00
|
|
|
public signal void important_details_outpout (bool must_show);
|
2016-03-01 11:04:02 -03:00
|
|
|
public signal void finished (bool success);
|
2016-02-26 06:37:26 -03:00
|
|
|
public signal void set_pkgreason_finished ();
|
|
|
|
public signal void write_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon,
|
2017-10-02 10:23:53 -03:00
|
|
|
bool enable_aur, bool search_aur, bool check_aur_updates);
|
2016-02-26 06:37:26 -03:00
|
|
|
public signal void write_alpm_config_finished (bool checkspace);
|
|
|
|
public signal void write_mirrors_config_finished (string choosen_country, string choosen_generation_method);
|
2016-08-24 09:53:39 -03:00
|
|
|
public signal void generate_mirrors_list ();
|
2017-07-29 10:35:04 -04:00
|
|
|
public signal void run_preferences_dialog_finished ();
|
|
|
|
public signal void get_updates_finished (Updates updates);
|
2014-10-22 13:44:02 -03:00
|
|
|
|
2016-02-02 05:28:07 -03:00
|
|
|
public Transaction (Gtk.ApplicationWindow? application_window) {
|
2017-09-09 04:43:18 -03:00
|
|
|
mode = Mode.MANAGER;
|
2016-02-02 05:28:07 -03:00
|
|
|
pamac_config = new Pamac.Config ("/etc/pamac.conf");
|
2016-04-14 13:19:20 -03:00
|
|
|
flags = (1 << 4); //Alpm.TransFlag.CASCADE
|
2016-02-02 05:28:07 -03:00
|
|
|
if (pamac_config.recurse) {
|
2016-04-14 13:19:20 -03:00
|
|
|
flags |= (1 << 5); //Alpm.TransFlag.RECURSE
|
2016-02-02 05:28:07 -03:00
|
|
|
}
|
2016-04-14 13:19:20 -03:00
|
|
|
to_install = new GenericSet<string?> (str_hash, str_equal);
|
2015-04-11 13:00:49 -03:00
|
|
|
to_remove = new GenericSet<string?> (str_hash, str_equal);
|
|
|
|
to_load = new GenericSet<string?> (str_hash, str_equal);
|
|
|
|
to_build = new GenericSet<string?> (str_hash, str_equal);
|
2017-07-29 10:35:04 -04:00
|
|
|
to_update = new GenericSet<string?> (str_hash, str_equal);
|
2017-02-18 13:10:26 -03:00
|
|
|
to_build_queue = new Queue<string> ();
|
2016-04-14 13:19:20 -03:00
|
|
|
previous_to_install = new GenericSet<string?> (str_hash, str_equal);
|
|
|
|
previous_to_remove = new GenericSet<string?> (str_hash, str_equal);
|
|
|
|
transaction_summary = new GenericSet<string?> (str_hash, str_equal);
|
2016-02-26 06:37:26 -03:00
|
|
|
temporary_ignorepkgs = new GenericSet<string?> (str_hash, str_equal);
|
2017-07-29 10:35:04 -04:00
|
|
|
connecting_user_daemon ();
|
2014-10-22 13:44:02 -03:00
|
|
|
//creating dialogs
|
2016-02-02 05:28:07 -03:00
|
|
|
this.application_window = application_window;
|
|
|
|
transaction_sum_dialog = new TransactionSumDialog (application_window);
|
2016-05-17 13:11:49 -04:00
|
|
|
progress_box = new ProgressBox ();
|
|
|
|
progress_box.progressbar.text = "";
|
|
|
|
//creating terminal
|
|
|
|
term = new Vte.Terminal ();
|
2017-02-18 13:10:26 -03:00
|
|
|
term.set_scrollback_lines (-1);
|
2016-05-17 13:11:49 -04:00
|
|
|
term.expand = true;
|
|
|
|
term.visible = true;
|
2017-02-18 13:10:26 -03:00
|
|
|
var black = Gdk.RGBA ();
|
|
|
|
black.parse ("black");
|
|
|
|
term.set_color_cursor (black);
|
|
|
|
term.button_press_event.connect (on_term_button_press_event);
|
|
|
|
term.key_press_event.connect (on_term_key_press_event);
|
2016-05-17 13:11:49 -04:00
|
|
|
// creating pty for term
|
|
|
|
try {
|
|
|
|
pty = term.pty_new_sync (Vte.PtyFlags.NO_HELPER);
|
|
|
|
} catch (Error e) {
|
|
|
|
stderr.printf ("Error: %s\n", e.message);
|
|
|
|
}
|
|
|
|
// add term in a grid with a scrollbar
|
2017-02-18 13:10:26 -03:00
|
|
|
term_window = new Gtk.ScrolledWindow (null, term.vadjustment);
|
|
|
|
term_window.expand = true;
|
|
|
|
term_window.visible = true;
|
|
|
|
term_window.propagate_natural_height = true;
|
|
|
|
term_window.add (term);
|
|
|
|
build_cancellable = new Cancellable ();
|
2014-10-22 13:44:02 -03:00
|
|
|
// progress data
|
|
|
|
previous_textbar = "";
|
|
|
|
previous_filename = "";
|
|
|
|
sysupgrade_after_trans = false;
|
2017-02-18 13:10:26 -03:00
|
|
|
no_confirm_commit = false;
|
|
|
|
build_after_sysupgrade = false;
|
|
|
|
building = false;
|
2016-02-02 05:28:07 -03:00
|
|
|
timer = new Timer ();
|
2016-03-01 11:04:02 -03:00
|
|
|
success = false;
|
2016-08-27 09:51:34 -03:00
|
|
|
warning_textbuffer = new StringBuilder ();
|
2016-04-23 12:27:01 -03:00
|
|
|
}
|
|
|
|
|
2017-07-29 10:35:04 -04:00
|
|
|
public void run_preferences_dialog () {
|
2017-03-10 06:20:55 -03:00
|
|
|
check_authorization.begin ((obj, res) => {
|
|
|
|
bool authorized = check_authorization.end (res);
|
2016-02-26 06:37:26 -03:00
|
|
|
if (authorized) {
|
|
|
|
var preferences_dialog = new PreferencesDialog (this);
|
|
|
|
preferences_dialog.run ();
|
|
|
|
preferences_dialog.destroy ();
|
|
|
|
while (Gtk.events_pending ()) {
|
|
|
|
Gtk.main_iteration ();
|
|
|
|
}
|
|
|
|
}
|
2017-07-29 10:35:04 -04:00
|
|
|
run_preferences_dialog_finished ();
|
2016-02-26 06:37:26 -03:00
|
|
|
});
|
2016-04-23 12:27:01 -03:00
|
|
|
}
|
|
|
|
|
2016-02-02 05:28:07 -03:00
|
|
|
public ErrorInfos get_current_error () {
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
return system_daemon.get_current_error ();
|
2016-02-02 05:28:07 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
return ErrorInfos ();
|
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
2017-07-29 10:35:04 -04:00
|
|
|
public string[] get_mirrors_countries () {
|
|
|
|
string[] countries = {};
|
|
|
|
connecting_system_daemon ();
|
|
|
|
try {
|
|
|
|
countries = system_daemon.get_mirrors_countries ();
|
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
return countries;
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool get_lock () {
|
|
|
|
bool locked = false;
|
|
|
|
connecting_system_daemon ();
|
|
|
|
try {
|
|
|
|
locked = system_daemon.get_lock ();
|
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
return locked;
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool unlock () {
|
|
|
|
bool unlocked = false;
|
|
|
|
try {
|
|
|
|
unlocked = system_daemon.unlock ();
|
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
return unlocked;
|
|
|
|
}
|
|
|
|
|
2017-03-10 06:20:55 -03:00
|
|
|
async bool check_authorization () {
|
|
|
|
SourceFunc callback = check_authorization.callback;
|
|
|
|
bool authorized = false;
|
2017-07-29 10:35:04 -04:00
|
|
|
ulong handler_id = system_daemon.get_authorization_finished.connect ((authorized_) => {
|
2017-03-10 06:20:55 -03:00
|
|
|
authorized = authorized_;
|
|
|
|
Idle.add ((owned) callback);
|
|
|
|
});
|
2015-08-20 10:11:18 -03:00
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.start_get_authorization ();
|
2015-08-20 10:11:18 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
2017-03-10 06:20:55 -03:00
|
|
|
yield;
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.disconnect (handler_id);
|
2017-03-10 06:20:55 -03:00
|
|
|
return authorized;
|
2015-08-20 10:11:18 -03:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:55:36 -03:00
|
|
|
public void start_write_pamac_config (HashTable<string,Variant> new_pamac_conf) {
|
2014-10-22 13:44:02 -03:00
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.write_pamac_config_finished.connect (on_write_pamac_config_finished);
|
|
|
|
system_daemon.start_write_pamac_config (new_pamac_conf);
|
2014-12-30 11:04:40 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.write_pamac_config_finished.disconnect (on_write_pamac_config_finished);
|
2014-12-30 11:04:40 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-04 11:55:36 -03:00
|
|
|
public void start_write_alpm_config (HashTable<string,Variant> new_alpm_conf) {
|
2014-12-30 11:04:40 -03:00
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.write_alpm_config_finished.connect (on_write_alpm_config_finished);
|
|
|
|
system_daemon.start_write_alpm_config (new_alpm_conf);
|
2014-12-30 11:04:40 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.write_alpm_config_finished.disconnect (on_write_alpm_config_finished);
|
2014-12-30 11:04:40 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-04 11:55:36 -03:00
|
|
|
public void start_write_mirrors_config (HashTable<string,Variant> new_mirrors_conf) {
|
2014-12-30 11:04:40 -03:00
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.write_mirrors_config_finished.connect (on_write_mirrors_config_finished);
|
|
|
|
system_daemon.start_write_mirrors_config (new_mirrors_conf);
|
2014-11-08 13:50:35 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.write_mirrors_config_finished.disconnect (on_write_mirrors_config_finished);
|
2014-11-08 13:50:35 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-18 13:10:26 -03:00
|
|
|
bool on_term_button_press_event (Gdk.EventButton event) {
|
|
|
|
// Check if right mouse button was clicked
|
|
|
|
if (event.type == Gdk.EventType.BUTTON_PRESS && event.button == 3) {
|
|
|
|
if (term.get_has_selection ()) {
|
|
|
|
var right_click_menu = new Gtk.Menu ();
|
|
|
|
var copy_item = new Gtk.MenuItem.with_label (dgettext (null, "Copy"));
|
|
|
|
copy_item.activate.connect (() => {term.copy_clipboard ();});
|
|
|
|
right_click_menu.append (copy_item);
|
|
|
|
right_click_menu.show_all ();
|
|
|
|
right_click_menu.popup (null, null, null, event.button, event.time);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool on_term_key_press_event (Gdk.EventKey event) {
|
|
|
|
// Check if Ctrl + c keys were pressed
|
|
|
|
if (((event.state & Gdk.ModifierType.CONTROL_MASK) != 0) && (Gdk.keyval_name (event.keyval) == "c")) {
|
|
|
|
term.copy_clipboard ();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void show_in_term (string message) {
|
|
|
|
term.set_pty (pty);
|
2016-05-17 13:11:49 -04:00
|
|
|
try {
|
2017-02-18 13:10:26 -03:00
|
|
|
Process.spawn_async (null, {"echo", message}, null, SpawnFlags.SEARCH_PATH, pty.child_setup, null);
|
2016-05-17 13:11:49 -04:00
|
|
|
} catch (SpawnError e) {
|
|
|
|
stderr.printf ("SpawnError: %s\n", e.message);
|
|
|
|
}
|
2017-02-18 13:10:26 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
async int spawn_in_term (string[] args, string? working_directory = null) {
|
|
|
|
SourceFunc callback = spawn_in_term.callback;
|
|
|
|
int status = 1;
|
2016-05-17 13:11:49 -04:00
|
|
|
term.set_pty (pty);
|
2017-02-18 13:10:26 -03:00
|
|
|
var launcher = new SubprocessLauncher (SubprocessFlags.NONE);
|
|
|
|
launcher.set_cwd (working_directory);
|
|
|
|
launcher.set_environ (Environ.get ());
|
|
|
|
launcher.set_child_setup (pty.child_setup);
|
|
|
|
try {
|
|
|
|
Subprocess process = launcher.spawnv (args);
|
|
|
|
process.wait_async.begin (build_cancellable, (obj, res) => {
|
|
|
|
try {
|
|
|
|
process.wait_async.end (res);
|
|
|
|
if (process.get_if_exited ()) {
|
|
|
|
status = process.get_exit_status ();
|
|
|
|
}
|
|
|
|
} catch (Error e) {
|
|
|
|
// cancelled
|
2017-02-24 08:35:19 -03:00
|
|
|
process.send_signal (Posix.SIGINT);
|
|
|
|
process.send_signal (Posix.SIGKILL);
|
2017-02-18 13:10:26 -03:00
|
|
|
}
|
|
|
|
Idle.add ((owned) callback);
|
2017-01-28 12:44:05 -03:00
|
|
|
});
|
2017-02-18 13:10:26 -03:00
|
|
|
yield;
|
|
|
|
} catch (Error e) {
|
|
|
|
stderr.printf ("Error: %s\n", e.message);
|
2017-01-28 12:44:05 -03:00
|
|
|
}
|
2017-02-18 13:10:26 -03:00
|
|
|
return status;
|
2016-04-14 13:19:20 -03:00
|
|
|
}
|
|
|
|
|
2016-05-17 13:11:49 -04:00
|
|
|
void reset_progress_box (string action) {
|
2017-02-18 13:10:26 -03:00
|
|
|
show_in_term (action);
|
2016-05-17 13:11:49 -04:00
|
|
|
progress_box.action_label.label = action;
|
2017-03-06 16:58:30 -03:00
|
|
|
stop_progressbar_pulse ();
|
2016-05-17 13:11:49 -04:00
|
|
|
progress_box.progressbar.fraction = 0;
|
|
|
|
progress_box.progressbar.text = "";
|
2016-04-14 13:19:20 -03:00
|
|
|
}
|
|
|
|
|
2017-07-29 10:35:04 -04:00
|
|
|
public void start_progressbar_pulse () {
|
2017-03-06 16:58:30 -03:00
|
|
|
stop_progressbar_pulse ();
|
2016-08-27 09:51:34 -03:00
|
|
|
pulse_timeout_id = Timeout.add (500, (GLib.SourceFunc) progress_box.progressbar.pulse);
|
|
|
|
}
|
|
|
|
|
2017-07-29 10:35:04 -04:00
|
|
|
public void stop_progressbar_pulse () {
|
2016-08-27 09:51:34 -03:00
|
|
|
if (pulse_timeout_id != 0) {
|
|
|
|
Source.remove (pulse_timeout_id);
|
|
|
|
pulse_timeout_id = 0;
|
|
|
|
progress_box.progressbar.fraction = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-20 10:11:18 -03:00
|
|
|
public void start_generate_mirrors_list () {
|
|
|
|
string action = dgettext (null, "Refreshing mirrors list") + "...";
|
2016-05-17 13:11:49 -04:00
|
|
|
reset_progress_box (action);
|
2016-08-27 09:51:34 -03:00
|
|
|
start_progressbar_pulse ();
|
2016-05-17 13:11:49 -04:00
|
|
|
important_details_outpout (false);
|
2016-08-24 09:53:39 -03:00
|
|
|
generate_mirrors_list ();
|
2015-08-20 10:11:18 -03:00
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.generate_mirrors_list_data.connect (on_generate_mirrors_list_data);
|
|
|
|
system_daemon.generate_mirrors_list_finished.connect (on_generate_mirrors_list_finished);
|
|
|
|
system_daemon.start_generate_mirrors_list ();
|
2015-08-20 10:11:18 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
2016-08-27 09:51:34 -03:00
|
|
|
stop_progressbar_pulse ();
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.generate_mirrors_list_data.disconnect (on_generate_mirrors_list_data);
|
|
|
|
system_daemon.generate_mirrors_list_finished.disconnect (on_generate_mirrors_list_finished);
|
2015-08-20 10:11:18 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-02 10:23:53 -03:00
|
|
|
public void clean_cache (uint keep_nb, bool only_uninstalled) {
|
2016-08-25 07:33:16 -03:00
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.clean_cache (keep_nb, only_uninstalled);
|
2016-08-25 07:33:16 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-14 13:19:20 -03:00
|
|
|
public void start_set_pkgreason (string pkgname, uint reason) {
|
2014-11-08 13:50:35 -03:00
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.set_pkgreason_finished.connect (on_set_pkgreason_finished);
|
|
|
|
system_daemon.start_set_pkgreason (pkgname, reason);
|
2014-10-22 13:44:02 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.set_pkgreason_finished.disconnect (on_set_pkgreason_finished);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-02 05:28:07 -03:00
|
|
|
public void start_refresh (bool force) {
|
2017-08-08 05:06:37 -04:00
|
|
|
check_authorization.begin ((obj, res) => {
|
|
|
|
bool authorized = check_authorization.end (res);
|
|
|
|
if (authorized) {
|
|
|
|
string action = dgettext (null, "Synchronizing package databases") + "...";
|
|
|
|
reset_progress_box (action);
|
|
|
|
connecting_system_daemon ();
|
|
|
|
connecting_dbus_signals ();
|
|
|
|
try {
|
|
|
|
system_daemon.refresh_finished.connect (on_refresh_finished);
|
|
|
|
system_daemon.start_refresh (force);
|
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
system_daemon.refresh_finished.disconnect (on_refresh_finished);
|
|
|
|
success = false;
|
|
|
|
finish_transaction ();
|
|
|
|
}
|
2017-08-22 06:11:31 -03:00
|
|
|
} else {
|
|
|
|
success = false;
|
|
|
|
finish_transaction ();
|
2017-08-08 05:06:37 -04:00
|
|
|
}
|
|
|
|
});
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
|
|
|
|
2017-07-29 10:35:04 -04:00
|
|
|
public void refresh_handle () {
|
|
|
|
try {
|
|
|
|
user_daemon.refresh_handle ();
|
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-14 13:19:20 -03:00
|
|
|
public bool get_checkspace () {
|
|
|
|
bool checkspace = false;
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
checkspace = user_daemon.get_checkspace ();
|
2016-04-14 13:19:20 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
return checkspace;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string[] get_ignorepkgs () {
|
|
|
|
string[] ignorepkgs = {};
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
ignorepkgs = user_daemon.get_ignorepkgs ();
|
2016-04-14 13:19:20 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
return ignorepkgs;
|
|
|
|
}
|
|
|
|
|
|
|
|
public AlpmPackage get_installed_pkg (string pkgname) {
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
return user_daemon.get_installed_pkg (pkgname);
|
2016-04-14 13:19:20 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
return AlpmPackage () {
|
|
|
|
name = "",
|
|
|
|
version = "",
|
|
|
|
desc = "",
|
|
|
|
repo = ""
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public AlpmPackage find_installed_satisfier (string depstring) {
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
return user_daemon.find_installed_satisfier (depstring);
|
2016-04-14 13:19:20 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
return AlpmPackage () {
|
|
|
|
name = "",
|
|
|
|
version = "",
|
|
|
|
desc = "",
|
|
|
|
repo = ""
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool should_hold (string pkgname) {
|
|
|
|
bool should_hold = false;
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
should_hold = user_daemon.should_hold (pkgname);
|
2016-04-14 13:19:20 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
return should_hold;
|
|
|
|
}
|
|
|
|
|
|
|
|
public uint get_pkg_reason (string pkgname) {
|
|
|
|
uint reason = 0;
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
reason = user_daemon.get_pkg_reason (pkgname);
|
2016-04-14 13:19:20 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
return reason;
|
|
|
|
}
|
|
|
|
|
|
|
|
public uint get_pkg_origin (string pkgname) {
|
|
|
|
uint origin = 0;
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
origin = user_daemon.get_pkg_origin (pkgname);
|
2016-04-14 13:19:20 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
return origin;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async AlpmPackage[] get_installed_pkgs () {
|
|
|
|
AlpmPackage[] pkgs = {};
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
pkgs = yield user_daemon.get_installed_pkgs ();
|
2016-04-14 13:19:20 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
return pkgs;
|
|
|
|
}
|
|
|
|
|
2017-02-20 17:18:58 -03:00
|
|
|
public async AlpmPackage[] get_explicitly_installed_pkgs () {
|
|
|
|
AlpmPackage[] pkgs = {};
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
pkgs = yield user_daemon.get_explicitly_installed_pkgs ();
|
2017-02-20 17:18:58 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
return pkgs;
|
|
|
|
}
|
|
|
|
|
2016-04-14 13:19:20 -03:00
|
|
|
public async AlpmPackage[] get_foreign_pkgs () {
|
|
|
|
AlpmPackage[] pkgs = {};
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
pkgs = yield user_daemon.get_foreign_pkgs ();
|
2016-04-14 13:19:20 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
return pkgs;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async AlpmPackage[] get_orphans () {
|
|
|
|
AlpmPackage[] pkgs = {};
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
pkgs = yield user_daemon.get_orphans ();
|
2016-04-14 13:19:20 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
return pkgs;
|
|
|
|
}
|
|
|
|
|
|
|
|
public AlpmPackage get_sync_pkg (string pkgname) {
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
return user_daemon.get_sync_pkg (pkgname);
|
2016-04-14 13:19:20 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
return AlpmPackage () {
|
|
|
|
name = "",
|
|
|
|
version = "",
|
|
|
|
desc = "",
|
|
|
|
repo = ""
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public AlpmPackage find_sync_satisfier (string depstring) {
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
return user_daemon.find_sync_satisfier (depstring);
|
2016-04-14 13:19:20 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
return AlpmPackage () {
|
|
|
|
name = "",
|
|
|
|
version = "",
|
|
|
|
desc = "",
|
|
|
|
repo = ""
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public async AlpmPackage[] search_pkgs (string search_string) {
|
|
|
|
AlpmPackage[] pkgs = {};
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
pkgs = yield user_daemon.search_pkgs (search_string);
|
2016-04-14 13:19:20 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
return pkgs;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async AURPackage[] search_in_aur (string search_string) {
|
|
|
|
AURPackage[] pkgs = {};
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
pkgs = yield user_daemon.search_in_aur (search_string);
|
2016-04-14 13:19:20 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
return pkgs;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string[] get_repos_names () {
|
|
|
|
string[] repos_names = {};
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
repos_names = user_daemon.get_repos_names ();
|
2016-04-14 13:19:20 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
return repos_names;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async AlpmPackage[] get_repo_pkgs (string repo) {
|
|
|
|
AlpmPackage[] pkgs = {};
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
pkgs = yield user_daemon.get_repo_pkgs (repo);
|
2016-04-14 13:19:20 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
return pkgs;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string[] get_groups_names () {
|
|
|
|
string[] groups_names = {};
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
groups_names = user_daemon.get_groups_names ();
|
2016-04-14 13:19:20 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
return groups_names;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async AlpmPackage[] get_group_pkgs (string group_name) {
|
|
|
|
AlpmPackage[] pkgs = {};
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
pkgs = yield user_daemon.get_group_pkgs (group_name);
|
2016-04-14 13:19:20 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
return pkgs;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string[] get_pkg_uninstalled_optdeps (string pkgname) {
|
|
|
|
string[] optdeps = {};
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
optdeps = user_daemon.get_pkg_uninstalled_optdeps (pkgname);
|
2016-04-14 13:19:20 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
return optdeps;
|
|
|
|
}
|
|
|
|
|
2017-10-02 10:23:53 -03:00
|
|
|
public AlpmPackageDetails get_pkg_details (string pkgname) {
|
2016-04-14 13:19:20 -03:00
|
|
|
try {
|
2017-10-02 10:23:53 -03:00
|
|
|
return user_daemon.get_pkg_details (pkgname);
|
2016-04-14 13:19:20 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
return AlpmPackageDetails () {
|
|
|
|
name = "",
|
|
|
|
version = "",
|
|
|
|
desc = "",
|
|
|
|
repo = "",
|
|
|
|
url = "",
|
|
|
|
packager = "",
|
|
|
|
builddate = "",
|
|
|
|
installdate = "",
|
|
|
|
reason = "",
|
|
|
|
has_signature = ""
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-03 08:21:27 -03:00
|
|
|
public string[] get_pkg_files (string pkgname) {
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
return user_daemon.get_pkg_files (pkgname);
|
2017-03-03 08:21:27 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-14 13:19:20 -03:00
|
|
|
public async AURPackageDetails get_aur_details (string pkgname) {
|
|
|
|
var pkg = AURPackageDetails () {
|
|
|
|
name = "",
|
|
|
|
version = "",
|
|
|
|
desc = "",
|
|
|
|
packagebase = "",
|
|
|
|
url = "",
|
|
|
|
maintainer = ""
|
|
|
|
};
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
pkg = yield user_daemon.get_aur_details (pkgname);
|
2016-04-14 13:19:20 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
return pkg;
|
|
|
|
}
|
|
|
|
|
2016-02-02 05:28:07 -03:00
|
|
|
public void start_get_updates () {
|
2017-07-29 10:35:04 -04:00
|
|
|
user_daemon.get_updates_finished.connect (on_get_updates_finished);
|
2016-03-01 11:04:02 -03:00
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
user_daemon.start_get_updates (pamac_config.enable_aur && pamac_config.check_aur_updates);
|
2016-03-01 11:04:02 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
success = false;
|
|
|
|
finish_transaction ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void start_get_updates_for_sysupgrade () {
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.get_updates_finished.connect (on_get_updates_for_sysupgrade_finished);
|
2015-03-04 11:55:36 -03:00
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.start_get_updates (pamac_config.enable_aur && pamac_config.check_aur_updates);
|
2015-03-04 11:55:36 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
2016-03-01 11:04:02 -03:00
|
|
|
success = false;
|
2016-02-27 06:11:04 -03:00
|
|
|
finish_transaction ();
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-27 09:51:34 -03:00
|
|
|
void sysupgrade_simple (bool enable_downgrade) {
|
|
|
|
progress_box.progressbar.fraction = 0;
|
|
|
|
string[] temporary_ignorepkgs_ = {};
|
2016-02-26 06:37:26 -03:00
|
|
|
foreach (unowned string pkgname in temporary_ignorepkgs) {
|
2016-08-27 09:51:34 -03:00
|
|
|
temporary_ignorepkgs_ += pkgname;
|
2015-04-11 13:00:49 -03:00
|
|
|
}
|
2017-07-29 10:35:04 -04:00
|
|
|
connecting_system_daemon ();
|
|
|
|
connecting_dbus_signals ();
|
2014-10-22 13:44:02 -03:00
|
|
|
try {
|
2016-08-27 09:51:34 -03:00
|
|
|
// this will respond with trans_prepare_finished signal
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.start_sysupgrade_prepare (enable_downgrade, temporary_ignorepkgs_);
|
2014-10-22 13:44:02 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
2016-08-27 09:51:34 -03:00
|
|
|
success = false;
|
|
|
|
finish_transaction ();
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-02 05:28:07 -03:00
|
|
|
public void sysupgrade (bool enable_downgrade) {
|
2014-11-08 13:50:35 -03:00
|
|
|
this.enable_downgrade = enable_downgrade;
|
2014-10-26 08:30:04 -03:00
|
|
|
string action = dgettext (null, "Starting full system upgrade") + "...";
|
2016-05-17 13:11:49 -04:00
|
|
|
reset_progress_box (action);
|
2016-03-01 11:04:02 -03:00
|
|
|
start_get_updates_for_sysupgrade ();
|
2016-02-02 05:28:07 -03:00
|
|
|
}
|
|
|
|
|
2016-02-26 06:37:26 -03:00
|
|
|
void on_get_updates_finished (Updates updates) {
|
2017-07-29 10:35:04 -04:00
|
|
|
user_daemon.get_updates_finished.disconnect (on_get_updates_finished);
|
2016-03-01 11:04:02 -03:00
|
|
|
get_updates_finished (updates);
|
|
|
|
}
|
|
|
|
|
|
|
|
void on_get_updates_for_sysupgrade_finished (Updates updates) {
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.get_updates_finished.disconnect (on_get_updates_for_sysupgrade_finished);
|
2016-02-02 05:28:07 -03:00
|
|
|
// get syncfirst updates
|
|
|
|
if (updates.is_syncfirst) {
|
|
|
|
clear_lists ();
|
2017-07-29 10:35:04 -04:00
|
|
|
sysupgrade_after_trans = true;
|
|
|
|
no_confirm_commit = true;
|
|
|
|
foreach (unowned AlpmPackage infos in updates.repos_updates) {
|
2016-04-14 13:19:20 -03:00
|
|
|
to_install.add (infos.name);
|
2016-02-02 05:28:07 -03:00
|
|
|
}
|
|
|
|
// run as a standard transaction
|
|
|
|
run ();
|
|
|
|
} else {
|
|
|
|
if (updates.aur_updates.length != 0) {
|
2015-03-04 11:55:36 -03:00
|
|
|
clear_lists ();
|
2017-07-29 10:35:04 -04:00
|
|
|
foreach (unowned AURPackage infos in updates.aur_updates) {
|
2016-02-26 06:37:26 -03:00
|
|
|
if (!(infos.name in temporary_ignorepkgs)) {
|
2016-02-02 05:28:07 -03:00
|
|
|
to_build.add (infos.name);
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
|
|
|
}
|
2016-08-27 09:51:34 -03:00
|
|
|
if (updates.repos_updates.length != 0) {
|
2017-02-18 13:10:26 -03:00
|
|
|
build_after_sysupgrade = true;
|
2016-08-27 09:51:34 -03:00
|
|
|
sysupgrade_simple (enable_downgrade);
|
|
|
|
} else {
|
2017-02-18 13:10:26 -03:00
|
|
|
// only aur updates
|
|
|
|
// run as a standard transaction
|
|
|
|
run ();
|
2016-08-27 09:51:34 -03:00
|
|
|
}
|
2016-02-02 05:28:07 -03:00
|
|
|
} else {
|
2016-08-27 09:51:34 -03:00
|
|
|
if (updates.repos_updates.length != 0) {
|
|
|
|
sysupgrade_simple (enable_downgrade);
|
|
|
|
} else {
|
|
|
|
finish_transaction ();
|
2016-08-27 11:24:46 -03:00
|
|
|
stop_progressbar_pulse ();
|
2016-08-27 09:51:34 -03:00
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2016-02-02 05:28:07 -03:00
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
public void clear_lists () {
|
2016-04-14 13:19:20 -03:00
|
|
|
to_install.remove_all ();
|
2015-04-11 13:00:49 -03:00
|
|
|
to_remove.remove_all ();
|
|
|
|
to_build.remove_all ();
|
2017-02-18 13:10:26 -03:00
|
|
|
to_load.remove_all ();
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
2016-04-14 13:19:20 -03:00
|
|
|
void clear_previous_lists () {
|
|
|
|
previous_to_install.remove_all ();
|
|
|
|
previous_to_remove.remove_all ();
|
|
|
|
}
|
|
|
|
|
2017-02-18 13:10:26 -03:00
|
|
|
void start_trans_prepare (int transflags, string[] to_install, string[] to_remove, string[] to_load, string[] to_build) {
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.start_trans_prepare (transflags, to_install, to_remove, to_load, to_build);
|
2017-02-18 13:10:26 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
stop_progressbar_pulse ();
|
|
|
|
success = false;
|
|
|
|
finish_transaction ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-22 13:44:02 -03:00
|
|
|
public void run () {
|
2016-02-26 06:37:26 -03:00
|
|
|
string action = dgettext (null, "Preparing") + "...";
|
2016-05-17 13:11:49 -04:00
|
|
|
reset_progress_box (action);
|
2017-02-18 13:10:26 -03:00
|
|
|
start_progressbar_pulse ();
|
|
|
|
string[] to_install_ = {};
|
|
|
|
string[] to_remove_ = {};
|
|
|
|
string[] to_load_ = {};
|
|
|
|
string[] to_build_ = {};
|
|
|
|
foreach (unowned string name in to_install) {
|
|
|
|
to_install_ += name;
|
|
|
|
}
|
|
|
|
foreach (unowned string name in to_remove) {
|
|
|
|
to_remove_ += name;
|
|
|
|
}
|
|
|
|
foreach (unowned string path in to_load) {
|
|
|
|
to_load_ += path;
|
|
|
|
}
|
|
|
|
foreach (unowned string name in to_build) {
|
|
|
|
to_build_ += name;
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2017-07-29 10:35:04 -04:00
|
|
|
connecting_system_daemon ();
|
|
|
|
connecting_dbus_signals ();
|
2017-02-18 13:10:26 -03:00
|
|
|
start_trans_prepare (flags, to_install_, to_remove_, to_load_, to_build_);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
2016-02-26 06:37:26 -03:00
|
|
|
void choose_provider (string depend, string[] providers) {
|
2016-02-02 05:28:07 -03:00
|
|
|
var choose_provider_dialog = new ChooseProviderDialog (application_window);
|
2016-04-23 12:27:01 -03:00
|
|
|
choose_provider_dialog.title = dgettext (null, "Choose a provider for %s").printf (depend);
|
|
|
|
unowned Gtk.Box box = choose_provider_dialog.get_content_area ();
|
|
|
|
Gtk.RadioButton? last_radiobutton = null;
|
|
|
|
Gtk.RadioButton? first_radiobutton = null;
|
2016-02-02 05:28:07 -03:00
|
|
|
foreach (unowned string provider in providers) {
|
2016-04-23 12:27:01 -03:00
|
|
|
var radiobutton = new Gtk.RadioButton.with_label_from_widget (last_radiobutton, provider);
|
|
|
|
radiobutton.visible = true;
|
|
|
|
// active first provider
|
|
|
|
if (last_radiobutton == null) {
|
|
|
|
radiobutton.active = true;
|
|
|
|
first_radiobutton = radiobutton;
|
|
|
|
}
|
|
|
|
last_radiobutton = radiobutton;
|
|
|
|
box.add (radiobutton);
|
2016-02-02 05:28:07 -03:00
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
choose_provider_dialog.run ();
|
2016-04-23 12:27:01 -03:00
|
|
|
// get active provider
|
|
|
|
int index = 0;
|
|
|
|
// list is given in reverse order so reverse it !
|
|
|
|
SList<unowned Gtk.RadioButton> list = last_radiobutton.get_group ().copy ();
|
|
|
|
list.reverse ();
|
|
|
|
foreach (var radiobutton in list) {
|
|
|
|
if (radiobutton.active) {
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.choose_provider (index);
|
2016-04-23 12:27:01 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
index++;
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2015-04-11 13:00:49 -03:00
|
|
|
choose_provider_dialog.destroy ();
|
|
|
|
while (Gtk.events_pending ()) {
|
|
|
|
Gtk.main_iteration ();
|
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
2016-02-26 06:37:26 -03:00
|
|
|
Type set_transaction_sum () {
|
2015-01-02 18:29:04 -03:00
|
|
|
// return 0 if transaction_sum is empty, 2, if there are only aur updates, 1 otherwise
|
2016-02-26 06:37:26 -03:00
|
|
|
Type type = 0;
|
2014-10-22 13:44:02 -03:00
|
|
|
uint64 dsize = 0;
|
2016-04-14 13:19:20 -03:00
|
|
|
transaction_summary.remove_all ();
|
|
|
|
var summary = TransactionSummary ();
|
2014-10-22 13:44:02 -03:00
|
|
|
transaction_sum_dialog.sum_list.clear ();
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
summary = system_daemon.get_transaction_summary ();
|
2014-10-22 13:44:02 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
2016-04-14 13:19:20 -03:00
|
|
|
var iter = Gtk.TreeIter ();
|
|
|
|
if (summary.to_remove.length > 0) {
|
2016-02-26 06:37:26 -03:00
|
|
|
type |= Type.STANDARD;
|
2016-04-14 13:19:20 -03:00
|
|
|
foreach (unowned UpdateInfos infos in summary.to_remove) {
|
|
|
|
transaction_summary.add (infos.name);
|
2014-10-22 13:44:02 -03:00
|
|
|
transaction_sum_dialog.sum_list.insert_with_values (out iter, -1,
|
2016-04-14 13:19:20 -03:00
|
|
|
1, infos.name,
|
|
|
|
2, infos.old_version);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2016-04-14 13:19:20 -03:00
|
|
|
Gtk.TreePath path = transaction_sum_dialog.sum_list.get_path (iter);
|
|
|
|
int pos = (path.get_indices ()[0]) - (summary.to_remove.length - 1);
|
|
|
|
transaction_sum_dialog.sum_list.get_iter (out iter, new Gtk.TreePath.from_indices (pos));
|
|
|
|
transaction_sum_dialog.sum_list.set (iter, 0, "<b>%s</b>".printf (dgettext (null, "To remove") + ":"));
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2017-02-18 13:10:26 -03:00
|
|
|
if (summary.aur_conflicts_to_remove.length > 0) {
|
|
|
|
// do not add type enum because it is just infos
|
|
|
|
foreach (unowned UpdateInfos infos in summary.aur_conflicts_to_remove) {
|
|
|
|
transaction_summary.add (infos.name);
|
|
|
|
transaction_sum_dialog.sum_list.insert_with_values (out iter, -1,
|
|
|
|
1, infos.name,
|
|
|
|
2, infos.old_version);
|
|
|
|
}
|
|
|
|
Gtk.TreePath path = transaction_sum_dialog.sum_list.get_path (iter);
|
|
|
|
int pos = (path.get_indices ()[0]) - (summary.aur_conflicts_to_remove.length - 1);
|
|
|
|
transaction_sum_dialog.sum_list.get_iter (out iter, new Gtk.TreePath.from_indices (pos));
|
|
|
|
transaction_sum_dialog.sum_list.set (iter, 0, "<b>%s</b>".printf (dgettext (null, "To remove") + ":"));
|
|
|
|
}
|
2016-04-14 13:19:20 -03:00
|
|
|
if (summary.to_downgrade.length > 0) {
|
2016-02-26 06:37:26 -03:00
|
|
|
type |= Type.STANDARD;
|
2016-04-14 13:19:20 -03:00
|
|
|
foreach (unowned UpdateInfos infos in summary.to_downgrade) {
|
|
|
|
dsize += infos.download_size;
|
|
|
|
transaction_summary.add (infos.name);
|
2014-10-22 13:44:02 -03:00
|
|
|
transaction_sum_dialog.sum_list.insert_with_values (out iter, -1,
|
2016-04-14 13:19:20 -03:00
|
|
|
1, infos.name,
|
|
|
|
2, infos.new_version,
|
|
|
|
3, "(%s)".printf (infos.old_version));
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2016-04-14 13:19:20 -03:00
|
|
|
Gtk.TreePath path = transaction_sum_dialog.sum_list.get_path (iter);
|
|
|
|
int pos = (path.get_indices ()[0]) - (summary.to_downgrade.length - 1);
|
|
|
|
transaction_sum_dialog.sum_list.get_iter (out iter, new Gtk.TreePath.from_indices (pos));
|
|
|
|
transaction_sum_dialog.sum_list.set (iter, 0, "<b>%s</b>".printf (dgettext (null, "To downgrade") + ":"));
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2017-02-18 13:10:26 -03:00
|
|
|
if (summary.to_build.length > 0) {
|
2016-02-26 06:37:26 -03:00
|
|
|
type |= Type.BUILD;
|
2017-02-18 13:10:26 -03:00
|
|
|
// populate build queue
|
|
|
|
foreach (unowned string name in summary.aur_pkgbases_to_build) {
|
|
|
|
to_build_queue.push_tail (name);
|
|
|
|
}
|
|
|
|
aur_pkgs_to_install = {};
|
|
|
|
foreach (unowned UpdateInfos infos in summary.to_build) {
|
|
|
|
aur_pkgs_to_install += infos.name;
|
|
|
|
transaction_summary.add (infos.name);
|
2014-10-22 13:44:02 -03:00
|
|
|
transaction_sum_dialog.sum_list.insert_with_values (out iter, -1,
|
2017-02-18 13:10:26 -03:00
|
|
|
1, infos.name,
|
|
|
|
2, infos.new_version);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2016-04-14 13:19:20 -03:00
|
|
|
Gtk.TreePath path = transaction_sum_dialog.sum_list.get_path (iter);
|
2017-02-18 13:10:26 -03:00
|
|
|
int pos = (path.get_indices ()[0]) - (summary.to_build.length - 1);
|
2016-04-14 13:19:20 -03:00
|
|
|
transaction_sum_dialog.sum_list.get_iter (out iter, new Gtk.TreePath.from_indices (pos));
|
|
|
|
transaction_sum_dialog.sum_list.set (iter, 0, "<b>%s</b>".printf (dgettext (null, "To build") + ":"));
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2016-04-14 13:19:20 -03:00
|
|
|
if (summary.to_install.length > 0) {
|
2016-02-26 06:37:26 -03:00
|
|
|
type |= Type.STANDARD;
|
2016-04-14 13:19:20 -03:00
|
|
|
foreach (unowned UpdateInfos infos in summary.to_install) {
|
|
|
|
dsize += infos.download_size;
|
|
|
|
transaction_summary.add (infos.name);
|
2014-10-22 13:44:02 -03:00
|
|
|
transaction_sum_dialog.sum_list.insert_with_values (out iter, -1,
|
2016-04-14 13:19:20 -03:00
|
|
|
1, infos.name,
|
|
|
|
2, infos.new_version);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2016-04-14 13:19:20 -03:00
|
|
|
Gtk.TreePath path = transaction_sum_dialog.sum_list.get_path (iter);
|
|
|
|
int pos = (path.get_indices ()[0]) - (summary.to_install.length - 1);
|
|
|
|
transaction_sum_dialog.sum_list.get_iter (out iter, new Gtk.TreePath.from_indices (pos));
|
|
|
|
transaction_sum_dialog.sum_list.set (iter, 0, "<b>%s</b>".printf (dgettext (null, "To install") + ":"));
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2016-04-14 13:19:20 -03:00
|
|
|
if (summary.to_reinstall.length > 0) {
|
2016-02-26 06:37:26 -03:00
|
|
|
type |= Type.STANDARD;
|
2016-04-14 13:19:20 -03:00
|
|
|
foreach (unowned UpdateInfos infos in summary.to_reinstall) {
|
|
|
|
dsize += infos.download_size;
|
|
|
|
transaction_summary.add (infos.name);
|
2014-10-22 13:44:02 -03:00
|
|
|
transaction_sum_dialog.sum_list.insert_with_values (out iter, -1,
|
2016-04-14 13:19:20 -03:00
|
|
|
1, infos.name,
|
|
|
|
2, infos.old_version);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2016-04-14 13:19:20 -03:00
|
|
|
Gtk.TreePath path = transaction_sum_dialog.sum_list.get_path (iter);
|
|
|
|
int pos = (path.get_indices ()[0]) - (summary.to_reinstall.length - 1);
|
|
|
|
transaction_sum_dialog.sum_list.get_iter (out iter, new Gtk.TreePath.from_indices (pos));
|
|
|
|
transaction_sum_dialog.sum_list.set (iter, 0, "<b>%s</b>".printf (dgettext (null, "To reinstall") + ":"));
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2016-04-14 13:19:20 -03:00
|
|
|
if (summary.to_upgrade.length > 0) {
|
2016-02-26 06:37:26 -03:00
|
|
|
type |= Type.UPDATE;
|
2017-09-09 04:43:18 -03:00
|
|
|
if (mode == Mode.INSTALLER) {
|
|
|
|
foreach (unowned UpdateInfos infos in summary.to_upgrade) {
|
|
|
|
dsize += infos.download_size;
|
|
|
|
transaction_summary.add (infos.name);
|
|
|
|
transaction_sum_dialog.sum_list.insert_with_values (out iter, -1,
|
|
|
|
1, infos.name,
|
|
|
|
2, infos.new_version,
|
|
|
|
3, "(%s)".printf (infos.old_version));
|
|
|
|
}
|
|
|
|
Gtk.TreePath path = transaction_sum_dialog.sum_list.get_path (iter);
|
|
|
|
int pos = (path.get_indices ()[0]) - (summary.to_upgrade.length - 1);
|
|
|
|
transaction_sum_dialog.sum_list.get_iter (out iter, new Gtk.TreePath.from_indices (pos));
|
|
|
|
transaction_sum_dialog.sum_list.set (iter, 0, "<b>%s</b>".printf (dgettext (null, "To upgrade") + ":"));
|
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2015-03-04 11:55:36 -03:00
|
|
|
if (dsize == 0) {
|
2016-04-23 12:27:01 -03:00
|
|
|
transaction_sum_dialog.top_label.visible = false;
|
2015-03-04 11:55:36 -03:00
|
|
|
} else {
|
2016-04-23 12:27:01 -03:00
|
|
|
transaction_sum_dialog.top_label.set_markup ("<b>%s: %s</b>".printf (dgettext (null, "Total download size"), format_size (dsize)));
|
|
|
|
transaction_sum_dialog.top_label.visible = true;
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2015-01-03 10:52:26 -03:00
|
|
|
return type;
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
2017-02-18 13:10:26 -03:00
|
|
|
void start_commit () {
|
2014-10-30 10:44:09 -03:00
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.start_trans_commit ();
|
2014-10-30 10:44:09 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
2016-03-01 11:04:02 -03:00
|
|
|
success = false;
|
2016-02-27 06:11:04 -03:00
|
|
|
finish_transaction ();
|
2014-10-30 10:44:09 -03:00
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
2017-02-18 13:10:26 -03:00
|
|
|
async void build_aur_packages () {
|
|
|
|
string pkgname = to_build_queue.pop_head ();
|
2017-03-10 06:21:22 -03:00
|
|
|
string action = dgettext (null, "Building %s").printf (pkgname) + "...";
|
2016-05-17 13:11:49 -04:00
|
|
|
reset_progress_box (action);
|
2017-02-18 13:10:26 -03:00
|
|
|
build_cancellable.reset ();
|
2016-08-27 09:51:34 -03:00
|
|
|
start_progressbar_pulse ();
|
2017-06-03 09:34:40 -04:00
|
|
|
important_details_outpout (false);
|
2017-02-18 13:10:26 -03:00
|
|
|
to_build.remove_all ();
|
|
|
|
string [] built_pkgs = {};
|
|
|
|
int status = 1;
|
2017-10-02 10:23:53 -03:00
|
|
|
string builddir = "/tmp/pamac-build-%s".printf (Environment.get_user_name ());
|
2017-02-18 13:10:26 -03:00
|
|
|
status = yield spawn_in_term ({"mkdir", "-p", builddir});
|
|
|
|
if (status == 0) {
|
|
|
|
status = yield spawn_in_term ({"rm", "-rf", pkgname}, builddir);
|
|
|
|
if (!build_cancellable.is_cancelled ()) {
|
|
|
|
if (status == 0) {
|
|
|
|
building = true;
|
|
|
|
start_building ();
|
|
|
|
status = yield spawn_in_term ({"git", "clone", "https://aur.archlinux.org/%s.git".printf (pkgname)}, builddir);
|
|
|
|
if (status == 0) {
|
|
|
|
string pkgdir = "%s/%s".printf (builddir, pkgname);
|
|
|
|
status = yield spawn_in_term ({"makepkg", "-c"}, pkgdir);
|
|
|
|
building = false;
|
|
|
|
if (status == 0) {
|
|
|
|
foreach (unowned string aurpkg in aur_pkgs_to_install) {
|
|
|
|
string standard_output;
|
|
|
|
try {
|
|
|
|
Process.spawn_command_line_sync ("find %s -name %s".printf (pkgdir, "'%s-*.pkg.tar*'".printf (aurpkg)),
|
|
|
|
out standard_output,
|
|
|
|
null,
|
|
|
|
out status);
|
|
|
|
if (status == 0) {
|
|
|
|
foreach (unowned string path in standard_output.split ("\n")) {
|
2017-03-06 16:58:30 -03:00
|
|
|
if (path != "" && !(path in built_pkgs)) {
|
2017-02-18 13:10:26 -03:00
|
|
|
built_pkgs += path;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (SpawnError e) {
|
|
|
|
stderr.printf ("SpawnError: %s\n", e.message);
|
|
|
|
status = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-03-06 16:58:30 -03:00
|
|
|
stop_building ();
|
2016-11-02 11:11:09 -03:00
|
|
|
}
|
|
|
|
} else {
|
2017-02-18 13:10:26 -03:00
|
|
|
status = 1;
|
2016-11-02 11:11:09 -03:00
|
|
|
}
|
2015-04-11 13:00:49 -03:00
|
|
|
}
|
2017-02-18 13:10:26 -03:00
|
|
|
building = false;
|
|
|
|
if (status == 0) {
|
|
|
|
if (built_pkgs.length > 0) {
|
|
|
|
no_confirm_commit = true;
|
|
|
|
show_in_term ("");
|
|
|
|
stop_progressbar_pulse ();
|
|
|
|
start_trans_prepare (flags, {}, {}, built_pkgs, {});
|
|
|
|
}
|
|
|
|
} else {
|
2017-06-03 09:34:40 -04:00
|
|
|
important_details_outpout (true);
|
2017-02-18 13:10:26 -03:00
|
|
|
to_load.remove_all ();
|
|
|
|
to_build_queue.clear ();
|
|
|
|
stop_progressbar_pulse ();
|
|
|
|
success = false;
|
|
|
|
finish_transaction ();
|
|
|
|
}
|
2016-02-26 06:37:26 -03:00
|
|
|
}
|
|
|
|
|
2014-10-22 13:44:02 -03:00
|
|
|
public void cancel () {
|
2017-02-18 13:10:26 -03:00
|
|
|
if (building) {
|
|
|
|
build_cancellable.cancel ();
|
|
|
|
} else {
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.trans_cancel ();
|
2017-02-18 13:10:26 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2017-02-24 08:35:19 -03:00
|
|
|
show_in_term ("\n" + dgettext (null, "Transaction cancelled") + ".\n");
|
2017-03-06 16:58:30 -03:00
|
|
|
progress_box.action_label.label = "";
|
2016-08-27 09:51:34 -03:00
|
|
|
warning_textbuffer = new StringBuilder ();
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
public void release () {
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.trans_release ();
|
2014-10-22 13:44:02 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
2016-08-27 09:51:34 -03:00
|
|
|
warning_textbuffer = new StringBuilder ();
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
public void stop_daemon () {
|
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
user_daemon.quit ();
|
|
|
|
if (system_daemon != null) {
|
|
|
|
system_daemon.quit ();
|
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-03 12:02:14 -03:00
|
|
|
void on_emit_event (uint primary_event, uint secondary_event, string[] details) {
|
2016-04-14 13:19:20 -03:00
|
|
|
string? action = null;
|
|
|
|
string? detailed_action = null;
|
2014-12-03 12:02:14 -03:00
|
|
|
switch (primary_event) {
|
2016-04-14 13:19:20 -03:00
|
|
|
case 1: //Alpm.Event.Type.CHECKDEPS_START
|
|
|
|
action = dgettext (null, "Checking dependencies") + "...";
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 3: //Alpm.Event.Type.FILECONFLICTS_START
|
|
|
|
action = dgettext (null, "Checking file conflicts") + "...";
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 5: //Alpm.Event.Type.RESOLVEDEPS_START
|
|
|
|
action = dgettext (null, "Resolving dependencies") + "...";
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 7: //Alpm.Event.Type.INTERCONFLICTS_START
|
|
|
|
action = dgettext (null, "Checking inter-conflicts") + "...";
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 11: //Alpm.Event.Type.PACKAGE_OPERATION_START
|
2014-12-03 12:02:14 -03:00
|
|
|
switch (secondary_event) {
|
2016-05-17 13:11:49 -04:00
|
|
|
// special case handle differently
|
2016-04-14 13:19:20 -03:00
|
|
|
case 1: //Alpm.Package.Operation.INSTALL
|
2014-12-03 12:02:14 -03:00
|
|
|
previous_filename = details[0];
|
2016-04-14 13:19:20 -03:00
|
|
|
string msg = dgettext (null, "Installing %s").printf (details[0]) + "...";
|
2016-05-17 13:11:49 -04:00
|
|
|
progress_box.action_label.label = msg;
|
2017-02-18 13:10:26 -03:00
|
|
|
show_in_term (dgettext (null, "Installing %s").printf ("%s (%s)".printf (details[0], details[1])) + "...");
|
2014-12-03 12:02:14 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 2: //Alpm.Package.Operation.UPGRADE
|
2014-12-03 12:02:14 -03:00
|
|
|
previous_filename = details[0];
|
2016-04-14 13:19:20 -03:00
|
|
|
string msg = dgettext (null, "Upgrading %s").printf (details[0]) + "...";
|
2016-05-17 13:11:49 -04:00
|
|
|
progress_box.action_label.label = msg;
|
2017-02-18 13:10:26 -03:00
|
|
|
show_in_term (dgettext (null, "Upgrading %s").printf ("%s (%s -> %s)".printf (details[0], details[1], details[2])) + "...");
|
2014-12-03 12:02:14 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 3: //Alpm.Package.Operation.REINSTALL
|
2014-12-03 12:02:14 -03:00
|
|
|
previous_filename = details[0];
|
2016-04-14 13:19:20 -03:00
|
|
|
string msg = dgettext (null, "Reinstalling %s").printf (details[0]) + "...";
|
2016-05-17 13:11:49 -04:00
|
|
|
progress_box.action_label.label = msg;
|
2017-02-18 13:10:26 -03:00
|
|
|
show_in_term (dgettext (null, "Reinstalling %s").printf ("%s (%s)".printf (details[0], details[1])) + "...");
|
2014-12-03 12:02:14 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 4: //Alpm.Package.Operation.DOWNGRADE
|
2014-12-03 12:02:14 -03:00
|
|
|
previous_filename = details[0];
|
2016-04-14 13:19:20 -03:00
|
|
|
string msg = dgettext (null, "Downgrading %s").printf (details[0]) + "...";
|
2016-05-17 13:11:49 -04:00
|
|
|
progress_box.action_label.label = msg;
|
2017-02-18 13:10:26 -03:00
|
|
|
show_in_term (dgettext (null, "Downgrading %s").printf ("%s (%s -> %s)".printf (details[0], details[1], details[2])) + "...");
|
2014-12-03 12:02:14 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 5: //Alpm.Package.Operation.REMOVE
|
2014-12-03 12:02:14 -03:00
|
|
|
previous_filename = details[0];
|
2016-04-14 13:19:20 -03:00
|
|
|
string msg = dgettext (null, "Removing %s").printf (details[0]) + "...";
|
2016-05-17 13:11:49 -04:00
|
|
|
progress_box.action_label.label = msg;
|
2017-02-18 13:10:26 -03:00
|
|
|
show_in_term (dgettext (null, "Removing %s").printf ("%s (%s)".printf (details[0], details[1])) + "...");
|
2014-12-03 12:02:14 -03:00
|
|
|
break;
|
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 13: //Alpm.Event.Type.INTEGRITY_START
|
|
|
|
action = dgettext (null, "Checking integrity") + "...";
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 15: //Alpm.Event.Type.LOAD_START
|
|
|
|
action = dgettext (null, "Loading packages files") + "...";
|
2014-10-26 08:30:04 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 17: //Alpm.Event.Type.DELTA_INTEGRITY_START
|
|
|
|
action = dgettext (null, "Checking delta integrity") + "...";
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 19: //Alpm.Event.Type.DELTA_PATCHES_START
|
|
|
|
action = dgettext (null, "Applying deltas") + "...";
|
2014-10-26 08:30:04 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 21: //Alpm.Event.Type.DELTA_PATCH_START
|
|
|
|
detailed_action = dgettext (null, "Generating %s with %s").printf (details[0], details[1]) + "...";
|
2014-10-26 08:30:04 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 22: //Alpm.Event.Type.DELTA_PATCH_DONE
|
|
|
|
detailed_action = dgettext (null, "Generation succeeded") + "...";
|
2014-10-26 08:30:04 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 23: //Alpm.Event.Type.DELTA_PATCH_FAILED
|
|
|
|
detailed_action = dgettext (null, "Generation failed") + "...";
|
2014-10-26 08:30:04 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 24: //Alpm.Event.Type.SCRIPTLET_INFO
|
2017-05-13 05:21:58 -03:00
|
|
|
// hooks output are also emitted as SCRIPTLET_INFO
|
|
|
|
if (previous_filename != "") {
|
|
|
|
progress_box.action_label.label = dgettext (null, "Configuring %s").printf (previous_filename) + "...";
|
|
|
|
}
|
2016-04-14 13:19:20 -03:00
|
|
|
detailed_action = details[0].replace ("\n", "");
|
2016-05-17 13:11:49 -04:00
|
|
|
important_details_outpout (false);
|
2014-10-26 08:30:04 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 25: //Alpm.Event.Type.RETRIEVE_START
|
2017-03-06 16:58:30 -03:00
|
|
|
start_downloading ();
|
2016-04-14 13:19:20 -03:00
|
|
|
action = dgettext (null, "Downloading") + "...";
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2017-03-06 16:58:30 -03:00
|
|
|
case 26: //Alpm.Event.Type.RETRIEVE_DONE
|
|
|
|
case 27: //Alpm.Event.Type.RETRIEVE_FAILED
|
|
|
|
stop_downloading ();
|
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 28: //Alpm.Event.Type.PKGDOWNLOAD_START
|
2016-05-17 13:11:49 -04:00
|
|
|
// special case handle differently
|
2017-02-18 13:10:26 -03:00
|
|
|
show_in_term (dgettext (null, "Downloading %s").printf (details[0]) + "...");
|
2016-04-14 13:19:20 -03:00
|
|
|
string name_version_release = details[0].slice (0, details[0].last_index_of_char ('-'));
|
|
|
|
string name_version = name_version_release.slice (0, name_version_release.last_index_of_char ('-'));
|
|
|
|
string name = name_version.slice (0, name_version.last_index_of_char ('-'));
|
2016-05-17 13:11:49 -04:00
|
|
|
progress_box.action_label.label = dgettext (null, "Downloading %s").printf (name) + "...";
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 31: //Alpm.Event.Type.DISKSPACE_START
|
|
|
|
action = dgettext (null, "Checking available disk space") + "...";
|
2014-12-03 12:02:14 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 33: //Alpm.Event.Type.OPTDEP_REMOVAL
|
|
|
|
detailed_action = dgettext (null, "%s optionally requires %s").printf (details[0], details[1]);
|
2016-08-27 09:51:34 -03:00
|
|
|
warning_textbuffer.append (detailed_action + "\n");
|
2014-10-26 08:30:04 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 34: //Alpm.Event.Type.DATABASE_MISSING
|
|
|
|
detailed_action = dgettext (null, "Database file for %s does not exist").printf (details[0]);
|
|
|
|
break;
|
|
|
|
case 35: //Alpm.Event.Type.KEYRING_START
|
|
|
|
action = dgettext (null, "Checking keyring") + "...";
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 37: //Alpm.Event.Type.KEY_DOWNLOAD_START
|
|
|
|
action = dgettext (null, "Downloading required keys") + "...";
|
2014-12-03 12:02:14 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 39: //Alpm.Event.Type.PACNEW_CREATED
|
2017-01-02 08:52:38 -03:00
|
|
|
detailed_action = dgettext (null, "%s installed as %s.pacnew").printf (details[0], details[0]);
|
2016-04-14 13:19:20 -03:00
|
|
|
break;
|
|
|
|
case 40: //Alpm.Event.Type.PACSAVE_CREATED
|
2017-01-02 08:52:38 -03:00
|
|
|
detailed_action = dgettext (null, "%s installed as %s.pacsave").printf (details[0], details[0]);
|
2016-04-14 13:19:20 -03:00
|
|
|
break;
|
|
|
|
case 41: //Alpm.Event.Type.HOOK_START
|
|
|
|
switch (secondary_event) {
|
|
|
|
case 1: //Alpm.HookWhen.PRE_TRANSACTION
|
|
|
|
action = dgettext (null, "Running pre-transaction hooks") + "...";
|
|
|
|
break;
|
|
|
|
case 2: //Alpm.HookWhen.POST_TRANSACTION
|
2017-05-13 05:21:58 -03:00
|
|
|
previous_filename = "";
|
2016-04-14 13:19:20 -03:00
|
|
|
action = dgettext (null, "Running post-transaction hooks") + "...";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 43: // Alpm.Event.Type.HOOK_RUN_START
|
|
|
|
float fraction = (float) int.parse (details[2]) / int.parse (details[3]);
|
|
|
|
if (fraction != previous_percent) {
|
|
|
|
previous_percent = fraction;
|
2016-05-17 13:11:49 -04:00
|
|
|
progress_box.progressbar.fraction = fraction;
|
2016-04-14 13:19:20 -03:00
|
|
|
}
|
2016-07-02 04:25:07 -04:00
|
|
|
string textbar = "%s/%s".printf (details[2], details[3]);
|
|
|
|
if (textbar != previous_textbar) {
|
|
|
|
previous_textbar = textbar;
|
|
|
|
progress_box.progressbar.text = textbar;
|
|
|
|
}
|
2016-04-14 13:19:20 -03:00
|
|
|
if (details[1] != "") {
|
2016-05-17 13:11:49 -04:00
|
|
|
detailed_action = details[1];
|
2016-04-14 13:19:20 -03:00
|
|
|
} else {
|
2016-05-17 13:11:49 -04:00
|
|
|
detailed_action = details[0];
|
2016-04-14 13:19:20 -03:00
|
|
|
}
|
2014-12-03 12:02:14 -03:00
|
|
|
break;
|
2014-10-22 13:44:02 -03:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2016-04-14 13:19:20 -03:00
|
|
|
if (action != null) {
|
2016-05-17 13:11:49 -04:00
|
|
|
progress_box.action_label.label = action;
|
2017-02-18 13:10:26 -03:00
|
|
|
show_in_term (action);
|
2016-04-14 13:19:20 -03:00
|
|
|
}
|
|
|
|
if (detailed_action != null) {
|
2017-02-18 13:10:26 -03:00
|
|
|
show_in_term (detailed_action);
|
2015-03-18 12:07:18 -03:00
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
void on_emit_providers (string depend, string[] providers) {
|
|
|
|
choose_provider (depend, providers);
|
|
|
|
}
|
|
|
|
|
2016-02-02 05:28:07 -03:00
|
|
|
void on_emit_progress (uint progress, string pkgname, uint percent, uint n_targets, uint current_target) {
|
|
|
|
float fraction;
|
2014-10-22 13:44:02 -03:00
|
|
|
switch (progress) {
|
2016-04-14 13:19:20 -03:00
|
|
|
case 0: //Alpm.Progress.ADD_START
|
|
|
|
case 1: //Alpm.Progress.UPGRADE_START
|
|
|
|
case 2: //Alpm.Progress.DOWNGRADE_START
|
|
|
|
case 3: //Alpm.Progress.REINSTALL_START
|
|
|
|
case 4: //Alpm.Progress.REMOVE_START
|
2016-02-02 05:28:07 -03:00
|
|
|
fraction = ((float) (current_target - 1) / n_targets) + ((float) percent / (100 * n_targets));
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2016-04-14 13:19:20 -03:00
|
|
|
case 5: //Alpm.Progress.CONFLICTS_START
|
|
|
|
case 6: //Alpm.Progress.DISKSPACE_START
|
|
|
|
case 7: //Alpm.Progress.INTEGRITY_START
|
|
|
|
case 8: //Alpm.Progress.LOAD_START
|
|
|
|
case 9: //Alpm.Progress.KEYRING_START
|
2014-10-22 13:44:02 -03:00
|
|
|
default:
|
2016-02-02 05:28:07 -03:00
|
|
|
fraction = (float) percent / 100;
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
string textbar = "%lu/%lu".printf (current_target, n_targets);
|
|
|
|
if (textbar != previous_textbar) {
|
|
|
|
previous_textbar = textbar;
|
2016-05-17 13:11:49 -04:00
|
|
|
progress_box.progressbar.text = textbar;
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
if (fraction != previous_percent) {
|
|
|
|
previous_percent = fraction;
|
2016-05-17 13:11:49 -04:00
|
|
|
progress_box.progressbar.fraction = fraction;
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void on_emit_download (string filename, uint64 xfered, uint64 total) {
|
2016-02-02 05:28:07 -03:00
|
|
|
var text = new StringBuilder ();
|
|
|
|
float fraction;
|
2014-10-22 13:44:02 -03:00
|
|
|
if (total_download > 0) {
|
2016-02-02 05:28:07 -03:00
|
|
|
if (xfered == 0) {
|
2016-05-17 13:11:49 -04:00
|
|
|
// start download pkg is handled by Alpm.Event.Type.PKGDOWNLOAD_START
|
2016-02-02 05:28:07 -03:00
|
|
|
previous_xfered = 0;
|
|
|
|
fraction = previous_percent;
|
|
|
|
text.append (previous_textbar);
|
|
|
|
timer.start ();
|
2015-03-18 12:07:18 -03:00
|
|
|
} else {
|
2017-04-15 16:10:04 -03:00
|
|
|
if (timer.elapsed () > 0.1) {
|
2016-02-14 10:18:08 -03:00
|
|
|
download_rate = ((download_rate * rates_nb) + (uint64) ((xfered - previous_xfered) / timer.elapsed ())) / (rates_nb + 1);
|
|
|
|
rates_nb++;
|
|
|
|
}
|
2016-02-02 05:28:07 -03:00
|
|
|
previous_xfered = xfered;
|
|
|
|
uint64 downloaded_total = xfered + already_downloaded;
|
|
|
|
fraction = (float) downloaded_total / total_download;
|
|
|
|
if (fraction <= 1) {
|
|
|
|
text.append ("%s/%s ".printf (format_size (xfered + already_downloaded), format_size (total_download)));
|
2016-02-14 10:18:08 -03:00
|
|
|
uint64 remaining_seconds = 0;
|
|
|
|
if (download_rate > 0) {
|
|
|
|
remaining_seconds = (total_download - downloaded_total) / download_rate;
|
|
|
|
}
|
|
|
|
// display remaining time after 5s and only if more than 10s are remaining
|
|
|
|
if (remaining_seconds > 9 && rates_nb > 9) {
|
2016-02-02 05:28:07 -03:00
|
|
|
if (remaining_seconds <= 50) {
|
|
|
|
text.append (dgettext (null, "About %u seconds remaining").printf ((uint) Math.ceilf ((float) remaining_seconds / 10) * 10));
|
|
|
|
} else {
|
|
|
|
uint remaining_minutes = (uint) Math.ceilf ((float) remaining_seconds / 60);
|
|
|
|
text.append (dngettext (null, "About %lu minute remaining",
|
|
|
|
"About %lu minutes remaining", remaining_minutes).printf (remaining_minutes));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
text.append ("%s".printf (format_size (xfered + already_downloaded)));
|
|
|
|
}
|
|
|
|
if (xfered == total) {
|
|
|
|
previous_filename = "";
|
|
|
|
already_downloaded += total;
|
|
|
|
} else {
|
|
|
|
timer.start ();
|
|
|
|
}
|
2015-03-18 12:07:18 -03:00
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
} else {
|
2016-02-02 05:28:07 -03:00
|
|
|
if (xfered == 0) {
|
|
|
|
previous_xfered = 0;
|
|
|
|
download_rate = 0;
|
|
|
|
rates_nb = 0;
|
|
|
|
fraction = 0;
|
|
|
|
timer.start ();
|
2017-08-22 06:11:31 -03:00
|
|
|
if (filename.has_suffix (".db") || filename.has_suffix (".files")) {
|
|
|
|
string action = dgettext (null, "Refreshing %s").printf (filename) + "...";
|
2017-06-03 11:55:18 -04:00
|
|
|
reset_progress_box (action);
|
2016-04-14 13:19:20 -03:00
|
|
|
}
|
2016-02-02 05:28:07 -03:00
|
|
|
} else if (xfered == total) {
|
|
|
|
timer.stop ();
|
|
|
|
fraction = 1;
|
|
|
|
previous_filename = "";
|
2015-03-18 12:07:18 -03:00
|
|
|
} else {
|
2017-04-15 16:10:04 -03:00
|
|
|
if (timer.elapsed () > 0.1) {
|
2016-02-14 10:18:08 -03:00
|
|
|
download_rate = ((download_rate * rates_nb) + (uint64) ((xfered - previous_xfered) / timer.elapsed ())) / (rates_nb + 1);
|
|
|
|
rates_nb++;
|
|
|
|
}
|
2016-02-02 05:28:07 -03:00
|
|
|
previous_xfered = xfered;
|
|
|
|
fraction = (float) xfered / total;
|
|
|
|
if (fraction <= 1) {
|
|
|
|
text.append ("%s/%s ".printf (format_size (xfered), format_size (total)));
|
2016-02-14 10:18:08 -03:00
|
|
|
uint64 remaining_seconds = 0;
|
|
|
|
if (download_rate > 0) {
|
|
|
|
remaining_seconds = (total - xfered) / download_rate;
|
|
|
|
}
|
|
|
|
// display remaining time after 5s and only if more than 10s are remaining
|
|
|
|
if (remaining_seconds > 9 && rates_nb > 9) {
|
2016-02-02 05:28:07 -03:00
|
|
|
if (remaining_seconds <= 50) {
|
|
|
|
text.append (dgettext (null, "About %u seconds remaining").printf ((uint) Math.ceilf ((float) remaining_seconds / 10) * 10));
|
|
|
|
} else {
|
|
|
|
uint remaining_minutes = (uint) Math.ceilf ((float) remaining_seconds / 60);
|
|
|
|
text.append (dngettext (null, "About %lu minute remaining",
|
|
|
|
"About %lu minutes remaining", remaining_minutes).printf (remaining_minutes));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
text.append ("%s".printf (format_size (xfered)));
|
|
|
|
}
|
|
|
|
// reinitialize timer
|
|
|
|
timer.start ();
|
2014-11-16 07:31:44 -03:00
|
|
|
}
|
2015-03-18 12:07:18 -03:00
|
|
|
}
|
2016-02-02 05:28:07 -03:00
|
|
|
if (fraction != previous_percent) {
|
|
|
|
previous_percent = fraction;
|
2016-05-17 13:11:49 -04:00
|
|
|
progress_box.progressbar.fraction = fraction;
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2016-02-02 05:28:07 -03:00
|
|
|
if (text.str != previous_textbar) {
|
|
|
|
previous_textbar = text.str;
|
2016-05-17 13:11:49 -04:00
|
|
|
progress_box.progressbar.text = text.str;
|
2014-11-16 07:31:44 -03:00
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
void on_emit_totaldownload (uint64 total) {
|
2016-02-02 05:28:07 -03:00
|
|
|
download_rate = 0;
|
|
|
|
rates_nb = 0;
|
|
|
|
previous_percent = 0;
|
|
|
|
previous_textbar = "";
|
2014-10-22 13:44:02 -03:00
|
|
|
total_download = total;
|
2016-02-02 05:28:07 -03:00
|
|
|
// this is emitted at the end of the total download
|
|
|
|
// with the value 0 so stop our timer
|
|
|
|
if (total == 0) {
|
|
|
|
timer.stop ();
|
2016-05-17 13:11:49 -04:00
|
|
|
progress_box.progressbar.text = "";
|
2016-02-02 05:28:07 -03:00
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
void on_emit_log (uint level, string msg) {
|
|
|
|
// msg ends with \n
|
|
|
|
string? line = null;
|
2016-04-14 13:19:20 -03:00
|
|
|
if (level == 1) { //Alpm.LogLevel.ERROR
|
|
|
|
if (previous_filename != "") {
|
|
|
|
line = dgettext (null, "Error") + ": " + previous_filename + ": " + msg;
|
|
|
|
} else {
|
|
|
|
line = dgettext (null, "Error") + ": " + msg;
|
|
|
|
}
|
2016-05-17 13:11:49 -04:00
|
|
|
important_details_outpout (false);
|
2016-04-14 13:19:20 -03:00
|
|
|
} else if (level == (1 << 1)) { //Alpm.LogLevel.WARNING
|
2015-03-18 12:12:35 -03:00
|
|
|
// do not show warning when manjaro-system remove db.lck
|
|
|
|
if (previous_filename != "manjaro-system") {
|
|
|
|
if (previous_filename != "") {
|
|
|
|
line = dgettext (null, "Warning") + ": " + previous_filename + ": " + msg;
|
|
|
|
} else {
|
|
|
|
line = dgettext (null, "Warning") + ": " + msg;
|
|
|
|
}
|
2016-08-27 09:51:34 -03:00
|
|
|
warning_textbuffer.append (msg);
|
2015-03-18 12:07:18 -03:00
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
if (line != null) {
|
2017-02-18 13:10:26 -03:00
|
|
|
show_in_term (line.replace ("\n", ""));
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-26 06:37:26 -03:00
|
|
|
void show_warnings () {
|
2016-08-27 09:51:34 -03:00
|
|
|
if (warning_textbuffer.len > 0) {
|
2017-05-10 11:15:58 -03:00
|
|
|
var flags = Gtk.DialogFlags.MODAL;
|
|
|
|
int use_header_bar;
|
|
|
|
Gtk.Settings.get_default ().get ("gtk-dialogs-use-header", out use_header_bar);
|
|
|
|
if (use_header_bar == 1) {
|
|
|
|
flags |= Gtk.DialogFlags.USE_HEADER_BAR;
|
|
|
|
}
|
2016-04-23 12:27:01 -03:00
|
|
|
var dialog = new Gtk.Dialog.with_buttons (dgettext (null, "Warning"),
|
|
|
|
application_window,
|
2017-05-10 11:15:58 -03:00
|
|
|
flags);
|
|
|
|
dialog.border_width = 6;
|
|
|
|
dialog.icon_name = "system-software-install";
|
2016-04-23 12:27:01 -03:00
|
|
|
dialog.deletable = false;
|
|
|
|
unowned Gtk.Widget widget = dialog.add_button (dgettext (null, "_Close"), Gtk.ResponseType.CLOSE);
|
|
|
|
widget.can_focus = true;
|
|
|
|
widget.has_focus = true;
|
|
|
|
widget.can_default = true;
|
|
|
|
widget.has_default = true;
|
|
|
|
var scrolledwindow = new Gtk.ScrolledWindow (null, null);
|
2016-08-27 09:51:34 -03:00
|
|
|
var label = new Gtk.Label (warning_textbuffer.str);
|
2016-04-23 12:27:01 -03:00
|
|
|
label.margin = 12;
|
|
|
|
scrolledwindow.visible = true;
|
|
|
|
label.visible = true;
|
|
|
|
scrolledwindow.add (label);
|
|
|
|
scrolledwindow.expand = true;
|
|
|
|
unowned Gtk.Box box = dialog.get_content_area ();
|
|
|
|
box.add (scrolledwindow);
|
|
|
|
dialog.default_width = 600;
|
|
|
|
dialog.default_height = 300;
|
|
|
|
dialog.run ();
|
|
|
|
dialog.destroy ();
|
2016-08-27 09:51:34 -03:00
|
|
|
warning_textbuffer = new StringBuilder ();
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-29 10:35:04 -04:00
|
|
|
public void display_error (string message, string[] details) {
|
2017-05-10 11:15:58 -03:00
|
|
|
var flags = Gtk.DialogFlags.MODAL;
|
|
|
|
int use_header_bar;
|
|
|
|
Gtk.Settings.get_default ().get ("gtk-dialogs-use-header", out use_header_bar);
|
|
|
|
if (use_header_bar == 1) {
|
|
|
|
flags |= Gtk.DialogFlags.USE_HEADER_BAR;
|
|
|
|
}
|
2017-02-18 13:10:26 -03:00
|
|
|
var dialog = new Gtk.Dialog.with_buttons (message,
|
|
|
|
application_window,
|
2017-05-10 11:15:58 -03:00
|
|
|
flags);
|
|
|
|
dialog.border_width = 6;
|
|
|
|
dialog.icon_name = "system-software-install";
|
2017-02-18 13:10:26 -03:00
|
|
|
var textbuffer = new StringBuilder ();
|
2016-04-14 13:19:20 -03:00
|
|
|
if (details.length != 0) {
|
2017-02-18 13:10:26 -03:00
|
|
|
show_in_term (message + ":");
|
2016-04-14 13:19:20 -03:00
|
|
|
foreach (unowned string detail in details) {
|
2017-02-18 13:10:26 -03:00
|
|
|
show_in_term (detail);
|
2016-04-23 12:27:01 -03:00
|
|
|
textbuffer.append (detail + "\n");
|
2016-02-27 06:11:04 -03:00
|
|
|
}
|
2017-02-18 13:10:26 -03:00
|
|
|
} else {
|
|
|
|
show_in_term (message);
|
|
|
|
textbuffer.append (message);
|
|
|
|
}
|
|
|
|
dialog.deletable = false;
|
|
|
|
unowned Gtk.Widget widget = dialog.add_button (dgettext (null, "_Close"), Gtk.ResponseType.CLOSE);
|
|
|
|
widget.can_focus = true;
|
|
|
|
widget.has_focus = true;
|
|
|
|
widget.can_default = true;
|
|
|
|
widget.has_default = true;
|
|
|
|
var scrolledwindow = new Gtk.ScrolledWindow (null, null);
|
|
|
|
var label = new Gtk.Label (textbuffer.str);
|
|
|
|
label.margin = 12;
|
|
|
|
scrolledwindow.visible = true;
|
|
|
|
label.visible = true;
|
|
|
|
scrolledwindow.add (label);
|
|
|
|
scrolledwindow.expand = true;
|
|
|
|
unowned Gtk.Box box = dialog.get_content_area ();
|
|
|
|
box.add (scrolledwindow);
|
|
|
|
dialog.default_width = 600;
|
|
|
|
dialog.default_height = 300;
|
2016-04-23 12:27:01 -03:00
|
|
|
dialog.run ();
|
|
|
|
dialog.destroy ();
|
2016-04-14 13:19:20 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
void handle_error (ErrorInfos error) {
|
|
|
|
if (error.message != "") {
|
2016-05-17 13:11:49 -04:00
|
|
|
reset_progress_box ("");
|
2016-04-14 13:19:20 -03:00
|
|
|
display_error (error.message, error.details);
|
2016-02-27 06:11:04 -03:00
|
|
|
}
|
|
|
|
finish_transaction ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void finish_transaction () {
|
2017-07-29 10:35:04 -04:00
|
|
|
disconnecting_dbus_signals ();
|
2016-04-14 13:19:20 -03:00
|
|
|
transaction_summary.remove_all ();
|
2016-05-17 13:11:49 -04:00
|
|
|
reset_progress_box ("");
|
|
|
|
finished (success);
|
|
|
|
success = false;
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
2016-02-26 06:37:26 -03:00
|
|
|
void on_refresh_finished (bool success) {
|
2016-08-27 11:24:46 -03:00
|
|
|
stop_progressbar_pulse ();
|
2016-03-01 11:04:02 -03:00
|
|
|
this.success = success;
|
2016-02-02 05:28:07 -03:00
|
|
|
if (success) {
|
2016-03-15 05:27:35 -03:00
|
|
|
finished (success);
|
2016-05-17 13:11:49 -04:00
|
|
|
reset_progress_box ("");
|
2016-03-15 05:27:35 -03:00
|
|
|
success = false;
|
2014-10-22 13:44:02 -03:00
|
|
|
} else {
|
2016-02-02 05:28:07 -03:00
|
|
|
handle_error (get_current_error ());
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2014-11-08 13:50:35 -03:00
|
|
|
previous_filename = "";
|
2017-07-29 10:35:04 -04:00
|
|
|
disconnecting_dbus_signals ();
|
|
|
|
system_daemon.refresh_finished.disconnect (on_refresh_finished);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
2016-02-26 06:37:26 -03:00
|
|
|
void on_trans_prepare_finished (bool success) {
|
2016-08-27 11:24:46 -03:00
|
|
|
stop_progressbar_pulse ();
|
2016-03-01 11:04:02 -03:00
|
|
|
this.success = success;
|
2016-02-02 05:28:07 -03:00
|
|
|
if (success) {
|
2014-10-26 08:30:04 -03:00
|
|
|
show_warnings ();
|
2016-02-26 06:37:26 -03:00
|
|
|
Type type = set_transaction_sum ();
|
2017-09-09 04:43:18 -03:00
|
|
|
if (mode != Mode.INSTALLER && (no_confirm_commit || type == Type.UPDATE)) {
|
2017-02-18 13:10:26 -03:00
|
|
|
// no_confirm_commit or only updates
|
2017-07-29 10:35:04 -04:00
|
|
|
to_install.remove_all ();
|
2015-03-04 11:55:36 -03:00
|
|
|
start_commit ();
|
2015-01-03 10:52:26 -03:00
|
|
|
} else if (type != 0) {
|
2015-03-04 11:55:36 -03:00
|
|
|
if (transaction_sum_dialog.run () == Gtk.ResponseType.OK) {
|
2014-10-22 13:44:02 -03:00
|
|
|
transaction_sum_dialog.hide ();
|
2015-03-18 12:07:18 -03:00
|
|
|
while (Gtk.events_pending ()) {
|
2014-10-22 13:44:02 -03:00
|
|
|
Gtk.main_iteration ();
|
2015-03-18 12:07:18 -03:00
|
|
|
}
|
2016-02-26 06:37:26 -03:00
|
|
|
if (type == Type.BUILD) {
|
2015-01-03 10:52:26 -03:00
|
|
|
// there only AUR packages to build
|
2017-02-18 13:10:26 -03:00
|
|
|
release ();
|
2016-02-02 05:28:07 -03:00
|
|
|
on_trans_commit_finished (true);
|
2015-03-18 12:07:18 -03:00
|
|
|
} else {
|
2016-04-14 13:19:20 -03:00
|
|
|
// backup to_install and to_remove
|
|
|
|
foreach (unowned string name in to_install) {
|
|
|
|
previous_to_install.add (name);
|
|
|
|
}
|
|
|
|
foreach (unowned string name in to_remove) {
|
|
|
|
previous_to_remove.add (name);
|
|
|
|
}
|
|
|
|
to_install.remove_all ();
|
|
|
|
to_remove.remove_all ();
|
2015-03-04 11:55:36 -03:00
|
|
|
start_commit ();
|
2015-03-18 12:07:18 -03:00
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
} else {
|
|
|
|
transaction_sum_dialog.hide ();
|
2016-02-27 06:11:04 -03:00
|
|
|
unowned string action = dgettext (null, "Transaction cancelled");
|
2017-02-18 13:10:26 -03:00
|
|
|
show_in_term (action + ".\n");
|
2016-05-17 13:11:49 -04:00
|
|
|
progress_box.action_label.label = action;
|
2014-10-22 13:44:02 -03:00
|
|
|
release ();
|
2016-04-14 13:19:20 -03:00
|
|
|
transaction_summary.remove_all ();
|
2017-02-18 13:10:26 -03:00
|
|
|
to_build_queue.clear ();
|
2014-11-24 17:34:23 -03:00
|
|
|
sysupgrade_after_trans = false;
|
2016-03-01 11:04:02 -03:00
|
|
|
success = false;
|
2016-02-27 06:11:04 -03:00
|
|
|
finish_transaction ();
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2017-05-10 05:31:45 -03:00
|
|
|
} else if (build_after_sysupgrade) {
|
|
|
|
// there only AUR packages to build
|
|
|
|
release ();
|
|
|
|
on_trans_commit_finished (true);
|
2014-10-22 13:44:02 -03:00
|
|
|
} else {
|
2015-03-07 06:43:44 -03:00
|
|
|
//var err = ErrorInfos ();
|
|
|
|
//err.message = dgettext (null, "Nothing to do") + "\n";
|
2017-02-18 13:10:26 -03:00
|
|
|
show_in_term (dgettext (null, "Nothing to do") + ".\n");
|
2014-10-22 13:44:02 -03:00
|
|
|
release ();
|
|
|
|
clear_lists ();
|
2016-02-27 06:11:04 -03:00
|
|
|
finish_transaction ();
|
2014-10-22 13:44:02 -03:00
|
|
|
//handle_error (err);
|
|
|
|
}
|
|
|
|
} else {
|
2017-02-18 13:10:26 -03:00
|
|
|
to_load.remove_all ();
|
2016-08-27 09:51:34 -03:00
|
|
|
warning_textbuffer = new StringBuilder ();
|
2016-02-02 05:28:07 -03:00
|
|
|
handle_error (get_current_error ());
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-26 06:37:26 -03:00
|
|
|
void on_trans_commit_finished (bool success) {
|
2016-03-01 11:04:02 -03:00
|
|
|
this.success = success;
|
2017-02-18 13:10:26 -03:00
|
|
|
// needed before build_aur_packages and remove_makedeps
|
|
|
|
no_confirm_commit = false;
|
2016-02-02 05:28:07 -03:00
|
|
|
if (success) {
|
2016-08-27 09:51:34 -03:00
|
|
|
show_warnings ();
|
2017-02-18 13:10:26 -03:00
|
|
|
to_load.remove_all ();
|
|
|
|
if (to_build_queue.get_length () != 0) {
|
|
|
|
show_in_term ("");
|
|
|
|
clear_previous_lists ();
|
2017-03-10 06:20:55 -03:00
|
|
|
check_authorization.begin ((obj, res) => {
|
|
|
|
bool authorized = check_authorization.end (res);
|
|
|
|
if (authorized) {
|
|
|
|
build_aur_packages.begin ();
|
|
|
|
} else {
|
|
|
|
to_build_queue.clear ();
|
|
|
|
on_trans_commit_finished (false);
|
|
|
|
}
|
|
|
|
});
|
2014-10-22 13:44:02 -03:00
|
|
|
} else {
|
2016-04-14 13:19:20 -03:00
|
|
|
clear_previous_lists ();
|
2014-10-22 13:44:02 -03:00
|
|
|
if (sysupgrade_after_trans) {
|
|
|
|
sysupgrade_after_trans = false;
|
2016-02-02 05:28:07 -03:00
|
|
|
sysupgrade (false);
|
2017-02-18 13:10:26 -03:00
|
|
|
} else if (build_after_sysupgrade) {
|
|
|
|
build_after_sysupgrade = false;
|
2017-07-29 10:35:04 -04:00
|
|
|
disconnecting_dbus_signals ();
|
2017-02-18 13:10:26 -03:00
|
|
|
// build aur updates in to_build
|
|
|
|
run ();
|
2014-10-22 13:44:02 -03:00
|
|
|
} else {
|
2016-02-27 06:11:04 -03:00
|
|
|
unowned string action = dgettext (null, "Transaction successfully finished");
|
2017-02-18 13:10:26 -03:00
|
|
|
show_in_term (action + ".\n");
|
2016-05-17 13:11:49 -04:00
|
|
|
progress_box.action_label.label = action;
|
2016-02-27 06:11:04 -03:00
|
|
|
finish_transaction ();
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2016-03-01 11:43:51 -03:00
|
|
|
// if it is an authentication or a download error, database was not modified
|
2016-02-02 05:28:07 -03:00
|
|
|
var err = get_current_error ();
|
2016-04-14 13:19:20 -03:00
|
|
|
if (err.message == dgettext (null, "Authentication failed")
|
|
|
|
|| err.errno == 54) { //Alpm.Errno.EXTERNAL_DOWNLOAD
|
|
|
|
// recover old pkgnames
|
|
|
|
foreach (unowned string name in previous_to_install) {
|
|
|
|
to_install.add (name);
|
|
|
|
}
|
|
|
|
foreach (unowned string name in previous_to_remove) {
|
|
|
|
to_remove.add (name);
|
|
|
|
}
|
2017-02-18 13:10:26 -03:00
|
|
|
} else {
|
|
|
|
to_load.remove_all ();
|
2016-02-02 05:28:07 -03:00
|
|
|
}
|
2016-04-14 13:19:20 -03:00
|
|
|
clear_previous_lists ();
|
2017-03-10 06:20:55 -03:00
|
|
|
to_build_queue.clear ();
|
2016-08-27 09:51:34 -03:00
|
|
|
warning_textbuffer = new StringBuilder ();
|
2016-03-01 11:04:02 -03:00
|
|
|
handle_error (err);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
total_download = 0;
|
|
|
|
already_downloaded = 0;
|
2014-11-08 13:50:35 -03:00
|
|
|
previous_filename = "";
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
2016-02-26 06:37:26 -03:00
|
|
|
void on_set_pkgreason_finished () {
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.set_pkgreason_finished.disconnect (on_set_pkgreason_finished);
|
2016-02-26 06:37:26 -03:00
|
|
|
set_pkgreason_finished ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void on_write_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon,
|
2017-10-02 10:23:53 -03:00
|
|
|
bool enable_aur, bool search_aur, bool check_aur_updates) {
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.write_pamac_config_finished.disconnect (on_write_pamac_config_finished);
|
2016-02-02 05:28:07 -03:00
|
|
|
pamac_config.reload ();
|
2017-07-29 10:35:04 -04:00
|
|
|
flags = (1 << 4); //Alpm.TransFlag.CASCADE
|
|
|
|
if (pamac_config.recurse) {
|
2016-04-14 13:19:20 -03:00
|
|
|
flags |= (1 << 5); //Alpm.TransFlag.RECURSE
|
|
|
|
}
|
2016-02-26 06:37:26 -03:00
|
|
|
write_pamac_config_finished (recurse, refresh_period, no_update_hide_icon,
|
2017-10-02 10:23:53 -03:00
|
|
|
enable_aur, search_aur, check_aur_updates);
|
2016-02-26 06:37:26 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
void on_write_alpm_config_finished (bool checkspace) {
|
2017-10-02 10:38:49 -03:00
|
|
|
refresh_handle ();
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.write_alpm_config_finished.disconnect (on_write_alpm_config_finished);
|
2016-02-26 06:37:26 -03:00
|
|
|
write_alpm_config_finished (checkspace);
|
|
|
|
}
|
|
|
|
|
|
|
|
void on_write_mirrors_config_finished (string choosen_country, string choosen_generation_method) {
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.write_mirrors_config_finished.disconnect (on_write_mirrors_config_finished);
|
2016-02-26 06:37:26 -03:00
|
|
|
write_mirrors_config_finished (choosen_country, choosen_generation_method);
|
2014-12-30 11:04:40 -03:00
|
|
|
}
|
|
|
|
|
2015-08-20 10:11:18 -03:00
|
|
|
void on_generate_mirrors_list_data (string line) {
|
2017-02-18 13:10:26 -03:00
|
|
|
show_in_term (line);
|
2014-12-30 11:04:40 -03:00
|
|
|
}
|
|
|
|
|
2015-08-20 10:11:18 -03:00
|
|
|
void on_generate_mirrors_list_finished () {
|
2017-09-09 04:43:18 -03:00
|
|
|
refresh_handle ();
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.generate_mirrors_list_data.disconnect (on_generate_mirrors_list_data);
|
|
|
|
system_daemon.generate_mirrors_list_finished.disconnect (on_generate_mirrors_list_finished);
|
2017-09-07 03:37:33 -03:00
|
|
|
reset_progress_box ("");
|
2014-12-30 11:04:40 -03:00
|
|
|
}
|
|
|
|
|
2017-07-29 10:35:04 -04:00
|
|
|
void connecting_user_daemon () {
|
|
|
|
try {
|
|
|
|
user_daemon = Bus.get_proxy_sync (BusType.SESSION, "org.manjaro.pamac.user", "/org/manjaro/pamac/user");
|
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void connecting_system_daemon () {
|
2014-10-22 13:44:02 -03:00
|
|
|
try {
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon = Bus.get_proxy_sync (BusType.SYSTEM, "org.manjaro.pamac.system", "/org/manjaro/pamac/system");
|
2016-02-02 05:28:07 -03:00
|
|
|
// Set environment variables
|
2017-07-29 10:35:04 -04:00
|
|
|
system_daemon.set_environment_variables (pamac_config.environment_variables);
|
2014-10-22 13:44:02 -03:00
|
|
|
} catch (IOError e) {
|
|
|
|
stderr.printf ("IOError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
}
|
2017-07-29 10:35:04 -04:00
|
|
|
|
|
|
|
void connecting_dbus_signals () {
|
|
|
|
system_daemon.emit_event.connect (on_emit_event);
|
|
|
|
system_daemon.emit_providers.connect (on_emit_providers);
|
|
|
|
system_daemon.emit_progress.connect (on_emit_progress);
|
|
|
|
system_daemon.emit_download.connect (on_emit_download);
|
|
|
|
system_daemon.emit_totaldownload.connect (on_emit_totaldownload);
|
|
|
|
system_daemon.emit_log.connect (on_emit_log);
|
|
|
|
system_daemon.trans_prepare_finished.connect (on_trans_prepare_finished);
|
|
|
|
system_daemon.trans_commit_finished.connect (on_trans_commit_finished);
|
|
|
|
}
|
|
|
|
|
|
|
|
void disconnecting_dbus_signals () {
|
|
|
|
system_daemon.emit_event.disconnect (on_emit_event);
|
|
|
|
system_daemon.emit_providers.disconnect (on_emit_providers);
|
|
|
|
system_daemon.emit_progress.disconnect (on_emit_progress);
|
|
|
|
system_daemon.emit_download.disconnect (on_emit_download);
|
|
|
|
system_daemon.emit_totaldownload.disconnect (on_emit_totaldownload);
|
|
|
|
system_daemon.emit_log.disconnect (on_emit_log);
|
|
|
|
system_daemon.trans_prepare_finished.disconnect (on_trans_prepare_finished);
|
|
|
|
system_daemon.trans_commit_finished.disconnect (on_trans_commit_finished);
|
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
}
|