Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 002d2a4145bdcfd941a2abd9002731c0d5cbeadd (plain) (blame)
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
# *****************************************************************************
# * Copyright (c) 2012 Wind River Systems, Inc. and others.
# * All rights reserved. This program and the accompanying materials
# * are made available under the terms of the Eclipse Public License v1.0
# * which accompanies this distribution, and is available at
# * http://www.eclipse.org/legal/epl-v10.html
# *
# * Contributors:
# *     Wind River Systems - initial API and implementation
# *****************************************************************************

from .. import contextquery
from ...channel.Command import Command


class ContextQueryProxy(contextquery.ContextQueryService):
    def __init__(self, channel):
        self.channel = channel
        self.listeners = {}

    def query(self, querystr, done):
        done = self._makeCallback(done)
        service = self

        class QueryCommand(Command):

            def __init__(self):
                super(QueryCommand, self).__init__(service.channel, service,
                                                   "query", (querystr,))

            def done(self, error, args):
                res = None
                if not error:
                    assert len(args) == 2
                    error = self.toError(args[0])
                    res = args[1]
                done.doneQuery(self.token, error, res)
        return QueryCommand().token

    def getAttrNames(self, done):
        done = self._makeCallback(done)
        service = self

        class GetAttrNamesCommand(Command):

            def __init__(self):
                super(GetAttrNamesCommand, self).__init__(service.channel,
                                                           service,
                                                           "getAttrNames",
                                                           None)

            def done(self, error, args):
                res = None
                if not error:
                    assert len(args) == 2
                    error = self.toError(args[0])
                    res = args[1]
                done.doneGetAttrNames(self.token, error, res)
        return GetAttrNamesCommand().token

Back to the top