Statistics
| Branch: | Tag: | Revision:

root / ncclient / operations / rpc.py @ 9667bcb2

History | View | Annotate | Download (12.3 kB)

1
# Copyright 2009 Shikhar Bhushan
2
#
3
# Licensed under the Apache License, Version 2.0 (the "License");
4
# you may not use this file except in compliance with the License.
5
# You may obtain a copy of the License at
6
#
7
#    http://www.apache.org/licenses/LICENSE-2.0
8
#
9
# Unless required by applicable law or agreed to in writing, software
10
# distributed under the License is distributed on an "AS IS" BASIS,
11
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14

    
15
from threading import Event, Lock
16
from uuid import uuid1
17

    
18
from ncclient.xml_ import *
19
from ncclient.transport import SessionListener
20

    
21
from errors import OperationError, TimeoutExpiredError, MissingCapabilityError
22

    
23
import logging
24
logger = logging.getLogger("ncclient.operations.rpc")
25

    
26

    
27
class RPCReply:
28

    
29
    """Represents an *<rpc-reply>*. Only concerns itself with whether the
30
    operation was successful.
31

32
    .. note::
33
        If the reply has not yet been parsed there is an implicit, one-time
34
        parsing overhead to accessing the attributes defined by this class and
35
        any subclasses.
36
    """
37

    
38
    def __init__(self, raw):
39
        self._raw = raw
40
        self._parsed = False
41
        self._root = None
42
        self._errors = []
43

    
44
    def __repr__(self):
45
        return self._raw
46

    
47
    def _parsing_hook(self, root):
48
        """Subclass can implement.
49

50
        :type root: :class:`~xml.etree.ElementTree.Element`
51
        """
52
        pass
53

    
54
    def parse(self):
55
        """Parse the *<rpc-reply>*"""
56
        if self._parsed:
57
            return
58
        root = self._root = to_ele(self._raw) # The <rpc-reply> element
59
        # Per RFC 4741 an <ok/> tag is sent when there are no errors or warnings
60
        ok = root.find(qualify("ok"))
61
        if ok is None:
62
            # Create RPCError objects from <rpc-error> elements
63
            error = root.find(qualify("rpc-error"))
64
            if error is not None:
65
                for err in root.getiterator(error.tag):
66
                    # Process a particular <rpc-error>
67
                    self._errors.append(RPCError(err))
68
        self._parsing_hook(root)
69
        self._parsed = True
70

    
71
    @property
72
    def xml(self):
73
        "*<rpc-reply>* as returned"
74
        return self._raw
75

    
76
    @property
77
    def ok(self):
78
        "Boolean value indicating if there were no errors."
79
        if not self._parsed:
80
            self.parse()
81
        return not self._errors # empty list => false
82

    
83
    @property
84
    def error(self):
85
        """Short for :attr:`errors` [0]; :const:`None` if there were no errors.
86
        """
87
        if not self._parsed:
88
            self.parse()
89
        if self._errors:
90
            return self._errors[0]
91
        else:
92
            return None
93

    
94
    @property
95
    def errors(self):
96
        """`list` of :class:`RPCError` objects. Will be empty if there were no
97
        *<rpc-error>* elements in reply.
98
        """
99
        if not self._parsed:
100
            self.parse()
101
        return self._errors
102

    
103

    
104
class RPCError(OperationError):
105

    
106
    """Represents an *<rpc-error>*. It is a type of :exc:`OperationError`
107
    and can be raised like any other exception."""
108

    
109
    def __init__(self, err):
110
        self._type = None
111
        self._severity = None
112
        self._info = None
113
        self._tag = None
114
        self._path = None
115
        self._message = None
116
        for subele in err:
117
            if subele.tag == qualify("error-tag"):
118
                self._tag = subele.text
119
            elif subele.tag == qualify("error-severity"):
120
                self._severity = subele.text
121
            elif subele.tag == qualify("error-info"):
122
                self._info = subele.text
123
            elif subele.tag == qualify("error-path"):
124
                self._path = subele.text
125
            elif subele.tag == qualify("error-message"):
126
                self._message = subele.text
127
        if self.message is not None:
128
            OperationError.__init__(self, self.message)
129
        else:
