Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 1 | :mod:`struct` --- Interpret bytes as packed binary data |
Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 2 | ======================================================= |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 3 | |
| 4 | .. module:: struct |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 5 | :synopsis: Interpret bytes as packed binary data. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 6 | |
| 7 | .. index:: |
| 8 | pair: C; structures |
| 9 | triple: packing; binary; data |
| 10 | |
| 11 | This module performs conversions between Python values and C structs represented |
Mark Dickinson | 6abf182 | 2010-04-12 21:00:59 +0000 | [diff] [blame] | 12 | as Python :class:`bytes` objects. This can be used in handling binary data |
| 13 | stored in files or from network connections, among other sources. It uses |
| 14 | :ref:`struct-format-strings` as compact descriptions of the layout of the C |
| 15 | structs and the intended conversion to/from Python values. |
| 16 | |
| 17 | .. note:: |
| 18 | |
| 19 | By default, the result of packing a given C struct includes pad bytes in |
| 20 | order to maintain proper alignment for the C types involved; similarly, |
| 21 | alignment is taken into account when unpacking. This behavior is chosen so |
| 22 | that the bytes of a packed struct correspond exactly to the layout in memory |
Mark Dickinson | cb532f1 | 2010-06-15 08:42:37 +0000 | [diff] [blame] | 23 | of the corresponding C struct. To handle platform-independent data formats |
Senthil Kumaran | 916bd38 | 2010-10-15 12:55:19 +0000 | [diff] [blame] | 24 | or omit implicit pad bytes, use ``standard`` size and alignment instead of |
| 25 | ``native`` size and alignment: see :ref:`struct-alignment` for details. |
Mark Dickinson | 6abf182 | 2010-04-12 21:00:59 +0000 | [diff] [blame] | 26 | |
| 27 | Functions and Exceptions |
| 28 | ------------------------ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 29 | |
| 30 | The module defines the following exception and functions: |
| 31 | |
| 32 | |
| 33 | .. exception:: error |
| 34 | |
Mark Dickinson | 6abf182 | 2010-04-12 21:00:59 +0000 | [diff] [blame] | 35 | Exception raised on various occasions; argument is a string describing what |
| 36 | is wrong. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 37 | |
| 38 | |
| 39 | .. function:: pack(fmt, v1, v2, ...) |
| 40 | |
Mark Dickinson | fdb99f1 | 2010-06-12 16:30:53 +0000 | [diff] [blame] | 41 | Return a bytes object containing the values *v1*, *v2*, ... packed according |
| 42 | to the format string *fmt*. The arguments must match the values required by |
| 43 | the format exactly. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 44 | |
| 45 | |
| 46 | .. function:: pack_into(fmt, buffer, offset, v1, v2, ...) |
| 47 | |
Mark Dickinson | fdb99f1 | 2010-06-12 16:30:53 +0000 | [diff] [blame] | 48 | Pack the values *v1*, *v2*, ... according to the format string *fmt* and |
| 49 | write the packed bytes into the writable buffer *buffer* starting at |
| 50 | position *offset*. Note that *offset* is a required argument. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 51 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 52 | |
Mark Dickinson | fdb99f1 | 2010-06-12 16:30:53 +0000 | [diff] [blame] | 53 | .. function:: unpack(fmt, buffer) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 54 | |
Mark Dickinson | fdb99f1 | 2010-06-12 16:30:53 +0000 | [diff] [blame] | 55 | Unpack from the buffer *buffer* (presumably packed by ``pack(fmt, ...)``) |
| 56 | according to the format string *fmt*. The result is a tuple even if it |
| 57 | contains exactly one item. The buffer must contain exactly the amount of |
| 58 | data required by the format (``len(bytes)`` must equal ``calcsize(fmt)``). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 59 | |
| 60 | |
Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 61 | .. function:: unpack_from(fmt, buffer, offset=0) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 62 | |
Mark Dickinson | fdb99f1 | 2010-06-12 16:30:53 +0000 | [diff] [blame] | 63 | Unpack from *buffer* starting at position *offset*, according to the format |
| 64 | string *fmt*. The result is a tuple even if it contains exactly one |
| 65 | item. *buffer* must contain at least the amount of data required by the |
| 66 | format (``len(buffer[offset:])`` must be at least ``calcsize(fmt)``). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 67 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 68 | |
| 69 | .. function:: calcsize(fmt) |
| 70 | |
Mark Dickinson | fdb99f1 | 2010-06-12 16:30:53 +0000 | [diff] [blame] | 71 | Return the size of the struct (and hence of the bytes object produced by |
| 72 | ``pack(fmt, ...)``) corresponding to the format string *fmt*. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 73 | |
Mark Dickinson | 6abf182 | 2010-04-12 21:00:59 +0000 | [diff] [blame] | 74 | .. _struct-format-strings: |
| 75 | |
| 76 | Format Strings |
| 77 | -------------- |
| 78 | |
| 79 | Format strings are the mechanism used to specify the expected layout when |
Mark Dickinson | cfd56f2 | 2010-06-12 18:37:54 +0000 | [diff] [blame] | 80 | packing and unpacking data. They are built up from :ref:`format-characters`, |
| 81 | which specify the type of data being packed/unpacked. In addition, there are |
| 82 | special characters for controlling the :ref:`struct-alignment`. |
| 83 | |
| 84 | |
| 85 | .. _struct-alignment: |
| 86 | |
| 87 | Byte Order, Size, and Alignment |
| 88 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 89 | |
| 90 | By default, C types are represented in the machine's native format and byte |
| 91 | order, and properly aligned by skipping pad bytes if necessary (according to the |
| 92 | rules used by the C compiler). |
| 93 | |
| 94 | Alternatively, the first character of the format string can be used to indicate |
| 95 | the byte order, size and alignment of the packed data, according to the |
| 96 | following table: |
| 97 | |
Mark Dickinson | cb532f1 | 2010-06-15 08:42:37 +0000 | [diff] [blame] | 98 | +-----------+------------------------+----------+-----------+ |
| 99 | | Character | Byte order | Size | Alignment | |
| 100 | +===========+========================+==========+===========+ |
| 101 | | ``@`` | native | native | native | |
| 102 | +-----------+------------------------+----------+-----------+ |
| 103 | | ``=`` | native | standard | none | |
| 104 | +-----------+------------------------+----------+-----------+ |
| 105 | | ``<`` | little-endian | standard | none | |
| 106 | +-----------+------------------------+----------+-----------+ |
| 107 | | ``>`` | big-endian | standard | none | |
| 108 | +-----------+------------------------+----------+-----------+ |
| 109 | | ``!`` | network (= big-endian) | standard | none | |
| 110 | +-----------+------------------------+----------+-----------+ |
Mark Dickinson | cfd56f2 | 2010-06-12 18:37:54 +0000 | [diff] [blame] | 111 | |
| 112 | If the first character is not one of these, ``'@'`` is assumed. |
| 113 | |
| 114 | Native byte order is big-endian or little-endian, depending on the host |
| 115 | system. For example, Intel x86 and AMD64 (x86-64) are little-endian; |
| 116 | Motorola 68000 and PowerPC G5 are big-endian; ARM and Intel Itanium feature |
| 117 | switchable endianness (bi-endian). Use ``sys.byteorder`` to check the |
| 118 | endianness of your system. |
| 119 | |
| 120 | Native size and alignment are determined using the C compiler's |
| 121 | ``sizeof`` expression. This is always combined with native byte order. |
| 122 | |
Mark Dickinson | cb532f1 | 2010-06-15 08:42:37 +0000 | [diff] [blame] | 123 | Standard size depends only on the format character; see the table in |
| 124 | the :ref:`format-characters` section. |
Mark Dickinson | cfd56f2 | 2010-06-12 18:37:54 +0000 | [diff] [blame] | 125 | |
| 126 | Note the difference between ``'@'`` and ``'='``: both use native byte order, but |
| 127 | the size and alignment of the latter is standardized. |
| 128 | |
| 129 | The form ``'!'`` is available for those poor souls who claim they can't remember |
| 130 | whether network byte order is big-endian or little-endian. |
| 131 | |
| 132 | There is no way to indicate non-native byte order (force byte-swapping); use the |
| 133 | appropriate choice of ``'<'`` or ``'>'``. |
| 134 | |
Mark Dickinson | cfd56f2 | 2010-06-12 18:37:54 +0000 | [diff] [blame] | 135 | Notes: |
| 136 | |
| 137 | (1) Padding is only automatically added between successive structure members. |
| 138 | No padding is added at the beginning or the end of the encoded struct. |
| 139 | |
| 140 | (2) No padding is added when using non-native size and alignment, e.g. |
| 141 | with '<', '>', '=', and '!'. |
| 142 | |
| 143 | (3) To align the end of a structure to the alignment requirement of a |
| 144 | particular type, end the format with the code for that type with a repeat |
| 145 | count of zero. See :ref:`struct-examples`. |
| 146 | |
| 147 | |
| 148 | .. _format-characters: |
Mark Dickinson | 6abf182 | 2010-04-12 21:00:59 +0000 | [diff] [blame] | 149 | |
| 150 | Format Characters |
| 151 | ^^^^^^^^^^^^^^^^^ |
| 152 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 153 | Format characters have the following meaning; the conversion between C and |
Mark Dickinson | 719e4e3 | 2010-06-29 20:10:42 +0000 | [diff] [blame] | 154 | Python values should be obvious given their types. The 'Standard size' column |
| 155 | refers to the size of the packed value in bytes when using standard size; that |
| 156 | is, when the format string starts with one of ``'<'``, ``'>'``, ``'!'`` or |
| 157 | ``'='``. When using native size, the size of the packed value is |
| 158 | platform-dependent. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 159 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 160 | +--------+--------------------------+--------------------+----------------+------------+ |
| 161 | | Format | C Type | Python type | Standard size | Notes | |
| 162 | +========+==========================+====================+================+============+ |
| 163 | | ``x`` | pad byte | no value | | | |
| 164 | +--------+--------------------------+--------------------+----------------+------------+ |
| 165 | | ``c`` | :c:type:`char` | bytes of length 1 | 1 | | |
| 166 | +--------+--------------------------+--------------------+----------------+------------+ |
Victor Stinner | da9ec99 | 2010-12-28 13:26:42 +0000 | [diff] [blame] | 167 | | ``b`` | :c:type:`signed char` | integer | 1 | \(1),\(3) | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 168 | +--------+--------------------------+--------------------+----------------+------------+ |
Victor Stinner | da9ec99 | 2010-12-28 13:26:42 +0000 | [diff] [blame] | 169 | | ``B`` | :c:type:`unsigned char` | integer | 1 | \(3) | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 170 | +--------+--------------------------+--------------------+----------------+------------+ |
Victor Stinner | da9ec99 | 2010-12-28 13:26:42 +0000 | [diff] [blame] | 171 | | ``?`` | :c:type:`_Bool` | bool | 1 | \(1) | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 172 | +--------+--------------------------+--------------------+----------------+------------+ |
Victor Stinner | da9ec99 | 2010-12-28 13:26:42 +0000 | [diff] [blame] | 173 | | ``h`` | :c:type:`short` | integer | 2 | \(3) | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 174 | +--------+--------------------------+--------------------+----------------+------------+ |
Victor Stinner | da9ec99 | 2010-12-28 13:26:42 +0000 | [diff] [blame] | 175 | | ``H`` | :c:type:`unsigned short` | integer | 2 | \(3) | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 176 | +--------+--------------------------+--------------------+----------------+------------+ |
Victor Stinner | da9ec99 | 2010-12-28 13:26:42 +0000 | [diff] [blame] | 177 | | ``i`` | :c:type:`int` | integer | 4 | \(3) | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 178 | +--------+--------------------------+--------------------+----------------+------------+ |
Victor Stinner | da9ec99 | 2010-12-28 13:26:42 +0000 | [diff] [blame] | 179 | | ``I`` | :c:type:`unsigned int` | integer | 4 | \(3) | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 180 | +--------+--------------------------+--------------------+----------------+------------+ |
Victor Stinner | da9ec99 | 2010-12-28 13:26:42 +0000 | [diff] [blame] | 181 | | ``l`` | :c:type:`long` | integer | 4 | \(3) | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 182 | +--------+--------------------------+--------------------+----------------+------------+ |
Victor Stinner | da9ec99 | 2010-12-28 13:26:42 +0000 | [diff] [blame] | 183 | | ``L`` | :c:type:`unsigned long` | integer | 4 | \(3) | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 184 | +--------+--------------------------+--------------------+----------------+------------+ |
Victor Stinner | da9ec99 | 2010-12-28 13:26:42 +0000 | [diff] [blame] | 185 | | ``q`` | :c:type:`long long` | integer | 8 | \(2), \(3) | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 186 | +--------+--------------------------+--------------------+----------------+------------+ |
Victor Stinner | da9ec99 | 2010-12-28 13:26:42 +0000 | [diff] [blame] | 187 | | ``Q`` | :c:type:`unsigned long | integer | 8 | \(2), \(3) | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 188 | | | long` | | | | |
| 189 | +--------+--------------------------+--------------------+----------------+------------+ |
Victor Stinner | da9ec99 | 2010-12-28 13:26:42 +0000 | [diff] [blame] | 190 | | ``f`` | :c:type:`float` | float | 4 | \(4) | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 191 | +--------+--------------------------+--------------------+----------------+------------+ |
Victor Stinner | da9ec99 | 2010-12-28 13:26:42 +0000 | [diff] [blame] | 192 | | ``d`` | :c:type:`double` | float | 8 | \(4) | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 193 | +--------+--------------------------+--------------------+----------------+------------+ |
Victor Stinner | da9ec99 | 2010-12-28 13:26:42 +0000 | [diff] [blame] | 194 | | ``s`` | :c:type:`char[]` | bytes | | | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 195 | +--------+--------------------------+--------------------+----------------+------------+ |
Victor Stinner | da9ec99 | 2010-12-28 13:26:42 +0000 | [diff] [blame] | 196 | | ``p`` | :c:type:`char[]` | bytes | | | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 197 | +--------+--------------------------+--------------------+----------------+------------+ |
Victor Stinner | da9ec99 | 2010-12-28 13:26:42 +0000 | [diff] [blame] | 198 | | ``P`` | :c:type:`void \*` | integer | | \(5) | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 199 | +--------+--------------------------+--------------------+----------------+------------+ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 200 | |
| 201 | Notes: |
| 202 | |
| 203 | (1) |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 204 | The ``'?'`` conversion code corresponds to the :c:type:`_Bool` type defined by |
| 205 | C99. If this type is not available, it is simulated using a :c:type:`char`. In |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 206 | standard mode, it is always represented by one byte. |
| 207 | |
Victor Stinner | da9ec99 | 2010-12-28 13:26:42 +0000 | [diff] [blame] | 208 | (2) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 209 | The ``'q'`` and ``'Q'`` conversion codes are available in native mode only if |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 210 | the platform C compiler supports C :c:type:`long long`, or, on Windows, |
| 211 | :c:type:`__int64`. They are always available in standard modes. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 212 | |
Victor Stinner | da9ec99 | 2010-12-28 13:26:42 +0000 | [diff] [blame] | 213 | (3) |
Mark Dickinson | c593577 | 2010-04-03 15:54:36 +0000 | [diff] [blame] | 214 | When attempting to pack a non-integer using any of the integer conversion |
| 215 | codes, if the non-integer has a :meth:`__index__` method then that method is |
| 216 | called to convert the argument to an integer before packing. |
| 217 | |
| 218 | .. versionchanged:: 3.2 |
| 219 | Use of the :meth:`__index__` method for non-integers is new in 3.2. |
| 220 | |
Victor Stinner | da9ec99 | 2010-12-28 13:26:42 +0000 | [diff] [blame] | 221 | (4) |
Mark Dickinson | cb532f1 | 2010-06-15 08:42:37 +0000 | [diff] [blame] | 222 | For the ``'f'`` and ``'d'`` conversion codes, the packed representation uses |
| 223 | the IEEE 754 binary32 (for ``'f'``) or binary64 (for ``'d'``) format, |
| 224 | regardless of the floating-point format used by the platform. |
| 225 | |
Victor Stinner | da9ec99 | 2010-12-28 13:26:42 +0000 | [diff] [blame] | 226 | (5) |
Mark Dickinson | cb532f1 | 2010-06-15 08:42:37 +0000 | [diff] [blame] | 227 | The ``'P'`` format character is only available for the native byte ordering |
| 228 | (selected as the default or with the ``'@'`` byte order character). The byte |
| 229 | order character ``'='`` chooses to use little- or big-endian ordering based |
| 230 | on the host system. The struct module does not interpret this as native |
| 231 | ordering, so the ``'P'`` format is not available. |
| 232 | |
Mark Dickinson | c593577 | 2010-04-03 15:54:36 +0000 | [diff] [blame] | 233 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 234 | A format character may be preceded by an integral repeat count. For example, |
| 235 | the format string ``'4h'`` means exactly the same as ``'hhhh'``. |
| 236 | |
| 237 | Whitespace characters between formats are ignored; a count and its format must |
| 238 | not contain whitespace though. |
| 239 | |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 240 | For the ``'s'`` format character, the count is interpreted as the length of the |
| 241 | bytes, not a repeat count like for the other format characters; for example, |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 242 | ``'10s'`` means a single 10-byte string, while ``'10c'`` means 10 characters. |
| 243 | For packing, the string is truncated or padded with null bytes as appropriate to |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 244 | make it fit. For unpacking, the resulting bytes object always has exactly the |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 245 | specified number of bytes. As a special case, ``'0s'`` means a single, empty |
| 246 | string (while ``'0c'`` means 0 characters). |
| 247 | |
Mark Dickinson | b40b947 | 2009-03-29 16:58:21 +0000 | [diff] [blame] | 248 | When packing a value ``x`` using one of the integer formats (``'b'``, |
| 249 | ``'B'``, ``'h'``, ``'H'``, ``'i'``, ``'I'``, ``'l'``, ``'L'``, |
| 250 | ``'q'``, ``'Q'``), if ``x`` is outside the valid range for that format |
| 251 | then :exc:`struct.error` is raised. |
| 252 | |
| 253 | .. versionchanged:: 3.1 |
| 254 | In 3.0, some of the integer formats wrapped out-of-range values and |
| 255 | raised :exc:`DeprecationWarning` instead of :exc:`struct.error`. |
| 256 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 257 | The ``'p'`` format character encodes a "Pascal string", meaning a short |
Georg Brandl | 93eb42e | 2010-07-10 10:23:40 +0000 | [diff] [blame] | 258 | variable-length string stored in a *fixed number of bytes*, given by the count. |
| 259 | The first byte stored is the length of the string, or 255, whichever is |
| 260 | smaller. The bytes of the string follow. If the string passed in to |
| 261 | :func:`pack` is too long (longer than the count minus 1), only the leading |
| 262 | ``count-1`` bytes of the string are stored. If the string is shorter than |
| 263 | ``count-1``, it is padded with null bytes so that exactly count bytes in all |
| 264 | are used. Note that for :func:`unpack`, the ``'p'`` format character consumes |
| 265 | ``count`` bytes, but that the string returned can never contain more than 255 |
| 266 | bytes. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 267 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 268 | For the ``'?'`` format character, the return value is either :const:`True` or |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 269 | :const:`False`. When packing, the truth value of the argument object is used. |
| 270 | Either 0 or 1 in the native or standard bool representation will be packed, and |
| 271 | any non-zero value will be True when unpacking. |
| 272 | |
Mark Dickinson | 6abf182 | 2010-04-12 21:00:59 +0000 | [diff] [blame] | 273 | |
Mark Dickinson | 6abf182 | 2010-04-12 21:00:59 +0000 | [diff] [blame] | 274 | |
| 275 | .. _struct-examples: |
| 276 | |
| 277 | Examples |
| 278 | ^^^^^^^^ |
| 279 | |
| 280 | .. note:: |
| 281 | All examples assume a native byte order, size, and alignment with a |
| 282 | big-endian machine. |
| 283 | |
| 284 | A basic example of packing/unpacking three integers:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 285 | |
| 286 | >>> from struct import * |
| 287 | >>> pack('hhl', 1, 2, 3) |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 288 | b'\x00\x01\x00\x02\x00\x00\x00\x03' |
| 289 | >>> unpack('hhl', b'\x00\x01\x00\x02\x00\x00\x00\x03') |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 290 | (1, 2, 3) |
| 291 | >>> calcsize('hhl') |
| 292 | 8 |
| 293 | |
Benjamin Peterson | 2b7411d | 2008-05-26 17:36:47 +0000 | [diff] [blame] | 294 | Unpacked fields can be named by assigning them to variables or by wrapping |
| 295 | the result in a named tuple:: |
| 296 | |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 297 | >>> record = b'raymond \x32\x12\x08\x01\x08' |
Benjamin Peterson | 2b7411d | 2008-05-26 17:36:47 +0000 | [diff] [blame] | 298 | >>> name, serialnum, school, gradelevel = unpack('<10sHHb', record) |
| 299 | |
| 300 | >>> from collections import namedtuple |
| 301 | >>> Student = namedtuple('Student', 'name serialnum school gradelevel') |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 302 | >>> Student._make(unpack('<10sHHb', record)) |
| 303 | Student(name=b'raymond ', serialnum=4658, school=264, gradelevel=8) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 304 | |
Mark Dickinson | 6abf182 | 2010-04-12 21:00:59 +0000 | [diff] [blame] | 305 | The ordering of format characters may have an impact on size since the padding |
| 306 | needed to satisfy alignment requirements is different:: |
| 307 | |
Victor Stinner | da9ec99 | 2010-12-28 13:26:42 +0000 | [diff] [blame] | 308 | >>> pack('ci', b'*', 0x12131415) |
Mark Dickinson | 6abf182 | 2010-04-12 21:00:59 +0000 | [diff] [blame] | 309 | b'*\x00\x00\x00\x12\x13\x14\x15' |
Victor Stinner | da9ec99 | 2010-12-28 13:26:42 +0000 | [diff] [blame] | 310 | >>> pack('ic', 0x12131415, b'*') |
Mark Dickinson | 6abf182 | 2010-04-12 21:00:59 +0000 | [diff] [blame] | 311 | b'\x12\x13\x14\x15*' |
| 312 | >>> calcsize('ci') |
| 313 | 8 |
| 314 | >>> calcsize('ic') |
| 315 | 5 |
| 316 | |
| 317 | The following format ``'llh0l'`` specifies two pad bytes at the end, assuming |
| 318 | longs are aligned on 4-byte boundaries:: |
| 319 | |
| 320 | >>> pack('llh0l', 1, 2, 3) |
| 321 | b'\x00\x00\x00\x01\x00\x00\x00\x02\x00\x03\x00\x00' |
| 322 | |
| 323 | This only works when native size and alignment are in effect; standard size and |
| 324 | alignment does not enforce any alignment. |
| 325 | |
| 326 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 327 | .. seealso:: |
| 328 | |
| 329 | Module :mod:`array` |
| 330 | Packed binary storage of homogeneous data. |
| 331 | |
| 332 | Module :mod:`xdrlib` |
| 333 | Packing and unpacking of XDR data. |
| 334 | |
| 335 | |
| 336 | .. _struct-objects: |
| 337 | |
Mark Dickinson | cfd56f2 | 2010-06-12 18:37:54 +0000 | [diff] [blame] | 338 | Classes |
Mark Dickinson | 6abf182 | 2010-04-12 21:00:59 +0000 | [diff] [blame] | 339 | ------- |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 340 | |
| 341 | The :mod:`struct` module also defines the following type: |
| 342 | |
| 343 | |
| 344 | .. class:: Struct(format) |
| 345 | |
Mark Dickinson | 6abf182 | 2010-04-12 21:00:59 +0000 | [diff] [blame] | 346 | Return a new Struct object which writes and reads binary data according to |
| 347 | the format string *format*. Creating a Struct object once and calling its |
| 348 | methods is more efficient than calling the :mod:`struct` functions with the |
| 349 | same format since the format string only needs to be compiled once. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 350 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 351 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 352 | Compiled Struct objects support the following methods and attributes: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 353 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 354 | .. method:: pack(v1, v2, ...) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 355 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 356 | Identical to the :func:`pack` function, using the compiled format. |
| 357 | (``len(result)`` will equal :attr:`self.size`.) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 358 | |
| 359 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 360 | .. method:: pack_into(buffer, offset, v1, v2, ...) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 361 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 362 | Identical to the :func:`pack_into` function, using the compiled format. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 363 | |
| 364 | |
Mark Dickinson | fdb99f1 | 2010-06-12 16:30:53 +0000 | [diff] [blame] | 365 | .. method:: unpack(buffer) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 366 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 367 | Identical to the :func:`unpack` function, using the compiled format. |
Mark Dickinson | fdb99f1 | 2010-06-12 16:30:53 +0000 | [diff] [blame] | 368 | (``len(buffer)`` must equal :attr:`self.size`). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 369 | |
| 370 | |
Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 371 | .. method:: unpack_from(buffer, offset=0) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 372 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 373 | Identical to the :func:`unpack_from` function, using the compiled format. |
| 374 | (``len(buffer[offset:])`` must be at least :attr:`self.size`). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 375 | |
| 376 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 377 | .. attribute:: format |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 378 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 379 | The format string used to construct this Struct object. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 380 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 381 | .. attribute:: size |
Guido van Rossum | 04110fb | 2007-08-24 16:32:05 +0000 | [diff] [blame] | 382 | |
Mark Dickinson | fdb99f1 | 2010-06-12 16:30:53 +0000 | [diff] [blame] | 383 | The calculated size of the struct (and hence of the bytes object produced |
| 384 | by the :meth:`pack` method) corresponding to :attr:`format`. |
Guido van Rossum | 04110fb | 2007-08-24 16:32:05 +0000 | [diff] [blame] | 385 | |