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-12-18 13:47:49 +01:00
|
|
|
import os
|
2006-08-09 02:02:34 +02:00
|
|
|
import sys
|
|
|
|
import logging
|
|
|
|
|
|
|
|
import dbus
|
|
|
|
import dbus.service
|
|
|
|
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
|
2006-08-09 12:57:42 +02:00
|
|
|
from sugar.activity import Activity
|
2006-12-18 13:47:49 +01:00
|
|
|
from sugar.activity.bundle import Bundle
|
|
|
|
from sugar import logger
|
2006-08-09 02:02:34 +02:00
|
|
|
|
|
|
|
def get_path(activity_name):
|
2006-12-04 20:12:24 +01:00
|
|
|
"""Returns the activity path"""
|
|
|
|
return '/' + activity_name.replace('.', '/')
|
2006-08-09 02:02:34 +02:00
|
|
|
|
|
|
|
class ActivityFactory(dbus.service.Object):
|
2006-12-04 20:12:24 +01:00
|
|
|
"""Dbus service that takes care of creating new instances of an activity"""
|
2006-08-09 02:02:34 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def __init__(self, activity_type, activity_class):
|
|
|
|
self._activity_type = activity_type
|
|
|
|
self._activities = []
|
2006-09-02 10:54:34 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
splitted_module = activity_class.rsplit('.', 1)
|
|
|
|
module_name = splitted_module[0]
|
|
|
|
class_name = splitted_module[1]
|
2006-08-09 02:02:34 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
module = __import__(module_name)
|
|
|
|
for comp in module_name.split('.')[1:]:
|
|
|
|
module = getattr(module, comp)
|
|
|
|
if hasattr(module, 'start'):
|
|
|
|
module.start()
|
2006-09-26 22:12:18 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
self._module = module
|
|
|
|
self._constructor = getattr(module, class_name)
|
|
|
|
|
|
|
|
bus = dbus.SessionBus()
|
|
|
|
factory = activity_type
|
|
|
|
bus_name = dbus.service.BusName(factory, bus = bus)
|
|
|
|
dbus.service.Object.__init__(self, bus_name, get_path(factory))
|
2006-08-09 02:02:34 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
@dbus.service.method("com.redhat.Sugar.ActivityFactory")
|
|
|
|
def create(self):
|
|
|
|
activity = self._constructor()
|
2006-10-13 11:24:07 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
self._activities.append(activity)
|
|
|
|
activity.connect('destroy', self._activity_destroy_cb)
|
2006-10-13 11:24:07 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
return activity.window.xid
|
2006-08-09 02:02:34 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def _activity_destroy_cb(self, activity):
|
|
|
|
self._activities.remove(activity)
|
2006-10-17 14:51:20 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
if hasattr(self._module, 'stop'):
|
|
|
|
self._module.stop()
|
2006-10-17 14:51:20 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
if len(self._activities) == 0:
|
|
|
|
gtk.main_quit()
|
2006-10-13 11:24:07 +02:00
|
|
|
|
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-01-07 06:04:30 +01:00
|
|
|
def __init__(self, activity_name):
|
|
|
|
gobject.GObject.__init__(self)
|
2006-08-09 02:02:34 +02:00
|
|
|
|
2007-01-07 06:04:30 +01:00
|
|
|
bus = dbus.SessionBus()
|
|
|
|
factory_name = activity_name
|
|
|
|
factory_path = get_path(factory_name)
|
2006-08-09 02:02:34 +02:00
|
|
|
|
2007-01-07 06:04:30 +01:00
|
|
|
proxy_obj = bus.get_object(factory_name, factory_path)
|
|
|
|
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()
|
|
|
|
proxy_obj = bus.get_object(Activity.get_service_name(xid),
|
|
|
|
Activity.get_object_path(xid))
|
|
|
|
activity = dbus.Interface(proxy_obj, Activity.ACTIVITY_INTERFACE)
|
|
|
|
self.emit('success', activity)
|
|
|
|
|
|
|
|
def _error_handler(self, err):
|
|
|
|
logging.debug("Couldn't create activity: %s" % err)
|
|
|
|
self.emit('error', err)
|
|
|
|
|
|
|
|
def create(activity_name):
|
|
|
|
"""Create a new activity from its name."""
|
|
|
|
return ActivityCreationHandler(activity_name)
|
2006-08-09 02:02:34 +02:00
|
|
|
|
2006-12-18 13:47:49 +01:00
|
|
|
def start_factory(activity_class, bundle_path):
|
|
|
|
"""Start the activity factory."""
|
|
|
|
bundle = Bundle(bundle_path)
|
|
|
|
|
|
|
|
logger.start(bundle.get_name())
|
|
|
|
|
|
|
|
os.environ['SUGAR_BUNDLE_PATH'] = bundle_path
|
|
|
|
os.environ['SUGAR_BUNDLE_SERVICE_NAME'] = bundle.get_service_name()
|
2006-12-20 13:43:54 +01:00
|
|
|
os.environ['SUGAR_BUNDLE_DEFAULT_TYPE'] = bundle.get_default_type()
|
2006-12-18 13:47:49 +01:00
|
|
|
|
|
|
|
factory = ActivityFactory(bundle.get_service_name(), activity_class)
|