Statistics
| Branch: | Tag: | Revision:

root / ncclient / operations / rpc.py @ 22566666

History | View | Annotate | Download (12.4 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-type"):
118
                self._type = subele.text
119
            elif subele.tag == qualify("error-tag"):
120
                self._tag = subele.text
121
            elif subele.tag == qualify("error-severity"):
122
                self._severity = subele.text
123
            elif subele.tag == qualify("error-info"):
124
                self._info = subele.text
125
            elif subele.tag == qualify("error-path"):
126
                self._path = subele.text
127
            elif subele.tag == qualify("error-message"):
128
                self._message = subele.text
129
        if self.message is not None:
130
            OperationError.__init__(self, self.message)
131
        else:
132
            OperationError.__init__(self, to_dict())
133
    
134
    def to_dict(self):
135
        return {
136
            'type': self.type,
137
            'tag': self.severity,
138
            'path': self.path,
139
            'message': self.message,
140
            'info': self.info
141
        }
142
    
143
    @property
144
    def type(self):
145
        "`string` representing text of *error-type* element"
146
        return self._type
147

    
148
    @property
149
    def severity(self):
150
        "`string` representing text of *error-severity* element"
151
        return self._severity
152

    
153
    @property
154
    def tag(self):
155
        "`string` representing text of *error-tag* element"
156
        return self._tag
157

    
158
    @property
159
    def path(self):
160
        "`string` or :const:`None`; representing text of *error-path* element"
161
        return self._path
162

    
163
    @property
164
    def message(self):
165
        "`string` or :const:`None`; representing text of *error-message* element"
166
        return self._message
167

    
168
    @property
169
    def info(self):
170
        "`string` (XML) or :const:`None`, representing *error-info* element"
171
        return self._info
172

    
173

    
174
class RPCReplyListener(SessionListener):
175

    
176
    # internal use
177

    
178
    # one instance per session -- maybe there is a better way??
179
    def __new__(cls, session):
180
        instance = session.get_listener_instance(cls)
181
        if instance is None:
182
            instance = object.__new__(cls)
183
            instance._lock = Lock()
184
            instance._id2rpc = {}
185
            #instance._pipelined = session.can_pipeline
186
            session.add_listener(instance)
187
        return instance
188

    
189
    def register(self, id, rpc):
190
        with self._lock:
191
            self._id2rpc[id] = rpc
192

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

    
222

    
223
class RPC(object):
224

    
225
    """Base class for all operations.
226

227
    Directly corresponds to *<rpc>* requests. Handles making the request, and
228
    taking delivery of the reply.
229
    """
230

    
231
    #: Subclasses can specify their dependencies on capabilities. List of URI's
232
    # or abbreviated names, e.g. ':writable-running'. These are verified at the
233
    # time of object creation. If the capability is not available, a
234
    # :exc:`MissingCapabilityError` is raised.
235
    DEPENDS = []
236

    
237
    #: Subclasses can specify a different reply class, but it must be a
238
    # subclass of :class:`RPCReply`.
239
    REPLY_CLS = RPCReply
240

    
241
    def __init__(self, session, async=False, timeout=None, raise_mode="none"):
242
        self._session = session
243
        try:
244
            for cap in self.DEPENDS:
245
                self._assert(cap)
246
        except AttributeError:
247
            pass
248
        self._async = async
249
        self._timeout = timeout
250
        self._raise_mode = raise_mode
251
        self._id = uuid1().urn # Keeps things simple instead of having a class attr that has to be locked
252
        self._listener = RPCReplyListener(session)
253
        self._listener.register(self._id, self)
254
        self._reply = None
255
        self._error = None
256
        self._event = Event()
257

    
258
    def _build(self, subele):
259
        # internal
260
        ele = new_ele("rpc", {"message-id": self._id}, xmlns=BASE_NS_1_0)
261
        ele.append(subele)
262
        return to_xml(ele)
263

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

    
303
    def request(self, *args, **kwds):
304
        "Subclasses implement this method."
305
        return self._request(self.SPEC)
306
    
307
    def _assert(self, capability):
308
        """Subclasses can use this method to verify that a capability is available
309
        with the NETCONF server, before making a request that requires it. A
310
        :exc:`MissingCapabilityError` will be raised if the capability is not
311
        available."""
312
        if capability not in self._session.server_capabilities:
313
            raise MissingCapabilityError('Server does not support [%s]' %
314
                                         capability)
315
    
316
    def deliver_reply(self, raw):
317
        # internal use
318
        self._reply = self.REPLY_CLS(raw)
319
        self._event.set()
320

    
321
    def deliver_error(self, err):
322
        # internal use
323
        self._error = err
324
        self._event.set()
325

    
326
    @property
327
    def reply(self):
328
        ":class:`RPCReply` element if reply has been received or :const:`None`"
329
        return self._reply
330

    
331
    @property
332
    def error(self):
333
        """:exc:`Exception` type if an error occured or :const:`None`.
334
        
335
        .. note::
336
            This represents an error which prevented a reply from being
337
            received. An *<rpc-error>* does not fall in that category -- see
338
            :class:`RPCReply` for that.
339
        """
340
        return self._error
341

    
342
    @property
343
    def id(self):
344
        "The *message-id* for this RPC"
345
        return self._id
346

    
347
    @property
348
    def session(self):
349
        """The :class:`~ncclient.transport.Session` object associated with this
350
        RPC"""
351
        return self._session
352

    
353
    @property
354
    def event(self):
355
        """:class:`~threading.Event` that is set when reply has been received or
356
        error occured."""
357
        return self._event
358

    
359
    def set_async(self, async=True):
360
        """Set asynchronous mode for this RPC."""
361
        self._async = async
362
        if async and not session.can_pipeline:
363
            raise UserWarning('Asynchronous mode not supported for this device/session')
364

    
365
    def set_raise_mode(self, mode):
366
        assert(choice in ("all", "errors", "none"))
367
        self._raise_mode = mode
368

    
369
    def set_timeout(self, timeout):
370
        """Set the timeout for synchronous waiting; defining how long the RPC
371
        request will block on a reply before raising an error. Irrelevant for
372
        asynchronous usage."""
373
        self._timeout = timeout
374

    
375
    #: Whether this RPC is asynchronous
376
    is_async = property(fget=lambda self: self._async, fset=set_async)
377

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