Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/Makefile.am7
-rwxr-xr-xbin/sugar-activity161
-rw-r--r--bin/sugar-native-factory.c348
3 files changed, 110 insertions, 406 deletions
diff --git a/bin/Makefile.am b/bin/Makefile.am
index ecc0e0d..69efe43 100644
--- a/bin/Makefile.am
+++ b/bin/Makefile.am
@@ -1,16 +1,9 @@
sugardir = $(pkgdatadir)/bin
sugar_SCRIPTS = sugar-activity-factory
-bin_PROGRAMS = sugar-native-factory
-
-sugar_native_factory_SOURCE = sugar-native-factory.c
-sugar_native_factory_CFLAGS = $(NATIVE_FACTORY_CFLAGS)
-sugar_native_factory_LDADD = $(NATIVE_FACTORY_LIBS)
-
bin_SCRIPTS = \
sugar \
sugar-activity \
- sugar-activity-factory \
sugar-install-bundle
EXTRA_DIST = \
diff --git a/bin/sugar-activity b/bin/sugar-activity
index bc9c861..9f96561 100755
--- a/bin/sugar-activity
+++ b/bin/sugar-activity
@@ -16,67 +16,126 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-import sys
import os
-from ConfigParser import ConfigParser
+import sys
+import gettext
+from optparse import OptionParser
import pygtk
pygtk.require('2.0')
-
-from sugar import activity
-from sugar import env
-
-# Setup the environment so that we run inside the Sugar shell
-cp = ConfigParser()
-cp.read([env.get_profile_path("session.info")])
-os.environ['DBUS_SESSION_BUS_ADDRESS'] = cp.get('Session', 'dbus_address')
-os.environ['DISPLAY'] = cp.get('Session', 'display')
-del cp
-
import gtk
import dbus
import dbus.glib
-from sugar.activity import activityfactory
-from sugar.activity import activityfactoryservice
+from sugar import logger
+from sugar.activity import activityhandle
+from sugar.bundle.activitybundle import ActivityBundle
+from sugar import _sugarext
+
+activity_instances = []
-def _success_cb(handler, exit):
- if exit:
+def activity_destroy_cb(window):
+ activity_instances.remove(window)
+ if len(activity_instances) == 0:
gtk.main_quit()
-def _error_cb(handler, err):
- print err
- gtk.main_quit()
-
-def print_help(self):
- sys.exit(0)
-activity_info = None
-
-if len(sys.argv) > 1:
- activities = activity.get_registry().find_activity(sys.argv[1])
- if len(activities) > 0:
- activity_info = activities[0]
-
-if activity_info == None:
- print 'Usage:\n\n' \
- 'sugar-activity [bundle]\n\n' \
- 'Bundle can be a part of the service name or of bundle name.'
- sys.exit(0)
-
-bus = dbus.SessionBus()
-bus_object = bus.get_object('org.freedesktop.DBus', '/org/freedesktop/DBus')
-try:
- name = bus_object.GetNameOwner(
- activity_info.service_name, dbus_interface='org.freedesktop.DBus')
-except dbus.DBusException:
- name = None
-
-if name:
- service_name = activity_info.service_name
- print '%s is already running, creating a new instance.' % service_name
-else:
- activityfactoryservice.run(activity_info.path)
-
-activityfactory.create(activity_info.service_name)
+def create_activity_instance(constructor, handle):
+ activity = constructor(handle)
+ activity.connect('destroy', activity_destroy_cb)
+ activity.show()
+
+ activity_instances.append(activity)
+
+def get_single_process_path(service_name):
+ return '/' + service_name.replace('.', '/')
+
+class SingleProcess(dbus.service.Object):
+ def __init__(self, service_name, constructor):
+ self.constructor = constructor
+
+ bus = dbus.SessionBus()
+ bus_name = dbus.service.BusName(service_name, bus = bus)
+ object_path = get_single_process_path(service_name)
+ dbus.service.Object.__init__(self, bus_name, object_path)
+
+ @dbus.service.method("org.laptop.SingleProcess", in_signature="a{ss}")
+ def create(self, handle_dict):
+ handle = activityhandle.create_from_dict(handle_dict)
+ create_activity_instance(self.constructor, handle)
+
+parser = OptionParser()
+parser.add_option("-a", "--activity-id", dest="activity_id",
+ help="identifier of the activity instance")
+parser.add_option("-o", "--object-id", dest="object_id",
+ help="identifier of the associated datastore object")
+parser.add_option("-u", "--uri", dest="uri",
+ help="URI to load")
+parser.add_option('-s', '--single-process', dest='single_process',
+ action='store_true',
+ help='start all the instances in the same process')
+(options, args) = parser.parse_args()
+
+if 'SUGAR_BUNDLE_PATH' not in os.environ:
+ print 'SUGAR_BUNDLE_PATH is not defined in the environment.'
+ sys.exit(1)
+
+if len(args) == 0:
+ print 'A python class must be specified as first argument.'
+ sys.exit(1)
+
+bundle_path = os.environ['SUGAR_BUNDLE_PATH']
+sys.path.append(bundle_path)
+
+bundle = ActivityBundle(bundle_path)
+
+logger.start(bundle.get_service_name())
+
+gettext.bindtextdomain(bundle.get_service_name(),
+ bundle.get_locale_path())
+gettext.textdomain(bundle.get_service_name())
+
+gtk.icon_theme_get_default().append_search_path(bundle.get_icons_path())
+
+_sugarext.set_prgname(bundle.get_service_name())
+_sugarext.set_application_name(bundle.get_name())
+
+splitted_module = args[0].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()
+constructor = getattr(module, class_name)
+
+handle = activityhandle.ActivityHandle(
+ activity_id=options.activity_id,
+ object_id=options.object_id, uri=options.uri)
+
+if options.single_process is True:
+ bus = dbus.SessionBus()
+ service_name = bundle.get_service_name()
+
+ bus_object = bus.get_object(
+ 'org.freedesktop.DBus', '/org/freedesktop/DBus')
+ try:
+ name = bus_object.GetNameOwner(
+ service_name, dbus_interface='org.freedesktop.DBus')
+ except dbus.DBusException:
+ name = None
+
+ if not name:
+ service = SingleProcess(service_name, constructor)
+ else:
+ single_process = bus.get_object(
+ service_name, get_single_process_path(service_name))
+ single_process.create(handle.get_dict())
+
+ print 'Created %s in a single process.' % service_name
+ sys.exit(0)
+
+create_activity_instance(constructor, handle)
gtk.main()
diff --git a/bin/sugar-native-factory.c b/bin/sugar-native-factory.c
deleted file mode 100644
index 858249a..0000000
--- a/bin/sugar-native-factory.c
+++ /dev/null
@@ -1,348 +0,0 @@
-/*
-Copyright (c) 2007 Bert Freudenberg
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-*/
-
-
-
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
-#include <signal.h>
-#include <errno.h>
-#include <sys/wait.h>
-#include <dbus/dbus.h>
-#include <unistd.h>
-
-char* prog;
-
-/* command and arguments for activity instance*/
-static char* inst_argv[100];
-static int inst_argc = 0;
-
-/* instance process ids */
-static pid_t pidv[100];
-static int pidc = 0;
-
-/* instance process id that exited before it was added */
-static pid_t exited = 0;
-
-
-
-/* add and remove instances, quit when last instance exits*/
-
-static void
-quit()
-{
- fprintf(stderr, "%s: quitting\n", prog);
- exit(0);
-}
-
-
-static void
-add_pid(pid_t pid)
-{
- if (pid == exited)
- {
- fprintf(stderr, "%s: ign instance pid %i\n", prog, pid);
- exited = 0;
- if (pidc == 0)
- quit();
- return;
- }
- pidv[pidc++] = pid;
- fprintf(stderr, "%s: add instance pid %i\n", prog, pid);
-}
-
-
-static void
-remove_pid(pid_t pid)
-{
- int i;
- for (i=0; i<pidc; i++)
- if (pidv[i]==pid)
- break;
- if (i==pidc)
- {
- exited = pid;
- return;
- }
- pidc--;
- for ( ; i<pidc; i++)
- pidv[i] = pidv[i+1];
-
- fprintf(stderr, "%s: del instance pid %i\n", prog, pid);
-
- if (pidc == 0)
- quit();
-}
-
-
-static void
-sigchld_handler(int signum)
-{
- int pid;
- int status;
- while (1)
- {
- pid = waitpid(WAIT_ANY, &status, WNOHANG);
- if (pid <= 0)
- break;
- remove_pid(pid);
- }
-}
-
-
-
-/* fork and exit a new activity instance */
-
-static void
-create_instance(int argc)
-{
- pid_t pid = fork();
-
- if (pid<0)
- {
- perror("fork failed");
- exit(1);
- }
-
- inst_argv[argc] = NULL;
- if (pid == 0)
- {
- execvp(inst_argv[0], inst_argv);
- perror(inst_argv[0]);
- exit(1);
- }
-
- add_pid(pid);
-}
-
-
-
-/* handle dbus Introspect() call */
-
-static DBusHandlerResult
-handle_introspect(DBusConnection *connection, DBusMessage* message)
-{
- DBusMessage *reply;
- const char *introspect_xml =
- DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE
- "<node>\n"
- " <interface name=\"org.freedesktop.DBus.Introspectable\">\n"
- " <method name=\"Introspect\">\n"
- " <arg direction=\"out\" type=\"s\" />\n"
- " </method>\n"
- " </interface>\n"
- " <interface name=\"org.laptop.ActivityFactory\">\n"
- " <method name=\"create\">\n"
- " <arg direction=\"in\" type=\"a{ss}\" />\n"
- " </method>\n"
- " </interface>\n"
- "</node>\n";
-
- reply = dbus_message_new_method_return(message);
- dbus_message_append_args(reply,
- DBUS_TYPE_STRING, &introspect_xml,
- DBUS_TYPE_INVALID);
-
- dbus_connection_send(connection, reply, NULL);
- dbus_message_unref(reply);
-
- return DBUS_HANDLER_RESULT_HANDLED;
-}
-
-
-
-/* handle dbus create() call */
-
-static DBusHandlerResult
-handle_create(DBusConnection *connection, DBusMessage* message)
-{
- DBusMessage *reply;
- DBusMessageIter iter_arss, iter_rss, iter_ss;
- char *key, *value;
- char *activity_id = 0;
- int argc = inst_argc;
-
- dbus_message_iter_init(message, &iter_arss);
- if (strcmp("a{ss}", dbus_message_iter_get_signature(&iter_arss)))
- {
- reply = dbus_message_new_error(message,
- DBUS_ERROR_INVALID_ARGS,
- "signature a{ss} expected");
- dbus_connection_send(connection, reply, NULL);
- dbus_message_unref(reply);
- return DBUS_HANDLER_RESULT_HANDLED;
- }
-
- dbus_message_iter_recurse(&iter_arss, &iter_rss);
-
- do
- {
- dbus_message_iter_recurse(&iter_rss, &iter_ss);
- dbus_message_iter_get_basic(&iter_ss, &key);
- dbus_message_iter_next(&iter_ss);
- dbus_message_iter_get_basic(&iter_ss, &value);
-
- inst_argv[argc++] = key;
- inst_argv[argc++] = value;
-
- if (!strcmp("activity_id", key))
- activity_id = value;
-
- } while(dbus_message_iter_next(&iter_rss));
-
- if (!activity_id)
- {
- reply = dbus_message_new_error(message,
- DBUS_ERROR_INVALID_ARGS,
- "'activity_id' expected");
- dbus_connection_send(connection, reply, NULL);
- dbus_message_unref(reply);
- return DBUS_HANDLER_RESULT_HANDLED;
- }
-
- create_instance(argc);
-
- reply = dbus_message_new_method_return(message);
- dbus_connection_send(connection, reply, NULL);
- dbus_message_unref(reply);
-
- return DBUS_HANDLER_RESULT_HANDLED;
-}
-
-
-
-/* activity factory dbus service */
-
-static void
-factory_unregistered_func(DBusConnection *connection,
- void *user_data)
-{
-}
-
-
-static DBusHandlerResult
-factory_message_func(DBusConnection *connection,
- DBusMessage *message,
- void *user_data)
-{
- if (dbus_message_is_method_call(message,
- "org.freedesktop.DBus.Introspectable",
- "Introspect"))
- return handle_introspect(connection, message);
- else if (dbus_message_is_method_call(message,
- "org.laptop.ActivityFactory",
- "create"))
- return handle_create(connection, message);
- else
- return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
-}
-
-
-static DBusObjectPathVTable
-factory_vtable = {
- factory_unregistered_func,
- factory_message_func,
- NULL,
-};
-
-
-
-/* register service and run main loop */
-
-static char*
-dots_to_slashes(char* dotted)
-{
- char* slashed = (char*) malloc(strlen(dotted)+2);
- char* p = slashed;
- *p++ = '/';
- strcpy(p, dotted);
- while (*++p) if (*p == '.') *p = '/';
- return slashed;
-}
-
-
-int main(int argc, char **argv)
-{
- DBusConnection *connection;
- DBusError error;
- int result;
- int i;
- char* service;
-
- if (argc < 3)
- {
- printf("Usage: %s org.laptop.MyActivity cmd args\n", argv[0]);
- printf("\twhere cmd will be invoked as\n");
- printf("\tcmd args \\\n");
- printf("\t bundle_id org.laptop.MyActivity \\\n");
- printf("\t activity_id 123ABC... \\\n");
- printf("\t object_id 456DEF... \\\n");
- printf("\t pservice_id 789ACE.. \\\n");
- printf("\t uri file:///path/to/file\n");
- printf("\tas given in the org.laptop.ActivityFactory.create() call\n");
- exit(1);
- }
- prog = argv[0];
- service = argv[1];
-
- for (i = 2; i<argc; i++)
- inst_argv[inst_argc++] = argv[i];
- inst_argv[inst_argc++] = "bundle_id";
- inst_argv[inst_argc++] = service;
-
- signal(SIGCHLD, sigchld_handler);
-
- dbus_error_init(&error);
-
- connection = dbus_bus_get(DBUS_BUS_SESSION, &error);
- if (dbus_error_is_set(&error))
- {
- fprintf(stderr, "%s: could not get bus connection: %s\n", prog, error.message);
- exit(1);
- }
-
- result = dbus_bus_request_name(connection,
- service,
- DBUS_NAME_FLAG_DO_NOT_QUEUE,
- &error);
- if (dbus_error_is_set(&error))
- {
- fprintf(stderr, "%s: could not aquire name %s: %s\n", prog, service, error.message);
- exit(1);
- }
- if (result != DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER)
- {
- fprintf(stderr, "%s: could not become primary owner of %s\n", prog, service);
- exit(1);
- }
-
- dbus_connection_register_object_path(connection,
- dots_to_slashes(service),
- &factory_vtable,
- NULL);
-
- while (dbus_connection_read_write_dispatch(connection, -1))
- ;
-
- _exit(0);
-}