2013-01-06 15:10:13 -03:00
|
|
|
#! /usr/bin/python
|
|
|
|
# -*-coding:utf-8-*-
|
|
|
|
|
2013-01-20 13:38:33 -03:00
|
|
|
from gi.repository import Gtk, GObject
|
2013-01-06 15:10:13 -03:00
|
|
|
|
|
|
|
import pyalpm
|
|
|
|
import traceback
|
|
|
|
import dbus
|
2013-01-20 13:38:33 -03:00
|
|
|
from dbus.mainloop.glib import DBusGMainLoop
|
2013-01-06 15:10:13 -03:00
|
|
|
|
2013-01-20 13:38:33 -03:00
|
|
|
from pamac import config
|
|
|
|
|
|
|
|
interface = Gtk.Builder()
|
|
|
|
interface.add_from_file('/usr/share/pamac/gui/dialogs.glade')
|
|
|
|
|
|
|
|
ErrorDialog = interface.get_object('ErrorDialog')
|
|
|
|
WarningDialog = interface.get_object('WarningDialog')
|
|
|
|
ProgressWindow = interface.get_object('ProgressWindow')
|
|
|
|
progress_bar = interface.get_object('progressbar2')
|
|
|
|
progress_label = interface.get_object('progresslabel2')
|
|
|
|
action_icon = interface.get_object('action_icon')
|
2013-01-06 15:10:13 -03:00
|
|
|
|
|
|
|
t_lock = False
|
|
|
|
do_syncfirst = False
|
|
|
|
list_first = []
|
2013-01-20 13:38:33 -03:00
|
|
|
to_remove = []
|
|
|
|
to_add = []
|
|
|
|
to_update = []
|
2013-01-06 15:10:13 -03:00
|
|
|
|
2013-01-20 13:38:33 -03:00
|
|
|
DBusGMainLoop(set_as_default=True)
|
|
|
|
bus = dbus.SystemBus()
|
|
|
|
proxy = bus.get_object('org.manjaro.pamac','/org/manjaro/pamac', introspect=False)
|
|
|
|
Refresh = proxy.get_dbus_method('Refresh','org.manjaro.pamac')
|
2013-01-06 15:10:13 -03:00
|
|
|
Init = proxy.get_dbus_method('Init','org.manjaro.pamac')
|
2013-01-20 13:38:33 -03:00
|
|
|
Sysupgrade = proxy.get_dbus_method('Sysupgrade','org.manjaro.pamac')
|
2013-01-06 15:10:13 -03:00
|
|
|
Remove = proxy.get_dbus_method('Remove','org.manjaro.pamac')
|
|
|
|
Add = proxy.get_dbus_method('Add','org.manjaro.pamac')
|
|
|
|
Prepare = proxy.get_dbus_method('Prepare','org.manjaro.pamac')
|
|
|
|
To_Remove = proxy.get_dbus_method('To_Remove','org.manjaro.pamac')
|
|
|
|
To_Add = proxy.get_dbus_method('To_Add','org.manjaro.pamac')
|
|
|
|
Commit = proxy.get_dbus_method('Commit','org.manjaro.pamac')
|
|
|
|
Release = proxy.get_dbus_method('Release','org.manjaro.pamac')
|
|
|
|
|
2013-01-20 13:38:33 -03:00
|
|
|
def action_signal_handler(action):
|
|
|
|
progress_label.set_text(action)
|
|
|
|
|
|
|
|
def icon_signal_handler(icon):
|
|
|
|
action_icon.set_from_file(icon)
|
|
|
|
|
|
|
|
def target_signal_handler(target):
|
|
|
|
progress_bar.set_text(target)
|
|
|
|
|
|
|
|
def percent_signal_handler(percent):
|
|
|
|
progress_bar.set_fraction(float(percent))
|
|
|
|
|
|
|
|
bus.add_signal_receiver(action_signal_handler, dbus_interface = "org.manjaro.pamac", signal_name = "EmitAction")
|
|
|
|
bus.add_signal_receiver(icon_signal_handler, dbus_interface = "org.manjaro.pamac", signal_name = "EmitIcon")
|
|
|
|
bus.add_signal_receiver(target_signal_handler, dbus_interface = "org.manjaro.pamac", signal_name = "EmitTarget")
|
|
|
|
bus.add_signal_receiver(percent_signal_handler, dbus_interface = "org.manjaro.pamac", signal_name = "EmitPercent")
|
|
|
|
|
2013-01-06 15:10:13 -03:00
|
|
|
def init_transaction(**options):
|
|
|
|
"Transaction initialization"
|
|
|
|
global t_lock
|
|
|
|
error = Init(options)
|
|
|
|
if not error:
|
|
|
|
t_lock = True
|
|
|
|
return True
|
|
|
|
else:
|
2013-01-20 13:38:33 -03:00
|
|
|
ErrorDialog.format_secondary_text(error)
|
|
|
|
response = ErrorDialog.run()
|
2013-01-06 15:10:13 -03:00
|
|
|
if response:
|
2013-01-20 13:38:33 -03:00
|
|
|
ErrorDialog.hide()
|
2013-01-06 15:10:13 -03:00
|
|
|
return False
|
|
|
|
|
|
|
|
def check_conflicts():
|
2013-01-20 13:38:33 -03:00
|
|
|
global to_add
|
|
|
|
global to_remove
|
2013-01-06 15:10:13 -03:00
|
|
|
to_check = []
|
|
|
|
warning = ''
|
2013-01-20 13:38:33 -03:00
|
|
|
for pkgname in to_add:
|
2013-01-16 15:09:52 -03:00
|
|
|
for repo in config.pacman_conf.initialize_alpm().get_syncdbs():
|
2013-01-06 15:10:13 -03:00
|
|
|
pkg = repo.get_pkg(pkgname)
|
|
|
|
if pkg:
|
|
|
|
to_check.append(pkg)
|
|
|
|
break
|
|
|
|
for target in to_check:
|
|
|
|
if target.replaces:
|
|
|
|
for name in target.replaces:
|
2013-01-16 15:09:52 -03:00
|
|
|
pkg = config.pacman_conf.initialize_alpm().get_localdb().get_pkg(name)
|
2013-01-06 15:10:13 -03:00
|
|
|
if pkg:
|
2013-01-20 13:38:33 -03:00
|
|
|
if not pkg.name in to_remove:
|
|
|
|
to_remove.append(pkg.name)
|
2013-01-06 15:10:13 -03:00
|
|
|
if warning:
|
|
|
|
warning = warning+'\n'
|
|
|
|
warning = warning+pkg.name+' will be replaced by '+target.name
|
|
|
|
if target.conflicts:
|
|
|
|
for name in target.conflicts:
|
2013-01-16 15:09:52 -03:00
|
|
|
pkg = config.pacman_conf.initialize_alpm().get_localdb().get_pkg(name)
|
2013-01-06 15:10:13 -03:00
|
|
|
if pkg:
|
2013-01-20 13:38:33 -03:00
|
|
|
if not pkg.name in to_remove:
|
|
|
|
to_remove.append(pkg.name)
|
2013-01-16 15:09:52 -03:00
|
|
|
for installed_pkg in config.pacman_conf.initialize_alpm().get_localdb().pkgcache:
|
2013-01-06 15:10:13 -03:00
|
|
|
if installed_pkg.conflicts:
|
|
|
|
for name in installed_pkg.conflicts:
|
|
|
|
if name == target.name:
|
2013-01-20 13:38:33 -03:00
|
|
|
if not name in to_remove:
|
|
|
|
to_remove.append(installed_pkg.name)
|
2013-01-06 15:10:13 -03:00
|
|
|
if warning:
|
2013-01-20 13:38:33 -03:00
|
|
|
WarningDialog.format_secondary_text(warning)
|
|
|
|
response = WarningDialog.run()
|
2013-01-06 15:10:13 -03:00
|
|
|
if response:
|
2013-01-20 13:38:33 -03:00
|
|
|
WarningDialog.hide()
|
2013-01-06 15:10:13 -03:00
|
|
|
|
|
|
|
def get_to_remove():
|
2013-01-20 13:38:33 -03:00
|
|
|
global to_remove
|
|
|
|
to_remove = To_Remove()
|
2013-01-06 15:10:13 -03:00
|
|
|
|
|
|
|
def get_to_add():
|
2013-01-20 13:38:33 -03:00
|
|
|
global to_add
|
|
|
|
to_add = To_Add()
|
2013-01-06 15:10:13 -03:00
|
|
|
|
|
|
|
def finalize():
|
|
|
|
global t_lock
|
|
|
|
error = Prepare()
|
|
|
|
if error:
|
2013-01-20 13:38:33 -03:00
|
|
|
ErrorDialog.format_secondary_text(error)
|
|
|
|
response = ErrorDialog.run()
|
2013-01-06 15:10:13 -03:00
|
|
|
if response:
|
2013-01-20 13:38:33 -03:00
|
|
|
ErrorDialog.hide()
|
|
|
|
Release()
|
|
|
|
t_lock = False
|
|
|
|
else:
|
|
|
|
ProgressWindow.show_all()
|
|
|
|
while Gtk.events_pending():
|
|
|
|
Gtk.main_iteration()
|
|
|
|
Commit(reply_handler = handle_reply, error_handler = handle_error, timeout = 2000*1000)
|
|
|
|
|
|
|
|
def handle_error(error):
|
|
|
|
global t_lock
|
|
|
|
global to_add
|
|
|
|
global to_remove
|
|
|
|
if not 'DBus.Error.NoReply' in str(error):
|
|
|
|
ErrorDialog.format_secondary_text('Commit Error:\n'+str(error))
|
|
|
|
response = ErrorDialog.run()
|
2013-01-06 15:10:13 -03:00
|
|
|
if response:
|
2013-01-20 13:38:33 -03:00
|
|
|
ErrorDialog.hide()
|
2013-01-06 15:10:13 -03:00
|
|
|
t_lock = False
|
|
|
|
Release()
|
2013-01-20 13:38:33 -03:00
|
|
|
ProgressWindow.hide()
|
|
|
|
to_add = []
|
|
|
|
to_remove = []
|
|
|
|
|
|
|
|
def handle_reply(reply):
|
|
|
|
global t_lock
|
|
|
|
global to_add
|
|
|
|
global to_remove
|
|
|
|
print('reply',reply)
|
|
|
|
t_lock = False
|
|
|
|
Release()
|
|
|
|
ProgressWindow.hide()
|
|
|
|
to_add = []
|
|
|
|
to_remove = []
|
2013-01-06 15:10:13 -03:00
|
|
|
|
|
|
|
def do_refresh():
|
|
|
|
"""Sync databases like pacman -Sy"""
|
|
|
|
global t
|
|
|
|
global t_lock
|
2013-01-20 13:38:33 -03:00
|
|
|
if t_lock is False:
|
|
|
|
progress_label.set_text('Refreshing...')
|
|
|
|
progress_bar.pulse()
|
|
|
|
action_icon.set_from_file('/usr/share/pamac/icons/24x24/status/refresh-cache.png')
|
|
|
|
ProgressWindow.show_all()
|
|
|
|
t_lock = True
|
|
|
|
Refresh(reply_handler = handle_reply, error_handler = handle_error, timeout = 2000*1000)
|
2013-01-06 15:10:13 -03:00
|
|
|
|
|
|
|
def get_updates():
|
|
|
|
"""Return a list of package objects in local db which can be updated"""
|
|
|
|
global do_syncfirst
|
|
|
|
global list_first
|
|
|
|
if config.syncfirst:
|
|
|
|
for name in config.syncfirst:
|
2013-01-16 15:09:52 -03:00
|
|
|
pkg = config.pacman_conf.initialize_alpm().get_localdb().get_pkg(name)
|
|
|
|
candidate = pyalpm.sync_newversion(pkg, config.pacman_conf.initialize_alpm().get_syncdbs())
|
2013-01-06 15:10:13 -03:00
|
|
|
if candidate:
|
|
|
|
list_first.append(candidate)
|
|
|
|
if list_first:
|
|
|
|
do_syncfirst = True
|
|
|
|
return list_first
|
|
|
|
result = []
|
2013-01-16 15:09:52 -03:00
|
|
|
installed_pkglist = config.pacman_conf.initialize_alpm().get_localdb().pkgcache
|
2013-01-06 15:10:13 -03:00
|
|
|
for pkg in installed_pkglist:
|
2013-01-16 15:09:52 -03:00
|
|
|
candidate = pyalpm.sync_newversion(pkg, config.pacman_conf.initialize_alpm().get_syncdbs())
|
2013-01-06 15:10:13 -03:00
|
|
|
if candidate:
|
|
|
|
result.append(candidate)
|
|
|
|
return result
|
|
|
|
|
|
|
|
def get_new_version_available(pkgname):
|
2013-01-16 15:09:52 -03:00
|
|
|
for repo in config.pacman_conf.initialize_alpm().get_syncdbs():
|
2013-01-06 15:10:13 -03:00
|
|
|
pkg = repo.get_pkg(pkgname)
|
|
|
|
if pkg is not None:
|
|
|
|
return pkg.version
|
|
|
|
break
|