130
            OperationError.__init__(self)
131

    
132
    @property
133
    def type(self):
134
        "`string` representing text of *error-type* element"
135
        return self._type
136

    
137
    @property
138
    def severity(self):
139
        "`string` representing text of *error-severity* element"
140
        return self._severity
141

    
142
    @property
143
    def tag(self):
144
        "`string` representing text of *error-tag* element"
145
        return self._tag
146

    
147
    @property
148
    def path(self):
149
        "`string` or :const:`None`; representing text of *error-path* element"
150
        return self._path
151

    
152
    @property
153
    def message(self):
154
        "`string` or :const:`None`; representing text of *error-message* element"
155
        return self._message
156

    
157
    @property
158
    def info(self):
159
        "`string` (XML) or :const:`None`, representing *error-info* element"
160
        return self._info
161

    
162

    
163
class RPCReplyListener(SessionListener):
164

    
165
    # internal use
166

    
167
    # one instance per session -- maybe there is a better way??
168
    def __new__(cls, session):
169
        instance = session.get_listener_instance(cls)
170
        if instance is None:
171
            instance = object.__new__(cls)
172
            instance._lock = Lock()
173
            instance._id2rpc = {}
174
            #instance._pipelined = session.can_pipeline
175
            session.add_listener(instance)
176
        return instance
177

    
178
    def register(self, id, rpc):
179
        with self._lock:
180
            self._id2rpc[id] = rpc
181

    
182
    def callback(self, root, raw):
183
        tag, attrs = root
184
        if tag != qualify("rpc-reply"):
185
            return
186
        for key in attrs: # in the <rpc-reply> attributes
187
            logger.debug("key=%s" % key)
188
            if key == "message-id": # if we found msgid attr
189
                id = attrs[key] # get the msgid
190
                with self._lock:
191
                    try:                    
192
                        rpc = self._id2rpc[id] # the corresponding rpc
193
                        logger.debug("Delivering to %r" % rpc)
194
                        rpc.deliver_reply(raw)
195
                    except KeyError:
196
                        raise OperationError("Unknown message-id: %s", id)
197
                    # no catching other exceptions, fail loudly if must
198
                    else:
199
                        # if no error delivering, can del the reference to the RPC
200
                        del self._id2rpc[id]
201
                        break
202
        else:
203
            raise OperationError("Could not find 'message-id' attribute in <rpc-reply>")
204
    
205
    def errback(self, err):
206
        try:
207
            for rpc in self._id2rpc.values():
208
                rpc.deliver_error(err)
209
        finally:
210
            self._id2rpc.clear()
211

    
212

    
213
class RPC(object):
214

    
215
    """Base class for all operations.
216

217
    Directly corresponds to *<rpc>* requests. Handles making the request, and
218
    taking delivery of the reply.
219
    """
220

    
221
    #: Subclasses can specify their dependencies on capabilities. List of URI's
222
    # or abbreviated names, e.g. ':writable-running'. These are verified at the
223
    # time of object creation. If the capability is not available, a
224
    # :exc:`MissingCapabilityError` is raised.
225
    DEPENDS = []
226

    
227
    #: Subclasses can specify a different reply class, but it must be a
228
    # subclass of :class:`RPCReply`.
229
    REPLY_CLS = RPCReply
230

    
231
    def __init__(self, session, async=False, timeout=None, raise_mode="none"):
232
        self._session = session
233
        try:
234
            for cap in self.DEPENDS:
235
                self._assert(cap)
236
        except AttributeError:
237
            pass
238
        self._async = async
239
        self._timeout = timeout
240
        self._raise_mode = raise_mode
241
        self._id = uuid1().urn # Keeps things simple instead of having a class attr that has to be locked
242
        self._listener = RPCReplyListener(session)
243
        self._listener.register(self._id, self)
244
        self._reply = None
245
        self._error = None
246
        self._event = Event()
247

    
248
    def _build(self, subele):
249
        # internal
250
        ele = new_ele("rpc", {"message-id": self._id}, xmlns=BASE_NS_1_0)
251
        ele.append(subele)
252
        return to_xml(ele)
253

    
254
    def _request(self, op):
