Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tutorius/dbustools.py
blob: 0973164381df40de5182d05973a1a73182babe5d (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
# Copyright (C) 2009, Tutorius.org
#
# 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 1 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, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

import logging
import gobject

LOGGER = logging.getLogger("sugar.tutorius.dbustools")

def save_args(callable, *xargs, **xkwargs):
    def __call(*args, **kwargs):
        kw = dict()
        kw.update(kwargs)
        kw.update(xkwargs)
        return callable(*(xargs+args), **kw) 
    return __call

def ignore(*args):
    LOGGER.debug("Unhandled asynchronous dbus call response with arguments: %s", str(args))

def logError(error):
    LOGGER.error("Unhandled asynchronous dbus call error: %s", error)

def remote_call(callable, args, return_cb=None, error_cb=None, block=False):
    reply_cb = return_cb or ignore
    errhandler_cb = error_cb or logError
    if block:
        try:
            ret_val = callable(*args)
            LOGGER.debug("remote_call return arguments: %s", str(ret_val))
        except Exception, e:
            #Use the specified error handler even for blocking calls
            errhandler_cb(e)
            return

        #Return value signature might be :
        if ret_val is None:
            #Nothing
            return reply_cb()
        elif type(ret_val) in (list, tuple):
            #Several parameters
            return reply_cb(*ret_val)
        else:
            #One parameter
            return reply_cb(ret_val)
    else:
        callable(*args, reply_handler=reply_cb, error_handler=errhandler_cb)

class Future(object):
    def __init__(self):
        self._value = None

    def get(self):
        context = gobject.MainLoop().get_context()
        while self._value == None and context.iteration(True):
            pass
        return self._value

    def _set(self, value):
        self._value = value