2007-04-11 14:06:27 +02:00
|
|
|
# Copyright (C) 2007, 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-10-29 19:05:09 +01:00
|
|
|
import os
|
2007-03-09 14:57:54 +01:00
|
|
|
|
2007-01-27 12:54:56 +01:00
|
|
|
import gobject
|
2006-10-29 19:05:09 +01:00
|
|
|
|
2006-10-29 18:28:48 +01:00
|
|
|
from sugar.activity.bundle import Bundle
|
2006-10-31 12:06:28 +01:00
|
|
|
from sugar import env
|
2006-12-01 23:23:58 +01:00
|
|
|
from sugar import util
|
2006-10-31 10:48:45 +01:00
|
|
|
|
2007-03-09 14:57:54 +01:00
|
|
|
# http://standards.freedesktop.org/basedir-spec/basedir-spec-0.6.html
|
|
|
|
def _get_data_dirs():
|
|
|
|
if os.environ.has_key('XDG_DATA_DIRS'):
|
|
|
|
return os.environ['XDG_DATA_DIRS'].split(':')
|
|
|
|
else:
|
|
|
|
return [ '/usr/local/share/', '/usr/share/' ]
|
|
|
|
|
2006-10-31 10:48:45 +01:00
|
|
|
class _ServiceManager(object):
|
2007-04-10 04:47:37 +02:00
|
|
|
"""Internal class responsible for creating dbus service files
|
|
|
|
|
|
|
|
DBUS services are defined in files which bind a service name
|
|
|
|
to the name of an executable which provides the service name.
|
|
|
|
|
|
|
|
In Sugar, the service files are automatically generated from
|
|
|
|
the activity registry (by this class). When an activity's
|
|
|
|
dbus launch service is requested, dbus will launch the
|
|
|
|
specified executable in order to allow it to provide the
|
|
|
|
requested activity-launching service.
|
|
|
|
|
|
|
|
In the case of activities which provide a "class", instead of
|
|
|
|
an "exec" attribute in their activity.info, the
|
|
|
|
sugar-activity-factory script is used with an appropriate
|
|
|
|
argument to service that bundle.
|
|
|
|
"""
|
|
|
|
SERVICE_DIRECTORY = '~/.local/share/dbus-1/services'
|
2006-12-04 20:12:24 +01:00
|
|
|
def __init__(self):
|
2007-04-10 04:47:37 +02:00
|
|
|
service_dir = os.path.expanduser(self.SERVICE_DIRECTORY)
|
2007-03-09 14:57:54 +01:00
|
|
|
if not os.path.isdir(service_dir):
|
|
|
|
os.makedirs(service_dir)
|
|
|
|
|
|
|
|
self._path = service_dir
|
2006-10-31 10:48:45 +01:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def add(self, bundle):
|
2007-02-22 15:46:13 +01:00
|
|
|
util.write_service(bundle.get_service_name(),
|
|
|
|
bundle.get_exec(), self._path)
|
2006-10-31 10:48:45 +01:00
|
|
|
|
2007-01-27 12:54:56 +01:00
|
|
|
class BundleRegistry(gobject.GObject):
|
2006-12-04 20:12:24 +01:00
|
|
|
"""Service that tracks the available activity bundles"""
|
|
|
|
|
2007-01-27 12:54:56 +01:00
|
|
|
__gsignals__ = {
|
|
|
|
'bundle-added': (gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE,
|
|
|
|
([gobject.TYPE_PYOBJECT]))
|
|
|
|
}
|
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def __init__(self):
|
2007-01-27 12:54:56 +01:00
|
|
|
gobject.GObject.__init__(self)
|
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
self._bundles = {}
|
|
|
|
self._search_path = []
|
|
|
|
self._service_manager = _ServiceManager()
|
|
|
|
|
2007-03-09 16:55:18 +01:00
|
|
|
def find_bundle(self, key):
|
|
|
|
"""Find a bundle in the registry"""
|
|
|
|
key = key.lower()
|
|
|
|
|
|
|
|
for bundle in self._bundles.values():
|
|
|
|
name = bundle.get_name().lower()
|
|
|
|
service_name = bundle.get_service_name().lower()
|
|
|
|
if name.find(key) != -1 or service_name.find(key) != -1:
|
|
|
|
return bundle
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def get_bundle(self, service_name):
|
|
|
|
"""Returns an bundle given his service name"""
|
|
|
|
if self._bundles.has_key(service_name):
|
|
|
|
return self._bundles[service_name]
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
|
|
|
def add_search_path(self, path):
|
|
|
|
"""Add a directory to the bundles search path"""
|
|
|
|
self._search_path.append(path)
|
|
|
|
self._scan_directory(path)
|
|
|
|
|
|
|
|
def __iter__(self):
|
|
|
|
return self._bundles.values().__iter__()
|
|
|
|
|
|
|
|
def _scan_directory(self, path):
|
|
|
|
if os.path.isdir(path):
|
|
|
|
for f in os.listdir(path):
|
|
|
|
bundle_dir = os.path.join(path, f)
|
|
|
|
if os.path.isdir(bundle_dir) and \
|
|
|
|
bundle_dir.endswith('.activity'):
|
2007-01-27 12:54:56 +01:00
|
|
|
self.add_bundle(bundle_dir)
|
2006-12-04 20:12:24 +01:00
|
|
|
|
2007-01-27 12:54:56 +01:00
|
|
|
def add_bundle(self, bundle_path):
|
2006-12-04 20:12:24 +01:00
|
|
|
bundle = Bundle(bundle_path)
|
|
|
|
if bundle.is_valid():
|
|
|
|
self._bundles[bundle.get_service_name()] = bundle
|
|
|
|
self._service_manager.add(bundle)
|
2007-01-27 12:54:56 +01:00
|
|
|
self.emit('bundle-added', bundle)
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
2007-02-21 17:53:44 +01:00
|
|
|
|
|
|
|
def get_registry():
|
|
|
|
return _bundle_registry
|
|
|
|
|
|
|
|
_bundle_registry = BundleRegistry()
|
|
|
|
|
2007-03-09 14:57:54 +01:00
|
|
|
for path in _get_data_dirs():
|
2007-02-21 17:53:44 +01:00
|
|
|
bundles_path = os.path.join(path, 'activities')
|
|
|
|
_bundle_registry.add_search_path(bundles_path)
|
|
|
|
|
2007-03-09 14:57:54 +01:00
|
|
|
_bundle_registry.add_search_path(env.get_user_activities_path())
|