1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642
|
# Copyright (C) 2009 Canonical
#
# Authors:
# Michael Vogt
#
# 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; version 3.
#
# 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.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
import atexit
import locale
import dbus
import dbus.service
import gettext
import locale
import logging
import glib
import gtk
import os
import subprocess
import sys
import xapian
from SimpleGtkbuilderApp import SimpleGtkbuilderApp
from softwarecenter import Application
from softwarecenter.enums import *
from softwarecenter.utils import *
from softwarecenter.version import *
from softwarecenter.db.database import StoreDatabase
import view.dialogs
from view.viewswitcher import ViewSwitcher, ViewSwitcherList
from view.pendingview import PendingView
from view.installedpane import InstalledPane
from view.channelpane import ChannelPane
from view.availablepane import AvailablePane
from view.softwarepane import SoftwarePane
from backend.config import get_config
from backend import get_install_backend
from distro import get_distro
from apt.aptcache import AptCache
from gettext import gettext as _
class SoftwarecenterDbusController(dbus.service.Object):
"""
This is a helper to provide the SoftwarecenterIFace
It provides
"""
def __init__(self, parent, bus_name,
object_path='/com/ubuntu/Softwarecenter'):
dbus.service.Object.__init__(self, bus_name, object_path)
self.parent = parent
@dbus.service.method('com.ubuntu.SoftwarecenterIFace')
def bringToFront(self):
self.parent.window_main.present()
return True
class SoftwareCenterApp(SimpleGtkbuilderApp):
(NOTEBOOK_PAGE_AVAILABLE,
NOTEBOOK_PAGE_INSTALLED,
NOTEBOOK_PAGE_SEPARATOR_1,
NOTEBOOK_PAGE_PENDING,
NOTEBOOK_PAGE_CHANNEL) = range(5)
WEBLINK_URL = "http://apt.ubuntu.com/p/%s"
def __init__(self, datadir, xapian_base_path):
SimpleGtkbuilderApp.__init__(self,
datadir+"/ui/SoftwareCenter.ui",
"software-center")
gettext.bindtextdomain("software-center", "/usr/share/locale")
gettext.textdomain("software-center")
try:
locale.setlocale(locale.LC_ALL, "")
except:
logging.exception("setlocale failed")
# setup dbus and exit if there is another instance already
# running
self.setup_dbus_or_bring_other_instance_to_front()
self.setup_database_rebuilding_listener()
try:
locale.setlocale(locale.LC_ALL, "")
except Exception, e:
logging.exception("setlocale failed")
# distro specific stuff
self.distro = get_distro()
if self.distro.__class__.__name__ != "Ubuntu":
# Remove the views menu on non-Ubuntu distributions.
# TODO: Should probably be done in distribution classes.
view = self.builder.get_object("menuitem_view_supported_only")
views = view.get_parent().get_property("attach-widget")
menu = views.get_parent()
menu.remove(views)
# Disable software-properties if it does not exist
if not os.path.exists("/usr/bin/software-properties-gtk"):
sources = self.builder.get_object("menuitem_software_sources")
sources.set_sensitive(False)
# a main iteration friendly apt cache
self.cache = AptCache()
self.backend = get_install_backend()
self.backend.connect("transaction-started", self._on_transaction_started)
self.backend.connect("transaction-finished", self._on_transaction_finished)
self.backend.connect("transaction-stopped", self._on_transaction_stopped)
self.backend.connect("channels-changed", self.on_channels_changed)
# xapian
pathname = os.path.join(xapian_base_path, "xapian")
try:
self.db = StoreDatabase(pathname, self.cache)
self.db.open()
except xapian.DatabaseOpeningError:
# Couldn't use that folder as a database
# This may be because we are in a bzr checkout and that
# folder is empty. If the folder is empty, and we can find the
# script that does population, populate a database in it.
if os.path.isdir(pathname) and not os.listdir(pathname):
from softwarecenter.db.update import rebuild_database
logging.info("building local database")
rebuild_database(pathname)
self.db = StoreDatabase(pathname, self.cache)
self.db.open()
except xapian.DatabaseCorruptError, e:
logging.exception("xapian open failed")
view.dialogs.error(None,
_("Sorry, can not open the software database"),
_("Please re-install the 'software-center' "
"package."))
# FIXME: force rebuild by providing a dbus service for this
sys.exit(1)
# additional icons come from app-install-data
self.icons = gtk.icon_theme_get_default()
self.icons.append_search_path(ICON_PATH)
self.icons.append_search_path(os.path.join(datadir,"icons"))
self.icons.append_search_path(os.path.join(datadir,"emblems"))
# HACK: make it more friendly for local installs (for mpt)
self.icons.append_search_path(datadir+"/icons/32x32/status")
gtk.window_set_default_icon_name("softwarecenter")
# misc state
self._block_menuitem_view = False
self._available_items_for_page = {}
# available pane
self.available_pane = AvailablePane(self.cache, self.db,
self.distro,
self.icons, datadir)
self.available_pane.app_details.connect("selected",
self.on_app_details_changed,
self.NOTEBOOK_PAGE_AVAILABLE)
self.available_pane.app_view.connect("application-selected",
self.on_app_selected)
self.available_pane.connect("app-list-changed",
self.on_app_list_changed,
self.NOTEBOOK_PAGE_AVAILABLE)
self.alignment_available.add(self.available_pane)
# channel pane
self.channel_pane = ChannelPane(self.cache, self.db,
self.distro,
self.icons, datadir)
self.channel_pane.app_details.connect("selected",
self.on_app_details_changed,
self.NOTEBOOK_PAGE_CHANNEL)
self.channel_pane.app_view.connect("application-selected",
self.on_app_selected)
self.channel_pane.connect("app-list-changed",
self.on_app_list_changed,
self.NOTEBOOK_PAGE_CHANNEL)
self.alignment_channel.add(self.channel_pane)
# installed pane
self.installed_pane = InstalledPane(self.cache, self.db,
self.distro,
self.icons, datadir)
self.installed_pane.app_details.connect("selected",
self.on_app_details_changed,
self.NOTEBOOK_PAGE_INSTALLED)
self.installed_pane.app_view.connect("application-selected",
self.on_app_selected)
self.installed_pane.connect("app-list-changed",
self.on_app_list_changed,
self.NOTEBOOK_PAGE_INSTALLED)
self.alignment_installed.add(self.installed_pane)
# pending view
self.pending_view = PendingView(self.icons)
self.scrolledwindow_transactions.add(self.pending_view)
# view switcher
self.view_switcher = ViewSwitcher(datadir, self.db, self.icons)
self.scrolledwindow_viewswitcher.add(self.view_switcher)
self.view_switcher.show()
self.view_switcher.connect("view-changed",
self.on_view_switcher_changed)
self.view_switcher.set_view(ViewSwitcherList.ACTION_ITEM_AVAILABLE)
# launchpad integration help, its ok if that fails
try:
import LaunchpadIntegration
LaunchpadIntegration.set_sourcepackagename("software-center")
LaunchpadIntegration.add_items(self.menu_help, 1, True, False)
except Exception, e:
logging.debug("launchpad integration error: '%s'" % e)
# default focus
self.available_pane.searchentry.grab_focus()
self.window_main.set_size_request(600, 400)
# setup window name and about information (needs branding)
name = self.distro.get_app_name()
self.window_main.set_title(name)
self.aboutdialog.set_name(name)
about_description = self.distro.get_app_description()
self.aboutdialog.set_comments(about_description)
# restore state
self.config = get_config()
self.restore_state()
# callbacks
def on_app_details_changed(self, widget, app, page):
self.update_app_status_menu()
self.update_status_bar()
def on_app_list_changed(self, pane, new_len, page):
self._available_items_for_page[page] = new_len
if self.notebook_view.get_current_page() == page:
self.update_app_list_view()
self.update_app_status_menu()
self.update_status_bar()
def on_app_selected(self, widget, app):
self.update_app_status_menu()
self.menuitem_copy.set_sensitive(True)
def on_window_main_delete_event(self, widget, event):
self.save_state()
gtk.main_quit()
def on_window_main_key_press_event(self, widget, event):
if (event.keyval == gtk.gdk.keyval_from_name("BackSpace") and
self.active_pane and
not self.active_pane.searchentry.is_focus()):
self.active_pane.navigation_bar.navigate_up()
def on_view_switcher_changed(self, view_switcher, action, channel):
logging.debug("view_switcher_activated: %s %s" % (view_switcher,action))
if action == self.NOTEBOOK_PAGE_AVAILABLE:
self.active_pane = self.available_pane
elif action == self.NOTEBOOK_PAGE_CHANNEL:
self.channel_pane.set_channel(channel)
self.active_pane = self.channel_pane
elif action == self.NOTEBOOK_PAGE_INSTALLED:
self.active_pane = self.installed_pane
elif action == self.NOTEBOOK_PAGE_PENDING:
self.active_pane = None
elif action == self.NOTEBOOK_PAGE_SEPARATOR_1:
# do nothing
return
else:
assert False, "Not reached"
# set menu sensitve
self.menuitem_view_supported_only.set_sensitive(self.active_pane != None)
self.menuitem_view_all.set_sensitive(self.active_pane != None)
# set menu state
if self.active_pane:
self._block_menuitem_view = True
if not self.active_pane.apps_filter:
self.menuitem_view_all.set_sensitive(False)
self.menuitem_view_supported_only.set_sensitive(False)
elif self.active_pane.apps_filter.get_supported_only():
self.menuitem_view_supported_only.activate()
else:
self.menuitem_view_all.activate()
self._block_menuitem_view = False
# switch to new page
self.notebook_view.set_current_page(action)
self.update_app_list_view(channel)
self.update_status_bar()
self.update_app_status_menu()
# Menu Items
def on_menuitem_install_activate(self, menuitem):
app = self.active_pane.get_current_app()
self.active_pane.app_details.init_app(app)
self.active_pane.app_details.install()
def on_menuitem_remove_activate(self, menuitem):
app = self.active_pane.get_current_app()
self.active_pane.app_details.init_app(app)
self.active_pane.app_details.remove()
def on_menuitem_close_activate(self, widget):
gtk.main_quit()
def on_menu_edit_activate(self, menuitem):
"""
Check whether the search field is focused and if so, focus some items
"""
if self.active_pane:
state = self.active_pane.searchentry.is_focus()
if self.active_pane.searchentry.flags() & gtk.VISIBLE:
self.menuitem_search.set_sensitive(not state)
else:
self.menuitem_search.set_sensitive(False)
else:
state = False
edit_menu_items = [self.menuitem_undo,
self.menuitem_redo,
self.menuitem_cut,
self.menuitem_copy,
self.menuitem_paste,
self.menuitem_delete,
self.menuitem_select_all]
for item in edit_menu_items:
item.set_sensitive(state)
def on_menuitem_undo_activate(self, menuitem):
self.active_pane.searchentry.undo()
def on_menuitem_redo_activate(self, menuitem):
self.active_pane.searchentry.redo()
def on_menuitem_cut_activate(self, menuitem):
self.active_pane.searchentry.cut_clipboard()
def on_menuitem_copy_activate(self, menuitem):
self.active_pane.searchentry.copy_clipboard()
def on_menuitem_paste_activate(self, menuitem):
self.active_pane.searchentry.paste_clipboard()
def on_menuitem_delete_activate(self, menuitem):
self.active_pane.searchentry.set_text("")
def on_menuitem_select_all_activate(self, menuitem):
self.active_pane.searchentry.select_region(0, -1)
def on_menuitem_copy_web_link_activate(self, menuitem):
app = self.active_pane.get_current_app()
if app:
clipboard = gtk.Clipboard()
clipboard.set_text(self.WEBLINK_URL % app.pkgname)
def on_menuitem_search_activate(self, widget):
if self.active_pane:
self.active_pane.searchentry.grab_focus()
self.active_pane.searchentry.select_region(0, -1)
def on_menuitem_software_sources_activate(self, widget):
#print "on_menu_item_software_sources_activate"
self.window_main.set_sensitive(False)
# run software-properties-gtk
p = subprocess.Popen(
["gksu",
"--desktop", "/usr/share/applications/software-properties.desktop",
"--",
"/usr/bin/software-properties-gtk",
"-n",
"-t", str(self.window_main.window.xid)])
# Monitor the subprocess regularly
glib.timeout_add(100, self._poll_software_sources_subprocess, p)
def _poll_software_sources_subprocess(self, popen):
ret = popen.poll()
if ret is None:
# Keep monitoring
return True
# A return code of 1 means that the sources have changed
if ret == 1:
self.run_update_cache()
self.window_main.set_sensitive(True)
# Stop monitoring
return False
def on_menuitem_about_activate(self, widget):
self.aboutdialog.set_version(VERSION)
self.aboutdialog.set_transient_for(self.window_main)
self.aboutdialog.run()
self.aboutdialog.hide()
def on_menuitem_help_activate(self, menuitem):
# run yelp
p = subprocess.Popen(["yelp","ghelp:software-center"])
# collect the exit status (otherwise we leave zombies)
glib.timeout_add_seconds(1, lambda p: p.poll() == None, p)
def on_menuitem_view_all_activate(self, widget):
if not self._block_menuitem_view and self.active_pane.apps_filter.get_supported_only():
self.active_pane.apps_filter.set_supported_only(False)
self.active_pane.refresh_apps()
def on_menuitem_view_supported_only_activate(self, widget):
if not self._block_menuitem_view and not self.active_pane.apps_filter.get_supported_only():
self.active_pane.apps_filter.set_supported_only(True)
self.active_pane.refresh_apps()
def _on_transaction_started(self, backend):
self.menuitem_install.set_sensitive(False)
self.menuitem_remove.set_sensitive(False)
def _on_transaction_finished(self, backend, success):
""" callback when an application install/remove transaction has finished """
self.cache.open()
self.update_app_status_menu()
def _on_transaction_stopped(self, backend):
""" callback when an application install/remove transaction has stopped """
self.update_app_status_menu()
def on_channels_changed(self, backend, res):
""" callback when the set of software channels has changed """
logging.debug("on_channels_changed %s" % res)
if res:
self.db.open()
# reset the navigation history because software items stored
# in the history stack might no longer be available
self.available_pane.reset_navigation_history()
# refresh the available_pane views to reflect any changes
self.available_pane.refresh_apps()
self.available_pane.update_app_view()
self.update_app_status_menu()
self.update_status_bar()
# helper
def run_update_cache(self):
"""update the apt cache (e.g. after new sources where added """
self.backend.reload()
def update_app_status_menu(self):
"""Helper that updates the 'File' and 'Edit' menu to enable/disable
install/remove and Copy/Copy weblink
"""
logging.debug("update_app_status_menu")
# check if we have a pkg for this page
app = None
if self.active_pane:
app = self.active_pane.get_current_app()
if app is None:
self.menuitem_install.set_sensitive(False)
self.menuitem_remove.set_sensitive(False)
self.menuitem_copy_web_link.set_sensitive(False)
return False
# wait for the cache to become ready (if needed)
if not self.cache.ready:
glib.timeout_add(100, lambda: self.update_app_status_menu())
return False
# update menu items
if (not self.active_pane.is_category_view_showing() and
app.pkgname in self.cache):
if self.active_pane.app_view.is_action_in_progress_for_selected_app():
self.menuitem_install.set_sensitive(False)
self.menuitem_remove.set_sensitive(False)
self.menuitem_copy_web_link.set_sensitive(False)
else:
pkg = self.cache[app.pkgname]
installed = bool(pkg.installed)
self.menuitem_install.set_sensitive(not installed)
self.menuitem_remove.set_sensitive(installed)
self.menuitem_copy_web_link.set_sensitive(True)
else:
# clear menu items if category view or if the package is not
# in the cache
self.menuitem_install.set_sensitive(False)
self.menuitem_remove.set_sensitive(False)
self.menuitem_copy_web_link.set_sensitive(False)
# return False to ensure that a possible glib.timeout_add ends
return False
def update_status_bar(self):
"Helper that updates the status bar"
page = self.notebook_view.get_current_page()
if self.active_pane:
s = self.active_pane.get_status_text()
else:
# FIXME: deal with the pending view status
s = ""
self.label_status.set_text(s)
def update_app_list_view(self, channel=None):
"""Helper that updates the app view list.
"""
if self.active_pane is None:
return
if channel is None and self.active_pane.is_category_view_showing():
return
if channel:
self.channel_pane.set_channel(channel)
self.active_pane.refresh_apps()
self.active_pane.update_app_view()
def _on_database_rebuilding_handler(self, is_rebuilding):
logging.debug("_on_database_rebuilding_handler %s" % is_rebuilding)
self._database_is_rebuilding = is_rebuilding
self.window_rebuilding.set_transient_for(self.window_main)
self.window_rebuilding.set_title("")
self.window_main.set_sensitive(not is_rebuilding)
# show dialog about the rebuilding status
if is_rebuilding:
self.window_rebuilding.show()
else:
# we need to reopen when the database finished updating
self.db.reopen()
self.window_rebuilding.hide()
def setup_database_rebuilding_listener(self):
"""
Setup system bus listener for database rebuilding
"""
self._database_is_rebuilding = False
# get dbus
try:
bus = dbus.SystemBus()
except:
logging.exception("could not get system bus")
return
# check if its currently rebuilding (most likely not, so we
# just ignore errors from dbus because the interface
try:
proxy_obj = bus.get_object("com.ubuntu.Softwarecenter",
"/com/ubuntu/Softwarecenter")
iface = dbus.Interface(proxy_obj, "com.ubuntu.Softwarecenter")
res = iface.IsRebuilding()
self._on_database_rebuilding_handler(res)
except Exception ,e:
logging.debug("query for the update-database exception '%s' (probably ok)" % e)
# add signal handler
bus.add_signal_receiver(self._on_database_rebuilding_handler,
"DatabaseRebuilding",
"com.ubuntu.Softwarecenter")
def setup_dbus_or_bring_other_instance_to_front(self):
"""
This sets up a dbus listener
"""
try:
bus = dbus.SessionBus()
except:
logging.exception("could not initiate dbus")
return
# if there is another Softwarecenter running bring it to front
# and exit, otherwise install the dbus controller
try:
proxy_obj = bus.get_object('com.ubuntu.Softwarecenter',
'/com/ubuntu/Softwarecenter')
iface = dbus.Interface(proxy_obj, 'com.ubuntu.SoftwarecenterIFace')
iface.bringToFront()
sys.exit()
except dbus.DBusException, e:
bus_name = dbus.service.BusName('com.ubuntu.Softwarecenter',bus)
self.dbusControler = SoftwarecenterDbusController(self, bus_name)
def show_available_packages(self, packages):
""" Show packages given as arguments in the available_pane
If the list of packages is only one element long show that,
otherwise turn it into a comma seperated search
"""
if len(packages) == 1:
# show a single package
pkg_name = packages[0]
# FIXME: this currently only works with pkg names for apps
# it needs to perform a search because a App name
# is (in general) not unique
app = Application("", pkg_name)
self.available_pane.app_details.show_app(app)
self.available_pane.notebook.set_current_page(
self.available_pane.PAGE_APP_DETAILS)
if len(packages) > 1:
# turn multiple packages into a search with ","
# turn off de-duplication
self.available_pane.apps_filter.set_only_packages_without_applications(False)
self.available_pane.searchentry.set_text(",".join(packages))
self.available_pane.notebook.set_current_page(
self.available_pane.PAGE_APPLIST)
def restore_state(self):
if self.config.has_option("general", "size"):
(x, y) = self.config.get("general", "size").split(",")
self.window_main.set_default_size(int(x), int(y))
if (self.config.has_option("general", "maximized") and
self.config.getboolean("general", "maximized")):
self.window_main.maximize()
if (self.config.has_option("general", "available-node-expanded") and
self.config.getboolean("general", "available-node-expanded")):
self.view_switcher.expand_available_node()
def save_state(self):
logging.debug("save_state")
# this happens on a delete event, we explicitely save_state() there
if self.window_main.window is None:
return
if not self.config.has_section("general"):
self.config.add_section("general")
maximized = self.window_main.window.get_state() & gtk.gdk.WINDOW_STATE_MAXIMIZED
if maximized:
self.config.set("general", "maximized", "True")
else:
self.config.set("general", "maximized", "False")
# size only matters when non-maximized
size = self.window_main.get_size()
self.config.set("general","size", "%s, %s" % (size[0], size[1]))
available_node_expanded = self.view_switcher.is_available_node_expanded()
if available_node_expanded:
self.config.set("general", "available-node-expanded", "True")
else:
self.config.set("general", "available-node-expanded", "False")
self.config.write()
def run(self, args):
self.window_main.show_all()
self.show_available_packages(args)
atexit.register(self.save_state)
SimpleGtkbuilderApp.run(self)
|