2 :mod:`xdrlib` --- Encode and decode XDR data
3 ============================================
6 :synopsis: Encoders and decoders for the External Data Representation (XDR).
11 single: External Data Representation
13 The :mod:`xdrlib` module supports the External Data Representation Standard as
14 described in :rfc:`1014`, written by Sun Microsystems, Inc. June 1987. It
15 supports most of the data types described in the RFC.
17 The :mod:`xdrlib` module defines two classes, one for packing variables into XDR
18 representation, and another for unpacking from XDR representation. There are
19 also two exception classes.
24 :class:`Packer` is the class for packing data into XDR representation. The
25 :class:`Packer` class is instantiated with no arguments.
28 .. class:: Unpacker(data)
30 ``Unpacker`` is the complementary class which unpacks XDR data values from a
31 string buffer. The input buffer is given as *data*.
36 :rfc:`1014` - XDR: External Data Representation Standard
37 This RFC defined the encoding of data which was XDR at the time this module was
38 originally written. It has apparently been obsoleted by :rfc:`1832`.
40 :rfc:`1832` - XDR: External Data Representation Standard
41 Newer RFC that provides a revised definition of XDR.
44 .. _xdr-packer-objects:
49 :class:`Packer` instances have the following methods:
52 .. method:: Packer.get_buffer()
54 Returns the current pack buffer as a string.
57 .. method:: Packer.reset()
59 Resets the pack buffer to the empty string.
61 In general, you can pack any of the most common XDR data types by calling the
62 appropriate ``pack_type()`` method. Each method takes a single argument, the
63 value to pack. The following simple data type packing methods are supported:
64 :meth:`pack_uint`, :meth:`pack_int`, :meth:`pack_enum`, :meth:`pack_bool`,
65 :meth:`pack_uhyper`, and :meth:`pack_hyper`.
68 .. method:: Packer.pack_float(value)
70 Packs the single-precision floating point number *value*.
73 .. method:: Packer.pack_double(value)
75 Packs the double-precision floating point number *value*.
77 The following methods support packing strings, bytes, and opaque data:
80 .. method:: Packer.pack_fstring(n, s)
82 Packs a fixed length string, *s*. *n* is the length of the string but it is
83 *not* packed into the data buffer. The string is padded with null bytes if
84 necessary to guaranteed 4 byte alignment.
87 .. method:: Packer.pack_fopaque(n, data)
89 Packs a fixed length opaque data stream, similarly to :meth:`pack_fstring`.
92 .. method:: Packer.pack_string(s)
94 Packs a variable length string, *s*. The length of the string is first packed
95 as an unsigned integer, then the string data is packed with
99 .. method:: Packer.pack_opaque(data)
101 Packs a variable length opaque data string, similarly to :meth:`pack_string`.
104 .. method:: Packer.pack_bytes(bytes)
106 Packs a variable length byte stream, similarly to :meth:`pack_string`.
108 The following methods support packing arrays and lists:
111 .. method:: Packer.pack_list(list, pack_item)
113 Packs a *list* of homogeneous items. This method is useful for lists with an
114 indeterminate size; i.e. the size is not available until the entire list has
115 been walked. For each item in the list, an unsigned integer ``1`` is packed
116 first, followed by the data value from the list. *pack_item* is the function
117 that is called to pack the individual item. At the end of the list, an unsigned
118 integer ``0`` is packed.
120 For example, to pack a list of integers, the code might appear like this::
124 p.pack_list([1, 2, 3], p.pack_int)
127 .. method:: Packer.pack_farray(n, array, pack_item)
129 Packs a fixed length list (*array*) of homogeneous items. *n* is the length of
130 the list; it is *not* packed into the buffer, but a :exc:`ValueError` exception
131 is raised if ``len(array)`` is not equal to *n*. As above, *pack_item* is the
132 function used to pack each element.
135 .. method:: Packer.pack_array(list, pack_item)
137 Packs a variable length *list* of homogeneous items. First, the length of the
138 list is packed as an unsigned integer, then each element is packed as in
139 :meth:`pack_farray` above.
142 .. _xdr-unpacker-objects:
147 The :class:`Unpacker` class offers the following methods:
150 .. method:: Unpacker.reset(data)
152 Resets the string buffer with the given *data*.
155 .. method:: Unpacker.get_position()
157 Returns the current unpack position in the data buffer.
160 .. method:: Unpacker.set_position(position)
162 Sets the data buffer unpack position to *position*. You should be careful about
163 using :meth:`get_position` and :meth:`set_position`.
166 .. method:: Unpacker.get_buffer()
168 Returns the current unpack data buffer as a string.
171 .. method:: Unpacker.done()
173 Indicates unpack completion. Raises an :exc:`Error` exception if all of the
174 data has not been unpacked.
176 In addition, every data type that can be packed with a :class:`Packer`, can be
177 unpacked with an :class:`Unpacker`. Unpacking methods are of the form
178 ``unpack_type()``, and take no arguments. They return the unpacked object.
181 .. method:: Unpacker.unpack_float()
183 Unpacks a single-precision floating point number.
186 .. method:: Unpacker.unpack_double()
188 Unpacks a double-precision floating point number, similarly to
189 :meth:`unpack_float`.
191 In addition, the following methods unpack strings, bytes, and opaque data:
194 .. method:: Unpacker.unpack_fstring(n)
196 Unpacks and returns a fixed length string. *n* is the number of characters
197 expected. Padding with null bytes to guaranteed 4 byte alignment is assumed.
200 .. method:: Unpacker.unpack_fopaque(n)
202 Unpacks and returns a fixed length opaque data stream, similarly to
203 :meth:`unpack_fstring`.
206 .. method:: Unpacker.unpack_string()
208 Unpacks and returns a variable length string. The length of the string is first
209 unpacked as an unsigned integer, then the string data is unpacked with
210 :meth:`unpack_fstring`.
213 .. method:: Unpacker.unpack_opaque()
215 Unpacks and returns a variable length opaque data string, similarly to
216 :meth:`unpack_string`.
219 .. method:: Unpacker.unpack_bytes()
221 Unpacks and returns a variable length byte stream, similarly to
222 :meth:`unpack_string`.
224 The following methods support unpacking arrays and lists:
227 .. method:: Unpacker.unpack_list(unpack_item)
229 Unpacks and returns a list of homogeneous items. The list is unpacked one
230 element at a time by first unpacking an unsigned integer flag. If the flag is
231 ``1``, then the item is unpacked and appended to the list. A flag of ``0``
232 indicates the end of the list. *unpack_item* is the function that is called to
236 .. method:: Unpacker.unpack_farray(n, unpack_item)
238 Unpacks and returns (as a list) a fixed length array of homogeneous items. *n*
239 is number of list elements to expect in the buffer. As above, *unpack_item* is
240 the function used to unpack each element.
243 .. method:: Unpacker.unpack_array(unpack_item)
245 Unpacks and returns a variable length *list* of homogeneous items. First, the
246 length of the list is unpacked as an unsigned integer, then each element is
247 unpacked as in :meth:`unpack_farray` above.
255 Exceptions in this module are coded as class instances:
260 The base exception class. :exc:`Error` has a single public data member
261 :attr:`msg` containing the description of the error.
264 .. exception:: ConversionError
266 Class derived from :exc:`Error`. Contains no additional instance variables.
268 Here is an example of how you would catch one of these exceptions::
274 except xdrlib.ConversionError, instance:
275 print 'packing the double failed:', instance.msg