Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/activity/ActivityFactory.py
blob: 4f0a4d5f72cea6d999d9cb0b7c6ae3c471d45ade (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import sys
import logging

import dbus
import dbus.service
import gobject
import gtk

from sugar.presence.PresenceService import PresenceService
from sugar.activity import Activity

def get_path(activity_name):
	"""Returns the activity path"""
	return '/' + activity_name.replace('.', '/')

def _get_factory(activity_name):
	"""Returns the activity factory"""
	return activity_name + '.Factory'

class ActivityFactory(dbus.service.Object):
	"""Dbus service that takes care of creating new instances of an activity"""

	def __init__(self, activity_type, activity_class):
		self._activity_type = activity_type
		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._class = getattr(module, class_name)
	
		bus = dbus.SessionBus()
		factory = _get_factory(activity_type)
		bus_name = dbus.service.BusName(factory, bus = bus) 
		dbus.service.Object.__init__(self, bus_name, get_path(factory))

	@dbus.service.method("com.redhat.Sugar.ActivityFactory")
	def create(self):
		activity = self._class()
		activity.set_type(self._activity_type)

		self._activities.append(activity)
		activity.connect('destroy', self._activity_destroy_cb)

		return activity.window.xid

	def _activity_destroy_cb(self, activity):
		self._activities.remove(activity)
		if len(self._activities) == 0:
			gtk.main_quit()

def create(activity_name):
	"""Create a new activity from his name."""
	bus = dbus.SessionBus()

	factory_name = _get_factory(activity_name)
	factory_path = get_path(factory_name) 

	proxy_obj = bus.get_object(factory_name, factory_path)
	factory = dbus.Interface(proxy_obj, "com.redhat.Sugar.ActivityFactory")

	xid = factory.create()

	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)

	return activity

def register_factory(name, activity_class):
	"""Register the activity factory."""
	factory = ActivityFactory(name, activity_class)