2007-06-24 14:43:48 +02:00
|
|
|
# Copyright (C) 2006-2007 Red Hat, Inc.
|
2007-02-21 18:06:39 +01: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.
|
|
|
|
|
|
|
|
import os
|
2007-02-22 14:11:50 +01:00
|
|
|
import sys
|
2007-02-22 15:46:13 +01:00
|
|
|
from optparse import OptionParser
|
2007-03-23 17:57:36 +01:00
|
|
|
import gettext
|
2007-02-21 18:06:39 +01:00
|
|
|
|
2007-02-22 14:11:50 +01:00
|
|
|
import gobject
|
|
|
|
import gtk
|
2007-02-21 18:06:39 +01:00
|
|
|
import dbus
|
|
|
|
import dbus.service
|
2007-02-22 14:11:50 +01:00
|
|
|
import dbus.glib
|
2007-02-21 18:06:39 +01:00
|
|
|
|
|
|
|
from sugar.activity.bundle import Bundle
|
2007-02-22 00:07:08 +01:00
|
|
|
from sugar.activity import activityhandle
|
2007-02-21 18:06:39 +01:00
|
|
|
from sugar import logger
|
2007-06-29 22:11:28 +02:00
|
|
|
from sugar import _sugarext
|
2007-02-21 18:06:39 +01:00
|
|
|
|
2007-02-22 14:11:50 +01:00
|
|
|
# Work around for dbus mutex locking issue
|
|
|
|
gobject.threads_init()
|
|
|
|
dbus.glib.threads_init()
|
|
|
|
|
2007-05-22 14:49:28 +02:00
|
|
|
_ACTIVITY_FACTORY_INTERFACE = "org.laptop.ActivityFactory"
|
|
|
|
|
2007-02-21 18:09:02 +01:00
|
|
|
class ActivityFactoryService(dbus.service.Object):
|
2007-04-10 04:47:37 +02:00
|
|
|
"""D-Bus service that creates instances of Python activities
|
|
|
|
|
|
|
|
The ActivityFactoryService is a dbus service created for
|
|
|
|
each Python based activity type (that is, each activity
|
|
|
|
bundle which declares a "class" in its activity.info file,
|
|
|
|
rather than an "exec").
|
|
|
|
|
|
|
|
The ActivityFactoryService is the actual process which
|
|
|
|
instantiates the Python classes for Sugar interfaces. That
|
|
|
|
is, your Python code runs in the same process as the
|
|
|
|
ActivityFactoryService itself.
|
|
|
|
|
|
|
|
The "service" process is created at the moment Sugar first
|
|
|
|
attempts to create an instance of the activity type. It
|
|
|
|
then remains in memory until the last instance of the
|
|
|
|
activity type is terminated.
|
|
|
|
"""
|
2007-02-21 18:06:39 +01:00
|
|
|
|
|
|
|
def __init__(self, service_name, activity_class):
|
2007-04-10 04:47:37 +02:00
|
|
|
"""Initialize the service to create activities of this type
|
|
|
|
|
|
|
|
service_name -- bundle's service name, this is used
|
|
|
|
to construct the dbus service name used to access
|
|
|
|
the created service.
|
|
|
|
activity_class -- dotted Python class name for the
|
|
|
|
Activity class which is to be instantiated by
|
|
|
|
the service. Assumed to be composed of a module
|
|
|
|
followed by a class.
|
|
|
|
|
|
|
|
if the module specified has a "start" attribute this object
|
|
|
|
will be called on service initialisation (before first
|
|
|
|
instance is created).
|
|
|
|
|
|
|
|
if the module specified has a "stop" attribute this object
|
|
|
|
will be called after every instance exits (note: may be
|
|
|
|
called multiple times for each time start is called!)
|
|
|
|
"""
|
2007-02-21 18:06:39 +01:00
|
|
|
self._activities = []
|
|
|
|
|
|
|
|
splitted_module = activity_class.rsplit('.', 1)
|
|
|
|
module_name = splitted_module[0]
|
|
|
|
class_name = splitted_module[1]
|
|
|
|
|
|
|
|
module = __import__(module_name)
|
|
|
|
for comp in module_name.split('.')[1:]:
|
|
|
|
module = getattr(module, comp)
|
|
|
|
if hasattr(module, 'start'):
|
|
|
|
module.start()
|
|
|
|
|
|
|
|
self._module = module
|
|
|
|
self._constructor = getattr(module, class_name)
|
|
|
|
|
|
|
|
bus = dbus.SessionBus()
|
|
|
|
bus_name = dbus.service.BusName(service_name, bus = bus)
|
|
|
|
object_path = '/' + service_name.replace('.', '/')
|
|
|
|
dbus.service.Object.__init__(self, bus_name, object_path)
|
|
|
|
|
2007-05-22 14:49:28 +02:00
|
|
|
@dbus.service.method("org.laptop.ActivityFactory", in_signature="a{ss}")
|
2007-02-22 00:07:08 +01:00
|
|
|
def create(self, handle):
|
2007-04-10 04:47:37 +02:00
|
|
|
"""Create a new instance of this activity
|
|
|
|
|
|
|
|
handle -- sugar.activity.activityhandle.ActivityHandle
|
|
|
|
compatible dictionary providing the instance-specific
|
|
|
|
values for the new instance
|
2007-04-14 07:17:59 +02:00
|
|
|
|
|
|
|
returns xid for the created instance' root window
|
2007-04-10 04:47:37 +02:00
|
|
|
"""
|
2007-02-22 00:41:26 +01:00
|
|
|
activity_handle = activityhandle.create_from_dict(handle)
|
2007-02-22 00:07:08 +01:00
|
|
|
activity = self._constructor(activity_handle)
|
2007-02-24 17:40:18 +01:00
|
|
|
activity.present()
|
2007-02-21 18:06:39 +01:00
|
|
|
|
|
|
|
self._activities.append(activity)
|
|
|
|
activity.connect('destroy', self._activity_destroy_cb)
|
|
|
|
|
|
|
|
return activity.window.xid
|
|
|
|
|
|
|
|
def _activity_destroy_cb(self, activity):
|
2007-04-10 04:47:37 +02:00
|
|
|
"""On close of an instance's root window
|
|
|
|
|
|
|
|
Removes the activity from the tracked activities.
|
|
|
|
|
|
|
|
If our implementation module has a stop, calls
|
|
|
|
that.
|
|
|
|
|
|
|
|
If there are no more tracked activities, closes
|
|
|
|
the activity.
|
|
|
|
"""
|
2007-02-21 18:06:39 +01:00
|
|
|
self._activities.remove(activity)
|
|
|
|
|
|
|
|
if hasattr(self._module, 'stop'):
|
|
|
|
self._module.stop()
|
|
|
|
|
|
|
|
if len(self._activities) == 0:
|
|
|
|
gtk.main_quit()
|
|
|
|
|
2007-03-09 16:35:53 +01:00
|
|
|
def run_with_args(args):
|
2007-02-21 18:06:39 +01:00
|
|
|
"""Start the activity factory."""
|
2007-02-22 15:46:13 +01:00
|
|
|
parser = OptionParser()
|
|
|
|
parser.add_option("-p", "--bundle-path", dest="bundle_path",
|
|
|
|
help="path to the activity bundle")
|
|
|
|
(options, args) = parser.parse_args()
|
2007-02-22 14:11:50 +01:00
|
|
|
|
2007-03-09 16:35:53 +01:00
|
|
|
run(options.bundle_path)
|
2007-02-22 15:46:13 +01:00
|
|
|
|
2007-03-09 16:35:53 +01:00
|
|
|
def run(bundle_path):
|
2007-04-15 12:26:50 +02:00
|
|
|
sys.path.append(bundle_path)
|
2007-03-09 16:35:53 +01:00
|
|
|
|
|
|
|
bundle = Bundle(bundle_path)
|
2007-02-21 18:06:39 +01:00
|
|
|
|
|
|
|
logger.start(bundle.get_name())
|
|
|
|
|
2007-03-23 17:57:36 +01:00
|
|
|
gettext.bindtextdomain(bundle.get_service_name(),
|
|
|
|
bundle.get_locale_path())
|
|
|
|
gettext.textdomain(bundle.get_service_name())
|
|
|
|
|
2007-05-31 11:30:16 +02:00
|
|
|
gtk.icon_theme_get_default().append_search_path(bundle.get_icons_path())
|
|
|
|
|
2007-03-09 16:35:53 +01:00
|
|
|
os.environ['SUGAR_BUNDLE_PATH'] = bundle_path
|
2007-06-29 22:11:28 +02:00
|
|
|
|
|
|
|
_sugarext.set_prgname(bundle.get_service_name())
|
|
|
|
_sugarext.set_application_name(bundle.get_name())
|
2007-02-21 18:06:39 +01:00
|
|
|
|
2007-03-09 16:35:53 +01:00
|
|
|
factory = ActivityFactoryService(bundle.get_service_name(),
|
|
|
|
bundle.get_class())
|