255
        """Subclasses call this method to make the RPC request.
256
        
257
        In synchronous mode, waits until the reply is received and returns
258
        :class:`RPCReply`.
259
        
260
        In asynchronous mode, returns immediately, returning a reference to this
261
        object. The :attr:`event` attribute will be set when the reply has been
262
        received (see :attr:`reply`) or an error occured (see :attr:`error`).
263
        
264
        :arg opspec: :ref:`dtree` for the operation
265
        :type opspec: :obj:`dict` or :obj:`string` or :class:`~xml.etree.ElementTree.Element`
266
        :rtype: :class:`RPCReply` (sync) or :class:`RPC` (async)
267
        """
268
        logger.info('Requesting %r' % self.__class__.__name__)
269
        req = self._build(op)
270
        self._session.send(req)
271
        if self._async:
272
            logger.debug('Async request, returning %r', self)
273
            return self
274
        else:
275
            logger.debug('Sync request, will wait for timeout=%r' %
276
                         self._timeout)
277
            self._event.wait(self._timeout)
278
            if self._event.isSet():
279
                if self._error:
280
                    # Error that prevented reply delivery
281
                    raise self._error
282
                self._reply.parse()
283
                if self._reply.error is not None:
284
                    # <rpc-error>'s [ RPCError ]
285
                    if self._raise_mode == "all":
286
                        raise self._reply.error
287
                    elif (self._raise_mode == "errors" and
288
                          self._reply.error.type == "error"):
289
                        raise self._reply.error
290
                return self._reply
291
            else:
292
                raise TimeoutExpiredError
293

    
294
    def request(self, *args, **kwds):
295
        """Subclasses implement this method. Here, the operation is constructed
296
        in :ref:`dtree`, and the result of :meth:`_request` returned."""
297
        return self._request(self.SPEC)
298
    
299
    def _assert(self, capability):
300
        """Subclasses can use this method to verify that a capability is available
301
        with the NETCONF server, before making a request that requires it. A
302
        :exc:`MissingCapabilityError` will be raised if the capability is not
303
        available."""
304
        if capability not in self._session.server_capabilities:
305
            raise MissingCapabilityError('Server does not support [%s]' %
306
                                         capability)
307
    
308
    def deliver_reply(self, raw):
309
        # internal use
310
        self._reply = self.REPLY_CLS(raw)
311
        self._event.set()
312

    
313
    def deliver_error(self, err):
314
        # internal use
315
        self._error = err
316
        self._event.set()
317

    
318
    @property
319
    def reply(self):
320
        ":class:`RPCReply` element if reply has been received or :const:`None`"
321
        return self._reply
322

    
323
    @property
324
    def error(self):
325
        """:exc:`Exception` type if an error occured or :const:`None`.
326
        
327
        .. note::
328
            This represents an error which prevented a reply from being
329
            received. An *<rpc-error>* does not fall in that category -- see
330
            :class:`RPCReply` for that.
331
        """
332
        return self._error
333

    
334
    @property
335
    def id(self):
336
        "The *message-id* for this RPC"
337
        return self._id
338

    
339
    @property
340
    def session(self):
341
        """The :class:`~ncclient.transport.Session` object associated with this
342
        RPC"""
343
        return self._session
344

    
345
    @property
346
    def event(self):
347
        """:class:`~threading.Event` that is set when reply has been received or
348
        error occured."""
349
        return self._event
350

    
351
    def set_async(self, async=True):
352
        """Set asynchronous mode for this RPC."""
353
        self._async = async
354
        if async and not session.can_pipeline:
355
            raise UserWarning('Asynchronous mode not supported for this device/session')
356

    
357
    def set_raise_mode(self, mode):
358
        assert(choice in ("all", "errors", "none"))
359
        self._raise_mode = mode
360

    
361
    def set_timeout(self, timeout):
362
        """Set the timeout for synchronous waiting; defining how long the RPC
363
        request will block on a reply before raising an error. Irrelevant for
364
        asynchronous usage."""
365
        self._timeout = timeout
366

    
367
    #: Whether this RPC is asynchronous
368
    is_async = property(fget=lambda self: self._async, fset=set_async)
369

    
370
    #: Timeout for synchronous waiting
371
    timeout = property(fget=lambda self: self._timeout, fset=set_timeout)