Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/activity/bundle.py
blob: 286c9797d469971f7ed8ae1aa4159b0e3f267449 (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
import logging
from ConfigParser import ConfigParser

class Bundle:
	"""Info about an activity bundle. Wraps the activity.info file."""
	def __init__(self, info_path):
		self._name = None
		self._icon = None
		self._service_name = None
		self._show_launcher = False
		self._valid = True

		cp = ConfigParser()
		cp.read([info_path])

		section = 'Activity'

		if cp.has_option(section, 'service_name'):
			self._service_name = cp.get(section, 'service_name')
		else:
			self._valid = False
			logging.error('%s must specify a service name' % info_path)

		if cp.has_option(section, 'name'):
			self._name = cp.get(section, 'name')
		else:
			self._valid = False
			logging.error('%s must specify a name' % info_path)

		if cp.has_option(section, 'exec'):
			self._exec = cp.get(section, 'exec')
		else:
			self._valid = False
			logging.error('%s must specify an exec' % info_path)

		if cp.has_option(section, 'show_launcher'):
			if cp.get(section, 'show_launcher') == 'yes':
				self._show_launcher = True

		if cp.has_option(section, 'icon'):
			self._icon = cp.get(section, 'icon')

	def is_valid(self):
		return self._valid

	def get_name(self):
		"""Get the activity user visible name."""
		return self._name

	def get_service_name(self):
		"""Get the activity service name"""
		return self._service_name

	def get_icon(self):
		"""Get the activity icon name"""
		return self._icon

	def get_exec(self):
		"""Get the command to execute to launch the activity factory"""
		return self._exec

	def get_show_launcher(self):
		"""Get whether there should be a visible launcher for the activity"""
		return self._show_launcher