File: exception.md

package info (click to toggle)
pytango 10.0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 10,216 kB
  • sloc: python: 28,206; cpp: 16,380; sql: 255; sh: 82; makefile: 43
file content (343 lines) | stat: -rw-r--r-- 12,825 bytes parent folder | download | duplicates (3)
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
```{eval-rst}
.. currentmodule:: tango
```

```{highlight} python
:linenothreshold: 4
```

(pytango-exception-api)=

# Exception API

## Exception definition

All the exceptions that can be thrown by the underlying Tango C++ API are available
in the PyTango python module. Hence a user can catch one of the following
exceptions:

> - {class}`DevFailed`
> - {class}`ConnectionFailed`
> - {class}`CommunicationFailed`
> - {class}`WrongNameSyntax`
> - {class}`NonDbDevice`
> - {class}`WrongData`
> - {class}`NonSupportedFeature`
> - {class}`AsynCall`
> - {class}`AsynReplyNotArrived`
> - {class}`EventSystemFailed`
> - {class}`NamedDevFailedList`
> - {class}`DeviceUnlocked`

When an exception is caught, the sys.exc_info() function returns a tuple of three
values that give information about the exception that is currently being handled.
The values returned are (type, value, traceback).
Since most functions don't need access to the traceback, the best solution is to
use something like exctype, value = sys.exc_info()\[:2\] to extract only the exception
type and value. If one of the Tango exceptions is caught, the exctype will be class
name of the exception (DevFailed, .. etc) and the value a tuple of dictionary objects
all of which containing the following kind of key-value pairs:

- **reason**: a string describing the error type (more readable than the associated error code)
- **desc**: a string describing in plain text the reason of the error.
- **origin**: a string giving the name of the (C++ API) method which thrown the exception
- **severity**: one of the strings WARN, ERR, PANIC giving severity level of the error.

```
import tango

#  How to protect the script from exceptions raised by the Tango
try:
    # Get proxy on a non existing device should throw an exception
    device = tango.DeviceProxy("non/existing/device")
except DevFailed as df:
    print("Failed to create proxy to non/existing/device:\n%s" % df)
```

## Throwing exception in a device server

The C++ {class}`~tango::Except` class with its most important methods have
been wrapped to Python. Therefore, in a Python device server, you have the
following methods to throw, re-throw or print a Tango::DevFailed exception :

- {meth}`~tango.Except.throw_exception` which is a static method
- {meth}`~tango.Except.re_throw_exception` which is also a static method
- {meth}`~tango.Except.print_exception` which is also a static method

The following code is an example of a command method requesting a command on a
sub-device and re-throwing the exception in case of:

```
try:
    dev.command_inout("SubDevCommand")
except tango.DevFailed as df:
    tango.Except.re_throw_exception(df,
        "MyClass_CommandFailed",
        "Sub device command SubdevCommand failed",
        "Command()")
```

```{eval-rst}

:line 2: Send the command to the sub device in a try/catch block
:line 4-6: Re-throw the exception and add a new level of information in the exception stack
```

## Exception API

```{eval-rst}
.. autoclass:: tango.Except
   :show-inheritance:
   :members:
```

```{eval-rst}
.. autoclass:: tango.DevError
   :show-inheritance:
   :members:
```

```{eval-rst}
.. autoexception:: tango.DevFailed
   :show-inheritance:
   :members:
```

```{eval-rst}
.. autoexception:: tango.ConnectionFailed
   :show-inheritance:

    This exception is thrown when a problem occurs during the connection
    establishment between the application and the device. The API is stateless.
    This means that DeviceProxy constructors filter most of the exception
    except for cases described in the following table.

    The desc DevError structure field allows a user to get more precise information. These informations are :

    **DB_DeviceNotDefined**
        The name of the device not defined in the database
    **API_CommandFailed**
        The device and command name
    **API_CantConnectToDevice**
        The device name
    **API_CorbaException**
        The name of the CORBA exception, its reason, its locality, its completed
        flag and its minor code
    **API_CantConnectToDatabase**
        The database server host and its port number
    **API_DeviceNotExported**
        The device name

```

```{eval-rst}
.. autoexception:: tango.CommunicationFailed
   :show-inheritance:

    This exception is thrown when a communication problem is detected during
    the communication between the client application and the device server. It
    is a two levels Tango::DevError structure. In case of time-out, the DevError
    structures fields are:

    +-------+--------------------+-------------------------------------------------+----------+
    | Level |      Reason        |                   Desc                          | Severity |
    +=======+====================+=================================================+==========+
    |   0   | API_CorbaException | CORBA exception fields translated into a string |   ERR    |
    +-------+--------------------+-------------------------------------------------+----------+
    |   1   | API_DeviceTimedOut | String with time-out value and device name      |   ERR    |
    +-------+--------------------+-------------------------------------------------+----------+

    For all other communication errors, the DevError structures fields are:

    +-------+-------------------------+----------------------------------------------------+----------+
    | Level |         Reason          |                     Desc                           | Severity |
    +=======+=========================+====================================================+==========+
    |   0   | API_CorbaException      |   CORBA exception fields translated into a string  |   ERR    |
    +-------+-------------------------+----------------------------------------------------+----------+
    |   1   | API_CommunicationFailed | String with device, method, command/attribute name |   ERR    |
    +-------+-------------------------+----------------------------------------------------+----------+

```

```{eval-rst}
.. autoexception:: tango.WrongNameSyntax
   :show-inheritance:
```

This exception has only one level of Tango::DevError structure. The possible
value for the reason field are :

