blob: a28ca548dd962689e1708fdca90b9006708e6a83 [file] [log] [blame]
Guido van Rossum02975121992-08-17 08:55:12 +00001
2/* struct module -- pack values into and (out of) strings */
3
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00004/* New version supporting byte order, alignment and size options,
5 character strings, and unsigned numbers */
6
Guido van Rossum414fd481997-12-19 04:24:24 +00007static char struct__doc__[] = "\
8Functions to convert between Python values and C structs.\n\
9Python strings are used to hold the data representing the C struct\n\
10and also as format strings to describe the layout of data in the C struct.\n\
11\n\
12The optional first format char indicates byte ordering and alignment:\n\
13 @: native w/native alignment(default)\n\
14 =: native w/standard alignment\n\
15 <: little-endian, std. alignment\n\
16 >: big-endian, std. alignment\n\
17 !: network, std (same as >)\n\
18\n\
19The remaining chars indicate types of args and must match exactly;\n\
20these can be preceded by a decimal repeat count:\n\
21 x: pad byte (no data); c:char; b:signed byte; B:unsigned byte;\n\
22 h:short; H:unsigned short; i:int; I:unsigned int;\n\
23 l:long; L:unsigned long; f:float; d:double.\n\
24Special cases (preceding decimal count indicates length):\n\
25 s:string (array of char); p: pascal string (w. count byte).\n\
Guido van Rossum78694d91998-09-18 14:14:13 +000026Special case (only available in native format):\n\
27 P:an integer type that is wide enough to hold a pointer.\n\
Guido van Rossum414fd481997-12-19 04:24:24 +000028Whitespace between formats is ignored.\n\
29\n\
30The variable struct.error is an exception raised on errors.";
31
Barry Warsaw30695fa1996-12-12 23:32:31 +000032#include "Python.h"
Guido van Rossum02975121992-08-17 08:55:12 +000033
Guido van Rossume20aef51997-08-26 20:39:54 +000034#include <ctype.h>
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +000035
36
37/* Exception */
38
Barry Warsaw30695fa1996-12-12 23:32:31 +000039static PyObject *StructError;
Guido van Rossum02975121992-08-17 08:55:12 +000040
41
42/* Define various structs to figure out the alignments of types */
43
Jack Jansen971e1df1995-02-02 14:29:10 +000044#ifdef __MWERKS__
45/*
46** XXXX We have a problem here. There are no unique alignment rules
47** on the PowerPC mac.
48*/
49#ifdef __powerc
50#pragma options align=mac68k
51#endif
52#endif /* __MWERKS__ */
53
Guido van Rossum02975121992-08-17 08:55:12 +000054typedef struct { char c; short x; } s_short;
55typedef struct { char c; int x; } s_int;
56typedef struct { char c; long x; } s_long;
57typedef struct { char c; float x; } s_float;
58typedef struct { char c; double x; } s_double;
Guido van Rossum78694d91998-09-18 14:14:13 +000059typedef struct { char c; void *x; } s_void_p;
Guido van Rossum02975121992-08-17 08:55:12 +000060
61#define SHORT_ALIGN (sizeof(s_short) - sizeof(short))
62#define INT_ALIGN (sizeof(s_int) - sizeof(int))
63#define LONG_ALIGN (sizeof(s_long) - sizeof(long))
64#define FLOAT_ALIGN (sizeof(s_float) - sizeof(float))
65#define DOUBLE_ALIGN (sizeof(s_double) - sizeof(double))
Guido van Rossum78694d91998-09-18 14:14:13 +000066#define VOID_P_ALIGN (sizeof(s_void_p) - sizeof(void *))
Guido van Rossum02975121992-08-17 08:55:12 +000067
Martin v. Löwis2af72d52000-09-15 08:10:33 +000068#define STRINGIFY(x) #x
69
Jack Jansen971e1df1995-02-02 14:29:10 +000070#ifdef __powerc
71#pragma options align=reset
72#endif
73
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +000074/* Helper routine to get a Python integer and raise the appropriate error
75 if it isn't one */
76
77static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +000078get_long(PyObject *v, long *p)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +000079{
80 long x = PyInt_AsLong(v);
81 if (x == -1 && PyErr_Occurred()) {
Fred Draked3dbb381998-05-28 04:35:49 +000082 if (PyErr_ExceptionMatches(PyExc_TypeError))
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +000083 PyErr_SetString(StructError,
84 "required argument is not an integer");
85 return -1;
86 }
87 *p = x;
88 return 0;
89}
90
91
Guido van Rossum60c50611996-12-31 16:29:52 +000092/* Same, but handling unsigned long */
93
94static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +000095get_ulong(PyObject *v, unsigned long *p)
Guido van Rossum60c50611996-12-31 16:29:52 +000096{
Guido van Rossum6c87eca1997-01-03 19:08:16 +000097 if (PyLong_Check(v)) {
98 unsigned long x = PyLong_AsUnsignedLong(v);
99 if (x == (unsigned long)(-1) && PyErr_Occurred())
Guido van Rossum60c50611996-12-31 16:29:52 +0000100 return -1;
Guido van Rossum6c87eca1997-01-03 19:08:16 +0000101 *p = x;
102 return 0;
Guido van Rossum60c50611996-12-31 16:29:52 +0000103 }
Guido van Rossum6c87eca1997-01-03 19:08:16 +0000104 else {
105 return get_long(v, (long *)p);
106 }
Guido van Rossum60c50611996-12-31 16:29:52 +0000107}
108
109
Guido van Rossum74679b41997-01-02 22:21:36 +0000110/* Floating point helpers */
111
112/* These use ANSI/IEEE Standard 754-1985 (Standard for Binary Floating
113 Point Arithmetic). See the following URL:
114 http://www.psc.edu/general/software/packages/ieee/ieee.html */
115
Guido van Rossum4ccc5311997-01-02 23:23:20 +0000116/* XXX Inf/NaN are not handled quite right (but underflow is!) */
Guido van Rossum74679b41997-01-02 22:21:36 +0000117
118static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000119pack_float(double x, /* The number to pack */
120 char *p, /* Where to pack the high order byte */
121 int incr) /* 1 for big-endian; -1 for little-endian */
Guido van Rossum74679b41997-01-02 22:21:36 +0000122{
123 int s;
124 int e;
Guido van Rossum4ccc5311997-01-02 23:23:20 +0000125 double f;
126 long fbits;
Guido van Rossum74679b41997-01-02 22:21:36 +0000127
128 if (x < 0) {
129 s = 1;
130 x = -x;
131 }
132 else
133 s = 0;
Guido van Rossum4ccc5311997-01-02 23:23:20 +0000134
135 f = frexp(x, &e);
136
137 /* Normalize f to be in the range [1.0, 2.0) */
138 if (0.5 <= f && f < 1.0) {
139 f *= 2.0;
Guido van Rossum74679b41997-01-02 22:21:36 +0000140 e--;
141 }
Guido van Rossum4ccc5311997-01-02 23:23:20 +0000142 else if (f == 0.0) {
Guido van Rossum74679b41997-01-02 22:21:36 +0000143 e = 0;
144 }
145 else {
146 PyErr_SetString(PyExc_SystemError,
147 "frexp() result out of range");
148 return -1;
149 }
Guido van Rossum4ccc5311997-01-02 23:23:20 +0000150
151 if (e >= 128) {
152 /* XXX 128 itself is reserved for Inf/NaN */
Guido van Rossum74679b41997-01-02 22:21:36 +0000153 PyErr_SetString(PyExc_OverflowError,
154 "float too large to pack with f format");
155 return -1;
156 }
Guido van Rossum4ccc5311997-01-02 23:23:20 +0000157 else if (e < -126) {
158 /* Gradual underflow */
159 f = ldexp(f, 126 + e);
Guido van Rossum74679b41997-01-02 22:21:36 +0000160 e = 0;
161 }
Guido van Rossum8f3c8121997-11-04 17:12:33 +0000162 else if (!(e == 0 && f == 0.0)) {
Guido van Rossum4ccc5311997-01-02 23:23:20 +0000163 e += 127;
164 f -= 1.0; /* Get rid of leading 1 */
Guido van Rossum74679b41997-01-02 22:21:36 +0000165 }
166
Guido van Rossum4ccc5311997-01-02 23:23:20 +0000167 f *= 8388608.0; /* 2**23 */
168 fbits = (long) floor(f + 0.5); /* Round */
169
Guido van Rossum74679b41997-01-02 22:21:36 +0000170 /* First byte */
171 *p = (s<<7) | (e>>1);
172 p += incr;
173
174 /* Second byte */
Guido van Rossum7844e381997-04-11 20:44:04 +0000175 *p = (char) (((e&1)<<7) | (fbits>>16));
Guido van Rossum74679b41997-01-02 22:21:36 +0000176 p += incr;
177
178 /* Third byte */
Guido van Rossum4ccc5311997-01-02 23:23:20 +0000179 *p = (fbits>>8) & 0xFF;
Guido van Rossum74679b41997-01-02 22:21:36 +0000180 p += incr;
181
182 /* Fourth byte */
Guido van Rossum4ccc5311997-01-02 23:23:20 +0000183 *p = fbits&0xFF;
Guido van Rossum74679b41997-01-02 22:21:36 +0000184
185 /* Done */
186 return 0;
187}
188
189static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000190pack_double(double x, /* The number to pack */
191 char *p, /* Where to pack the high order byte */
192 int incr) /* 1 for big-endian; -1 for little-endian */
Guido van Rossum74679b41997-01-02 22:21:36 +0000193{
194 int s;
195 int e;
Guido van Rossum4ccc5311997-01-02 23:23:20 +0000196 double f;
Guido van Rossum74679b41997-01-02 22:21:36 +0000197 long fhi, flo;
198
199 if (x < 0) {
200 s = 1;
201 x = -x;
202 }
203 else
204 s = 0;
Guido van Rossum4ccc5311997-01-02 23:23:20 +0000205
206 f = frexp(x, &e);
207
208 /* Normalize f to be in the range [1.0, 2.0) */
209 if (0.5 <= f && f < 1.0) {
210 f *= 2.0;
Guido van Rossum74679b41997-01-02 22:21:36 +0000211 e--;
212 }
Guido van Rossum4ccc5311997-01-02 23:23:20 +0000213 else if (f == 0.0) {
Guido van Rossum74679b41997-01-02 22:21:36 +0000214 e = 0;
215 }
216 else {
217 PyErr_SetString(PyExc_SystemError,
218 "frexp() result out of range");
219 return -1;
220 }
Guido van Rossum4ccc5311997-01-02 23:23:20 +0000221
222 if (e >= 1024) {
223 /* XXX 1024 itself is reserved for Inf/NaN */
Guido van Rossum74679b41997-01-02 22:21:36 +0000224 PyErr_SetString(PyExc_OverflowError,
225 "float too large to pack with d format");
226 return -1;
227 }
Guido van Rossum4ccc5311997-01-02 23:23:20 +0000228 else if (e < -1022) {
229 /* Gradual underflow */
230 f = ldexp(f, 1022 + e);
Guido van Rossum74679b41997-01-02 22:21:36 +0000231 e = 0;
232 }
Guido van Rossum8f3c8121997-11-04 17:12:33 +0000233 else if (!(e == 0 && f == 0.0)) {
Guido van Rossum4ccc5311997-01-02 23:23:20 +0000234 e += 1023;
235 f -= 1.0; /* Get rid of leading 1 */
Guido van Rossum74679b41997-01-02 22:21:36 +0000236 }
237
Guido van Rossum4ccc5311997-01-02 23:23:20 +0000238 /* fhi receives the high 28 bits; flo the low 24 bits (== 52 bits) */
239 f *= 268435456.0; /* 2**28 */
240 fhi = (long) floor(f); /* Truncate */
241 f -= (double)fhi;
242 f *= 16777216.0; /* 2**24 */
243 flo = (long) floor(f + 0.5); /* Round */
244
Guido van Rossum74679b41997-01-02 22:21:36 +0000245 /* First byte */
246 *p = (s<<7) | (e>>4);
247 p += incr;
248
249 /* Second byte */
Guido van Rossum7844e381997-04-11 20:44:04 +0000250 *p = (char) (((e&0xF)<<4) | (fhi>>24));
Guido van Rossum74679b41997-01-02 22:21:36 +0000251 p += incr;
252
253 /* Third byte */
254 *p = (fhi>>16) & 0xFF;
255 p += incr;
256
257 /* Fourth byte */
258 *p = (fhi>>8) & 0xFF;
259 p += incr;
260
261 /* Fifth byte */
262 *p = fhi & 0xFF;
263 p += incr;
264
265 /* Sixth byte */
266 *p = (flo>>16) & 0xFF;
267 p += incr;
268
269 /* Seventh byte */
270 *p = (flo>>8) & 0xFF;
271 p += incr;
272
273 /* Eighth byte */
274 *p = flo & 0xFF;
275 p += incr;
276
277 /* Done */
278 return 0;
279}
280
281static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000282unpack_float(const char *p, /* Where the high order byte is */
283 int incr) /* 1 for big-endian; -1 for little-endian */
Guido van Rossum74679b41997-01-02 22:21:36 +0000284{
285 int s;
286 int e;
287 long f;
288 double x;
289
290 /* First byte */
291 s = (*p>>7) & 1;
292 e = (*p & 0x7F) << 1;
293 p += incr;
294
295 /* Second byte */
296 e |= (*p>>7) & 1;
297 f = (*p & 0x7F) << 16;
298 p += incr;
299
300 /* Third byte */
301 f |= (*p & 0xFF) << 8;
302 p += incr;
303
304 /* Fourth byte */
305 f |= *p & 0xFF;
306
307 x = (double)f / 8388608.0;
308
309 /* XXX This sadly ignores Inf/NaN issues */
Guido van Rossum07ef6551997-01-02 22:31:07 +0000310 if (e == 0)
311 e = -126;
312 else {
313 x += 1.0;
314 e -= 127;
315 }
316 x = ldexp(x, e);
Guido van Rossum74679b41997-01-02 22:21:36 +0000317
318 if (s)
319 x = -x;
320
321 return PyFloat_FromDouble(x);
322}
323
324static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000325unpack_double(const char *p, /* Where the high order byte is */
326 int incr) /* 1 for big-endian; -1 for little-endian */
Guido van Rossum74679b41997-01-02 22:21:36 +0000327{
328 int s;
329 int e;
330 long fhi, flo;
331 double x;
332
333 /* First byte */
334 s = (*p>>7) & 1;
335 e = (*p & 0x7F) << 4;
336 p += incr;
337
338 /* Second byte */
339 e |= (*p>>4) & 0xF;
340 fhi = (*p & 0xF) << 24;
341 p += incr;
342
343 /* Third byte */
344 fhi |= (*p & 0xFF) << 16;
345 p += incr;
346
347 /* Fourth byte */
348 fhi |= (*p & 0xFF) << 8;
349 p += incr;
350
351 /* Fifth byte */
352 fhi |= *p & 0xFF;
353 p += incr;
354
355 /* Sixth byte */
356 flo = (*p & 0xFF) << 16;
357 p += incr;
358
359 /* Seventh byte */
360 flo |= (*p & 0xFF) << 8;
361 p += incr;
362
363 /* Eighth byte */
364 flo |= *p & 0xFF;
365 p += incr;
366
367 x = (double)fhi + (double)flo / 16777216.0; /* 2**24 */
368 x /= 268435456.0; /* 2**28 */
369
370 /* XXX This sadly ignores Inf/NaN */
Guido van Rossum07ef6551997-01-02 22:31:07 +0000371 if (e == 0)
372 e = -1022;
373 else {
374 x += 1.0;
375 e -= 1023;
376 }
377 x = ldexp(x, e);
Guido van Rossum74679b41997-01-02 22:21:36 +0000378
379 if (s)
380 x = -x;
381
382 return PyFloat_FromDouble(x);
383}
384
385
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000386/* The translation function for each format character is table driven */
387
388typedef struct _formatdef {
389 char format;
390 int size;
391 int alignment;
Tim Petersdbd9ba62000-07-09 03:09:57 +0000392 PyObject* (*unpack)(const char *,
393 const struct _formatdef *);
394 int (*pack)(char *, PyObject *,
395 const struct _formatdef *);
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000396} formatdef;
397
398static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000399nu_char(const char *p, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000400{
401 return PyString_FromStringAndSize(p, 1);
402}
403
404static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000405nu_byte(const char *p, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000406{
407 return PyInt_FromLong((long) *(signed char *)p);
408}
409
410static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000411nu_ubyte(const char *p, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000412{
413 return PyInt_FromLong((long) *(unsigned char *)p);
414}
415
416static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000417nu_short(const char *p, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000418{
419 return PyInt_FromLong((long) *(short *)p);
420}
421
422static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000423nu_ushort(const char *p, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000424{
425 return PyInt_FromLong((long) *(unsigned short *)p);
426}
427
428static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000429nu_int(const char *p, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000430{
431 return PyInt_FromLong((long) *(int *)p);
432}
433
434static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000435nu_uint(const char *p, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000436{
437 unsigned int x = *(unsigned int *)p;
Guido van Rossum6c87eca1997-01-03 19:08:16 +0000438 return PyLong_FromUnsignedLong((unsigned long)x);
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000439}
440
441static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000442nu_long(const char *p, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000443{
444 return PyInt_FromLong(*(long *)p);
445}
446
447static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000448nu_ulong(const char *p, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000449{
Guido van Rossum6c87eca1997-01-03 19:08:16 +0000450 return PyLong_FromUnsignedLong(*(unsigned long *)p);
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000451}
452
453static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000454nu_float(const char *p, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000455{
456 float x;
457 memcpy((char *)&x, p, sizeof(float));
458 return PyFloat_FromDouble((double)x);
459}
460
461static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000462nu_double(const char *p, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000463{
464 double x;
465 memcpy((char *)&x, p, sizeof(double));
466 return PyFloat_FromDouble(x);
467}
468
Guido van Rossum78694d91998-09-18 14:14:13 +0000469static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000470nu_void_p(const char *p, const formatdef *f)
Guido van Rossum78694d91998-09-18 14:14:13 +0000471{
472 return PyLong_FromVoidPtr(*(void **)p);
473}
474
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000475static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000476np_byte(char *p, PyObject *v, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000477{
478 long x;
479 if (get_long(v, &x) < 0)
480 return -1;
Martin v. Löwis66de5492000-09-15 07:31:57 +0000481 if (x < -128 || x > 127){
482 PyErr_SetString(StructError,
483 "byte format requires -128<=number<=127");
484 return -1;
485 }
486 *p = (char)x;
487 return 0;
488}
489
490static int
491np_ubyte(char *p, PyObject *v, const formatdef *f)
492{
493 long x;
494 if (get_long(v, &x) < 0)
495 return -1;
496 if (x < 0 || x > 255){
497 PyErr_SetString(StructError,
498 "ubyte format requires 0<=number<=255");
499 return -1;
500 }
Guido van Rossum7844e381997-04-11 20:44:04 +0000501 *p = (char)x;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000502 return 0;
503}
504
505static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000506np_char(char *p, PyObject *v, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000507{
508 if (!PyString_Check(v) || PyString_Size(v) != 1) {
509 PyErr_SetString(StructError,
510 "char format require string of length 1");
511 return -1;
512 }
513 *p = *PyString_AsString(v);
514 return 0;
515}
516
517static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000518np_short(char *p, PyObject *v, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000519{
520 long x;
521 if (get_long(v, &x) < 0)
522 return -1;
Martin v. Löwis2af72d52000-09-15 08:10:33 +0000523 if (x < SHRT_MIN || x > SHRT_MAX){
Martin v. Löwis66de5492000-09-15 07:31:57 +0000524 PyErr_SetString(StructError,
Martin v. Löwis2af72d52000-09-15 08:10:33 +0000525 "short format requires " STRINGIFY(SHRT_MIN)
526 "<=number<=" STRINGIFY(SHRT_MAX));
Martin v. Löwis66de5492000-09-15 07:31:57 +0000527 return -1;
528 }
Guido van Rossum7844e381997-04-11 20:44:04 +0000529 * (short *)p = (short)x;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000530 return 0;
531}
532
533static int
Martin v. Löwis66de5492000-09-15 07:31:57 +0000534np_ushort(char *p, PyObject *v, const formatdef *f)
535{
536 long x;
537 if (get_long(v, &x) < 0)
538 return -1;
Martin v. Löwis2af72d52000-09-15 08:10:33 +0000539 if (x < 0 || x > USHRT_MAX){
Martin v. Löwis66de5492000-09-15 07:31:57 +0000540 PyErr_SetString(StructError,
Martin v. Löwis2af72d52000-09-15 08:10:33 +0000541 "short format requires 0<=number<=" STRINGIFY(USHRT_MAX));
Martin v. Löwis66de5492000-09-15 07:31:57 +0000542 return -1;
543 }
544 * (unsigned short *)p = (unsigned short)x;
545 return 0;
546}
547
548static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000549np_int(char *p, PyObject *v, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000550{
551 long x;
552 if (get_long(v, &x) < 0)
553 return -1;
554 * (int *)p = x;
555 return 0;
556}
557
558static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000559np_uint(char *p, PyObject *v, const formatdef *f)
Guido van Rossum60c50611996-12-31 16:29:52 +0000560{
561 unsigned long x;
562 if (get_ulong(v, &x) < 0)
563 return -1;
564 * (unsigned int *)p = x;
565 return 0;
566}
567
568static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000569np_long(char *p, PyObject *v, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000570{
571 long x;
572 if (get_long(v, &x) < 0)
573 return -1;
574 * (long *)p = x;
575 return 0;
576}
577
578static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000579np_ulong(char *p, PyObject *v, const formatdef *f)
Guido van Rossum60c50611996-12-31 16:29:52 +0000580{
581 unsigned long x;
582 if (get_ulong(v, &x) < 0)
583 return -1;
584 * (unsigned long *)p = x;
585 return 0;
586}
587
588static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000589np_float(char *p, PyObject *v, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000590{
591 float x = (float)PyFloat_AsDouble(v);
592 if (x == -1 && PyErr_Occurred()) {
593 PyErr_SetString(StructError,
594 "required argument is not a float");
595 return -1;
596 }
597 memcpy(p, (char *)&x, sizeof(float));
598 return 0;
599}
600
601static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000602np_double(char *p, PyObject *v, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000603{
604 double x = PyFloat_AsDouble(v);
605 if (x == -1 && PyErr_Occurred()) {
606 PyErr_SetString(StructError,
607 "required argument is not a float");
608 return -1;
609 }
610 memcpy(p, (char *)&x, sizeof(double));
611 return 0;
612}
613
Guido van Rossum78694d91998-09-18 14:14:13 +0000614static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000615np_void_p(char *p, PyObject *v, const formatdef *f)
Guido van Rossum78694d91998-09-18 14:14:13 +0000616{
617 void *x = PyLong_AsVoidPtr(v);
618 if (x == NULL && PyErr_Occurred()) {
619 /* ### hrm. PyLong_AsVoidPtr raises SystemError */
620 if (PyErr_ExceptionMatches(PyExc_TypeError))
621 PyErr_SetString(StructError,
622 "required argument is not an integer");
623 return -1;
624 }
625 *(void **)p = x;
626 return 0;
627}
628
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000629static formatdef native_table[] = {
630 {'x', sizeof(char), 0, NULL},
631 {'b', sizeof(char), 0, nu_byte, np_byte},
Martin v. Löwis66de5492000-09-15 07:31:57 +0000632 {'B', sizeof(char), 0, nu_ubyte, np_ubyte},
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000633 {'c', sizeof(char), 0, nu_char, np_char},
634 {'s', sizeof(char), 0, NULL},
Guido van Rossum9eb671f1997-09-05 07:08:39 +0000635 {'p', sizeof(char), 0, NULL},
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000636 {'h', sizeof(short), SHORT_ALIGN, nu_short, np_short},
Martin v. Löwis66de5492000-09-15 07:31:57 +0000637 {'H', sizeof(short), SHORT_ALIGN, nu_ushort, np_ushort},
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000638 {'i', sizeof(int), INT_ALIGN, nu_int, np_int},
Guido van Rossum60c50611996-12-31 16:29:52 +0000639 {'I', sizeof(int), INT_ALIGN, nu_uint, np_uint},
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000640 {'l', sizeof(long), LONG_ALIGN, nu_long, np_long},
Guido van Rossum60c50611996-12-31 16:29:52 +0000641 {'L', sizeof(long), LONG_ALIGN, nu_ulong, np_ulong},
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000642 {'f', sizeof(float), FLOAT_ALIGN, nu_float, np_float},
643 {'d', sizeof(double), DOUBLE_ALIGN, nu_double, np_double},
Guido van Rossum78694d91998-09-18 14:14:13 +0000644 {'P', sizeof(void *), VOID_P_ALIGN, nu_void_p, np_void_p},
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000645 {0}
646};
647
648static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000649bu_int(const char *p, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000650{
651 long x = 0;
652 int i = f->size;
653 do {
654 x = (x<<8) | (*p++ & 0xFF);
655 } while (--i > 0);
656 i = 8*(sizeof(long) - f->size);
657 if (i) {
658 x <<= i;
659 x >>= i;
660 }
661 return PyInt_FromLong(x);
662}
663
664static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000665bu_uint(const char *p, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000666{
Guido van Rossum6c87eca1997-01-03 19:08:16 +0000667 unsigned long x = 0;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000668 int i = f->size;
669 do {
670 x = (x<<8) | (*p++ & 0xFF);
671 } while (--i > 0);
Guido van Rossum39ef2271998-06-29 04:00:40 +0000672 if (f->size >= 4)
673 return PyLong_FromUnsignedLong(x);
674 else
675 return PyInt_FromLong((long)x);
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000676}
677
Guido van Rossum74679b41997-01-02 22:21:36 +0000678static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000679bu_float(const char *p, const formatdef *f)
Guido van Rossum74679b41997-01-02 22:21:36 +0000680{
681 return unpack_float(p, 1);
682}
683
684static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000685bu_double(const char *p, const formatdef *f)
Guido van Rossum74679b41997-01-02 22:21:36 +0000686{
687 return unpack_double(p, 1);
688}
689
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000690static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000691bp_int(char *p, PyObject *v, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000692{
693 long x;
694 int i;
695 if (get_long(v, &x) < 0)
696 return -1;
697 i = f->size;
698 do {
Guido van Rossum7844e381997-04-11 20:44:04 +0000699 p[--i] = (char)x;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000700 x >>= 8;
701 } while (i > 0);
702 return 0;
703}
704
Guido van Rossum60c50611996-12-31 16:29:52 +0000705static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000706bp_uint(char *p, PyObject *v, const formatdef *f)
Guido van Rossum60c50611996-12-31 16:29:52 +0000707{
708 unsigned long x;
709 int i;
710 if (get_ulong(v, &x) < 0)
711 return -1;
712 i = f->size;
713 do {
Guido van Rossum7844e381997-04-11 20:44:04 +0000714 p[--i] = (char)x;
Guido van Rossum60c50611996-12-31 16:29:52 +0000715 x >>= 8;
716 } while (i > 0);
717 return 0;
718}
719
Guido van Rossum74679b41997-01-02 22:21:36 +0000720static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000721bp_float(char *p, PyObject *v, const formatdef *f)
Guido van Rossum74679b41997-01-02 22:21:36 +0000722{
723 double x = PyFloat_AsDouble(v);
724 if (x == -1 && PyErr_Occurred()) {
725 PyErr_SetString(StructError,
726 "required argument is not a float");
727 return -1;
728 }
729 return pack_float(x, p, 1);
730}
731
732static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000733bp_double(char *p, PyObject *v, const formatdef *f)
Guido van Rossum74679b41997-01-02 22:21:36 +0000734{
735 double x = PyFloat_AsDouble(v);
736 if (x == -1 && PyErr_Occurred()) {
737 PyErr_SetString(StructError,
738 "required argument is not a float");
739 return -1;
740 }
741 return pack_double(x, p, 1);
742}
743
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000744static formatdef bigendian_table[] = {
745 {'x', 1, 0, NULL},
746 {'b', 1, 0, bu_int, bp_int},
747 {'B', 1, 0, bu_uint, bp_int},
748 {'c', 1, 0, nu_char, np_char},
749 {'s', 1, 0, NULL},
Guido van Rossum9eb671f1997-09-05 07:08:39 +0000750 {'p', 1, 0, NULL},
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000751 {'h', 2, 0, bu_int, bp_int},
Guido van Rossum60c50611996-12-31 16:29:52 +0000752 {'H', 2, 0, bu_uint, bp_uint},
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000753 {'i', 4, 0, bu_int, bp_int},
Guido van Rossum60c50611996-12-31 16:29:52 +0000754 {'I', 4, 0, bu_uint, bp_uint},
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000755 {'l', 4, 0, bu_int, bp_int},
Guido van Rossum60c50611996-12-31 16:29:52 +0000756 {'L', 4, 0, bu_uint, bp_uint},
Guido van Rossum74679b41997-01-02 22:21:36 +0000757 {'f', 4, 0, bu_float, bp_float},
758 {'d', 8, 0, bu_double, bp_double},
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000759 {0}
760};
761
762static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000763lu_int(const char *p, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000764{
765 long x = 0;
766 int i = f->size;
767 do {
768 x = (x<<8) | (p[--i] & 0xFF);
769 } while (i > 0);
770 i = 8*(sizeof(long) - f->size);
771 if (i) {
772 x <<= i;
773 x >>= i;
774 }
775 return PyInt_FromLong(x);
776}
777
778static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000779lu_uint(const char *p, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000780{
Guido van Rossum6c87eca1997-01-03 19:08:16 +0000781 unsigned long x = 0;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000782 int i = f->size;
783 do {
784 x = (x<<8) | (p[--i] & 0xFF);
785 } while (i > 0);
Guido van Rossum39ef2271998-06-29 04:00:40 +0000786 if (f->size >= 4)
787 return PyLong_FromUnsignedLong(x);
788 else
789 return PyInt_FromLong((long)x);
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000790}
791
Guido van Rossum74679b41997-01-02 22:21:36 +0000792static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000793lu_float(const char *p, const formatdef *f)
Guido van Rossum74679b41997-01-02 22:21:36 +0000794{
795 return unpack_float(p+3, -1);
796}
797
798static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000799lu_double(const char *p, const formatdef *f)
Guido van Rossum74679b41997-01-02 22:21:36 +0000800{
801 return unpack_double(p+7, -1);
802}
803
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000804static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000805lp_int(char *p, PyObject *v, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000806{
807 long x;
808 int i;
809 if (get_long(v, &x) < 0)
810 return -1;
811 i = f->size;
812 do {
Guido van Rossum7844e381997-04-11 20:44:04 +0000813 *p++ = (char)x;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000814 x >>= 8;
815 } while (--i > 0);
816 return 0;
817}
818
Guido van Rossum60c50611996-12-31 16:29:52 +0000819static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000820lp_uint(char *p, PyObject *v, const formatdef *f)
Guido van Rossum60c50611996-12-31 16:29:52 +0000821{
822 unsigned long x;
823 int i;
824 if (get_ulong(v, &x) < 0)
825 return -1;
826 i = f->size;
827 do {
Guido van Rossum7844e381997-04-11 20:44:04 +0000828 *p++ = (char)x;
Guido van Rossum60c50611996-12-31 16:29:52 +0000829 x >>= 8;
830 } while (--i > 0);
831 return 0;
832}
833
Guido van Rossum74679b41997-01-02 22:21:36 +0000834static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000835lp_float(char *p, PyObject *v, const formatdef *f)
Guido van Rossum74679b41997-01-02 22:21:36 +0000836{
837 double x = PyFloat_AsDouble(v);
838 if (x == -1 && PyErr_Occurred()) {
839 PyErr_SetString(StructError,
840 "required argument is not a float");
841 return -1;
842 }
843 return pack_float(x, p+3, -1);
844}
845
846static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000847lp_double(char *p, PyObject *v, const formatdef *f)
Guido van Rossum74679b41997-01-02 22:21:36 +0000848{
849 double x = PyFloat_AsDouble(v);
850 if (x == -1 && PyErr_Occurred()) {
851 PyErr_SetString(StructError,
852 "required argument is not a float");
853 return -1;
854 }
855 return pack_double(x, p+7, -1);
856}
857
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000858static formatdef lilendian_table[] = {
859 {'x', 1, 0, NULL},
860 {'b', 1, 0, lu_int, lp_int},
861 {'B', 1, 0, lu_uint, lp_int},
862 {'c', 1, 0, nu_char, np_char},
863 {'s', 1, 0, NULL},
Guido van Rossum9eb671f1997-09-05 07:08:39 +0000864 {'p', 1, 0, NULL},
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000865 {'h', 2, 0, lu_int, lp_int},
Guido van Rossum60c50611996-12-31 16:29:52 +0000866 {'H', 2, 0, lu_uint, lp_uint},
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000867 {'i', 4, 0, lu_int, lp_int},
Guido van Rossum60c50611996-12-31 16:29:52 +0000868 {'I', 4, 0, lu_uint, lp_uint},
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000869 {'l', 4, 0, lu_int, lp_int},
Guido van Rossum60c50611996-12-31 16:29:52 +0000870 {'L', 4, 0, lu_uint, lp_uint},
Guido van Rossum74679b41997-01-02 22:21:36 +0000871 {'f', 4, 0, lu_float, lp_float},
872 {'d', 8, 0, lu_double, lp_double},
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000873 {0}
874};
875
876
877static const formatdef *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000878whichtable(char **pfmt)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000879{
880 const char *fmt = (*pfmt)++; /* May be backed out of later */
881 switch (*fmt) {
882 case '<':
883 return lilendian_table;
884 case '>':
885 case '!': /* Network byte order is big-endian */
886 return bigendian_table;
887 case '=': { /* Host byte order -- different from native in aligment! */
888 int n = 1;
889 char *p = (char *) &n;
890 if (*p == 1)
891 return lilendian_table;
892 else
893 return bigendian_table;
894 }
895 default:
896 --*pfmt; /* Back out of pointer increment */
897 /* Fall through */
898 case '@':
899 return native_table;
900 }
901}
902
903
904/* Get the table entry for a format code */
905
906static const formatdef *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000907getentry(int c, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000908{
909 for (; f->format != '\0'; f++) {
910 if (f->format == c) {
911 return f;
912 }
913 }
914 PyErr_SetString(StructError, "bad char in struct format");
915 return NULL;
916}
917
918
Guido van Rossum02975121992-08-17 08:55:12 +0000919/* Align a size according to a format code */
920
921static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000922align(int size, int c, const formatdef *e)
Guido van Rossum02975121992-08-17 08:55:12 +0000923{
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000924 if (e->format == c) {
925 if (e->alignment) {
926 size = ((size + e->alignment - 1)
927 / e->alignment)
928 * e->alignment;
929 }
Guido van Rossum02975121992-08-17 08:55:12 +0000930 }
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000931 return size;
Guido van Rossum02975121992-08-17 08:55:12 +0000932}
933
934
935/* calculate the size of a format string */
936
937static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000938calcsize(const char *fmt, const formatdef *f)
Guido van Rossum02975121992-08-17 08:55:12 +0000939{
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000940 const formatdef *e;
941 const char *s;
Guido van Rossum02975121992-08-17 08:55:12 +0000942 char c;
943 int size, num, itemsize, x;
944
945 s = fmt;
946 size = 0;
947 while ((c = *s++) != '\0') {
Guido van Rossum730806d1998-04-10 22:27:42 +0000948 if (isspace((int)c))
Guido van Rossume20aef51997-08-26 20:39:54 +0000949 continue;
Guido van Rossum02975121992-08-17 08:55:12 +0000950 if ('0' <= c && c <= '9') {
951 num = c - '0';
952 while ('0' <= (c = *s++) && c <= '9') {
953 x = num*10 + (c - '0');
954 if (x/10 != num) {
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000955 PyErr_SetString(
956 StructError,
957 "overflow in item count");
Guido van Rossum02975121992-08-17 08:55:12 +0000958 return -1;
959 }
960 num = x;
961 }
962 if (c == '\0')
963 break;
964 }
965 else
966 num = 1;
967
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000968 e = getentry(c, f);
969 if (e == NULL)
Guido van Rossum02975121992-08-17 08:55:12 +0000970 return -1;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000971 itemsize = e->size;
972 size = align(size, c, e);
Guido van Rossum02975121992-08-17 08:55:12 +0000973 x = num * itemsize;
974 size += x;
975 if (x/itemsize != num || size < 0) {
Barry Warsaw30695fa1996-12-12 23:32:31 +0000976 PyErr_SetString(StructError,
977 "total struct size too long");
Guido van Rossum02975121992-08-17 08:55:12 +0000978 return -1;
979 }
Guido van Rossum02975121992-08-17 08:55:12 +0000980 }
981
982 return size;
983}
984
985
Guido van Rossum414fd481997-12-19 04:24:24 +0000986static char calcsize__doc__[] = "\
987calcsize(fmt) -> int\n\
988Return size of C struct described by format string fmt.\n\
989See struct.__doc__ for more on format strings.";
Guido van Rossum02975121992-08-17 08:55:12 +0000990
Barry Warsaw30695fa1996-12-12 23:32:31 +0000991static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000992struct_calcsize(PyObject *self, PyObject *args)
Guido van Rossum02975121992-08-17 08:55:12 +0000993{
994 char *fmt;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000995 const formatdef *f;
Guido van Rossum02975121992-08-17 08:55:12 +0000996 int size;
997
Guido van Rossum43713e52000-02-29 13:59:29 +0000998 if (!PyArg_ParseTuple(args, "s:calcsize", &fmt))
Guido van Rossum02975121992-08-17 08:55:12 +0000999 return NULL;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001000 f = whichtable(&fmt);
1001 size = calcsize(fmt, f);
Guido van Rossum02975121992-08-17 08:55:12 +00001002 if (size < 0)
1003 return NULL;
Barry Warsaw30695fa1996-12-12 23:32:31 +00001004 return PyInt_FromLong((long)size);
Guido van Rossum02975121992-08-17 08:55:12 +00001005}
1006
1007
Guido van Rossum414fd481997-12-19 04:24:24 +00001008static char pack__doc__[] = "\
1009pack(fmt, v1, v2, ...) -> string\n\
1010Return string containing values v1, v2, ... packed according to fmt.\n\
1011See struct.__doc__ for more on format strings.";
Guido van Rossum02975121992-08-17 08:55:12 +00001012
Barry Warsaw30695fa1996-12-12 23:32:31 +00001013static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +00001014struct_pack(PyObject *self, PyObject *args)
Guido van Rossum02975121992-08-17 08:55:12 +00001015{
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001016 const formatdef *f, *e;
Barry Warsaw30695fa1996-12-12 23:32:31 +00001017 PyObject *format, *result, *v;
Guido van Rossum02975121992-08-17 08:55:12 +00001018 char *fmt;
1019 int size, num;
1020 int i, n;
Guido van Rossumb9d338c1997-01-03 15:40:33 +00001021 char *s, *res, *restart, *nres;
Guido van Rossum02975121992-08-17 08:55:12 +00001022 char c;
Guido van Rossum02975121992-08-17 08:55:12 +00001023
Barry Warsaw30695fa1996-12-12 23:32:31 +00001024 if (args == NULL || !PyTuple_Check(args) ||
1025 (n = PyTuple_Size(args)) < 1)
1026 {
Fred Drake137507e2000-06-01 02:02:46 +00001027 PyErr_SetString(PyExc_TypeError,
1028 "struct.pack requires at least one argument");
Guido van Rossum02975121992-08-17 08:55:12 +00001029 return NULL;
1030 }
Barry Warsaw30695fa1996-12-12 23:32:31 +00001031 format = PyTuple_GetItem(args, 0);
1032 if (!PyArg_Parse(format, "s", &fmt))
Guido van Rossum02975121992-08-17 08:55:12 +00001033 return NULL;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001034 f = whichtable(&fmt);
1035 size = calcsize(fmt, f);
Guido van Rossum02975121992-08-17 08:55:12 +00001036 if (size < 0)
1037 return NULL;
Barry Warsaw30695fa1996-12-12 23:32:31 +00001038 result = PyString_FromStringAndSize((char *)NULL, size);
Guido van Rossum02975121992-08-17 08:55:12 +00001039 if (result == NULL)
1040 return NULL;
1041
1042 s = fmt;
1043 i = 1;
Barry Warsaw30695fa1996-12-12 23:32:31 +00001044 res = restart = PyString_AsString(result);
Guido van Rossum02975121992-08-17 08:55:12 +00001045
1046 while ((c = *s++) != '\0') {
Guido van Rossum730806d1998-04-10 22:27:42 +00001047 if (isspace((int)c))
Guido van Rossume20aef51997-08-26 20:39:54 +00001048 continue;
Guido van Rossum02975121992-08-17 08:55:12 +00001049 if ('0' <= c && c <= '9') {
1050 num = c - '0';
1051 while ('0' <= (c = *s++) && c <= '9')
1052 num = num*10 + (c - '0');
1053 if (c == '\0')
1054 break;
1055 }
1056 else
1057 num = 1;
1058
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001059 e = getentry(c, f);
1060 if (e == NULL)
1061 goto fail;
Guido van Rossumb9d338c1997-01-03 15:40:33 +00001062 nres = restart + align((int)(res-restart), c, e);
1063 /* Fill padd bytes with zeros */
1064 while (res < nres)
1065 *res++ = '\0';
Guido van Rossum3aa27fd1996-12-31 02:10:45 +00001066 if (num == 0 && c != 's')
1067 continue;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001068 do {
1069 if (c == 'x') {
1070 /* doesn't consume arguments */
Guido van Rossum3aa27fd1996-12-31 02:10:45 +00001071 memset(res, '\0', num);
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001072 res += num;
Guido van Rossum02975121992-08-17 08:55:12 +00001073 break;
Guido van Rossum02975121992-08-17 08:55:12 +00001074 }
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001075 if (i >= n) {
1076 PyErr_SetString(StructError,
1077 "insufficient arguments to pack");
1078 goto fail;
1079 }
1080 v = PyTuple_GetItem(args, i++);
1081 if (v == NULL)
1082 goto fail;
1083 if (c == 's') {
1084 /* num is string size, not repeat count */
1085 int n;
1086 if (!PyString_Check(v)) {
1087 PyErr_SetString(StructError,
1088 "argument for 's' must be a string");
1089 goto fail;
1090 }
1091 n = PyString_Size(v);
1092 if (n > num)
1093 n = num;
1094 if (n > 0)
1095 memcpy(res, PyString_AsString(v), n);
1096 if (n < num)
Guido van Rossum3aa27fd1996-12-31 02:10:45 +00001097 memset(res+n, '\0', num-n);
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001098 res += num;
1099 break;
1100 }
Guido van Rossum9eb671f1997-09-05 07:08:39 +00001101 else if (c == 'p') {
1102 /* num is string size + 1,
1103 to fit in the count byte */
1104 int n;
1105 num--; /* now num is max string size */
1106 if (!PyString_Check(v)) {
1107 PyErr_SetString(StructError,
1108 "argument for 'p' must be a string");
1109 goto fail;
1110 }
1111 n = PyString_Size(v);
1112 if (n > num)
1113 n = num;
1114 if (n > 0)
1115 memcpy(res+1, PyString_AsString(v), n);
1116 if (n < num)
1117 /* no real need, just to be nice */
1118 memset(res+1+n, '\0', num-n);
1119 *res++ = n; /* store the length byte */
1120 res += num;
1121 break;
1122 }
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001123 else {
1124 if (e->pack(res, v, e) < 0)
1125 goto fail;
1126 res += e->size;
1127 }
1128 } while (--num > 0);
Guido van Rossum02975121992-08-17 08:55:12 +00001129 }
1130
1131 if (i < n) {
Barry Warsaw30695fa1996-12-12 23:32:31 +00001132 PyErr_SetString(StructError,
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001133 "too many arguments for pack format");
Guido van Rossum02975121992-08-17 08:55:12 +00001134 goto fail;
1135 }
1136
1137 return result;
1138
1139 fail:
Barry Warsaw30695fa1996-12-12 23:32:31 +00001140 Py_DECREF(result);
Guido van Rossum02975121992-08-17 08:55:12 +00001141 return NULL;
1142}
1143
1144
Guido van Rossum9897f0f1997-12-21 06:46:20 +00001145static char unpack__doc__[] = "\
1146unpack(fmt, string) -> (v1, v2, ...)\n\
1147Unpack the string, containing packed C structure data, according\n\
1148to fmt. Requires len(string)==calcsize(fmt).\n\
Guido van Rossum414fd481997-12-19 04:24:24 +00001149See struct.__doc__ for more on format strings.";
Guido van Rossum02975121992-08-17 08:55:12 +00001150
Barry Warsaw30695fa1996-12-12 23:32:31 +00001151static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +00001152struct_unpack(PyObject *self, PyObject *args)
Guido van Rossum02975121992-08-17 08:55:12 +00001153{
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001154 const formatdef *f, *e;
Guido van Rossum02975121992-08-17 08:55:12 +00001155 char *str, *start, *fmt, *s;
1156 char c;
Barry Warsawb9a781e1997-01-03 00:26:28 +00001157 int len, size, num;
Barry Warsaw30695fa1996-12-12 23:32:31 +00001158 PyObject *res, *v;
Guido van Rossum02975121992-08-17 08:55:12 +00001159
Guido van Rossum43713e52000-02-29 13:59:29 +00001160 if (!PyArg_ParseTuple(args, "ss#:unpack", &fmt, &start, &len))
Guido van Rossum02975121992-08-17 08:55:12 +00001161 return NULL;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001162 f = whichtable(&fmt);
1163 size = calcsize(fmt, f);
1164 if (size < 0)
1165 return NULL;
Guido van Rossum02975121992-08-17 08:55:12 +00001166 if (size != len) {
Barry Warsaw30695fa1996-12-12 23:32:31 +00001167 PyErr_SetString(StructError,
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001168 "unpack str size does not match format");
Guido van Rossum02975121992-08-17 08:55:12 +00001169 return NULL;
1170 }
Barry Warsaw30695fa1996-12-12 23:32:31 +00001171 res = PyList_New(0);
Guido van Rossum02975121992-08-17 08:55:12 +00001172 if (res == NULL)
1173 return NULL;
1174 str = start;
1175 s = fmt;
1176 while ((c = *s++) != '\0') {
Guido van Rossum730806d1998-04-10 22:27:42 +00001177 if (isspace((int)c))
Guido van Rossume20aef51997-08-26 20:39:54 +00001178 continue;
Guido van Rossum02975121992-08-17 08:55:12 +00001179 if ('0' <= c && c <= '9') {
1180 num = c - '0';
1181 while ('0' <= (c = *s++) && c <= '9')
1182 num = num*10 + (c - '0');
1183 if (c == '\0')
1184 break;
1185 }
1186 else
1187 num = 1;
1188
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001189 e = getentry(c, f);
1190 if (e == NULL)
1191 goto fail;
1192 str = start + align((int)(str-start), c, e);
Guido van Rossum3aa27fd1996-12-31 02:10:45 +00001193 if (num == 0 && c != 's')
1194 continue;
Guido van Rossum02975121992-08-17 08:55:12 +00001195
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001196 do {
1197 if (c == 'x') {
1198 str += num;
Guido van Rossum02975121992-08-17 08:55:12 +00001199 break;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001200 }
1201 if (c == 's') {
1202 /* num is string size, not repeat count */
1203 v = PyString_FromStringAndSize(str, num);
1204 if (v == NULL)
1205 goto fail;
1206 str += num;
1207 num = 0;
1208 }
Guido van Rossum9eb671f1997-09-05 07:08:39 +00001209 else if (c == 'p') {
1210 /* num is string buffer size,
1211 not repeat count */
1212 int n = *(unsigned char*)str;
1213 /* first byte (unsigned) is string size */
1214 if (n >= num)
1215 n = num-1;
1216 v = PyString_FromStringAndSize(str+1, n);
1217 if (v == NULL)
1218 goto fail;
1219 str += num;
1220 num = 0;
1221 }
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001222 else {
1223 v = e->unpack(str, e);
1224 if (v == NULL)
1225 goto fail;
1226 str += e->size;
Guido van Rossum02975121992-08-17 08:55:12 +00001227 }
Barry Warsaw30695fa1996-12-12 23:32:31 +00001228 if (v == NULL || PyList_Append(res, v) < 0)
Guido van Rossum02975121992-08-17 08:55:12 +00001229 goto fail;
Barry Warsaw30695fa1996-12-12 23:32:31 +00001230 Py_DECREF(v);
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001231 } while (--num > 0);
Guido van Rossum02975121992-08-17 08:55:12 +00001232 }
1233
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001234 v = PyList_AsTuple(res);
1235 Py_DECREF(res);
1236 return v;
Guido van Rossum02975121992-08-17 08:55:12 +00001237
1238 fail:
Barry Warsaw30695fa1996-12-12 23:32:31 +00001239 Py_DECREF(res);
Guido van Rossum02975121992-08-17 08:55:12 +00001240 return NULL;
1241}
1242
Guido van Rossum90ddb7b1992-08-19 16:44:15 +00001243
Guido van Rossum02975121992-08-17 08:55:12 +00001244/* List of functions */
1245
Barry Warsaw30695fa1996-12-12 23:32:31 +00001246static PyMethodDef struct_methods[] = {
Guido van Rossum414fd481997-12-19 04:24:24 +00001247 {"calcsize", struct_calcsize, METH_VARARGS, calcsize__doc__},
1248 {"pack", struct_pack, METH_VARARGS, pack__doc__},
1249 {"unpack", struct_unpack, METH_VARARGS, unpack__doc__},
Guido van Rossum02975121992-08-17 08:55:12 +00001250 {NULL, NULL} /* sentinel */
1251};
1252
1253
1254/* Module initialization */
1255
Guido van Rossum3886bb61998-12-04 18:50:17 +00001256DL_EXPORT(void)
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00001257initstruct(void)
Guido van Rossum02975121992-08-17 08:55:12 +00001258{
Barry Warsaw30695fa1996-12-12 23:32:31 +00001259 PyObject *m, *d;
Guido van Rossum02975121992-08-17 08:55:12 +00001260
1261 /* Create the module and add the functions */
Guido van Rossum414fd481997-12-19 04:24:24 +00001262 m = Py_InitModule4("struct", struct_methods, struct__doc__,
1263 (PyObject*)NULL, PYTHON_API_VERSION);
Guido van Rossum02975121992-08-17 08:55:12 +00001264
1265 /* Add some symbolic constants to the module */
Barry Warsaw30695fa1996-12-12 23:32:31 +00001266 d = PyModule_GetDict(m);
Guido van Rossum0cb96de1997-10-01 04:29:29 +00001267 StructError = PyErr_NewException("struct.error", NULL, NULL);
1268 if (StructError == NULL)
1269 return;
Barry Warsaw30695fa1996-12-12 23:32:31 +00001270 PyDict_SetItemString(d, "error", StructError);
Guido van Rossum02975121992-08-17 08:55:12 +00001271}