2007-04-10 04:47:37 +02:00
|
|
|
"""Shell side object which manages request to start activity"""
|
2007-06-24 14:43:48 +02:00
|
|
|
# Copyright (C) 2006-2007 Red Hat, Inc.
|
2006-10-15 01:08:44 +02:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
2007-04-09 20:40:56 +02:00
|
|
|
from sugar.presence import presenceservice
|
2007-02-22 00:07:08 +01:00
|
|
|
from sugar.activity.activityhandle import ActivityHandle
|
2007-02-21 20:56:14 +01:00
|
|
|
from sugar import util
|
2006-08-09 02:02:34 +02:00
|
|
|
|
2007-06-29 19:05:10 +02:00
|
|
|
_SHELL_SERVICE = "org.laptop.Shell"
|
|
|
|
_SHELL_PATH = "/org/laptop/Shell"
|
|
|
|
_SHELL_IFACE = "org.laptop.Shell"
|
|
|
|
|
2007-05-22 14:49:28 +02:00
|
|
|
_ACTIVITY_FACTORY_INTERFACE = "org.laptop.ActivityFactory"
|
|
|
|
|
2007-03-15 12:47:10 +01:00
|
|
|
def create_activity_id():
|
2007-04-10 04:47:37 +02:00
|
|
|
"""Generate a new, unique ID for this activity"""
|
2007-04-09 20:40:56 +02:00
|
|
|
pservice = presenceservice.get_instance()
|
2007-02-22 01:23:58 +01:00
|
|
|
|
|
|
|
# create a new unique activity ID
|
|
|
|
i = 0
|
|
|
|
act_id = None
|
|
|
|
while i < 10:
|
|
|
|
act_id = util.unique_id()
|
|
|
|
i += 1
|
|
|
|
|
|
|
|
# check through network activities
|
|
|
|
found = False
|
|
|
|
activities = pservice.get_activities()
|
|
|
|
for act in activities:
|
2007-05-08 17:19:30 +02:00
|
|
|
if act_id == act.props.id:
|
2007-02-22 01:23:58 +01:00
|
|
|
found = True
|
|
|
|
break
|
2007-04-09 21:08:04 +02:00
|
|
|
if not found:
|
|
|
|
return act_id
|
|
|
|
raise RuntimeError("Cannot generate unique activity id.")
|
2007-02-22 01:23:58 +01:00
|
|
|
|
2007-01-07 06:04:30 +01:00
|
|
|
class ActivityCreationHandler(gobject.GObject):
|
2007-04-10 04:47:37 +02:00
|
|
|
"""Sugar-side activity creation interface
|
|
|
|
|
|
|
|
This object uses a dbus method on the ActivityFactory
|
|
|
|
service to create the new activity. It generates
|
|
|
|
GObject events in response to the success/failure of
|
|
|
|
activity startup using callbacks to the service's
|
|
|
|
create call.
|
|
|
|
"""
|
2006-08-09 02:02:34 +02:00
|
|
|
|
2007-02-22 00:07:08 +01:00
|
|
|
def __init__(self, service_name, activity_handle):
|
2007-04-10 04:47:37 +02:00
|
|
|
"""Initialise the handler
|
|
|
|
|
2007-05-24 19:50:17 +02:00
|
|
|
service_name -- the service name of the bundle factory
|
2007-04-10 04:47:37 +02:00
|
|
|
activity_handle -- stores the values which are to
|
|
|
|
be passed to the service to uniquely identify
|
|
|
|
the activity to be created and the sharing
|
|
|
|
service that may or may not be connected with it
|
|
|
|
|
|
|
|
sugar.activity.activityhandle.ActivityHandle instance
|
|
|
|
|
|
|
|
calls the "create" method on the service for this
|
|
|
|
particular activity type and registers the
|
|
|
|
_reply_handler and _error_handler methods on that
|
|
|
|
call's results.
|
|
|
|
|
|
|
|
The specific service which creates new instances of this
|
|
|
|
particular type of activity is created during the activity
|
2007-05-27 20:24:10 +02:00
|
|
|
registration process in shell bundle registry which creates
|
2007-04-10 04:47:37 +02:00
|
|
|
service definition files for each registered bundle type.
|
|
|
|
"""
|
2007-01-07 06:04:30 +01:00
|
|
|
gobject.GObject.__init__(self)
|
2007-02-22 00:57:49 +01:00
|
|
|
self._service_name = service_name
|
2007-02-22 01:23:58 +01:00
|
|
|
self._activity_handle = activity_handle
|
2007-02-21 20:56:14 +01:00
|
|
|
|
2007-02-21 17:53:44 +01:00
|
|
|
bus = dbus.SessionBus()
|
2007-07-20 13:15:11 +02:00
|
|
|
|
|
|
|
bus_object = bus.get_object(_SHELL_SERVICE, _SHELL_PATH)
|
|
|
|
self._shell = dbus.Interface(bus_object, _SHELL_IFACE)
|
|
|
|
|
2007-05-24 19:50:17 +02:00
|
|
|
object_path = '/' + service_name.replace('.', '/')
|
|
|
|
proxy_obj = bus.get_object(service_name, object_path,
|
|
|
|
follow_name_owner_changes=True)
|
2007-07-20 13:15:11 +02:00
|
|
|
self._factory = dbus.Interface(proxy_obj, _ACTIVITY_FACTORY_INTERFACE)
|
2006-08-09 12:57:42 +02:00
|
|
|
|
2007-07-20 13:15:11 +02:00
|
|
|
if self.get_activity_id() != None:
|
|
|
|
self._shell.ActivateActivity(self.get_activity_id(),
|
|
|
|
reply_handler=self._activate_reply_handler,
|
|
|
|
error_handler=self._activate_error_handler)
|
|
|
|
else:
|
|
|
|
self._launch_activity()
|
2007-06-29 19:05:10 +02:00
|
|
|
|
2007-07-20 13:15:11 +02:00
|
|
|
def _launch_activity(self):
|
2007-06-29 19:05:10 +02:00
|
|
|
self._shell.NotifyLaunch(
|
2007-07-20 13:15:11 +02:00
|
|
|
self._service_name, self.get_activity_id(),
|
2007-06-29 19:05:10 +02:00
|
|
|
reply_handler=self._no_reply_handler,
|
|
|
|
error_handler=self._notify_launch_error_handler)
|
2007-05-24 19:50:17 +02:00
|
|
|
|
2007-07-20 13:15:11 +02:00
|
|
|
self._factory.create(self._activity_handle.get_dict(),
|
2007-07-26 10:07:50 +02:00
|
|
|
timeout=120 * 1000,
|
2007-07-20 13:15:11 +02:00
|
|
|
reply_handler=self._no_reply_handler,
|
|
|
|
error_handler=self._create_error_handler)
|
|
|
|
|
2007-02-21 20:56:14 +01:00
|
|
|
def get_activity_id(self):
|
2007-04-10 04:47:37 +02:00
|
|
|
"""Retrieve the unique identity for this activity"""
|
2007-02-22 00:07:08 +01:00
|
|
|
return self._activity_handle.activity_id
|
2007-02-21 20:56:14 +01:00
|
|
|
|
2007-06-29 19:05:10 +02:00
|
|
|
def _no_reply_handler(self, *args):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def _notify_launch_failure_error_handler(self, err):
|
|
|
|
logging.debug('Notify launch failure failed %s' % err)
|
|
|
|
|
|
|
|
def _notify_launch_error_handler(self, err):
|
|
|
|
logging.debug('Notify launch failed %s' % err)
|
|
|
|
|
2007-07-20 13:15:11 +02:00
|
|
|
def _activate_reply_handler(self, activated):
|
|
|
|
if not activated:
|
|
|
|
self._launch_activity()
|
|
|
|
|
|
|
|
def _activate_error_handler(self, err):
|
|
|
|
logging.debug("Activity activation request failed %s" % err)
|
|
|
|
|
2007-06-29 19:05:10 +02:00
|
|
|
def _create_reply_handler(self, xid):
|
2007-02-22 00:57:49 +01:00
|
|
|
logging.debug("Activity created %s (%s)." %
|
|
|
|
(self._activity_handle.activity_id, self._service_name))
|
2007-01-07 06:04:30 +01:00
|
|
|
|
2007-06-29 19:05:10 +02:00
|
|
|
def _create_error_handler(self, err):
|
2007-02-22 00:57:49 +01:00
|
|
|
logging.debug("Couldn't create activity %s (%s): %s" %
|
|
|
|
(self._activity_handle.activity_id, self._service_name, err))
|
2007-06-29 19:05:10 +02:00
|
|
|
self._shell.NotifyLaunchFailure(
|
2007-06-29 22:11:28 +02:00
|
|
|
self.get_activity_id(), reply_handler=self._no_reply_handler,
|
|
|
|
error_handler=self._notify_launch_failure_error_handler)
|
2007-01-07 06:04:30 +01:00
|
|
|
|
2007-02-22 00:07:08 +01:00
|
|
|
def create(service_name, activity_handle=None):
|
2007-01-07 06:04:30 +01:00
|
|
|
"""Create a new activity from its name."""
|
2007-02-22 01:23:58 +01:00
|
|
|
if not activity_handle:
|
2007-03-15 12:47:10 +01:00
|
|
|
activity_handle = ActivityHandle(create_activity_id())
|
2007-02-22 00:07:08 +01:00
|
|
|
return ActivityCreationHandler(service_name, activity_handle)
|
2007-02-22 01:23:58 +01:00
|
|
|
|
|
|
|
def create_with_uri(service_name, uri):
|
|
|
|
"""Create a new activity and pass the uri as handle."""
|
2007-03-15 12:47:10 +01:00
|
|
|
activity_handle = ActivityHandle(create_activity_id())
|
2007-02-22 01:23:58 +01:00
|
|
|
activity_handle.uri = uri
|
2007-02-27 23:19:02 +01:00
|
|
|
return ActivityCreationHandler(service_name, activity_handle)
|
2007-03-02 22:22:19 +01:00
|
|
|
|
|
|
|
def create_with_object_id(service_name, object_id):
|
|
|
|
"""Create a new activity and pass the object id as handle."""
|
2007-03-15 12:47:10 +01:00
|
|
|
activity_handle = ActivityHandle(create_activity_id())
|
2007-03-02 22:22:19 +01:00
|
|
|
activity_handle.object_id = object_id
|
|
|
|
return ActivityCreationHandler(service_name, activity_handle)
|