2006-10-15 01:08:44 +02:00
|
|
|
# Copyright (C) 2006, Red Hat, Inc.
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library 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
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the
|
|
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
# Boston, MA 02111-1307, USA.
|
|
|
|
|
2006-08-09 02:02:34 +02:00
|
|
|
import logging
|
|
|
|
|
|
|
|
import dbus
|
|
|
|
import gobject
|
2006-10-13 11:24:07 +02:00
|
|
|
import gtk
|
2006-08-09 02:02:34 +02:00
|
|
|
|
|
|
|
from sugar.presence.PresenceService import PresenceService
|
2007-02-21 17:53:44 +01:00
|
|
|
from sugar.activity import bundleregistry
|
2006-08-09 02:02:34 +02:00
|
|
|
|
2007-02-21 17:28:49 +01:00
|
|
|
_ACTIVITY_SERVICE_NAME = "org.laptop.Activity"
|
|
|
|
_ACTIVITY_SERVICE_PATH = "/org/laptop/Activity"
|
|
|
|
_ACTIVITY_INTERFACE = "org.laptop.Activity"
|
|
|
|
|
2007-01-07 06:04:30 +01:00
|
|
|
class ActivityCreationHandler(gobject.GObject):
|
|
|
|
|
|
|
|
__gsignals__ = {
|
|
|
|
'error': (gobject.SIGNAL_RUN_FIRST,
|
|
|
|
gobject.TYPE_NONE,
|
|
|
|
([gobject.TYPE_PYOBJECT])),
|
|
|
|
'success': (gobject.SIGNAL_RUN_FIRST,
|
|
|
|
gobject.TYPE_NONE,
|
|
|
|
([gobject.TYPE_PYOBJECT]))
|
|
|
|
}
|
2006-08-09 02:02:34 +02:00
|
|
|
|
2007-02-21 17:53:44 +01:00
|
|
|
def __init__(self, service_name):
|
2007-01-07 06:04:30 +01:00
|
|
|
gobject.GObject.__init__(self)
|
2006-08-09 02:02:34 +02:00
|
|
|
|
2007-02-21 17:53:44 +01:00
|
|
|
registry = bundleregistry.get_registry()
|
|
|
|
bundle = registry.get_bundle(service_name)
|
2006-08-09 02:02:34 +02:00
|
|
|
|
2007-02-21 17:53:44 +01:00
|
|
|
bus = dbus.SessionBus()
|
|
|
|
proxy_obj = bus.get_object(service_name, bundle.get_object_path())
|
2007-01-07 06:04:30 +01:00
|
|
|
factory = dbus.Interface(proxy_obj, "com.redhat.Sugar.ActivityFactory")
|
2006-08-09 12:57:42 +02:00
|
|
|
|
2007-01-07 06:04:30 +01:00
|
|
|
factory.create(reply_handler=self._reply_handler, error_handler=self._error_handler)
|
2006-08-09 12:57:42 +02:00
|
|
|
|
2007-01-07 06:04:30 +01:00
|
|
|
def _reply_handler(self, xid):
|
|
|
|
bus = dbus.SessionBus()
|
2007-02-21 17:28:49 +01:00
|
|
|
proxy_obj = bus.get_object(_ACTIVITY_SERVICE_NAME + '%d' % xid,
|
|
|
|
_ACTIVITY_SERVICE_PATH + "/%s" % xid)
|
|
|
|
activity = dbus.Interface(proxy_obj, _ACTIVITY_INTERFACE)
|
2007-01-07 06:04:30 +01:00
|
|
|
self.emit('success', activity)
|
|
|
|
|
|
|
|
def _error_handler(self, err):
|
|
|
|
logging.debug("Couldn't create activity: %s" % err)
|
|
|
|
self.emit('error', err)
|
|
|
|
|
2007-02-21 17:53:44 +01:00
|
|
|
def create(service_name):
|
2007-01-07 06:04:30 +01:00
|
|
|
"""Create a new activity from its name."""
|
2007-02-21 17:53:44 +01:00
|
|
|
return ActivityCreationHandler(service_name)
|