pamac-classic/pamac-updater.py

230 lines
8.4 KiB
Python
Raw Normal View History

2013-10-16 10:34:09 -03:00
#! /usr/bin/python3
2013-03-31 14:31:33 -03:00
# -*- coding:utf-8 -*-
2013-11-26 05:24:54 -03:00
# pamac - A Python implementation of alpm
2014-02-01 11:39:58 -03:00
# Copyright (C) 2013-2014 Guillaume Benoit <guillaume@manjaro.org>
2013-11-26 05:24:54 -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 2 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 copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2013-09-26 13:02:07 -03:00
from gi.repository import Gtk, Gdk
import pyalpm
2013-10-16 10:34:09 -03:00
import dbus
2013-02-10 11:59:53 -03:00
2014-01-29 11:44:19 -03:00
from pamac import config, common, transaction
2013-09-26 13:02:07 -03:00
# i18n
import gettext
import locale
locale.bindtextdomain('pamac', '/usr/share/locale')
gettext.bindtextdomain('pamac', '/usr/share/locale')
gettext.textdomain('pamac')
_ = gettext.gettext
interface = transaction.interface
interface.add_from_file('/usr/share/pamac/gui/updater.ui')
UpdaterWindow = interface.get_object("UpdaterWindow")
update_listore = interface.get_object('update_list')
update_top_label = interface.get_object('update_top_label')
update_bottom_label = interface.get_object('update_bottom_label')
2013-10-16 10:34:09 -03:00
UpdaterApplyButton = interface.get_object('UpdaterApplyButton')
2013-09-26 13:02:07 -03:00
2013-11-08 11:21:38 -03:00
update_top_label.set_markup('<big><b>{}</b></big>'.format(_('Your system is up-to-date')))
2013-09-26 13:02:07 -03:00
update_bottom_label.set_markup('')
2013-10-16 10:34:09 -03:00
UpdaterApplyButton.set_sensitive(False)
2013-09-26 13:02:07 -03:00
def have_updates():
2013-11-08 11:21:38 -03:00
while Gtk.events_pending():
Gtk.main_iteration()
UpdaterWindow.get_window().set_cursor(Gdk.Cursor(Gdk.CursorType.WATCH))
while Gtk.events_pending():
Gtk.main_iteration()
2013-09-26 13:02:07 -03:00
update_listore.clear()
update_top_label.set_justify(Gtk.Justification.CENTER)
updates = transaction.available_updates[1]
2013-09-26 13:02:07 -03:00
if not updates:
update_bottom_label.set_markup('')
2013-11-08 11:21:38 -03:00
update_top_label.set_markup('<big><b>{}</b></big>'.format(_('Your system is up-to-date')))
2013-10-16 10:34:09 -03:00
UpdaterApplyButton.set_sensitive(False)
2013-09-26 13:02:07 -03:00
else:
2013-10-16 10:34:09 -03:00
UpdaterApplyButton.set_sensitive(True)
2013-09-26 13:02:07 -03:00
dsize = 0
for name, version, db, tarpath, size in updates:
dsize += size
if size:
size_str = common.format_size(size)
2013-11-08 11:21:38 -03:00
else:
size_str = ''
update_listore.append([name+' '+version, size_str])
2013-09-26 13:02:07 -03:00
if dsize == 0:
update_bottom_label.set_markup('')
else:
2013-11-08 11:21:38 -03:00
update_bottom_label.set_markup('<b>{} {}</b>'.format(_('Total download size:'), common.format_size(dsize)))
2013-09-26 13:02:07 -03:00
if len(updates) == 1:
2013-11-08 11:21:38 -03:00
update_top_label.set_markup('<big><b>{}</b></big>'.format(_('1 available update')))
2013-09-26 13:02:07 -03:00
else:
2013-11-22 05:55:22 -03:00
update_top_label.set_markup('<big><b>{}</b></big>'.format(_('{number} available updates').format(number = len(updates))))
2013-11-08 11:21:38 -03:00
UpdaterWindow.get_window().set_cursor(None)
2013-09-26 13:02:07 -03:00
2013-10-16 10:34:09 -03:00
def handle_error(error):
UpdaterWindow.get_window().set_cursor(None)
while Gtk.events_pending():
Gtk.main_iteration()
if error:
if not 'DBus.Error.NoReply' in str(error):
print(error)
transaction.ErrorDialog.format_secondary_text(error)
response = transaction.ErrorDialog.run()
if response:
transaction.ErrorDialog.hide()
transaction.ProgressWindow.hide()
2013-10-16 10:34:09 -03:00
transaction.get_handle()
2014-02-05 11:08:27 -03:00
transaction.mark_needed_pkgs_as_dep()
2013-10-16 10:34:09 -03:00
def handle_reply(reply):
while Gtk.events_pending():
Gtk.main_iteration()
2013-11-08 11:21:38 -03:00
if transaction.to_build:
transaction.build_next()
elif reply:
transaction.Release()
2013-10-16 10:34:09 -03:00
transaction.ProgressCloseButton.set_visible(True)
transaction.action_icon.set_from_icon_name('dialog-information', Gtk.IconSize.BUTTON)
transaction.progress_label.set_text(str(reply))
transaction.progress_bar.set_text('')
end_iter = transaction.progress_buffer.get_end_iter()
transaction.progress_buffer.insert(end_iter, str(reply))
transaction.get_handle()
else:
UpdaterWindow.get_window().set_cursor(None)
transaction.get_handle()
transaction.get_updates()
2014-02-05 11:08:27 -03:00
transaction.mark_needed_pkgs_as_dep()
def handle_updates(updates):
transaction.ProgressWindow.hide()
transaction.available_updates = updates
have_updates()
2013-10-16 10:34:09 -03:00
2014-01-29 11:44:19 -03:00
def reload_config(msg):
config.pamac_conf.reload()
transaction.get_updates()
2013-10-16 10:34:09 -03:00
def on_UpdaterWindow_delete_event(*args):
transaction.StopDaemon()
common.rm_pid_file()
Gtk.main_quit()
def on_TransValidButton_clicked(*args):
UpdaterWindow.get_window().set_cursor(None)
2013-09-26 13:02:07 -03:00
transaction.ConfDialog.hide()
2013-10-16 10:34:09 -03:00
while Gtk.events_pending():
Gtk.main_iteration()
transaction.finalize()
2013-09-26 13:02:07 -03:00
2013-10-16 10:34:09 -03:00
def on_TransCancelButton_clicked(*args):
UpdaterWindow.get_window().set_cursor(None)
transaction.ProgressWindow.hide()
2013-09-26 13:02:07 -03:00
transaction.progress_buffer.delete(transaction.progress_buffer.get_start_iter(),transaction.progress_buffer.get_end_iter())
transaction.ConfDialog.hide()
2013-10-16 10:34:09 -03:00
while Gtk.events_pending():
Gtk.main_iteration()
transaction.Release()
transaction.to_add.clear()
2013-11-08 11:21:38 -03:00
transaction.to_update.clear()
transaction.to_build.clear()
2013-09-26 13:02:07 -03:00
2013-10-16 10:34:09 -03:00
def on_ProgressCloseButton_clicked(*args):
UpdaterWindow.get_window().set_cursor(None)
2013-09-26 13:02:07 -03:00
transaction.progress_buffer.delete(transaction.progress_buffer.get_start_iter(),transaction.progress_buffer.get_end_iter())
transaction.need_details_handler(False)
transaction.get_updates()
2013-09-26 13:02:07 -03:00
def on_ProgressCancelButton_clicked(*args):
transaction.to_add.clear()
transaction.to_update.clear()
2013-11-08 11:21:38 -03:00
transaction.to_build.clear()
2013-10-16 10:34:09 -03:00
transaction.Interrupt()
UpdaterWindow.get_window().set_cursor(None)
transaction.ProgressWindow.hide()
while Gtk.events_pending():
Gtk.main_iteration()
2013-09-26 13:02:07 -03:00
2014-01-29 11:44:19 -03:00
def on_UpdaterPreferencesButton_clicked(*args):
transaction.EnableAURButton.set_active(config.enable_aur)
transaction.RemoveUnrequiredDepsButton.set_active(config.recurse)
transaction.RefreshPeriodSpinButton.set_value(config.refresh_period)
transaction.PreferencesWindow.show()
2013-10-16 10:34:09 -03:00
def on_Updater_ApplyButton_clicked(*args):
2013-09-26 13:02:07 -03:00
UpdaterWindow.get_window().set_cursor(Gdk.Cursor(Gdk.CursorType.WATCH))
while Gtk.events_pending():
Gtk.main_iteration()
2014-01-15 10:26:21 -03:00
error = transaction.sysupgrade(show_updates = False)
if error:
handle_error(error)
2013-09-26 13:02:07 -03:00
2013-10-16 10:34:09 -03:00
def on_Updater_RefreshButton_clicked(*args):
2013-09-26 13:02:07 -03:00
UpdaterWindow.get_window().set_cursor(Gdk.Cursor(Gdk.CursorType.WATCH))
2013-11-08 11:21:38 -03:00
while Gtk.events_pending():
Gtk.main_iteration()
transaction.refresh()
2013-10-16 10:34:09 -03:00
def on_Updater_CloseButton_clicked(*args):
transaction.StopDaemon()
common.rm_pid_file()
Gtk.main_quit()
2013-09-26 13:02:07 -03:00
signals = {'on_ChooseButton_clicked' : transaction.on_ChooseButton_clicked,
'on_progress_textview_size_allocate' : transaction.on_progress_textview_size_allocate,
'on_choose_renderertoggle_toggled' : transaction.on_choose_renderertoggle_toggled,
2014-01-29 11:44:19 -03:00
'on_PreferencesCloseButton_clicked' : transaction.on_PreferencesCloseButton_clicked,
2014-02-01 11:39:58 -03:00
'on_PreferencesWindow_delete_event' : transaction.on_PreferencesWindow_delete_event,
2014-01-29 11:44:19 -03:00
'on_PreferencesValidButton_clicked' : transaction.on_PreferencesValidButton_clicked,
2013-09-26 13:02:07 -03:00
'on_TransValidButton_clicked' :on_TransValidButton_clicked,
'on_TransCancelButton_clicked' :on_TransCancelButton_clicked,
'on_ProgressCloseButton_clicked' : on_ProgressCloseButton_clicked,
'on_ProgressCancelButton_clicked' : on_ProgressCancelButton_clicked,
'on_UpdaterWindow_delete_event' : on_UpdaterWindow_delete_event,
2014-01-29 11:44:19 -03:00
'on_UpdaterPreferencesButton_clicked': on_UpdaterPreferencesButton_clicked,
2013-09-26 13:02:07 -03:00
'on_Updater_ApplyButton_clicked' : on_Updater_ApplyButton_clicked,
2013-10-16 10:34:09 -03:00
'on_Updater_RefreshButton_clicked' : on_Updater_RefreshButton_clicked,
'on_Updater_CloseButton_clicked' : on_Updater_CloseButton_clicked}
def config_dbus_signals():
bus = dbus.SystemBus()
bus.add_signal_receiver(handle_reply, dbus_interface = "org.manjaro.pamac", signal_name = "EmitTransactionDone")
bus.add_signal_receiver(handle_error, dbus_interface = "org.manjaro.pamac", signal_name = "EmitTransactionError")
bus.add_signal_receiver(handle_updates, dbus_interface = "org.manjaro.pamac", signal_name = "EmitAvailableUpdates")
2014-01-29 11:44:19 -03:00
bus.add_signal_receiver(reload_config, dbus_interface = "org.manjaro.pamac", signal_name = "EmitReloadConfig")
2013-09-26 13:02:07 -03:00
if common.pid_file_exists():
transaction.ErrorDialog.format_secondary_text(_('Pamac is already running'))
response = transaction.ErrorDialog.run()
if response:
transaction.ErrorDialog.hide()
else:
common.write_pid_file()
interface.connect_signals(signals)
2013-10-16 10:34:09 -03:00
transaction.get_dbus_methods()
transaction.config_dbus_signals()
config_dbus_signals()
2014-01-29 11:44:19 -03:00
UpdaterWindow.show()
2013-09-26 13:02:07 -03:00
UpdaterWindow.get_window().set_cursor(Gdk.Cursor(Gdk.CursorType.WATCH))
while Gtk.events_pending():
Gtk.main_iteration()
2013-11-08 11:21:38 -03:00
transaction.refresh()
2013-09-26 13:02:07 -03:00
Gtk.main()