2014-10-22 13:44:02 -03:00
|
|
|
/*
|
|
|
|
* pamac-vala
|
|
|
|
*
|
2015-03-04 11:55:36 -03:00
|
|
|
* Copyright (C) 2014-2015 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
using Alpm;
|
|
|
|
using Polkit;
|
|
|
|
|
|
|
|
// i18n
|
2014-10-26 08:30:04 -03:00
|
|
|
const string GETTEXT_PACKAGE = "pamac";
|
2014-10-22 13:44:02 -03:00
|
|
|
|
2014-10-30 10:44:09 -03:00
|
|
|
Pamac.Daemon pamac_daemon;
|
2014-10-22 13:44:02 -03:00
|
|
|
MainLoop loop;
|
|
|
|
|
2014-10-30 10:44:09 -03:00
|
|
|
namespace Pamac {
|
|
|
|
[DBus (name = "org.manjaro.pamac")]
|
|
|
|
public class Daemon : Object {
|
2015-02-01 14:01:03 -03:00
|
|
|
private Alpm.Config alpm_config;
|
2014-10-30 10:44:09 -03:00
|
|
|
public uint64 previous_percent;
|
|
|
|
public Cond provider_cond;
|
|
|
|
public Mutex provider_mutex;
|
|
|
|
public int? choosen_provider;
|
2015-02-01 14:01:03 -03:00
|
|
|
private Mutex databases_lock_mutex;
|
2015-03-27 12:31:07 -03:00
|
|
|
private HashTable<string, Json.Array> aur_search_results;
|
|
|
|
private Json.Array aur_updates_results;
|
2015-03-18 10:53:45 -03:00
|
|
|
private bool intern_lock;
|
|
|
|
private bool extern_lock;
|
2015-03-28 11:17:14 -03:00
|
|
|
private GLib.File lockfile;
|
2014-10-30 10:44:09 -03:00
|
|
|
|
2014-12-03 12:02:14 -03:00
|
|
|
public signal void emit_event (uint primary_event, uint secondary_event, string[] details);
|
2014-10-30 10:44:09 -03:00
|
|
|
public signal void emit_providers (string depend, string[] providers);
|
|
|
|
public signal void emit_progress (uint progress, string pkgname, int percent, uint n_targets, uint current_target);
|
|
|
|
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 ();
|
|
|
|
public signal void refresh_finished (ErrorInfos error);
|
|
|
|
public signal void trans_prepare_finished (ErrorInfos error);
|
|
|
|
public signal void trans_commit_finished (ErrorInfos error);
|
|
|
|
public signal void write_pamac_config_finished (int refresh_period, bool enable_aur, bool recurse);
|
|
|
|
public signal void write_alpm_config_finished ();
|
|
|
|
public signal void write_mirrors_config_finished ();
|
|
|
|
public signal void generate_mirrorlist_start ();
|
|
|
|
public signal void generate_mirrorlist_data (string line);
|
|
|
|
public signal void generate_mirrorlist_finished ();
|
2014-10-30 10:44:09 -03:00
|
|
|
|
|
|
|
public Daemon () {
|
2014-12-03 12:02:14 -03:00
|
|
|
alpm_config = new Alpm.Config ("/etc/pacman.conf");
|
2015-02-01 14:01:03 -03:00
|
|
|
databases_lock_mutex = Mutex ();
|
2015-03-27 12:31:07 -03:00
|
|
|
aur_search_results = new HashTable<string, Json.Array> (str_hash, str_equal);
|
|
|
|
aur_updates_results = new Json.Array ();
|
2015-03-18 10:53:45 -03:00
|
|
|
intern_lock = false;
|
|
|
|
extern_lock = false;
|
2015-03-04 11:55:36 -03:00
|
|
|
refresh_handle ();
|
2015-03-28 11:17:14 -03:00
|
|
|
Timeout.add (500, check_pacman_running);
|
2014-10-30 10:44:09 -03:00
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
|
2014-12-03 12:02:14 -03:00
|
|
|
private void refresh_handle () {
|
|
|
|
alpm_config.get_handle ();
|
|
|
|
if (alpm_config.handle == null) {
|
2015-03-07 06:43:44 -03:00
|
|
|
var err = ErrorInfos ();
|
|
|
|
err.message = _("Failed to initialize alpm library");
|
2015-03-04 11:55:36 -03:00
|
|
|
trans_commit_finished (err);
|
2014-10-30 10:44:09 -03:00
|
|
|
} else {
|
2014-12-03 12:02:14 -03:00
|
|
|
alpm_config.handle.eventcb = (EventCallBack) cb_event;
|
|
|
|
alpm_config.handle.progresscb = (ProgressCallBack) cb_progress;
|
|
|
|
alpm_config.handle.questioncb = (QuestionCallBack) cb_question;
|
|
|
|
alpm_config.handle.dlcb = (DownloadCallBack) cb_download;
|
|
|
|
alpm_config.handle.totaldlcb = (TotalDownloadCallBack) cb_totaldownload;
|
|
|
|
alpm_config.handle.logcb = (LogCallBack) cb_log;
|
2015-03-28 11:17:14 -03:00
|
|
|
lockfile = GLib.File.new_for_path (alpm_config.handle.lockfile);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2014-10-30 10:44:09 -03:00
|
|
|
previous_percent = 0;
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
2015-03-11 15:42:04 -03:00
|
|
|
private bool check_pacman_running () {
|
2015-03-18 10:53:45 -03:00
|
|
|
if (extern_lock) {
|
2015-03-11 15:42:04 -03:00
|
|
|
if (lockfile.query_exists () == false) {
|
2015-03-18 10:53:45 -03:00
|
|
|
extern_lock = false;
|
2015-03-11 15:42:04 -03:00
|
|
|
refresh_handle ();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (lockfile.query_exists () == true) {
|
2015-03-18 10:53:45 -03:00
|
|
|
if (intern_lock == false) {
|
|
|
|
extern_lock = true;
|
|
|
|
}
|
2015-03-11 15:42:04 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-03-04 11:55:36 -03:00
|
|
|
public void start_write_pamac_config (HashTable<string,Variant> new_pamac_conf, GLib.BusName sender) {
|
2014-10-30 10:44:09 -03:00
|
|
|
var pamac_config = new Pamac.Config ("/etc/pamac.conf");
|
|
|
|
try {
|
2015-04-11 13:00:49 -03:00
|
|
|
Polkit.Authority authority = Polkit.Authority.get_sync ();
|
2014-10-30 10:44:09 -03:00
|
|
|
Polkit.Subject subject = Polkit.SystemBusName.new (sender);
|
2015-03-04 11:55:36 -03:00
|
|
|
authority.check_authorization.begin (
|
2014-11-08 13:50:35 -03:00
|
|
|
subject,
|
|
|
|
"org.manjaro.pamac.commit",
|
|
|
|
null,
|
|
|
|
Polkit.CheckAuthorizationFlags.ALLOW_USER_INTERACTION,
|
2015-03-04 11:55:36 -03:00
|
|
|
null,
|
|
|
|
(obj, res) => {
|
|
|
|
try {
|
|
|
|
var result = authority.check_authorization.end (res);
|
|
|
|
if (result.get_is_authorized ()) {
|
|
|
|
pamac_config.write (new_pamac_conf);
|
|
|
|
pamac_config.reload ();
|
|
|
|
}
|
|
|
|
} catch (GLib.Error e) {
|
|
|
|
stderr.printf ("%s\n", e.message);
|
2015-04-11 13:00:49 -03:00
|
|
|
} finally {
|
|
|
|
write_pamac_config_finished (pamac_config.refresh_period, pamac_config.enable_aur, pamac_config.recurse);
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
|
|
|
}
|
2014-11-08 13:50:35 -03:00
|
|
|
);
|
2014-12-30 11:04:40 -03:00
|
|
|
} catch (GLib.Error e) {
|
2015-04-11 13:00:49 -03:00
|
|
|
write_pamac_config_finished (pamac_config.refresh_period, pamac_config.enable_aur, pamac_config.recurse);
|
2014-12-30 11:04:40 -03:00
|
|
|
stderr.printf ("%s\n", e.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-04 11:55:36 -03:00
|
|
|
public void start_write_alpm_config (HashTable<string,Variant> new_alpm_conf, GLib.BusName sender) {
|
2014-12-30 11:04:40 -03:00
|
|
|
try {
|
2015-04-11 13:00:49 -03:00
|
|
|
Polkit.Authority authority = Polkit.Authority.get_sync ();
|
2014-12-30 11:04:40 -03:00
|
|
|
Polkit.Subject subject = Polkit.SystemBusName.new (sender);
|
2015-03-04 11:55:36 -03:00
|
|
|
authority.check_authorization.begin (
|
2014-12-30 11:04:40 -03:00
|
|
|
subject,
|
|
|
|
"org.manjaro.pamac.commit",
|
|
|
|
null,
|
|
|
|
Polkit.CheckAuthorizationFlags.ALLOW_USER_INTERACTION,
|
2015-03-04 11:55:36 -03:00
|
|
|
null,
|
|
|
|
(obj, res) => {
|
|
|
|
try {
|
|
|
|
var result = authority.check_authorization.end (res);
|
|
|
|
if (result.get_is_authorized ()) {
|
|
|
|
alpm_config.write (new_alpm_conf);
|
|
|
|
alpm_config.reload ();
|
2015-04-11 13:00:49 -03:00
|
|
|
refresh_handle ();
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
|
|
|
} catch (GLib.Error e) {
|
|
|
|
stderr.printf ("%s\n", e.message);
|
2015-04-11 13:00:49 -03:00
|
|
|
} finally {
|
|
|
|
write_alpm_config_finished ();
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
|
|
|
}
|
2014-12-30 11:04:40 -03:00
|
|
|
);
|
|
|
|
} catch (GLib.Error e) {
|
2015-04-11 13:00:49 -03:00
|
|
|
write_alpm_config_finished ();
|
2014-12-30 11:04:40 -03:00
|
|
|
stderr.printf ("%s\n", e.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private bool process_line (IOChannel channel, IOCondition condition, string stream_name) {
|
|
|
|
if (condition == IOCondition.HUP) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
string line;
|
|
|
|
channel.read_line (out line, null, null);
|
2015-03-04 11:55:36 -03:00
|
|
|
generate_mirrorlist_data (line);
|
2014-12-30 11:04:40 -03:00
|
|
|
} catch (IOChannelError e) {
|
2015-03-04 11:55:36 -03:00
|
|
|
stderr.printf ("%s: IOChannelError: %s\n", stream_name, e.message);
|
2014-12-30 11:04:40 -03:00
|
|
|
return false;
|
|
|
|
} catch (ConvertError e) {
|
2015-03-04 11:55:36 -03:00
|
|
|
stderr.printf ("%s: ConvertError: %s\n", stream_name, e.message);
|
2014-12-30 11:04:40 -03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void generate_mirrorlist () {
|
2015-03-04 11:55:36 -03:00
|
|
|
generate_mirrorlist_start ();
|
2014-12-30 11:04:40 -03:00
|
|
|
int standard_output;
|
|
|
|
int standard_error;
|
|
|
|
Pid child_pid;
|
|
|
|
try {
|
|
|
|
Process.spawn_async_with_pipes (null,
|
|
|
|
{"pacman-mirrors", "-g"},
|
|
|
|
null,
|
|
|
|
SpawnFlags.SEARCH_PATH | SpawnFlags.DO_NOT_REAP_CHILD,
|
|
|
|
null,
|
|
|
|
out child_pid,
|
|
|
|
null,
|
|
|
|
out standard_output,
|
|
|
|
out standard_error);
|
2015-04-11 13:00:49 -03:00
|
|
|
// stdout
|
|
|
|
IOChannel output = new IOChannel.unix_new (standard_output);
|
|
|
|
output.add_watch (IOCondition.IN | IOCondition.HUP, (channel, condition) => {
|
|
|
|
return process_line (channel, condition, "stdout");
|
|
|
|
});
|
|
|
|
// stderr
|
|
|
|
IOChannel error = new IOChannel.unix_new (standard_error);
|
|
|
|
error.add_watch (IOCondition.IN | IOCondition.HUP, (channel, condition) => {
|
|
|
|
return process_line (channel, condition, "stderr");
|
|
|
|
});
|
|
|
|
ChildWatch.add (child_pid, (pid, status) => {
|
|
|
|
// Triggered when the child indicated by child_pid exits
|
|
|
|
Process.close_pid (pid);
|
|
|
|
alpm_config.reload ();
|
|
|
|
refresh_handle ();
|
|
|
|
generate_mirrorlist_finished ();
|
|
|
|
});
|
2014-12-30 11:04:40 -03:00
|
|
|
} catch (SpawnError e) {
|
2015-04-11 13:00:49 -03:00
|
|
|
generate_mirrorlist_finished ();
|
2014-12-30 11:04:40 -03:00
|
|
|
stdout.printf ("SpawnError: %s\n", e.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-04 11:55:36 -03:00
|
|
|
public void start_write_mirrors_config (HashTable<string,Variant> new_mirrors_conf, GLib.BusName sender) {
|
2014-12-30 11:04:40 -03:00
|
|
|
var mirrors_config = new Alpm.MirrorsConfig ("/etc/pacman-mirrors.conf");
|
|
|
|
try {
|
2015-04-11 13:00:49 -03:00
|
|
|
Polkit.Authority authority = Polkit.Authority.get_sync ();
|
2014-12-30 11:04:40 -03:00
|
|
|
Polkit.Subject subject = Polkit.SystemBusName.new (sender);
|
2015-03-04 11:55:36 -03:00
|
|
|
authority.check_authorization.begin (
|
2014-12-30 11:04:40 -03:00
|
|
|
subject,
|
|
|
|
"org.manjaro.pamac.commit",
|
|
|
|
null,
|
|
|
|
Polkit.CheckAuthorizationFlags.ALLOW_USER_INTERACTION,
|
2015-03-04 11:55:36 -03:00
|
|
|
null,
|
|
|
|
(obj, res) => {
|
|
|
|
try {
|
|
|
|
var result = authority.check_authorization.end (res);
|
|
|
|
if (result.get_is_authorized ()) {
|
|
|
|
mirrors_config.write (new_mirrors_conf);
|
|
|
|
generate_mirrorlist ();
|
|
|
|
}
|
|
|
|
} catch (GLib.Error e) {
|
|
|
|
stderr.printf ("%s\n", e.message);
|
2015-04-11 13:00:49 -03:00
|
|
|
} finally {
|
|
|
|
write_mirrors_config_finished ();
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
|
|
|
}
|
2014-12-30 11:04:40 -03:00
|
|
|
);
|
2014-10-30 10:44:09 -03:00
|
|
|
} catch (GLib.Error e) {
|
2015-04-11 13:00:49 -03:00
|
|
|
write_mirrors_config_finished ();
|
2014-10-30 10:44:09 -03:00
|
|
|
stderr.printf ("%s\n", e.message);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2014-10-30 10:44:09 -03:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:55:36 -03:00
|
|
|
public void start_set_pkgreason (string pkgname, uint reason, GLib.BusName sender) {
|
2014-11-08 13:50:35 -03:00
|
|
|
try {
|
2015-04-11 13:00:49 -03:00
|
|
|
Polkit.Authority authority = Polkit.Authority.get_sync ();
|
2014-11-08 13:50:35 -03:00
|
|
|
Polkit.Subject subject = Polkit.SystemBusName.new (sender);
|
2015-03-04 11:55:36 -03:00
|
|
|
authority.check_authorization.begin (
|
2014-11-08 13:50:35 -03:00
|
|
|
subject,
|
|
|
|
"org.manjaro.pamac.commit",
|
|
|
|
null,
|
|
|
|
Polkit.CheckAuthorizationFlags.ALLOW_USER_INTERACTION,
|
2015-03-04 11:55:36 -03:00
|
|
|
null,
|
|
|
|
(obj, res) => {
|
|
|
|
try {
|
|
|
|
var result = authority.check_authorization.end (res);
|
|
|
|
if (result.get_is_authorized ()) {
|
|
|
|
unowned Alpm.Package? pkg = alpm_config.handle.localdb.get_pkg (pkgname);
|
|
|
|
if (pkg != null) {
|
|
|
|
pkg.reason = (Alpm.Package.Reason) reason;
|
|
|
|
refresh_handle ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (GLib.Error e) {
|
|
|
|
stderr.printf ("%s\n", e.message);
|
2015-04-11 13:00:49 -03:00
|
|
|
} finally {
|
|
|
|
set_pkgreason_finished ();
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
2015-02-01 14:01:03 -03:00
|
|
|
}
|
2015-03-04 11:55:36 -03:00
|
|
|
);
|
2014-11-08 13:50:35 -03:00
|
|
|
} catch (GLib.Error e) {
|
2015-04-11 13:00:49 -03:00
|
|
|
set_pkgreason_finished ();
|
2014-11-08 13:50:35 -03:00
|
|
|
stderr.printf ("%s\n", e.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-04 11:55:36 -03:00
|
|
|
private async ErrorInfos refresh (int force) {
|
|
|
|
SourceFunc callback = refresh.callback;
|
2015-03-07 06:43:44 -03:00
|
|
|
var err = ErrorInfos ();
|
2014-10-30 10:44:09 -03:00
|
|
|
try {
|
2015-02-01 14:01:03 -03:00
|
|
|
new Thread<int>.try ("refresh thread", () => {
|
|
|
|
databases_lock_mutex.lock ();
|
|
|
|
string[] details = {};
|
|
|
|
int success = 0;
|
|
|
|
int ret;
|
|
|
|
foreach (var db in alpm_config.handle.syncdbs) {
|
|
|
|
ret = db.update (force);
|
|
|
|
if (ret >= 0) {
|
|
|
|
success++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// We should always succeed if at least one DB was upgraded - we may possibly
|
|
|
|
// fail later with unresolved deps, but that should be rare, and would be expected
|
|
|
|
if (success == 0) {
|
2015-03-07 06:43:44 -03:00
|
|
|
err.message = _("Failed to synchronize any databases");
|
2015-02-01 14:01:03 -03:00
|
|
|
details += Alpm.strerror (alpm_config.handle.errno ());
|
|
|
|
err.details = details;
|
|
|
|
}
|
|
|
|
databases_lock_mutex.unlock ();
|
2015-04-11 13:00:49 -03:00
|
|
|
Idle.add ((owned) callback);
|
2015-02-01 14:01:03 -03:00
|
|
|
return success;
|
|
|
|
});
|
2015-04-11 13:00:49 -03:00
|
|
|
yield;
|
2014-10-30 10:44:09 -03:00
|
|
|
} catch (GLib.Error e) {
|
|
|
|
stderr.printf ("%s\n", e.message);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2015-03-04 11:55:36 -03:00
|
|
|
return err;
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
2015-04-11 13:00:49 -03:00
|
|
|
public void start_refresh (int force) {
|
2015-03-18 10:53:45 -03:00
|
|
|
intern_lock = true;
|
2015-03-04 11:55:36 -03:00
|
|
|
refresh.begin (force, (obj, res) => {
|
|
|
|
var err = refresh.end (res);
|
2015-03-18 10:53:45 -03:00
|
|
|
intern_lock = false;
|
|
|
|
refresh_handle ();
|
2015-04-11 13:00:49 -03:00
|
|
|
refresh_finished (err);
|
2015-03-04 11:55:36 -03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool get_checkspace () {
|
|
|
|
if (alpm_config.checkspace == 1) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string get_syncfirst (){
|
|
|
|
return alpm_config.syncfirst;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string get_ignorepkg () {
|
|
|
|
return alpm_config.ignorepkg;
|
|
|
|
}
|
|
|
|
|
2015-04-11 13:00:49 -03:00
|
|
|
public void add_ignorepkg (string pkgname) {
|
|
|
|
alpm_config.handle.add_ignorepkg (pkgname);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void remove_ignorepkg (string pkgname) {
|
|
|
|
alpm_config.handle.remove_ignorepkg (pkgname);
|
|
|
|
}
|
|
|
|
|
2015-03-04 11:55:36 -03:00
|
|
|
public bool should_hold (string pkgname) {
|
|
|
|
if (alpm_config.holdpkgs.find_custom (pkgname, strcmp) != null) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Pamac.Package[] get_all_pkgs () {
|
|
|
|
Pamac.Package[] pkgs = {};
|
|
|
|
var alpm_pkgs = all_pkgs (alpm_config.handle);
|
|
|
|
foreach (var alpm_pkg in alpm_pkgs) {
|
|
|
|
pkgs += Pamac.Package (alpm_pkg, null);
|
|
|
|
}
|
|
|
|
return pkgs;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Pamac.Package[] get_installed_pkgs () {
|
|
|
|
Pamac.Package[] pkgs = {};
|
|
|
|
foreach (var alpm_pkg in alpm_config.handle.localdb.pkgcache) {
|
|
|
|
pkgs += Pamac.Package (alpm_pkg, null);
|
|
|
|
}
|
|
|
|
return pkgs;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Pamac.Package[] get_local_pkgs () {
|
|
|
|
Pamac.Package[] pkgs = {};
|
|
|
|
foreach (var alpm_pkg in alpm_config.handle.localdb.pkgcache) {
|
|
|
|
bool sync_found = false;
|
|
|
|
foreach (var db in alpm_config.handle.syncdbs) {
|
|
|
|
unowned Alpm.Package? sync_pkg = db.get_pkg (alpm_pkg.name);
|
|
|
|
if (sync_pkg != null) {
|
|
|
|
sync_found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (sync_found == false) {
|
|
|
|
pkgs += Pamac.Package (alpm_pkg, null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return pkgs;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Pamac.Package[] get_orphans () {
|
|
|
|
Pamac.Package[] pkgs = {};
|
|
|
|
foreach (var alpm_pkg in alpm_config.handle.localdb.pkgcache) {
|
|
|
|
if (alpm_pkg.reason == Alpm.Package.Reason.DEPEND) {
|
|
|
|
Alpm.List<string?> *list = alpm_pkg.compute_requiredby ();
|
|
|
|
if (list->length == 0) {
|
|
|
|
pkgs += Pamac.Package (alpm_pkg, null);
|
|
|
|
}
|
|
|
|
Alpm.List.free_all (list);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return pkgs;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Pamac.Package find_local_pkg (string pkgname) {
|
|
|
|
return Pamac.Package (alpm_config.handle.localdb.get_pkg (pkgname), null);
|
|
|
|
}
|
|
|
|
|
|
|
|
private unowned Alpm.Package? get_syncpkg (string name) {
|
|
|
|
unowned Alpm.Package? pkg = null;
|
|
|
|
foreach (var db in alpm_config.handle.syncdbs) {
|
|
|
|
pkg = db.get_pkg (name);
|
|
|
|
if (pkg != null) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return pkg;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Pamac.Package find_sync_pkg (string pkgname) {
|
|
|
|
return Pamac.Package (get_syncpkg (pkgname), null);
|
|
|
|
}
|
|
|
|
|
2015-03-07 06:43:44 -03:00
|
|
|
public async Pamac.Package[] search_pkgs (string search_string, bool search_from_aur) {
|
2015-03-04 11:55:36 -03:00
|
|
|
Pamac.Package[] result = {};
|
|
|
|
var needles = new Alpm.List<string> ();
|
|
|
|
string[] splitted = search_string.split (" ");
|
|
|
|
foreach (unowned string part in splitted) {
|
|
|
|
needles.add (part);
|
|
|
|
}
|
|
|
|
var alpm_pkgs = search_all_dbs (alpm_config.handle, needles);
|
|
|
|
foreach (var alpm_pkg in alpm_pkgs) {
|
|
|
|
result += Pamac.Package (alpm_pkg, null);
|
|
|
|
}
|
2015-03-07 06:43:44 -03:00
|
|
|
if (search_from_aur) {
|
2015-03-04 11:55:36 -03:00
|
|
|
Json.Array aur_pkgs;
|
2015-03-27 12:31:07 -03:00
|
|
|
if (aur_search_results.contains (search_string)) {
|
|
|
|
aur_pkgs = aur_search_results.get (search_string);
|
2015-03-04 11:55:36 -03:00
|
|
|
} else {
|
|
|
|
aur_pkgs = AUR.search (splitted);
|
2015-03-27 12:31:07 -03:00
|
|
|
aur_search_results.insert (search_string, aur_pkgs);
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
|
|
|
foreach (var node in aur_pkgs.get_elements ()) {
|
|
|
|
var aur_pkg = node.get_object ();
|
|
|
|
var pamac_pkg = Pamac.Package (null, aur_pkg);
|
|
|
|
bool found = false;
|
|
|
|
foreach (var pkg in result) {
|
|
|
|
if (pkg.name == pamac_pkg.name) {
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (found == false) {
|
|
|
|
result += pamac_pkg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string[] get_repos_names () {
|
|
|
|
string[] repos_names = {};
|
|
|
|
foreach (var db in alpm_config.handle.syncdbs) {
|
|
|
|
repos_names += db.name;
|
|
|
|
}
|
|
|
|
return repos_names;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Pamac.Package[] get_repo_pkgs (string repo) {
|
|
|
|
Pamac.Package[] pkgs = {};
|
|
|
|
unowned Alpm.Package? local_pkg = null;
|
|
|
|
foreach (var db in alpm_config.handle.syncdbs) {
|
|
|
|
if (db.name == repo) {
|
|
|
|
foreach (var sync_pkg in db.pkgcache) {
|
|
|
|
local_pkg = alpm_config.handle.localdb.get_pkg (sync_pkg.name);
|
|
|
|
if (local_pkg != null) {
|
|
|
|
pkgs += Pamac.Package (local_pkg, null);
|
|
|
|
} else {
|
|
|
|
pkgs += Pamac.Package (sync_pkg, null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return pkgs;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string[] get_groups_names () {
|
|
|
|
string[] groups_names = {};
|
|
|
|
foreach (var db in alpm_config.handle.syncdbs) {
|
|
|
|
foreach (var group in db.groupcache) {
|
|
|
|
if ((group.name in groups_names) == false) {
|
|
|
|
groups_names += group.name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return groups_names;
|
|
|
|
}
|
|
|
|
|
2015-03-07 06:43:44 -03:00
|
|
|
public async Pamac.Package[] get_group_pkgs (string groupname) {
|
2015-03-04 11:55:36 -03:00
|
|
|
Pamac.Package[] pkgs = {};
|
2015-03-07 06:43:44 -03:00
|
|
|
var alpm_pkgs = group_pkgs (alpm_config.handle, groupname);
|
2015-03-04 11:55:36 -03:00
|
|
|
foreach (var alpm_pkg in alpm_pkgs) {
|
|
|
|
pkgs += Pamac.Package (alpm_pkg, null);
|
|
|
|
}
|
|
|
|
return pkgs;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string[] get_pkg_files (string pkgname) {
|
|
|
|
string[] files = {};
|
|
|
|
unowned Alpm.Package? alpm_pkg = alpm_config.handle.localdb.get_pkg (pkgname);
|
|
|
|
if (alpm_pkg != null) {
|
|
|
|
foreach (var file in alpm_pkg.files) {
|
|
|
|
files += file.name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return files;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string[] get_pkg_uninstalled_optdeps (string pkgname) {
|
|
|
|
string[] optdeps = {};
|
|
|
|
unowned Alpm.Package? alpm_pkg = alpm_config.handle.localdb.get_pkg (pkgname);
|
2015-05-20 09:48:12 -03:00
|
|
|
if (alpm_pkg == null) {
|
|
|
|
alpm_pkg = get_syncpkg (pkgname);
|
|
|
|
}
|
2015-03-04 11:55:36 -03:00
|
|
|
if (alpm_pkg != null) {
|
|
|
|
foreach (unowned Depend optdep in alpm_pkg.optdepends) {
|
|
|
|
if (find_satisfier (alpm_config.handle.localdb.pkgcache, optdep.name) == null) {
|
|
|
|
optdeps += optdep.compute_string ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return optdeps;
|
|
|
|
}
|
|
|
|
|
|
|
|
public PackageDetails get_pkg_details (string pkgname) {
|
|
|
|
string repo = "";
|
|
|
|
string has_signature = _("No");
|
|
|
|
int reason = 0;
|
|
|
|
string packager = "";
|
|
|
|
string install_date = "";
|
|
|
|
string[] groups = {};
|
|
|
|
string[] backups = {};
|
|
|
|
var details = PackageDetails ();
|
|
|
|
unowned Alpm.Package? alpm_pkg = alpm_config.handle.localdb.get_pkg (pkgname);
|
|
|
|
if (alpm_pkg == null) {
|
|
|
|
alpm_pkg = get_syncpkg (pkgname);
|
|
|
|
}
|
|
|
|
if (alpm_pkg != null) {
|
|
|
|
repo = alpm_pkg.db.name;
|
|
|
|
packager = alpm_pkg.packager;
|
|
|
|
foreach (var group in alpm_pkg.groups) {
|
|
|
|
groups += group;
|
|
|
|
}
|
|
|
|
if (alpm_pkg.db.name == "local") {
|
|
|
|
reason = alpm_pkg.reason;
|
|
|
|
GLib.Time time = GLib.Time.local ((time_t) alpm_pkg.installdate);
|
|
|
|
install_date = time.format ("%a %d %b %Y %X %Z");
|
|
|
|
foreach (var backup in alpm_pkg.backups) {
|
|
|
|
backups += backup.name;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
has_signature = alpm_pkg.base64_sig != null ? _("Yes") : _("No");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
details.repo = repo;
|
|
|
|
details.has_signature = has_signature;
|
|
|
|
details.reason = reason;
|
|
|
|
details.packager = packager;
|
|
|
|
details.install_date = install_date;
|
|
|
|
details.groups = groups;
|
|
|
|
details.backups = backups;
|
|
|
|
return details;
|
|
|
|
}
|
|
|
|
|
|
|
|
public PackageDeps get_pkg_deps (string pkgname) {
|
|
|
|
string repo = "";
|
|
|
|
string[] depends = {};
|
|
|
|
string[] optdepends = {};
|
|
|
|
string[] requiredby = {};
|
|
|
|
string[] provides = {};
|
|
|
|
string[] replaces = {};
|
|
|
|
string[] conflicts = {};
|
|
|
|
var deps = PackageDeps ();
|
|
|
|
unowned Alpm.Package? alpm_pkg = alpm_config.handle.localdb.get_pkg (pkgname);
|
|
|
|
if (alpm_pkg == null) {
|
|
|
|
alpm_pkg = get_syncpkg (pkgname);
|
|
|
|
}
|
|
|
|
if (alpm_pkg != null) {
|
|
|
|
repo = alpm_pkg.db.name;
|
|
|
|
foreach (var depend in alpm_pkg.depends) {
|
|
|
|
depends += depend.compute_string ();
|
|
|
|
}
|
|
|
|
foreach (var optdepend in alpm_pkg.optdepends) {
|
|
|
|
optdepends += optdepend.compute_string ();
|
|
|
|
}
|
|
|
|
foreach (var provide in alpm_pkg.provides) {
|
|
|
|
provides += provide.compute_string ();
|
|
|
|
}
|
|
|
|
foreach (var replace in alpm_pkg.replaces) {
|
|
|
|
replaces += replace.compute_string ();
|
|
|
|
}
|
|
|
|
foreach (var conflict in alpm_pkg.conflicts) {
|
|
|
|
conflicts += conflict.compute_string ();
|
|
|
|
}
|
|
|
|
if (alpm_pkg.db.name == "local") {
|
|
|
|
Alpm.List<string?> *list = alpm_pkg.compute_requiredby ();
|
|
|
|
int i = 0;
|
|
|
|
while (i < list->length) {
|
|
|
|
requiredby += list->nth_data (i);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
Alpm.List.free_all (list);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
deps.repo = repo;
|
|
|
|
deps.depends = depends;
|
|
|
|
deps.optdepends = optdepends;
|
|
|
|
deps.requiredby = requiredby;
|
|
|
|
deps.provides = provides;
|
|
|
|
deps.replaces = replaces;
|
|
|
|
deps.conflicts = conflicts;
|
|
|
|
return deps;
|
|
|
|
}
|
|
|
|
|
2015-03-07 06:43:44 -03:00
|
|
|
public async Updates get_updates (bool enable_aur) {
|
2015-03-04 11:55:36 -03:00
|
|
|
var infos = UpdateInfos ();
|
|
|
|
UpdateInfos[] updates_infos = {};
|
|
|
|
var updates = Updates ();
|
|
|
|
unowned Alpm.Package? pkg = null;
|
|
|
|
unowned Alpm.Package? candidate = null;
|
|
|
|
foreach (var name in alpm_config.syncfirsts) {
|
|
|
|
pkg = Alpm.find_satisfier (alpm_config.handle.localdb.pkgcache, name);
|
|
|
|
if (pkg != null) {
|
|
|
|
candidate = pkg.sync_newversion (alpm_config.handle.syncdbs);
|
|
|
|
if (candidate != null) {
|
|
|
|
infos.name = candidate.name;
|
|
|
|
infos.version = candidate.version;
|
|
|
|
infos.db_name = candidate.db.name;
|
|
|
|
infos.tarpath = "";
|
|
|
|
infos.download_size = candidate.download_size;
|
|
|
|
updates_infos += infos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (updates_infos.length != 0) {
|
|
|
|
updates.is_syncfirst = true;
|
|
|
|
updates.repos_updates = updates_infos;
|
2014-10-30 10:44:09 -03:00
|
|
|
return updates;
|
|
|
|
} else {
|
2015-03-04 11:55:36 -03:00
|
|
|
string[] local_pkgs = {};
|
2015-04-11 13:00:49 -03:00
|
|
|
foreach (var installed_pkg in alpm_config.handle.localdb.pkgcache) {
|
|
|
|
// check if installed_pkg is in IgnorePkg or IgnoreGroup
|
|
|
|
if (alpm_config.handle.should_ignore (installed_pkg) == 0) {
|
|
|
|
candidate = installed_pkg.sync_newversion (alpm_config.handle.syncdbs);
|
2015-03-04 11:55:36 -03:00
|
|
|
if (candidate != null) {
|
|
|
|
infos.name = candidate.name;
|
|
|
|
infos.version = candidate.version;
|
|
|
|
infos.db_name = candidate.db.name;
|
|
|
|
infos.tarpath = "";
|
|
|
|
infos.download_size = candidate.download_size;
|
|
|
|
updates_infos += infos;
|
|
|
|
} else {
|
2015-03-07 06:43:44 -03:00
|
|
|
if (enable_aur) {
|
2015-04-11 13:00:49 -03:00
|
|
|
// check if installed_pkg is a local pkg
|
2015-03-04 11:55:36 -03:00
|
|
|
foreach (var db in alpm_config.handle.syncdbs) {
|
2015-04-11 13:00:49 -03:00
|
|
|
pkg = Alpm.find_satisfier (db.pkgcache, installed_pkg.name);
|
2015-03-04 11:55:36 -03:00
|
|
|
if (pkg != null) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (pkg == null) {
|
2015-04-11 13:00:49 -03:00
|
|
|
local_pkgs += installed_pkg.name;
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
updates.repos_updates = updates_infos;
|
2015-03-07 06:43:44 -03:00
|
|
|
if (enable_aur) {
|
2015-03-27 12:31:07 -03:00
|
|
|
// get aur updates
|
|
|
|
if (aur_updates_results.get_length () == 0) {
|
|
|
|
aur_updates_results = AUR.multiinfo (local_pkgs);
|
|
|
|
}
|
|
|
|
int cmp;
|
|
|
|
unowned Json.Object pkg_info;
|
|
|
|
string version;
|
|
|
|
string name;
|
|
|
|
updates_infos = {};
|
|
|
|
foreach (var node in aur_updates_results.get_elements ()) {
|
|
|
|
pkg_info = node.get_object ();
|
|
|
|
version = pkg_info.get_string_member ("Version");
|
|
|
|
name = pkg_info.get_string_member ("Name");
|
|
|
|
cmp = Alpm.pkg_vercmp (version, alpm_config.handle.localdb.get_pkg (name).version);
|
|
|
|
if (cmp == 1) {
|
|
|
|
infos.name = name;
|
|
|
|
infos.version = version;
|
|
|
|
infos.db_name = "AUR";
|
|
|
|
infos.tarpath = pkg_info.get_string_member ("URLPath");
|
|
|
|
infos.download_size = 0;
|
|
|
|
updates_infos += infos;
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
2015-02-01 14:01:03 -03:00
|
|
|
}
|
2015-03-27 12:31:07 -03:00
|
|
|
updates.aur_updates = updates_infos;
|
2014-10-30 10:44:09 -03:00
|
|
|
}
|
|
|
|
return updates;
|
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
2014-10-30 10:44:09 -03:00
|
|
|
public ErrorInfos trans_init (TransFlag transflags) {
|
2015-03-07 06:43:44 -03:00
|
|
|
var err = ErrorInfos ();
|
2014-10-30 10:44:09 -03:00
|
|
|
string[] details = {};
|
2014-12-03 12:02:14 -03:00
|
|
|
int ret = alpm_config.handle.trans_init (transflags);
|
2014-10-30 10:44:09 -03:00
|
|
|
if (ret == -1) {
|
2015-03-07 06:43:44 -03:00
|
|
|
err.message = _("Failed to init transaction");
|
2014-12-03 12:02:14 -03:00
|
|
|
details += Alpm.strerror (alpm_config.handle.errno ());
|
2014-10-30 10:44:09 -03:00
|
|
|
err.details = details;
|
2015-03-18 10:53:45 -03:00
|
|
|
} else {
|
|
|
|
intern_lock = true;
|
2014-10-30 10:44:09 -03:00
|
|
|
}
|
|
|
|
return err;
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
2014-10-30 10:44:09 -03:00
|
|
|
public ErrorInfos trans_sysupgrade (int enable_downgrade) {
|
2015-03-07 06:43:44 -03:00
|
|
|
var err = ErrorInfos ();
|
2014-10-30 10:44:09 -03:00
|
|
|
string[] details = {};
|
2014-12-03 12:02:14 -03:00
|
|
|
int ret = alpm_config.handle.trans_sysupgrade (enable_downgrade);
|
2015-05-20 09:48:12 -03:00
|
|
|
if (ret == -1) {
|
2015-03-07 06:43:44 -03:00
|
|
|
err.message = _("Failed to prepare transaction");
|
2014-12-03 12:02:14 -03:00
|
|
|
details += Alpm.strerror (alpm_config.handle.errno ());
|
2014-10-30 10:44:09 -03:00
|
|
|
err.details = details;
|
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
return err;
|
|
|
|
}
|
2014-10-30 10:44:09 -03:00
|
|
|
|
2015-03-04 11:55:36 -03:00
|
|
|
private ErrorInfos trans_add_pkg_real (Alpm.Package pkg) {
|
2015-03-07 06:43:44 -03:00
|
|
|
var err = ErrorInfos ();
|
2014-10-30 10:44:09 -03:00
|
|
|
string[] details = {};
|
2014-12-03 12:02:14 -03:00
|
|
|
int ret = alpm_config.handle.trans_add_pkg (pkg);
|
2014-10-22 13:44:02 -03:00
|
|
|
if (ret == -1) {
|
2014-12-03 12:02:14 -03:00
|
|
|
Alpm.Errno errno = alpm_config.handle.errno ();
|
2015-02-01 14:01:03 -03:00
|
|
|
if (errno == Errno.TRANS_DUP_TARGET || errno == Errno.PKG_IGNORED) {
|
2014-10-22 13:44:02 -03:00
|
|
|
// just skip duplicate or ignored targets
|
|
|
|
return err;
|
2015-02-01 14:01:03 -03:00
|
|
|
} else {
|
2015-03-07 06:43:44 -03:00
|
|
|
err.message = _("Failed to prepare transaction");
|
2014-10-26 08:30:04 -03:00
|
|
|
details += "%s: %s".printf (pkg.name, Alpm.strerror (errno));
|
|
|
|
err.details = details;
|
2014-10-22 13:44:02 -03:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
2014-10-30 10:44:09 -03:00
|
|
|
return err;
|
2015-01-28 12:37:51 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
public ErrorInfos trans_add_pkg (string pkgname) {
|
2015-03-07 06:43:44 -03:00
|
|
|
var err = ErrorInfos ();
|
2015-01-28 12:37:51 -03:00
|
|
|
string[] details = {};
|
2015-03-04 11:55:36 -03:00
|
|
|
unowned Alpm.Package? pkg = get_syncpkg (pkgname);
|
2015-05-20 09:48:12 -03:00
|
|
|
if (pkg == null) {
|
2015-03-07 06:43:44 -03:00
|
|
|
err.message = _("Failed to prepare transaction");
|
2015-01-28 12:37:51 -03:00
|
|
|
details += _("target not found: %s").printf (pkgname);
|
|
|
|
err.details = details;
|
|
|
|
return err;
|
|
|
|
} else {
|
|
|
|
err = trans_add_pkg_real (pkg);
|
2015-03-07 06:43:44 -03:00
|
|
|
if (err.message == "") {
|
2015-06-20 13:28:22 -03:00
|
|
|
if (("linux31" in pkg.name) || ("linux4" in pkg.name)) {
|
2015-01-28 12:37:51 -03:00
|
|
|
string[] installed_kernels = {};
|
|
|
|
string[] installed_modules = {};
|
|
|
|
foreach (var local_pkg in alpm_config.handle.localdb.pkgcache) {
|
2015-06-20 13:28:22 -03:00
|
|
|
if (("linux31" in local_pkg.name) || ("linux4" in local_pkg.name)) {
|
2015-01-28 12:37:51 -03:00
|
|
|
string[] local_pkg_splitted = local_pkg.name.split ("-", 2);
|
|
|
|
if ((local_pkg_splitted[0] in installed_kernels) == false) {
|
|
|
|
installed_kernels += local_pkg_splitted[0];
|
|
|
|
}
|
|
|
|
if (local_pkg_splitted.length == 2) {
|
|
|
|
if ((local_pkg_splitted[1] in installed_modules) == false) {
|
|
|
|
installed_modules += local_pkg_splitted[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
string[] splitted = pkg.name.split ("-", 2);
|
|
|
|
if (splitted.length == 2) {
|
|
|
|
// we are adding a module
|
|
|
|
// add the same module for other installed kernels
|
|
|
|
foreach (var installed_kernel in installed_kernels) {
|
|
|
|
string module = installed_kernel + "-" + splitted[1];
|
2015-03-04 11:55:36 -03:00
|
|
|
unowned Alpm.Package? module_pkg = get_syncpkg (module);
|
2015-01-28 12:37:51 -03:00
|
|
|
if (module_pkg != null) {
|
|
|
|
trans_add_pkg_real (module_pkg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (splitted.length == 1) {
|
|
|
|
// we are adding a kernel
|
2015-06-20 13:28:22 -03:00
|
|
|
// add all installed modules for other kernels
|
2015-01-28 12:37:51 -03:00
|
|
|
foreach (var installed_module in installed_modules) {
|
|
|
|
string module = splitted[0] + "-" + installed_module;
|
2015-03-04 11:55:36 -03:00
|
|
|
unowned Alpm.Package? module_pkg = get_syncpkg (module);
|
2015-01-28 12:37:51 -03:00
|
|
|
if (module_pkg != null) {
|
|
|
|
trans_add_pkg_real (module_pkg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
|
2014-10-30 10:44:09 -03:00
|
|
|
public ErrorInfos trans_load_pkg (string pkgpath) {
|
2015-03-07 06:43:44 -03:00
|
|
|
var err = ErrorInfos ();
|
2014-10-30 10:44:09 -03:00
|
|
|
string[] details = {};
|
2015-03-04 11:55:36 -03:00
|
|
|
Alpm.Package* pkg = alpm_config.handle.load_file (pkgpath, 1, alpm_config.handle.localfilesiglevel);
|
2014-10-30 10:44:09 -03:00
|
|
|
if (pkg == null) {
|
2015-03-07 06:43:44 -03:00
|
|
|
err.message = _("Failed to prepare transaction");
|
2014-12-03 12:02:14 -03:00
|
|
|
details += "%s: %s".printf (pkgpath, Alpm.strerror (alpm_config.handle.errno ()));
|
2014-10-30 10:44:09 -03:00
|
|
|
err.details = details;
|
|
|
|
return err;
|
|
|
|
} else {
|
2014-12-03 12:02:14 -03:00
|
|
|
int ret = alpm_config.handle.trans_add_pkg (pkg);
|
2014-10-30 10:44:09 -03:00
|
|
|
if (ret == -1) {
|
2014-12-03 12:02:14 -03:00
|
|
|
Alpm.Errno errno = alpm_config.handle.errno ();
|
2015-02-01 14:01:03 -03:00
|
|
|
if (errno == Errno.TRANS_DUP_TARGET || errno == Errno.PKG_IGNORED) {
|
2014-10-30 10:44:09 -03:00
|
|
|
// just skip duplicate or ignored targets
|
|
|
|
return err;
|
2015-02-01 14:01:03 -03:00
|
|
|
} else {
|
2015-03-07 06:43:44 -03:00
|
|
|
err.message = _("Failed to prepare transaction");
|
2014-10-30 10:44:09 -03:00
|
|
|
details += "%s: %s".printf (pkg->name, Alpm.strerror (errno));
|
|
|
|
err.details = details;
|
2015-01-28 12:37:51 -03:00
|
|
|
// free the package because it will not be used
|
|
|
|
delete pkg;
|
2014-10-30 10:44:09 -03:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
return err;
|
|
|
|
}
|
2014-10-30 10:44:09 -03:00
|
|
|
|
|
|
|
public ErrorInfos trans_remove_pkg (string pkgname) {
|
2015-03-07 06:43:44 -03:00
|
|
|
var err = ErrorInfos ();
|
2014-10-30 10:44:09 -03:00
|
|
|
string[] details = {};
|
2015-03-04 11:55:36 -03:00
|
|
|
unowned Alpm.Package? pkg = alpm_config.handle.localdb.get_pkg (pkgname);
|
2014-10-30 10:44:09 -03:00
|
|
|
if (pkg == null) {
|
2015-03-07 06:43:44 -03:00
|
|
|
err.message = _("Failed to prepare transaction");
|
2014-10-30 10:44:09 -03:00
|
|
|
details += _("target not found: %s").printf (pkgname);
|
|
|
|
err.details = details;
|
|
|
|
return err;
|
|
|
|
}
|
2014-12-03 12:02:14 -03:00
|
|
|
int ret = alpm_config.handle.trans_remove_pkg (pkg);
|
2014-10-30 10:44:09 -03:00
|
|
|
if (ret == -1) {
|
2015-03-07 06:43:44 -03:00
|
|
|
err.message = _("Failed to prepare transaction");
|
2014-12-03 12:02:14 -03:00
|
|
|
details += "%s: %s".printf (pkg.name, Alpm.strerror (alpm_config.handle.errno ()));
|
2014-10-30 10:44:09 -03:00
|
|
|
err.details = details;
|
|
|
|
}
|
|
|
|
return err;
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:55:36 -03:00
|
|
|
private async ErrorInfos trans_prepare () {
|
|
|
|
SourceFunc callback = trans_prepare.callback;
|
2015-03-07 06:43:44 -03:00
|
|
|
var err = ErrorInfos ();
|
2015-03-04 11:55:36 -03:00
|
|
|
try {
|
|
|
|
new Thread<int>.try ("prepare thread", () => {
|
|
|
|
databases_lock_mutex.lock ();
|
|
|
|
string[] details = {};
|
|
|
|
Alpm.List<void*> err_data = null;
|
|
|
|
int ret = alpm_config.handle.trans_prepare (out err_data);
|
|
|
|
if (ret == -1) {
|
|
|
|
Alpm.Errno errno = alpm_config.handle.errno ();
|
2015-03-07 06:43:44 -03:00
|
|
|
err.message = _("Failed to prepare transaction");
|
2015-03-04 11:55:36 -03:00
|
|
|
string detail = Alpm.strerror (errno);
|
|
|
|
switch (errno) {
|
|
|
|
case Errno.PKG_INVALID_ARCH:
|
|
|
|
detail += ":";
|
|
|
|
details += detail;
|
|
|
|
foreach (void *i in err_data) {
|
|
|
|
string *pkgname = i;
|
|
|
|
details += _("package %s does not have a valid architecture").printf (pkgname);
|
|
|
|
delete pkgname;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case Errno.UNSATISFIED_DEPS:
|
|
|
|
detail += ":";
|
|
|
|
details += detail;
|
|
|
|
foreach (void *i in err_data) {
|
|
|
|
DepMissing *miss = i;
|
|
|
|
string depstring = miss->depend.compute_string ();
|
|
|
|
details += _("%s: requires %s").printf (miss->target, depstring);
|
|
|
|
delete miss;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case Errno.CONFLICTING_DEPS:
|
|
|
|
detail += ":";
|
|
|
|
details += detail;
|
|
|
|
foreach (void *i in err_data) {
|
|
|
|
Conflict *conflict = i;
|
|
|
|
detail = _("%s and %s are in conflict").printf (conflict->package1, conflict->package2);
|
|
|
|
// only print reason if it contains new information
|
|
|
|
if (conflict->reason.mod != Depend.Mode.ANY) {
|
|
|
|
detail += " (%s)".printf (conflict->reason.compute_string ());
|
|
|
|
}
|
|
|
|
details += detail;
|
|
|
|
delete conflict;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
details += detail;
|
|
|
|
break;
|
2014-10-30 10:44:09 -03:00
|
|
|
}
|
2015-03-04 11:55:36 -03:00
|
|
|
err.details = details;
|
|
|
|
trans_release ();
|
|
|
|
} else {
|
|
|
|
// Search for holdpkg in target list
|
|
|
|
bool found_locked_pkg = false;
|
|
|
|
foreach (var pkg in alpm_config.handle.trans_to_remove ()) {
|
|
|
|
if (alpm_config.holdpkgs.find_custom (pkg.name, strcmp) != null) {
|
|
|
|
details += _("%s needs to be removed but it is a locked package").printf (pkg.name);
|
|
|
|
found_locked_pkg = true;
|
|
|
|
break;
|
2014-10-30 10:44:09 -03:00
|
|
|
}
|
|
|
|
}
|
2015-03-04 11:55:36 -03:00
|
|
|
if (found_locked_pkg) {
|
2015-03-07 06:43:44 -03:00
|
|
|
err.message = _("Failed to prepare transaction");
|
2015-03-04 11:55:36 -03:00
|
|
|
err.details = details;
|
|
|
|
trans_release ();
|
|
|
|
}
|
2014-10-30 10:44:09 -03:00
|
|
|
}
|
2015-03-04 11:55:36 -03:00
|
|
|
databases_lock_mutex.unlock ();
|
2015-04-11 13:00:49 -03:00
|
|
|
Idle.add ((owned) callback);
|
2015-03-04 11:55:36 -03:00
|
|
|
return ret;
|
|
|
|
});
|
2015-04-11 13:00:49 -03:00
|
|
|
yield;
|
2014-10-30 10:44:09 -03:00
|
|
|
} catch (GLib.Error e) {
|
|
|
|
stderr.printf ("%s\n", e.message);
|
|
|
|
}
|
2015-03-04 11:55:36 -03:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void start_trans_prepare () {
|
|
|
|
trans_prepare.begin ((obj, res) => {
|
|
|
|
var err = trans_prepare.end (res);
|
|
|
|
trans_prepare_finished (err);
|
|
|
|
});
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
2014-10-30 10:44:09 -03:00
|
|
|
public void choose_provider (int provider) {
|
|
|
|
provider_mutex.lock ();
|
|
|
|
choosen_provider = provider;
|
|
|
|
provider_cond.signal ();
|
|
|
|
provider_mutex.unlock ();
|
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
|
2015-03-04 11:55:36 -03:00
|
|
|
public UpdateInfos[] trans_to_add () {
|
|
|
|
UpdateInfos info = UpdateInfos ();
|
|
|
|
UpdateInfos[] infos = {};
|
2014-12-03 12:02:14 -03:00
|
|
|
foreach (var pkg in alpm_config.handle.trans_to_add ()) {
|
2014-10-30 10:44:09 -03:00
|
|
|
info.name = pkg.name;
|
|
|
|
info.version = pkg.version;
|
|
|
|
// if pkg was load from a file, pkg.db is null
|
2015-02-01 14:01:03 -03:00
|
|
|
if (pkg.db != null) {
|
2014-10-30 10:44:09 -03:00
|
|
|
info.db_name = pkg.db.name;
|
2015-02-01 14:01:03 -03:00
|
|
|
} else {
|
2014-10-30 10:44:09 -03:00
|
|
|
info.db_name = "";
|
2015-02-01 14:01:03 -03:00
|
|
|
}
|
2014-10-30 10:44:09 -03:00
|
|
|
info.tarpath = "";
|
|
|
|
info.download_size = pkg.download_size;
|
|
|
|
infos += info;
|
|
|
|
}
|
|
|
|
return infos;
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:55:36 -03:00
|
|
|
public UpdateInfos[] trans_to_remove () {
|
|
|
|
UpdateInfos info = UpdateInfos ();
|
|
|
|
UpdateInfos[] infos = {};
|
2014-12-03 12:02:14 -03:00
|
|
|
foreach (var pkg in alpm_config.handle.trans_to_remove ()) {
|
2014-10-30 10:44:09 -03:00
|
|
|
info.name = pkg.name;
|
|
|
|
info.version = pkg.version;
|
|
|
|
info.db_name = pkg.db.name;
|
|
|
|
info.tarpath = "";
|
|
|
|
info.download_size = pkg.download_size;
|
|
|
|
infos += info;
|
|
|
|
}
|
|
|
|
return infos;
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:55:36 -03:00
|
|
|
private async ErrorInfos trans_commit (GLib.BusName sender) {
|
|
|
|
SourceFunc callback = trans_commit.callback;
|
2015-03-07 06:43:44 -03:00
|
|
|
var err = ErrorInfos ();
|
2014-10-30 10:44:09 -03:00
|
|
|
try {
|
2015-04-11 13:00:49 -03:00
|
|
|
Polkit.Authority authority = Polkit.Authority.get_sync ();
|
2014-10-30 10:44:09 -03:00
|
|
|
Polkit.Subject subject = Polkit.SystemBusName.new (sender);
|
|
|
|
authority.check_authorization.begin (
|
|
|
|
subject,
|
|
|
|
"org.manjaro.pamac.commit",
|
|
|
|
null,
|
|
|
|
Polkit.CheckAuthorizationFlags.ALLOW_USER_INTERACTION,
|
|
|
|
null,
|
|
|
|
(obj, res) => {
|
|
|
|
try {
|
2015-03-04 11:55:36 -03:00
|
|
|
var result = authority.check_authorization.end (res);
|
2014-10-30 10:44:09 -03:00
|
|
|
if (result.get_is_authorized ()) {
|
2015-03-04 11:55:36 -03:00
|
|
|
new Thread<int>.try ("commit thread", () => {
|
|
|
|
databases_lock_mutex.lock ();
|
|
|
|
string[] details = {};
|
|
|
|
Alpm.List<void*> err_data = null;
|
|
|
|
int ret = alpm_config.handle.trans_commit (out err_data);
|
|
|
|
if (ret == -1) {
|
|
|
|
Alpm.Errno errno = alpm_config.handle.errno ();
|
2015-03-07 06:43:44 -03:00
|
|
|
err.message = _("Failed to commit transaction");
|
2015-03-04 11:55:36 -03:00
|
|
|
string detail = Alpm.strerror (errno);
|
|
|
|
switch (errno) {
|
|
|
|
case Alpm.Errno.FILE_CONFLICTS:
|
|
|
|
detail += ":";
|
|
|
|
details += detail;
|
|
|
|
//TransFlag flags = alpm_config.handle.trans_get_flags ();
|
|
|
|
//if ((flags & TransFlag.FORCE) != 0) {
|
|
|
|
//details += _("unable to %s directory-file conflicts").printf ("--force");
|
|
|
|
//}
|
|
|
|
foreach (void *i in err_data) {
|
|
|
|
FileConflict *conflict = i;
|
|
|
|
switch (conflict->type) {
|
|
|
|
case FileConflict.Type.TARGET:
|
|
|
|
details += _("%s exists in both %s and %s").printf (conflict->file, conflict->target, conflict->ctarget);
|
|
|
|
break;
|
|
|
|
case FileConflict.Type.FILESYSTEM:
|
|
|
|
details += _("%s: %s already exists in filesystem").printf (conflict->target, conflict->file);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
delete conflict;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case Alpm.Errno.PKG_INVALID:
|
|
|
|
case Alpm.Errno.PKG_INVALID_CHECKSUM:
|
|
|
|
case Alpm.Errno.PKG_INVALID_SIG:
|
|
|
|
case Alpm.Errno.DLT_INVALID:
|
|
|
|
detail += ":";
|
|
|
|
details += detail;
|
|
|
|
foreach (void *i in err_data) {
|
|
|
|
string *filename = i;
|
|
|
|
details += _("%s is invalid or corrupted").printf (filename);
|
|
|
|
delete filename;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
details += detail;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
err.details = details;
|
|
|
|
}
|
|
|
|
trans_release ();
|
|
|
|
databases_lock_mutex.unlock ();
|
2015-04-11 13:00:49 -03:00
|
|
|
Idle.add ((owned) callback);
|
2015-03-04 11:55:36 -03:00
|
|
|
return ret;
|
|
|
|
});
|
2014-10-30 10:44:09 -03:00
|
|
|
} else {
|
2015-03-07 06:43:44 -03:00
|
|
|
err.message = _("Authentication failed");
|
2014-10-30 10:44:09 -03:00
|
|
|
trans_release ();
|
2015-04-11 13:00:49 -03:00
|
|
|
Idle.add ((owned) callback);
|
2014-10-30 10:44:09 -03:00
|
|
|
}
|
|
|
|
} catch (GLib.Error e) {
|
2015-04-11 13:00:49 -03:00
|
|
|
Idle.add ((owned) callback);
|
2015-03-04 11:55:36 -03:00
|
|
|
stderr.printf ("%s\n", e.message);
|
2014-10-30 10:44:09 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
2015-04-11 13:00:49 -03:00
|
|
|
yield;
|
2014-10-30 10:44:09 -03:00
|
|
|
} catch (GLib.Error e) {
|
2015-03-04 11:55:36 -03:00
|
|
|
stderr.printf ("%s\n", e.message);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2015-03-04 11:55:36 -03:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void start_trans_commit (GLib.BusName sender) {
|
|
|
|
trans_commit.begin (sender, (obj, res) => {
|
|
|
|
var err = trans_commit.end (res);
|
2015-03-18 10:53:45 -03:00
|
|
|
intern_lock = false;
|
|
|
|
refresh_handle ();
|
2015-03-04 11:55:36 -03:00
|
|
|
trans_commit_finished (err);
|
|
|
|
});
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
2014-10-30 10:44:09 -03:00
|
|
|
public int trans_release () {
|
2014-12-03 12:02:14 -03:00
|
|
|
return alpm_config.handle.trans_release ();
|
2014-10-30 10:44:09 -03:00
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
|
2014-10-30 10:44:09 -03:00
|
|
|
public void trans_cancel () {
|
2015-04-11 13:00:49 -03:00
|
|
|
if (alpm_config.handle.trans_interrupt () == 0) {
|
|
|
|
// a transaction is being interrupted
|
|
|
|
return;
|
|
|
|
}
|
2015-01-10 07:31:51 -03:00
|
|
|
// explicitly quit to avoid a crash
|
|
|
|
// this daemon should be auto-restarted
|
|
|
|
quit ();
|
2014-10-30 10:44:09 -03:00
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
|
2015-01-05 17:06:18 -03:00
|
|
|
[DBus (no_reply = true)]
|
2014-10-30 10:44:09 -03:00
|
|
|
public void quit () {
|
2015-06-19 12:48:34 -03:00
|
|
|
// be sure to not quit with locked databases
|
|
|
|
alpm_config.handle.trans_release ();
|
|
|
|
if (lockfile.query_exists () == true) {
|
|
|
|
try {
|
|
|
|
lockfile.delete ();
|
|
|
|
} catch (GLib.Error e) {
|
|
|
|
GLib.stderr.printf("%s\n", e.message);
|
|
|
|
}
|
2015-02-01 14:01:03 -03:00
|
|
|
}
|
2015-06-19 12:48:34 -03:00
|
|
|
loop.quit ();
|
2014-10-30 10:44:09 -03:00
|
|
|
}
|
|
|
|
// End of Daemon Object
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void write_log_file (string event) {
|
|
|
|
var now = new DateTime.now_local ();
|
|
|
|
string log = "%s %s".printf (now.format ("[%Y-%m-%d %H:%M]"), event);
|
|
|
|
var file = GLib.File.new_for_path ("/var/log/pamac.log");
|
|
|
|
try {
|
|
|
|
// creating a DataOutputStream to the file
|
|
|
|
var dos = new DataOutputStream (file.append_to (FileCreateFlags.NONE));
|
|
|
|
// writing a short string to the stream
|
|
|
|
dos.put_string (log);
|
|
|
|
} catch (GLib.Error e) {
|
2015-02-01 14:01:03 -03:00
|
|
|
stderr.printf ("%s\n", e.message);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-03 12:02:14 -03:00
|
|
|
private void cb_event (Event.Data data) {
|
2014-10-26 08:30:04 -03:00
|
|
|
string[] details = {};
|
2014-12-03 12:02:14 -03:00
|
|
|
uint secondary_type = 0;
|
|
|
|
switch (data.type) {
|
|
|
|
case Event.Type.PACKAGE_OPERATION_START:
|
|
|
|
switch (data.package_operation_operation) {
|
2015-03-04 11:55:36 -03:00
|
|
|
case Alpm.Package.Operation.REMOVE:
|
2014-12-03 12:02:14 -03:00
|
|
|
details += data.package_operation_oldpkg.name;
|
|
|
|
details += data.package_operation_oldpkg.version;
|
2015-03-04 11:55:36 -03:00
|
|
|
secondary_type = (uint) Alpm.Package.Operation.REMOVE;
|
2014-12-03 12:02:14 -03:00
|
|
|
break;
|
2015-03-04 11:55:36 -03:00
|
|
|
case Alpm.Package.Operation.INSTALL:
|
2014-12-03 12:02:14 -03:00
|
|
|
details += data.package_operation_newpkg.name;
|
|
|
|
details += data.package_operation_newpkg.version;
|
2015-03-04 11:55:36 -03:00
|
|
|
secondary_type = (uint) Alpm.Package.Operation.INSTALL;
|
2014-12-03 12:02:14 -03:00
|
|
|
break;
|
2015-03-04 11:55:36 -03:00
|
|
|
case Alpm.Package.Operation.REINSTALL:
|
2014-12-03 12:02:14 -03:00
|
|
|
details += data.package_operation_newpkg.name;
|
|
|
|
details += data.package_operation_newpkg.version;
|
2015-03-04 11:55:36 -03:00
|
|
|
secondary_type = (uint) Alpm.Package.Operation.REINSTALL;
|
2014-12-03 12:02:14 -03:00
|
|
|
break;
|
2015-03-04 11:55:36 -03:00
|
|
|
case Alpm.Package.Operation.UPGRADE:
|
2014-12-03 12:02:14 -03:00
|
|
|
details += data.package_operation_oldpkg.name;
|
|
|
|
details += data.package_operation_oldpkg.version;
|
|
|
|
details += data.package_operation_newpkg.version;
|
2015-03-04 11:55:36 -03:00
|
|
|
secondary_type = (uint) Alpm.Package.Operation.UPGRADE;
|
2014-12-03 12:02:14 -03:00
|
|
|
break;
|
2015-03-04 11:55:36 -03:00
|
|
|
case Alpm.Package.Operation.DOWNGRADE:
|
2014-12-03 12:02:14 -03:00
|
|
|
details += data.package_operation_oldpkg.name;
|
|
|
|
details += data.package_operation_oldpkg.version;
|
|
|
|
details += data.package_operation_newpkg.version;
|
2015-03-04 11:55:36 -03:00
|
|
|
secondary_type = (uint) Alpm.Package.Operation.DOWNGRADE;
|
2014-12-03 12:02:14 -03:00
|
|
|
break;
|
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2014-12-03 12:02:14 -03:00
|
|
|
case Event.Type.PACKAGE_OPERATION_DONE:
|
|
|
|
switch (data.package_operation_operation) {
|
2015-03-04 11:55:36 -03:00
|
|
|
case Alpm.Package.Operation.INSTALL:
|
2014-12-03 12:02:14 -03:00
|
|
|
string log = "Installed %s (%s)\n".printf (data.package_operation_newpkg.name, data.package_operation_newpkg.version);
|
|
|
|
write_log_file (log);
|
|
|
|
break;
|
2015-03-04 11:55:36 -03:00
|
|
|
case Alpm.Package.Operation.REMOVE:
|
2014-12-03 12:02:14 -03:00
|
|
|
string log = "Removed %s (%s)\n".printf (data.package_operation_oldpkg.name, data.package_operation_oldpkg.version);
|
|
|
|
write_log_file (log);
|
|
|
|
break;
|
2015-03-04 11:55:36 -03:00
|
|
|
case Alpm.Package.Operation.REINSTALL:
|
2014-12-03 12:02:14 -03:00
|
|
|
string log = "Reinstalled %s (%s)\n".printf (data.package_operation_newpkg.name, data.package_operation_newpkg.version);
|
|
|
|
write_log_file (log);
|
|
|
|
break;
|
2015-03-04 11:55:36 -03:00
|
|
|
case Alpm.Package.Operation.UPGRADE:
|
2014-12-03 12:02:14 -03:00
|
|
|
string log = "Upgraded %s (%s -> %s)\n".printf (data.package_operation_oldpkg.name, data.package_operation_oldpkg.version, data.package_operation_newpkg.version);
|
|
|
|
write_log_file (log);
|
|
|
|
break;
|
2015-03-04 11:55:36 -03:00
|
|
|
case Alpm.Package.Operation.DOWNGRADE:
|
2014-12-03 12:02:14 -03:00
|
|
|
string log = "Downgraded %s (%s -> %s)\n".printf (data.package_operation_oldpkg.name, data.package_operation_oldpkg.version, data.package_operation_newpkg.version);
|
|
|
|
write_log_file (log);
|
|
|
|
break;
|
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2014-12-03 12:02:14 -03:00
|
|
|
case Event.Type.DELTA_PATCH_START:
|
|
|
|
details += data.delta_patch_delta.to;
|
|
|
|
details += data.delta_patch_delta.delta;
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2014-12-03 12:02:14 -03:00
|
|
|
case Event.Type.SCRIPTLET_INFO:
|
|
|
|
details += data.scriptlet_info_line;
|
|
|
|
write_log_file (data.scriptlet_info_line);
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2014-12-03 12:02:14 -03:00
|
|
|
case Event.Type.PKGDOWNLOAD_START:
|
|
|
|
details += data.pkgdownload_file;
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2014-12-03 12:02:14 -03:00
|
|
|
case Event.Type.OPTDEP_REMOVAL:
|
|
|
|
details += data.optdep_removal_pkg.name;
|
|
|
|
details += data.optdep_removal_optdep.compute_string ();
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2014-12-03 12:02:14 -03:00
|
|
|
case Event.Type.DATABASE_MISSING:
|
|
|
|
details += data.database_missing_dbname;
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2014-12-03 12:02:14 -03:00
|
|
|
case Event.Type.PACNEW_CREATED:
|
|
|
|
details += data.pacnew_created_file;
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2014-12-03 12:02:14 -03:00
|
|
|
case Event.Type.PACSAVE_CREATED:
|
|
|
|
details += data.pacsave_created_file;
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2014-12-03 12:02:14 -03:00
|
|
|
case Event.Type.PACORIG_CREATED:
|
|
|
|
details += data.pacorig_created_file;
|
2014-10-26 08:30:04 -03:00
|
|
|
break;
|
2014-10-22 13:44:02 -03:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2014-12-03 12:02:14 -03:00
|
|
|
pamac_daemon.emit_event ((uint) data.type, secondary_type, details);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
2014-12-03 12:02:14 -03:00
|
|
|
private void cb_question (Question.Data data) {
|
|
|
|
switch (data.type) {
|
|
|
|
case Question.Type.INSTALL_IGNOREPKG:
|
2014-10-22 13:44:02 -03:00
|
|
|
// Do not install package in IgnorePkg/IgnoreGroup
|
2014-12-03 12:02:14 -03:00
|
|
|
data.install_ignorepkg_install = 0;
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2014-12-03 12:02:14 -03:00
|
|
|
case Question.Type.REPLACE_PKG:
|
2014-10-22 13:44:02 -03:00
|
|
|
// Auto-remove conflicts in case of replaces
|
2014-12-03 12:02:14 -03:00
|
|
|
data.replace_replace = 1;
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2014-12-03 12:02:14 -03:00
|
|
|
case Question.Type.CONFLICT_PKG:
|
2014-10-22 13:44:02 -03:00
|
|
|
// Auto-remove conflicts
|
2014-12-03 12:02:14 -03:00
|
|
|
data.conflict_remove = 1;
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2014-12-03 12:02:14 -03:00
|
|
|
case Question.Type.REMOVE_PKGS:
|
2014-10-22 13:44:02 -03:00
|
|
|
// Do not upgrade packages which have unresolvable dependencies
|
2014-12-03 12:02:14 -03:00
|
|
|
data.remove_pkgs_skip = 1;
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2014-12-03 12:02:14 -03:00
|
|
|
case Question.Type.SELECT_PROVIDER:
|
|
|
|
string depend_str = data.select_provider_depend.compute_string ();
|
2014-10-22 13:44:02 -03:00
|
|
|
string[] providers_str = {};
|
2015-03-04 11:55:36 -03:00
|
|
|
foreach (unowned Alpm.Package pkg in data.select_provider_providers) {
|
2014-10-22 13:44:02 -03:00
|
|
|
providers_str += pkg.name;
|
|
|
|
}
|
2014-10-30 10:44:09 -03:00
|
|
|
pamac_daemon.provider_cond = Cond ();
|
|
|
|
pamac_daemon.provider_mutex = Mutex ();
|
|
|
|
pamac_daemon.choosen_provider = null;
|
|
|
|
pamac_daemon.emit_providers (depend_str, providers_str);
|
|
|
|
pamac_daemon.provider_mutex.lock ();
|
|
|
|
while (pamac_daemon.choosen_provider == null) {
|
|
|
|
pamac_daemon.provider_cond.wait (pamac_daemon.provider_mutex);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2014-12-03 12:02:14 -03:00
|
|
|
data.select_provider_use_index = pamac_daemon.choosen_provider;
|
2014-10-30 10:44:09 -03:00
|
|
|
pamac_daemon.provider_mutex.unlock ();
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2014-12-03 12:02:14 -03:00
|
|
|
case Question.Type.CORRUPTED_PKG:
|
2014-10-22 13:44:02 -03:00
|
|
|
// Auto-remove corrupted pkgs in cache
|
2014-12-03 12:02:14 -03:00
|
|
|
data.corrupted_remove = 1;
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
2014-12-03 12:02:14 -03:00
|
|
|
case Question.Type.IMPORT_KEY:
|
2015-02-01 14:01:03 -03:00
|
|
|
if (data.import_key_key.revoked == 1) {
|
|
|
|
// Do not get revoked key
|
2014-12-03 12:02:14 -03:00
|
|
|
data.import_key_import = 0;
|
2015-02-01 14:01:03 -03:00
|
|
|
} else {
|
|
|
|
// Auto get not revoked key
|
2014-12-03 12:02:14 -03:00
|
|
|
data.import_key_import = 1;
|
2015-02-01 14:01:03 -03:00
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
|
|
|
default:
|
2014-12-03 12:02:14 -03:00
|
|
|
data.any_answer = 0;
|
2014-10-22 13:44:02 -03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void cb_progress (Progress progress, string pkgname, int percent, uint n_targets, uint current_target) {
|
2014-10-30 10:44:09 -03:00
|
|
|
if ((uint64) percent != pamac_daemon.previous_percent) {
|
|
|
|
pamac_daemon.previous_percent = (uint64) percent;
|
|
|
|
pamac_daemon.emit_progress ((uint) progress, pkgname, percent, n_targets, current_target);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void cb_download (string filename, uint64 xfered, uint64 total) {
|
2014-10-30 10:44:09 -03:00
|
|
|
if (xfered != pamac_daemon.previous_percent) {
|
|
|
|
pamac_daemon.previous_percent = xfered;
|
|
|
|
pamac_daemon.emit_download (filename, xfered, total);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void cb_totaldownload (uint64 total) {
|
2014-10-30 10:44:09 -03:00
|
|
|
pamac_daemon.emit_totaldownload (total);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
private void cb_log (LogLevel level, string fmt, va_list args) {
|
|
|
|
LogLevel logmask = LogLevel.ERROR | LogLevel.WARNING;
|
2015-05-20 09:48:12 -03:00
|
|
|
if ((level & logmask) == 0) {
|
2014-10-22 13:44:02 -03:00
|
|
|
return;
|
2015-05-20 09:48:12 -03:00
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
string? log = null;
|
|
|
|
log = fmt.vprintf (args);
|
2015-05-20 09:48:12 -03:00
|
|
|
if (log != null) {
|
2014-10-30 10:44:09 -03:00
|
|
|
pamac_daemon.emit_log ((uint) level, log);
|
2015-05-20 09:48:12 -03:00
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
void on_bus_acquired (DBusConnection conn) {
|
2014-10-30 10:44:09 -03:00
|
|
|
pamac_daemon = new Pamac.Daemon ();
|
2014-10-22 13:44:02 -03:00
|
|
|
try {
|
2014-10-30 10:44:09 -03:00
|
|
|
conn.register_object ("/org/manjaro/pamac", pamac_daemon);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
catch (IOError e) {
|
|
|
|
stderr.printf ("Could not register service\n");
|
2015-04-11 13:00:49 -03:00
|
|
|
loop.quit ();
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void main () {
|
|
|
|
// i18n
|
2014-10-30 10:44:09 -03:00
|
|
|
Intl.setlocale (LocaleCategory.ALL, "");
|
|
|
|
Intl.textdomain (GETTEXT_PACKAGE);
|
2014-10-22 13:44:02 -03:00
|
|
|
|
2014-10-30 10:44:09 -03:00
|
|
|
Bus.own_name (BusType.SYSTEM, "org.manjaro.pamac", BusNameOwnerFlags.NONE,
|
2014-10-22 13:44:02 -03:00
|
|
|
on_bus_acquired,
|
2015-04-11 13:00:49 -03:00
|
|
|
null,
|
|
|
|
() => {
|
|
|
|
stderr.printf ("Could not acquire name\n");
|
|
|
|
loop.quit ();
|
|
|
|
});
|
2014-10-22 13:44:02 -03:00
|
|
|
|
|
|
|
loop = new MainLoop ();
|
|
|
|
loop.run ();
|
|
|
|
}
|