Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/plugin/bundleregistry.py
blob: 8707d5fa8e5f4ca13070678082311182d0acb6e8 (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
# Copyright (C) 2012 Aleksey Lim
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

import os
import shutil
import logging
from os.path import lexists
from gettext import gettext as _

import gtk
import gobject
from pylru import lrucache

from sugar_network import checkins, sugar
from sugar.bundle.activitybundle import ActivityBundle
from sugar.bundle.contentbundle import ContentBundle
from sugar.bundle.bundleversion import NormalizedVersion
from sugar.bundle.bundle import AlreadyInstalledException
from jarabe.model import mimeregistry
from jarabe.plugins.sn import SN_BROWSER_NAME, get_client
from jarabe.journal.journalentrybundle import JournalEntryBundle


_logger = logging.getLogger('plugins.sn.bundleregistry')
_stub_icon_path = None
_online_cache = lrucache(32)


class BundleRegistry(gobject.GObject):
    """Tracks the available activity bundles"""

    __gsignals__ = {
        'bundle-added': (gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE,
                         ([gobject.TYPE_PYOBJECT])),
        'bundle-removed': (gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE,
                           ([gobject.TYPE_PYOBJECT])),
        'bundle-changed': (gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE,
                           ([gobject.TYPE_PYOBJECT])),
    }

    def __init__(self):
        gobject.GObject.__init__(self)
        self._bundles = {}

        get_client().connect_to_signal('Event', self.__Event_cb)
        self._populate()

    def __iter__(self):
        return self._bundles.itervalues()

    def __len__(self):
        return len(self._bundles)

    def get_bundle(self, context_guid, mountpoint='~'):
        if context_guid == 'org.laptop.JournalActivity':
            return None
        elif context_guid == SN_BROWSER_NAME:
            return _BrowserInfo()

        if context_guid in self._bundles:
            return self._bundles[context_guid]

        if mountpoint == '~':
            if context_guid in _online_cache:
                return _online_cache[context_guid]
            return None

        try:
            props = get_client().Get(mountpoint, 'context', context_guid,
                    ['guid', 'keep', 'keep_impl', 'title'])
            bundle = _ContextInfo(mountpoint, props)
        except Exception:
            _logger.warning('Cannot fetch activity metadata for %r on %r',
                    context_guid, mountpoint)
            bundle = None

        # Keep even None budles to avoid needless retrying
        _online_cache[context_guid] = bundle

        return bundle

    def get_activities_for_type(self, mime_type):
        result = []

        mime = mimeregistry.get_registry()
        default_bundle_id = mime.get_default_activity(mime_type)
        default_bundle = None

        for bundle in self._bundles.values():
            if mime_type in (bundle.get_mime_types() or []):
                if bundle.get_bundle_id() == default_bundle_id:
                    default_bundle = bundle
                else:
                    result.append(bundle)

        if default_bundle is not None:
            result.insert(0, default_bundle)

        return result

    def is_bundle_favorite(self, bundle_id, version):
        bundle = self._bundles.get(bundle_id)
        if bundle is None:
            return False
        return bundle.props['keep']

    def set_bundle_favorite(self, bundle_id, version, keep):
        bundle = self._bundles.get(bundle_id)
        if bundle is None:
            return
        get_client().Update('~', 'context', bundle_id, {'keep': keep})
        bundle.props['keep'] = keep
        self.emit('bundle-changed', bundle)

    def get_bundle_position(self, bundle_id, version):
        bundle = self._bundles.get(bundle_id)
        if bundle is None:
            return -1, -1
        return bundle.props['position']

    def set_bundle_position(self, bundle_id, version, x, y):
        bundle = self._bundles.get(bundle_id)
        if bundle is None:
            return
        position = bundle.props['position'] = [int(x), int(y)]
        get_client().Update('~', 'context', bundle_id, {'position': position})
        self.emit('bundle-changed', bundle)

    def is_activity_protected(self, bundle_id):
        # No need, is_user_activity() is enough
        return False

    def is_installed(self, bundle):
        if isinstance(bundle, ContentBundle) or \
                isinstance(bundle, JournalEntryBundle):
            return bundle.is_installed()

        installed = self._bundles.get(bundle.get_bundle_id())
        return installed is not None and \
                NormalizedVersion(bundle.get_activity_version()) == \
                NormalizedVersion(installed.get_activity_version())

    def install(self, bundle, uid=None, force_downgrade=False):
        if isinstance(bundle, JournalEntryBundle):
            bundle.install(uid)
            return
        elif isinstance(bundle, ContentBundle):
            bundle.install()
            return

        installed = self._bundles.get(bundle.get_bundle_id())
        if installed is not None:
            if not force_downgrade and \
                    NormalizedVersion(bundle.get_activity_version()) <= \
                    NormalizedVersion(installed.get_activity_version()):
                raise AlreadyInstalledException
            installed.uninstall()

        bundle.install()

    def uninstall(self, bundle, force=False, delete_profile=False):
        if isinstance(bundle, ContentBundle) or \
                isinstance(bundle, JournalEntryBundle):
            if bundle.is_installed():
                bundle.uninstall()
        else:
            bundle = self._bundles.get(bundle.get_bundle_id())
            if bundle is not None:
                bundle.uninstall()

    def upgrade(self, bundle):
        self.install(bundle)

    def _populate(self):

        def reply_handler(entries, total):
            for props in entries:
                if props['guid'] in self._bundles:
                    continue
                self._add_bundle(props['guid'], props)

        def error_handler(error):
            _logger.warning('Cannot call Find(): %s', error)

        get_client().Find('~', 'context',
                ['guid', 'keep', 'keep_impl', 'position'],
                # TODO process result by portions less than 1024
                {'keep_impl': 2, 'limit': 1024},
                reply_handler=reply_handler, error_handler=error_handler)

    def _add_bundle(self, bundle_id, props):
        bundle = None
        for path in checkins(bundle_id):
            try:
                bundle = _BundleInfo(ActivityBundle(path))
                break
            except Exception:
                _logger.exception('Cannot load %r bundle from %r',
                        bundle_id, path)

        if bundle is None:
            _logger.info('No bundles for %r', bundle_id)
            return None

        bundle.props = props
        self._bundles[bundle.get_bundle_id()] = bundle
        _logger.info('Add %r bundle', bundle.get_bundle_id())
        self.emit('bundle-added', bundle)

    def _remove_bundle(self, bundle_id):
        if bundle_id not in self._bundles:
            return
        _logger.info('Remove %r bundle', bundle_id)
        bundle = self._bundles.pop(bundle_id)
        self.emit('bundle-removed', bundle)

    def _set_keep(self, bundle_id, keep):
        bundle = self._bundles.get(bundle_id)
        if bundle is None:
            return
        bundle.props['keep'] = keep
        self.emit('bundle-changed', bundle)

    def _set_keep_impl(self, bundle_id, keep_impl):
        if keep_impl:
            props = get_client().Get('~', 'context', bundle_id,
                    ['guid', 'keep', 'keep_impl', 'position'])
            bundle = self._bundles.get(bundle_id)
            if bundle is None:
                bundle = self._add_bundle(bundle_id, props)
            else:
                bundle.props = props
                self.emit('bundle-changed', bundle)
        else:
            self._remove_bundle(bundle_id)

    def __Event_cb(self, event):
        if 'mountpoint' in event and event['mountpoint'] != '~' or \
                event.get('document') != 'context':
            return
        event_type = event.get('event')
        if event_type in ('create', 'update'):
            bundle_id = event['guid']
            props = event['props']
            if props.get('keep_impl') in (0, 2):
                self._set_keep_impl(bundle_id, props['keep_impl'])
            if 'keep' in props:
                self._set_keep(bundle_id, props['keep'])
        elif event_type == 'delete':
            bundle_id = event['guid']
            self._set_keep_impl(bundle_id, 0)
        elif event_type == 'populate':
            self._populate()


class _ContextInfo(object):

    def __init__(self, mountpoint, props):
        self.mountpoint = mountpoint
        self.props = props

    def get_name(self):
        return self.props['title']

    def get_bundle_id(self):
        return self.props['guid']

    def get_icon(self):
        blob = None
        try:
            blob = get_client().GetBlob(self.mountpoint, 'context',
                    self.get_bundle_id(), 'artifact_icon')
        except Exception, error:
            _logger.debug('Fail to get icon for %r: %s',
                    self.get_bundle_id(), error)

        if not blob or os.stat(blob['path']).st_size == 0:
            return _stub_icon()
        else:
            path = sugar.profile_path('data', self.get_bundle_id() + '.svg')
            if lexists(path):
                os.unlink(path)
            os.symlink(blob['path'], path)
            return path

    def get_tags(self):
        # Doesn't matter with Sweets' features enabled
        return []

    def get_activity_version(self):
        return ''

    def get_installation_time(self):
        return 0

    def get_command(self):
        # Doesn't matter with Sweets' features enabled
        return ''

    def is_user_activity(self):
        return True

    def get_path(self):
        return '/'

    def get_mime_types(self):
        return []


class _BundleInfo(object):

    def __init__(self, bundle):
        self.props = {
                'guid': bundle.get_bundle_id,
                'keep': False,
                'position': (-1, -1),
                }
        self.mountpoint = '~'
        self._bundle = bundle

    def uninstall(self):
        _logger.debug('Uninstall %r', self._bundle.get_bundle_id())
        shutil.rmtree(self._bundle.get_path(), ignore_errors=True)

    def __getattr__(self, name):
        return getattr(self._bundle, name)


class _BrowserInfo(object):

    def __init__(self):
        icon = gtk.icon_theme_get_default().lookup_icon('sugar-network', 0, 0)
        self._icon_path = icon.get_filename()

    def get_name(self):
        return _('Sugar Network')

    def get_bundle_id(self):
        return SN_BROWSER_NAME

    def get_icon(self):
        return self._icon_path

    def get_tags(self):
        return []

    def get_activity_version(self):
        return '0'

    def get_installation_time(self):
        return 0

    def get_command(self):
        return ''

    def is_user_activity(self):
        return False

    def get_path(self):
        return '/'


def _stub_icon():
    global _stub_icon_path

    if not _stub_icon_path:
        theme = gtk.icon_theme_get_default()
        _stub_icon_path = theme.lookup_icon('empty', 0, 0).get_filename()
    return _stub_icon_path