> **API_UnsupportedProtocol**
>
> : This error occurs when trying to build a DeviceProxy or an AttributeProxy
>   instance for a device with an unsupported protocol. Refer to the appendix
>   on device naming syntax to get the list of supported database modifier
>
> **API_UnsupportedDBaseModifier**
>
> : This error occurs when trying to build a DeviceProxy or an AttributeProxy
>   instance for a device/attribute with a database modifier unsupported.
>   Refer to the appendix on device naming syntax to get the list of
>   supported database modifier
>
> **API_WrongDeviceNameSyntax**
>
> : This error occurs for all the other error in device name syntax. It is
>   thrown by the DeviceProxy class constructor.
>
> **API_WrongAttributeNameSyntax**
>
> : This error occurs for all the other error in attribute name syntax. It
>   is thrown by the AttributeProxy class constructor.
>
> **API_WrongWildcardUsage**
>
> : This error occurs if there is a bad usage of the wildcard character

```{eval-rst}
.. autoexception:: tango.NonDbDevice
   :show-inheritance:

    This exception has only one level of Tango::DevError structure. The reason
    field is set to API_NonDatabaseDevice. This exception is thrown by the API
    when using the DeviceProxy or AttributeProxy class database access for
    non-database device.
```

```{eval-rst}
.. autoexception:: tango.WrongData
   :show-inheritance:

    This exception has only one level of Tango::DevError structure.
    The possible value for the reason field are :

    **API_EmptyDbDatum**
        This error occurs when trying to extract data from an empty DbDatum
        object
    **API_IncompatibleArgumentType**
        This error occurs when trying to extract data with a type different
        than the type used to send the data
    **API_EmptyDeviceAttribute**
        This error occurs when trying to extract data from an empty
        DeviceAttribute object
    **API_IncompatibleAttrArgumentType**
        This error occurs when trying to extract attribute data with a type
        different than the type used to send the data
    **API_EmptyDeviceData**
        This error occurs when trying to extract data from an empty DeviceData
        object
    **API_IncompatibleCmdArgumentType**
        This error occurs when trying to extract command data with a type
        different than the type used to send the data
```

```{eval-rst}
.. autoexception:: tango.NonSupportedFeature
   :show-inheritance:

    This exception is thrown by the API layer when a request to a feature
    implemented in Tango device interface release n is requested for a device
    implementing Tango device interface n-x. There is one possible value for
    the reason field which is API_UnsupportedFeature.
```

```{eval-rst}
.. autoexception:: tango.AsynCall
   :show-inheritance:

    This exception is thrown by the API layer when a the asynchronous model id
    badly used. This exception has only one level of Tango::DevError structure.
    The possible value for the reason field are :

    **API_BadAsynPollId**
        This error occurs when using an asynchronous request identifier which is not
        valid any more.
    **API_BadAsyn**
        This error occurs when trying to fire callback when no callback has been
        previously registered
    **API_BadAsynReqType**
        This error occurs when trying to get result of an asynchronous request with
        an asynchronous request identifier returned by a non-coherent asynchronous
        request (For instance, using the asynchronous request identifier returned
        by a command_inout_asynch() method with a read_attribute_reply() attribute).
```

```{eval-rst}
.. autoexception:: tango.AsynReplyNotArrived
   :show-inheritance:

    This exception is thrown by the API layer when:

        - a request to get asynchronous reply is made and the reply is not yet arrived
        - a blocking wait with timeout for asynchronous reply is made and the timeout expired.

    There is one possible value for the reason field which is API_AsynReplyNotArrived.
```

```{eval-rst}
.. autoexception:: tango.EventSystemFailed
   :show-inheritance:

    This exception is thrown by the API layer when subscribing or unsubscribing
    from an event failed. This exception has only one level of Tango::DevError
    structure. The possible value for the reason field are :

    **API_NotificationServiceFailed**
        This error occurs when the subscribe_event() method failed trying to
        access the CORBA notification service
    **API_EventNotFound**
        This error occurs when you are using an incorrect event_id in the
        unsubscribe_event() method
    **API_InvalidArgs**
        This error occurs when NULL pointers are passed to the subscribe or
        unsubscribe event methods
    **API_MethodArgument**
        This error occurs when trying to subscribe to an event which has already
        been subsribed to
    **API_DSFailedRegisteringEvent**
        This error means that the device server to which the device belongs to
        failed when it tries to register the event. Most likely, it means that
        there is no event property defined
    **API_EventNotFound**
        Occurs when using a wrong event identifier in the unsubscribe_event
        method

```

```{eval-rst}
.. autoexception:: tango.DeviceUnlocked
   :show-inheritance:

    This exception is thrown by the API layer when a device locked by the
    process has been unlocked by an admin client. This exception has two levels
    of Tango::DevError structure. There is only possible value for the reason
    field which is

    **API_DeviceUnlocked**
        The device has been unlocked by another client (administration client)

    The first level is the message reported by the Tango kernel from the server
    side. The second layer is added by the client API layer with informations on
    which API call generates the exception and device name.
```

```{eval-rst}
.. autoexception:: tango.NotAllowed
   :show-inheritance:

```

```{eval-rst}
.. autoexception:: tango.NamedDevFailedList
   :show-inheritance:

    This exception is only thrown by the DeviceProxy::write_attributes()
    method. In this case, it is necessary to have a new class of exception
    to transfer the error stack for several attribute(s) which failed during
    the writing. Therefore, this exception class contains for each attributes
    which failed :

        - The name of the attribute
        - Its index in the vector passed as argumen tof the write_attributes() method
        - The error stack
```