blob: 62e9df75ca20ac9c6c93548f42ebf2d61d19433f [file] [log] [blame]
Fred Drake20417b71997-12-17 14:17:35 +00001\section{Standard Module \sectcode{xdrlib}}
Guido van Rossume47da0a1997-07-17 16:34:52 +00002\label{module-xdrlib}
Guido van Rossum40006cf1996-08-19 22:58:03 +00003\stmodindex{xdrlib}
4\index{XDR}
Fred Drake3c3d7ce1998-01-08 04:00:30 +00005\index{External Data Representation}
Guido van Rossum40006cf1996-08-19 22:58:03 +00006
Fred Drake19479911998-02-13 06:58:54 +00007\setindexsubitem{(in module xdrlib)}
Guido van Rossum40006cf1996-08-19 22:58:03 +00008
9
Fred Drakeff79a211998-03-14 06:30:13 +000010The \module{xdrlib} module supports the External Data Representation
Fred Drakec5891241998-02-09 19:16:20 +000011Standard as described in \rfc{1014}, written by Sun Microsystems,
Guido van Rossum40006cf1996-08-19 22:58:03 +000012Inc. June 1987. It supports most of the data types described in the
Fred Drakeae18e9f1997-10-24 21:14:36 +000013RFC.
Guido van Rossum40006cf1996-08-19 22:58:03 +000014
Fred Drakeff79a211998-03-14 06:30:13 +000015The \module{xdrlib} module defines two classes, one for packing
Guido van Rossum40006cf1996-08-19 22:58:03 +000016variables into XDR representation, and another for unpacking from XDR
17representation. There are also two exception classes.
18
Fred Drakeff79a211998-03-14 06:30:13 +000019\begin{classdesc}{Packer}{}
20\class{Packer} is the class for packing data into XDR representation.
21The \class{Packer} class is instantiated with no arguments.
22\end{classdesc}
23
24\begin{classdesc}{Unpacker}{data}
25\code{Unpacker} is the complementary class which unpacks XDR data
26values from a string buffer. The input buffer is given as
27\var{data}.
28\end{classdesc}
29
Guido van Rossum40006cf1996-08-19 22:58:03 +000030
31\subsection{Packer Objects}
Fred Drakeff79a211998-03-14 06:30:13 +000032\label{xdr-packer-objects}
Guido van Rossum40006cf1996-08-19 22:58:03 +000033
Fred Drakeff79a211998-03-14 06:30:13 +000034\class{Packer} instances have the following methods:
Guido van Rossum40006cf1996-08-19 22:58:03 +000035
36\begin{funcdesc}{get_buffer}{}
37Returns the current pack buffer as a string.
38\end{funcdesc}
39
40\begin{funcdesc}{reset}{}
41Resets the pack buffer to the empty string.
42\end{funcdesc}
43
44In general, you can pack any of the most common XDR data types by
Fred Drake3c3d7ce1998-01-08 04:00:30 +000045calling the appropriate \code{pack_\var{type}()} method. Each method
Guido van Rossum40006cf1996-08-19 22:58:03 +000046takes a single argument, the value to pack. The following simple data
Fred Drakeff79a211998-03-14 06:30:13 +000047type packing methods are supported: \method{pack_uint()},
48\method{pack_int()}, \method{pack_enum()}, \method{pack_bool()},
49\method{pack_uhyper()}, and \method{pack_hyper()}.
Guido van Rossum40006cf1996-08-19 22:58:03 +000050
Guido van Rossum40006cf1996-08-19 22:58:03 +000051\begin{funcdesc}{pack_float}{value}
52Packs the single-precision floating point number \var{value}.
53\end{funcdesc}
54
55\begin{funcdesc}{pack_double}{value}
56Packs the double-precision floating point number \var{value}.
57\end{funcdesc}
58
59The following methods support packing strings, bytes, and opaque data:
60
Fred Drake3c3d7ce1998-01-08 04:00:30 +000061\begin{funcdesc}{pack_fstring}{n, s}
Guido van Rossum40006cf1996-08-19 22:58:03 +000062Packs a fixed length string, \var{s}. \var{n} is the length of the
63string but it is \emph{not} packed into the data buffer. The string
64is padded with null bytes if necessary to guaranteed 4 byte alignment.
65\end{funcdesc}
66
Fred Drake3c3d7ce1998-01-08 04:00:30 +000067\begin{funcdesc}{pack_fopaque}{n, data}
Guido van Rossum40006cf1996-08-19 22:58:03 +000068Packs a fixed length opaque data stream, similarly to
Fred Drakeff79a211998-03-14 06:30:13 +000069\method{pack_fstring()}.
Guido van Rossum40006cf1996-08-19 22:58:03 +000070\end{funcdesc}
71
72\begin{funcdesc}{pack_string}{s}
73Packs a variable length string, \var{s}. The length of the string is
74first packed as an unsigned integer, then the string data is packed
Fred Drakeff79a211998-03-14 06:30:13 +000075with \method{pack_fstring()}.
Guido van Rossum40006cf1996-08-19 22:58:03 +000076\end{funcdesc}
77
78\begin{funcdesc}{pack_opaque}{data}
79Packs a variable length opaque data string, similarly to
Fred Drakeff79a211998-03-14 06:30:13 +000080\method{pack_string()}.
Guido van Rossum40006cf1996-08-19 22:58:03 +000081\end{funcdesc}
82
83\begin{funcdesc}{pack_bytes}{bytes}
Fred Drakeff79a211998-03-14 06:30:13 +000084Packs a variable length byte stream, similarly to \method{pack_string()}.
Guido van Rossum40006cf1996-08-19 22:58:03 +000085\end{funcdesc}
86
87The following methods support packing arrays and lists:
88
Fred Drakeff79a211998-03-14 06:30:13 +000089\begin{funcdesc}{pack_list}{list, pack_item}
Guido van Rossum40006cf1996-08-19 22:58:03 +000090Packs a \var{list} of homogeneous items. This method is useful for
91lists with an indeterminate size; i.e. the size is not available until
92the entire list has been walked. For each item in the list, an
93unsigned integer \code{1} is packed first, followed by the data value
94from the list. \var{pack_item} is the function that is called to pack
95the individual item. At the end of the list, an unsigned integer
96\code{0} is packed.
97\end{funcdesc}
98
Fred Drakecce10901998-03-17 06:33:25 +000099\begin{funcdesc}{pack_farray}{n, array, pack_item}
Guido van Rossum40006cf1996-08-19 22:58:03 +0000100Packs a fixed length list (\var{array}) of homogeneous items. \var{n}
101is the length of the list; it is \emph{not} packed into the buffer,
Fred Drakeff79a211998-03-14 06:30:13 +0000102but a \exception{ValueError} exception is raised if
103\code{len(\var{array})} is not equal to \var{n}. As above,
104\var{pack_item} is the function used to pack each element.
Guido van Rossum40006cf1996-08-19 22:58:03 +0000105\end{funcdesc}
106
Fred Drakecce10901998-03-17 06:33:25 +0000107\begin{funcdesc}{pack_array}{list, pack_item}
Guido van Rossum40006cf1996-08-19 22:58:03 +0000108Packs a variable length \var{list} of homogeneous items. First, the
109length of the list is packed as an unsigned integer, then each element
Fred Drakeff79a211998-03-14 06:30:13 +0000110is packed as in \method{pack_farray()} above.
Guido van Rossum40006cf1996-08-19 22:58:03 +0000111\end{funcdesc}
112
113\subsection{Unpacker Objects}
Fred Drakeff79a211998-03-14 06:30:13 +0000114\label{xdr-unpacker-objects}
Guido van Rossum40006cf1996-08-19 22:58:03 +0000115
Fred Drakeff79a211998-03-14 06:30:13 +0000116The \class{Unpacker} class offers the following methods:
Guido van Rossum40006cf1996-08-19 22:58:03 +0000117
118\begin{funcdesc}{reset}{data}
119Resets the string buffer with the given \var{data}.
120\end{funcdesc}
121
122\begin{funcdesc}{get_position}{}
123Returns the current unpack position in the data buffer.
124\end{funcdesc}
125
126\begin{funcdesc}{set_position}{position}
127Sets the data buffer unpack position to \var{position}. You should be
Fred Drakeff79a211998-03-14 06:30:13 +0000128careful about using \method{get_position()} and \method{set_position()}.
Guido van Rossum40006cf1996-08-19 22:58:03 +0000129\end{funcdesc}
130
Barry Warsaw102dc411996-12-04 22:05:42 +0000131\begin{funcdesc}{get_buffer}{}
132Returns the current unpack data buffer as a string.
133\end{funcdesc}
134
Guido van Rossum40006cf1996-08-19 22:58:03 +0000135\begin{funcdesc}{done}{}
Fred Drakeff79a211998-03-14 06:30:13 +0000136Indicates unpack completion. Raises an \exception{Error} exception
Guido van Rossum40006cf1996-08-19 22:58:03 +0000137if all of the data has not been unpacked.
138\end{funcdesc}
139
Fred Drakeff79a211998-03-14 06:30:13 +0000140In addition, every data type that can be packed with a \class{Packer},
141can be unpacked with an \class{Unpacker}. Unpacking methods are of the
Fred Drake3c3d7ce1998-01-08 04:00:30 +0000142form \code{unpack_\var{type}()}, and take no arguments. They return the
Fred Drake040e5651997-10-24 21:15:55 +0000143unpacked object.
Guido van Rossum40006cf1996-08-19 22:58:03 +0000144
Guido van Rossum3f247ad1996-09-27 17:11:24 +0000145\begin{funcdesc}{unpack_float}{}
146Unpacks a single-precision floating point number.
147\end{funcdesc}
148
149\begin{funcdesc}{unpack_double}{}
150Unpacks a double-precision floating point number, similarly to
Fred Drakeff79a211998-03-14 06:30:13 +0000151\method{unpack_float()}.
Guido van Rossum3f247ad1996-09-27 17:11:24 +0000152\end{funcdesc}
153
Guido van Rossum40006cf1996-08-19 22:58:03 +0000154In addition, the following methods unpack strings, bytes, and opaque
155data:
156
157\begin{funcdesc}{unpack_fstring}{n}
158Unpacks and returns a fixed length string. \var{n} is the number of
159characters expected. Padding with null bytes to guaranteed 4 byte
160alignment is assumed.
161\end{funcdesc}
162
163\begin{funcdesc}{unpack_fopaque}{n}
164Unpacks and returns a fixed length opaque data stream, similarly to
Fred Drakeff79a211998-03-14 06:30:13 +0000165\method{unpack_fstring()}.
Guido van Rossum40006cf1996-08-19 22:58:03 +0000166\end{funcdesc}
167
Guido van Rossum3f247ad1996-09-27 17:11:24 +0000168\begin{funcdesc}{unpack_string}{}
Guido van Rossum40006cf1996-08-19 22:58:03 +0000169Unpacks and returns a variable length string. The length of the
170string is first unpacked as an unsigned integer, then the string data
Fred Drakeff79a211998-03-14 06:30:13 +0000171is unpacked with \method{unpack_fstring()}.
Guido van Rossum40006cf1996-08-19 22:58:03 +0000172\end{funcdesc}
173
174\begin{funcdesc}{unpack_opaque}{}
175Unpacks and returns a variable length opaque data string, similarly to
Fred Drakeff79a211998-03-14 06:30:13 +0000176\method{unpack_string()}.
Guido van Rossum40006cf1996-08-19 22:58:03 +0000177\end{funcdesc}
178
179\begin{funcdesc}{unpack_bytes}{}
180Unpacks and returns a variable length byte stream, similarly to
Fred Drakeff79a211998-03-14 06:30:13 +0000181\method{unpack_string()}.
Guido van Rossum40006cf1996-08-19 22:58:03 +0000182\end{funcdesc}
183
184The following methods support unpacking arrays and lists:
185
186\begin{funcdesc}{unpack_list}{unpack_item}
187Unpacks and returns a list of homogeneous items. The list is unpacked
188one element at a time
189by first unpacking an unsigned integer flag. If the flag is \code{1},
190then the item is unpacked and appended to the list. A flag of
191\code{0} indicates the end of the list. \var{unpack_item} is the
192function that is called to unpack the items.
193\end{funcdesc}
194
Fred Drakecce10901998-03-17 06:33:25 +0000195\begin{funcdesc}{unpack_farray}{n, unpack_item}
Guido van Rossum40006cf1996-08-19 22:58:03 +0000196Unpacks and returns (as a list) a fixed length array of homogeneous
197items. \var{n} is number of list elements to expect in the buffer.
198As above, \var{unpack_item} is the function used to unpack each element.
199\end{funcdesc}
200
201\begin{funcdesc}{unpack_array}{unpack_item}
202Unpacks and returns a variable length \var{list} of homogeneous items.
203First, the length of the list is unpacked as an unsigned integer, then
Fred Drakeff79a211998-03-14 06:30:13 +0000204each element is unpacked as in \method{unpack_farray()} above.
Guido van Rossum40006cf1996-08-19 22:58:03 +0000205\end{funcdesc}
206
207\subsection{Exceptions}
Fred Drake4b3f0311996-12-13 22:04:31 +0000208\nodename{Exceptions in xdrlib module}
Guido van Rossum40006cf1996-08-19 22:58:03 +0000209
210Exceptions in this module are coded as class instances:
211
212\begin{excdesc}{Error}
Fred Drakeff79a211998-03-14 06:30:13 +0000213The base exception class. \exception{Error} has a single public data
214member \member{msg} containing the description of the error.
Guido van Rossum40006cf1996-08-19 22:58:03 +0000215\end{excdesc}
216
217\begin{excdesc}{ConversionError}
Fred Drakeff79a211998-03-14 06:30:13 +0000218Class derived from \exception{Error}. Contains no additional instance
Guido van Rossum40006cf1996-08-19 22:58:03 +0000219variables.
220\end{excdesc}
221
222Here is an example of how you would catch one of these exceptions:
223
Fred Drake19479911998-02-13 06:58:54 +0000224\begin{verbatim}
Guido van Rossum40006cf1996-08-19 22:58:03 +0000225import xdrlib
226p = xdrlib.Packer()
227try:
228 p.pack_double(8.01)
229except xdrlib.ConversionError, instance:
230 print 'packing the double failed:', instance.msg
Fred Drake19479911998-02-13 06:58:54 +0000231\end{verbatim}