Fred Drake | 20417b7 | 1997-12-17 14:17:35 +0000 | [diff] [blame] | 1 | \section{Standard Module \sectcode{xdrlib}} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 2 | \label{module-xdrlib} |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 3 | \stmodindex{xdrlib} |
| 4 | \index{XDR} |
Fred Drake | 3c3d7ce | 1998-01-08 04:00:30 +0000 | [diff] [blame] | 5 | \index{External Data Representation} |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 6 | |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 7 | |
| 8 | |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 9 | The \module{xdrlib} module supports the External Data Representation |
Fred Drake | c589124 | 1998-02-09 19:16:20 +0000 | [diff] [blame] | 10 | Standard as described in \rfc{1014}, written by Sun Microsystems, |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 11 | Inc. June 1987. It supports most of the data types described in the |
Fred Drake | ae18e9f | 1997-10-24 21:14:36 +0000 | [diff] [blame] | 12 | RFC. |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 13 | |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 14 | The \module{xdrlib} module defines two classes, one for packing |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 15 | variables into XDR representation, and another for unpacking from XDR |
| 16 | representation. There are also two exception classes. |
| 17 | |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 18 | \begin{classdesc}{Packer}{} |
| 19 | \class{Packer} is the class for packing data into XDR representation. |
| 20 | The \class{Packer} class is instantiated with no arguments. |
| 21 | \end{classdesc} |
| 22 | |
| 23 | \begin{classdesc}{Unpacker}{data} |
| 24 | \code{Unpacker} is the complementary class which unpacks XDR data |
| 25 | values from a string buffer. The input buffer is given as |
| 26 | \var{data}. |
| 27 | \end{classdesc} |
| 28 | |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 29 | |
| 30 | \subsection{Packer Objects} |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 31 | \label{xdr-packer-objects} |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 32 | |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 33 | \class{Packer} instances have the following methods: |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 34 | |
| 35 | \begin{funcdesc}{get_buffer}{} |
| 36 | Returns the current pack buffer as a string. |
| 37 | \end{funcdesc} |
| 38 | |
| 39 | \begin{funcdesc}{reset}{} |
| 40 | Resets the pack buffer to the empty string. |
| 41 | \end{funcdesc} |
| 42 | |
| 43 | In general, you can pack any of the most common XDR data types by |
Fred Drake | 3c3d7ce | 1998-01-08 04:00:30 +0000 | [diff] [blame] | 44 | calling the appropriate \code{pack_\var{type}()} method. Each method |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 45 | takes a single argument, the value to pack. The following simple data |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 46 | type packing methods are supported: \method{pack_uint()}, |
| 47 | \method{pack_int()}, \method{pack_enum()}, \method{pack_bool()}, |
| 48 | \method{pack_uhyper()}, and \method{pack_hyper()}. |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 49 | |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 50 | \begin{funcdesc}{pack_float}{value} |
| 51 | Packs the single-precision floating point number \var{value}. |
| 52 | \end{funcdesc} |
| 53 | |
| 54 | \begin{funcdesc}{pack_double}{value} |
| 55 | Packs the double-precision floating point number \var{value}. |
| 56 | \end{funcdesc} |
| 57 | |
| 58 | The following methods support packing strings, bytes, and opaque data: |
| 59 | |
Fred Drake | 3c3d7ce | 1998-01-08 04:00:30 +0000 | [diff] [blame] | 60 | \begin{funcdesc}{pack_fstring}{n, s} |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 61 | Packs a fixed length string, \var{s}. \var{n} is the length of the |
| 62 | string but it is \emph{not} packed into the data buffer. The string |
| 63 | is padded with null bytes if necessary to guaranteed 4 byte alignment. |
| 64 | \end{funcdesc} |
| 65 | |
Fred Drake | 3c3d7ce | 1998-01-08 04:00:30 +0000 | [diff] [blame] | 66 | \begin{funcdesc}{pack_fopaque}{n, data} |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 67 | Packs a fixed length opaque data stream, similarly to |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 68 | \method{pack_fstring()}. |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 69 | \end{funcdesc} |
| 70 | |
| 71 | \begin{funcdesc}{pack_string}{s} |
| 72 | Packs a variable length string, \var{s}. The length of the string is |
| 73 | first packed as an unsigned integer, then the string data is packed |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 74 | with \method{pack_fstring()}. |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 75 | \end{funcdesc} |
| 76 | |
| 77 | \begin{funcdesc}{pack_opaque}{data} |
| 78 | Packs a variable length opaque data string, similarly to |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 79 | \method{pack_string()}. |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 80 | \end{funcdesc} |
| 81 | |
| 82 | \begin{funcdesc}{pack_bytes}{bytes} |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 83 | Packs a variable length byte stream, similarly to \method{pack_string()}. |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 84 | \end{funcdesc} |
| 85 | |
| 86 | The following methods support packing arrays and lists: |
| 87 | |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 88 | \begin{funcdesc}{pack_list}{list, pack_item} |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 89 | Packs a \var{list} of homogeneous items. This method is useful for |
| 90 | lists with an indeterminate size; i.e. the size is not available until |
| 91 | the entire list has been walked. For each item in the list, an |
| 92 | unsigned integer \code{1} is packed first, followed by the data value |
| 93 | from the list. \var{pack_item} is the function that is called to pack |
| 94 | the individual item. At the end of the list, an unsigned integer |
| 95 | \code{0} is packed. |
| 96 | \end{funcdesc} |
| 97 | |
Fred Drake | cce1090 | 1998-03-17 06:33:25 +0000 | [diff] [blame] | 98 | \begin{funcdesc}{pack_farray}{n, array, pack_item} |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 99 | Packs a fixed length list (\var{array}) of homogeneous items. \var{n} |
| 100 | is the length of the list; it is \emph{not} packed into the buffer, |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 101 | but a \exception{ValueError} exception is raised if |
| 102 | \code{len(\var{array})} is not equal to \var{n}. As above, |
| 103 | \var{pack_item} is the function used to pack each element. |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 104 | \end{funcdesc} |
| 105 | |
Fred Drake | cce1090 | 1998-03-17 06:33:25 +0000 | [diff] [blame] | 106 | \begin{funcdesc}{pack_array}{list, pack_item} |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 107 | Packs a variable length \var{list} of homogeneous items. First, the |
| 108 | length of the list is packed as an unsigned integer, then each element |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 109 | is packed as in \method{pack_farray()} above. |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 110 | \end{funcdesc} |
| 111 | |
| 112 | \subsection{Unpacker Objects} |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 113 | \label{xdr-unpacker-objects} |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 114 | |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 115 | The \class{Unpacker} class offers the following methods: |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 116 | |
| 117 | \begin{funcdesc}{reset}{data} |
| 118 | Resets the string buffer with the given \var{data}. |
| 119 | \end{funcdesc} |
| 120 | |
| 121 | \begin{funcdesc}{get_position}{} |
| 122 | Returns the current unpack position in the data buffer. |
| 123 | \end{funcdesc} |
| 124 | |
| 125 | \begin{funcdesc}{set_position}{position} |
| 126 | Sets the data buffer unpack position to \var{position}. You should be |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 127 | careful about using \method{get_position()} and \method{set_position()}. |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 128 | \end{funcdesc} |
| 129 | |
Barry Warsaw | 102dc41 | 1996-12-04 22:05:42 +0000 | [diff] [blame] | 130 | \begin{funcdesc}{get_buffer}{} |
| 131 | Returns the current unpack data buffer as a string. |
| 132 | \end{funcdesc} |
| 133 | |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 134 | \begin{funcdesc}{done}{} |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 135 | Indicates unpack completion. Raises an \exception{Error} exception |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 136 | if all of the data has not been unpacked. |
| 137 | \end{funcdesc} |
| 138 | |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 139 | In addition, every data type that can be packed with a \class{Packer}, |
| 140 | can be unpacked with an \class{Unpacker}. Unpacking methods are of the |
Fred Drake | 3c3d7ce | 1998-01-08 04:00:30 +0000 | [diff] [blame] | 141 | form \code{unpack_\var{type}()}, and take no arguments. They return the |
Fred Drake | 040e565 | 1997-10-24 21:15:55 +0000 | [diff] [blame] | 142 | unpacked object. |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 143 | |
Guido van Rossum | 3f247ad | 1996-09-27 17:11:24 +0000 | [diff] [blame] | 144 | \begin{funcdesc}{unpack_float}{} |
| 145 | Unpacks a single-precision floating point number. |
| 146 | \end{funcdesc} |
| 147 | |
| 148 | \begin{funcdesc}{unpack_double}{} |
| 149 | Unpacks a double-precision floating point number, similarly to |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 150 | \method{unpack_float()}. |
Guido van Rossum | 3f247ad | 1996-09-27 17:11:24 +0000 | [diff] [blame] | 151 | \end{funcdesc} |
| 152 | |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 153 | In addition, the following methods unpack strings, bytes, and opaque |
| 154 | data: |
| 155 | |
| 156 | \begin{funcdesc}{unpack_fstring}{n} |
| 157 | Unpacks and returns a fixed length string. \var{n} is the number of |
| 158 | characters expected. Padding with null bytes to guaranteed 4 byte |
| 159 | alignment is assumed. |
| 160 | \end{funcdesc} |
| 161 | |
| 162 | \begin{funcdesc}{unpack_fopaque}{n} |
| 163 | Unpacks and returns a fixed length opaque data stream, similarly to |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 164 | \method{unpack_fstring()}. |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 165 | \end{funcdesc} |
| 166 | |
Guido van Rossum | 3f247ad | 1996-09-27 17:11:24 +0000 | [diff] [blame] | 167 | \begin{funcdesc}{unpack_string}{} |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 168 | Unpacks and returns a variable length string. The length of the |
| 169 | string is first unpacked as an unsigned integer, then the string data |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 170 | is unpacked with \method{unpack_fstring()}. |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 171 | \end{funcdesc} |
| 172 | |
| 173 | \begin{funcdesc}{unpack_opaque}{} |
| 174 | Unpacks and returns a variable length opaque data string, similarly to |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 175 | \method{unpack_string()}. |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 176 | \end{funcdesc} |
| 177 | |
| 178 | \begin{funcdesc}{unpack_bytes}{} |
| 179 | Unpacks and returns a variable length byte stream, similarly to |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 180 | \method{unpack_string()}. |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 181 | \end{funcdesc} |
| 182 | |
| 183 | The following methods support unpacking arrays and lists: |
| 184 | |
| 185 | \begin{funcdesc}{unpack_list}{unpack_item} |
| 186 | Unpacks and returns a list of homogeneous items. The list is unpacked |
| 187 | one element at a time |
| 188 | by first unpacking an unsigned integer flag. If the flag is \code{1}, |
| 189 | then the item is unpacked and appended to the list. A flag of |
| 190 | \code{0} indicates the end of the list. \var{unpack_item} is the |
| 191 | function that is called to unpack the items. |
| 192 | \end{funcdesc} |
| 193 | |
Fred Drake | cce1090 | 1998-03-17 06:33:25 +0000 | [diff] [blame] | 194 | \begin{funcdesc}{unpack_farray}{n, unpack_item} |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 195 | Unpacks and returns (as a list) a fixed length array of homogeneous |
| 196 | items. \var{n} is number of list elements to expect in the buffer. |
| 197 | As above, \var{unpack_item} is the function used to unpack each element. |
| 198 | \end{funcdesc} |
| 199 | |
| 200 | \begin{funcdesc}{unpack_array}{unpack_item} |
| 201 | Unpacks and returns a variable length \var{list} of homogeneous items. |
| 202 | First, the length of the list is unpacked as an unsigned integer, then |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 203 | each element is unpacked as in \method{unpack_farray()} above. |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 204 | \end{funcdesc} |
| 205 | |
| 206 | \subsection{Exceptions} |
Fred Drake | 4b3f031 | 1996-12-13 22:04:31 +0000 | [diff] [blame] | 207 | \nodename{Exceptions in xdrlib module} |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 208 | |
| 209 | Exceptions in this module are coded as class instances: |
| 210 | |
| 211 | \begin{excdesc}{Error} |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 212 | The base exception class. \exception{Error} has a single public data |
| 213 | member \member{msg} containing the description of the error. |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 214 | \end{excdesc} |
| 215 | |
| 216 | \begin{excdesc}{ConversionError} |
Fred Drake | ff79a21 | 1998-03-14 06:30:13 +0000 | [diff] [blame] | 217 | Class derived from \exception{Error}. Contains no additional instance |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 218 | variables. |
| 219 | \end{excdesc} |
| 220 | |
| 221 | Here is an example of how you would catch one of these exceptions: |
| 222 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 223 | \begin{verbatim} |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 224 | import xdrlib |
| 225 | p = xdrlib.Packer() |
| 226 | try: |
| 227 | p.pack_double(8.01) |
| 228 | except xdrlib.ConversionError, instance: |
| 229 | print 'packing the double failed:', instance.msg |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 230 | \end{verbatim} |