blob: 9d1c436494c62e0a5b92d5c78e67f6d4c4ca16e0 [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);
Tim Petersf0e717b2001-04-08 23:39:38 +0000656 /* Extend the sign bit. */
657 if (SIZEOF_LONG > f->size)
658 x |= -(x & (1L << (8*f->size - 1)));
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000659 return PyInt_FromLong(x);
660}
661
662static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000663bu_uint(const char *p, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000664{
Guido van Rossum6c87eca1997-01-03 19:08:16 +0000665 unsigned long x = 0;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000666 int i = f->size;
667 do {
668 x = (x<<8) | (*p++ & 0xFF);
669 } while (--i > 0);
Guido van Rossum39ef2271998-06-29 04:00:40 +0000670 if (f->size >= 4)
671 return PyLong_FromUnsignedLong(x);
672 else
673 return PyInt_FromLong((long)x);
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000674}
675
Guido van Rossum74679b41997-01-02 22:21:36 +0000676static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000677bu_float(const char *p, const formatdef *f)
Guido van Rossum74679b41997-01-02 22:21:36 +0000678{
679 return unpack_float(p, 1);
680}
681
682static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000683bu_double(const char *p, const formatdef *f)
Guido van Rossum74679b41997-01-02 22:21:36 +0000684{
685 return unpack_double(p, 1);
686}
687
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000688static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000689bp_int(char *p, PyObject *v, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000690{
691 long x;
692 int i;
693 if (get_long(v, &x) < 0)
694 return -1;
695 i = f->size;
696 do {
Guido van Rossum7844e381997-04-11 20:44:04 +0000697 p[--i] = (char)x;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000698 x >>= 8;
699 } while (i > 0);
700 return 0;
701}
702
Guido van Rossum60c50611996-12-31 16:29:52 +0000703static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000704bp_uint(char *p, PyObject *v, const formatdef *f)
Guido van Rossum60c50611996-12-31 16:29:52 +0000705{
706 unsigned long x;
707 int i;
708 if (get_ulong(v, &x) < 0)
709 return -1;
710 i = f->size;
711 do {
Guido van Rossum7844e381997-04-11 20:44:04 +0000712 p[--i] = (char)x;
Guido van Rossum60c50611996-12-31 16:29:52 +0000713 x >>= 8;
714 } while (i > 0);
715 return 0;
716}
717
Guido van Rossum74679b41997-01-02 22:21:36 +0000718static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000719bp_float(char *p, PyObject *v, const formatdef *f)
Guido van Rossum74679b41997-01-02 22:21:36 +0000720{
721 double x = PyFloat_AsDouble(v);
722 if (x == -1 && PyErr_Occurred()) {
723 PyErr_SetString(StructError,
724 "required argument is not a float");
725 return -1;
726 }
727 return pack_float(x, p, 1);
728}
729
730static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000731bp_double(char *p, PyObject *v, const formatdef *f)
Guido van Rossum74679b41997-01-02 22:21:36 +0000732{
733 double x = PyFloat_AsDouble(v);
734 if (x == -1 && PyErr_Occurred()) {
735 PyErr_SetString(StructError,
736 "required argument is not a float");
737 return -1;
738 }
739 return pack_double(x, p, 1);
740}
741
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000742static formatdef bigendian_table[] = {
743 {'x', 1, 0, NULL},
744 {'b', 1, 0, bu_int, bp_int},
745 {'B', 1, 0, bu_uint, bp_int},
746 {'c', 1, 0, nu_char, np_char},
747 {'s', 1, 0, NULL},
Guido van Rossum9eb671f1997-09-05 07:08:39 +0000748 {'p', 1, 0, NULL},
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000749 {'h', 2, 0, bu_int, bp_int},
Guido van Rossum60c50611996-12-31 16:29:52 +0000750 {'H', 2, 0, bu_uint, bp_uint},
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000751 {'i', 4, 0, bu_int, bp_int},
Guido van Rossum60c50611996-12-31 16:29:52 +0000752 {'I', 4, 0, bu_uint, bp_uint},
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000753 {'l', 4, 0, bu_int, bp_int},
Guido van Rossum60c50611996-12-31 16:29:52 +0000754 {'L', 4, 0, bu_uint, bp_uint},
Guido van Rossum74679b41997-01-02 22:21:36 +0000755 {'f', 4, 0, bu_float, bp_float},
756 {'d', 8, 0, bu_double, bp_double},
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000757 {0}
758};
759
760static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000761lu_int(const char *p, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000762{
763 long x = 0;
764 int i = f->size;
765 do {
766 x = (x<<8) | (p[--i] & 0xFF);
767 } while (i > 0);
Tim Petersf0e717b2001-04-08 23:39:38 +0000768 /* Extend the sign bit. */
769 if (SIZEOF_LONG > f->size)
770 x |= -(x & (1L << (8*f->size - 1)));
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000771 return PyInt_FromLong(x);
772}
773
774static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000775lu_uint(const char *p, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000776{
Guido van Rossum6c87eca1997-01-03 19:08:16 +0000777 unsigned long x = 0;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000778 int i = f->size;
779 do {
780 x = (x<<8) | (p[--i] & 0xFF);
781 } while (i > 0);
Guido van Rossum39ef2271998-06-29 04:00:40 +0000782 if (f->size >= 4)
783 return PyLong_FromUnsignedLong(x);
784 else
785 return PyInt_FromLong((long)x);
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000786}
787
Guido van Rossum74679b41997-01-02 22:21:36 +0000788static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000789lu_float(const char *p, const formatdef *f)
Guido van Rossum74679b41997-01-02 22:21:36 +0000790{
791 return unpack_float(p+3, -1);
792}
793
794static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000795lu_double(const char *p, const formatdef *f)
Guido van Rossum74679b41997-01-02 22:21:36 +0000796{
797 return unpack_double(p+7, -1);
798}
799
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000800static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000801lp_int(char *p, PyObject *v, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000802{
803 long x;
804 int i;
805 if (get_long(v, &x) < 0)
806 return -1;
807 i = f->size;
808 do {
Guido van Rossum7844e381997-04-11 20:44:04 +0000809 *p++ = (char)x;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000810 x >>= 8;
811 } while (--i > 0);
812 return 0;
813}
814
Guido van Rossum60c50611996-12-31 16:29:52 +0000815static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000816lp_uint(char *p, PyObject *v, const formatdef *f)
Guido van Rossum60c50611996-12-31 16:29:52 +0000817{
818 unsigned long x;
819 int i;
820 if (get_ulong(v, &x) < 0)
821 return -1;
822 i = f->size;
823 do {
Guido van Rossum7844e381997-04-11 20:44:04 +0000824 *p++ = (char)x;
Guido van Rossum60c50611996-12-31 16:29:52 +0000825 x >>= 8;
826 } while (--i > 0);
827 return 0;
828}
829
Guido van Rossum74679b41997-01-02 22:21:36 +0000830static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000831lp_float(char *p, PyObject *v, const formatdef *f)
Guido van Rossum74679b41997-01-02 22:21:36 +0000832{
833 double x = PyFloat_AsDouble(v);
834 if (x == -1 && PyErr_Occurred()) {
835 PyErr_SetString(StructError,
836 "required argument is not a float");
837 return -1;
838 }
839 return pack_float(x, p+3, -1);
840}
841
842static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000843lp_double(char *p, PyObject *v, const formatdef *f)
Guido van Rossum74679b41997-01-02 22:21:36 +0000844{
845 double x = PyFloat_AsDouble(v);
846 if (x == -1 && PyErr_Occurred()) {
847 PyErr_SetString(StructError,
848 "required argument is not a float");
849 return -1;
850 }
851 return pack_double(x, p+7, -1);
852}
853
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000854static formatdef lilendian_table[] = {
855 {'x', 1, 0, NULL},
856 {'b', 1, 0, lu_int, lp_int},
857 {'B', 1, 0, lu_uint, lp_int},
858 {'c', 1, 0, nu_char, np_char},
859 {'s', 1, 0, NULL},
Guido van Rossum9eb671f1997-09-05 07:08:39 +0000860 {'p', 1, 0, NULL},
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000861 {'h', 2, 0, lu_int, lp_int},
Guido van Rossum60c50611996-12-31 16:29:52 +0000862 {'H', 2, 0, lu_uint, lp_uint},
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000863 {'i', 4, 0, lu_int, lp_int},
Guido van Rossum60c50611996-12-31 16:29:52 +0000864 {'I', 4, 0, lu_uint, lp_uint},
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000865 {'l', 4, 0, lu_int, lp_int},
Guido van Rossum60c50611996-12-31 16:29:52 +0000866 {'L', 4, 0, lu_uint, lp_uint},
Guido van Rossum74679b41997-01-02 22:21:36 +0000867 {'f', 4, 0, lu_float, lp_float},
868 {'d', 8, 0, lu_double, lp_double},
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000869 {0}
870};
871
872
873static const formatdef *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000874whichtable(char **pfmt)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000875{
876 const char *fmt = (*pfmt)++; /* May be backed out of later */
877 switch (*fmt) {
878 case '<':
879 return lilendian_table;
880 case '>':
881 case '!': /* Network byte order is big-endian */
882 return bigendian_table;
883 case '=': { /* Host byte order -- different from native in aligment! */
884 int n = 1;
885 char *p = (char *) &n;
886 if (*p == 1)
887 return lilendian_table;
888 else
889 return bigendian_table;
890 }
891 default:
892 --*pfmt; /* Back out of pointer increment */
893 /* Fall through */
894 case '@':
895 return native_table;
896 }
897}
898
899
900/* Get the table entry for a format code */
901
902static const formatdef *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000903getentry(int c, const formatdef *f)
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000904{
905 for (; f->format != '\0'; f++) {
906 if (f->format == c) {
907 return f;
908 }
909 }
910 PyErr_SetString(StructError, "bad char in struct format");
911 return NULL;
912}
913
914
Guido van Rossum02975121992-08-17 08:55:12 +0000915/* Align a size according to a format code */
916
917static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000918align(int size, int c, const formatdef *e)
Guido van Rossum02975121992-08-17 08:55:12 +0000919{
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000920 if (e->format == c) {
921 if (e->alignment) {
922 size = ((size + e->alignment - 1)
923 / e->alignment)
924 * e->alignment;
925 }
Guido van Rossum02975121992-08-17 08:55:12 +0000926 }
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000927 return size;
Guido van Rossum02975121992-08-17 08:55:12 +0000928}
929
930
931/* calculate the size of a format string */
932
933static int
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000934calcsize(const char *fmt, const formatdef *f)
Guido van Rossum02975121992-08-17 08:55:12 +0000935{
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000936 const formatdef *e;
937 const char *s;
Guido van Rossum02975121992-08-17 08:55:12 +0000938 char c;
939 int size, num, itemsize, x;
940
941 s = fmt;
942 size = 0;
943 while ((c = *s++) != '\0') {
Guido van Rossum730806d1998-04-10 22:27:42 +0000944 if (isspace((int)c))
Guido van Rossume20aef51997-08-26 20:39:54 +0000945 continue;
Guido van Rossum02975121992-08-17 08:55:12 +0000946 if ('0' <= c && c <= '9') {
947 num = c - '0';
948 while ('0' <= (c = *s++) && c <= '9') {
949 x = num*10 + (c - '0');
950 if (x/10 != num) {
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000951 PyErr_SetString(
952 StructError,
953 "overflow in item count");
Guido van Rossum02975121992-08-17 08:55:12 +0000954 return -1;
955 }
956 num = x;
957 }
958 if (c == '\0')
959 break;
960 }
961 else
962 num = 1;
963
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000964 e = getentry(c, f);
965 if (e == NULL)
Guido van Rossum02975121992-08-17 08:55:12 +0000966 return -1;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000967 itemsize = e->size;
968 size = align(size, c, e);
Guido van Rossum02975121992-08-17 08:55:12 +0000969 x = num * itemsize;
970 size += x;
971 if (x/itemsize != num || size < 0) {
Barry Warsaw30695fa1996-12-12 23:32:31 +0000972 PyErr_SetString(StructError,
973 "total struct size too long");
Guido van Rossum02975121992-08-17 08:55:12 +0000974 return -1;
975 }
Guido van Rossum02975121992-08-17 08:55:12 +0000976 }
977
978 return size;
979}
980
981
Guido van Rossum414fd481997-12-19 04:24:24 +0000982static char calcsize__doc__[] = "\
983calcsize(fmt) -> int\n\
984Return size of C struct described by format string fmt.\n\
985See struct.__doc__ for more on format strings.";
Guido van Rossum02975121992-08-17 08:55:12 +0000986
Barry Warsaw30695fa1996-12-12 23:32:31 +0000987static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000988struct_calcsize(PyObject *self, PyObject *args)
Guido van Rossum02975121992-08-17 08:55:12 +0000989{
990 char *fmt;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000991 const formatdef *f;
Guido van Rossum02975121992-08-17 08:55:12 +0000992 int size;
993
Guido van Rossum43713e52000-02-29 13:59:29 +0000994 if (!PyArg_ParseTuple(args, "s:calcsize", &fmt))
Guido van Rossum02975121992-08-17 08:55:12 +0000995 return NULL;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +0000996 f = whichtable(&fmt);
997 size = calcsize(fmt, f);
Guido van Rossum02975121992-08-17 08:55:12 +0000998 if (size < 0)
999 return NULL;
Barry Warsaw30695fa1996-12-12 23:32:31 +00001000 return PyInt_FromLong((long)size);
Guido van Rossum02975121992-08-17 08:55:12 +00001001}
1002
1003
Guido van Rossum414fd481997-12-19 04:24:24 +00001004static char pack__doc__[] = "\
1005pack(fmt, v1, v2, ...) -> string\n\
1006Return string containing values v1, v2, ... packed according to fmt.\n\
1007See struct.__doc__ for more on format strings.";
Guido van Rossum02975121992-08-17 08:55:12 +00001008
Barry Warsaw30695fa1996-12-12 23:32:31 +00001009static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +00001010struct_pack(PyObject *self, PyObject *args)
Guido van Rossum02975121992-08-17 08:55:12 +00001011{
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001012 const formatdef *f, *e;
Barry Warsaw30695fa1996-12-12 23:32:31 +00001013 PyObject *format, *result, *v;
Guido van Rossum02975121992-08-17 08:55:12 +00001014 char *fmt;
1015 int size, num;
1016 int i, n;
Guido van Rossumb9d338c1997-01-03 15:40:33 +00001017 char *s, *res, *restart, *nres;
Guido van Rossum02975121992-08-17 08:55:12 +00001018 char c;
Guido van Rossum02975121992-08-17 08:55:12 +00001019
Barry Warsaw30695fa1996-12-12 23:32:31 +00001020 if (args == NULL || !PyTuple_Check(args) ||
1021 (n = PyTuple_Size(args)) < 1)
1022 {
Fred Drake137507e2000-06-01 02:02:46 +00001023 PyErr_SetString(PyExc_TypeError,
1024 "struct.pack requires at least one argument");
Guido van Rossum02975121992-08-17 08:55:12 +00001025 return NULL;
1026 }
Barry Warsaw30695fa1996-12-12 23:32:31 +00001027 format = PyTuple_GetItem(args, 0);
1028 if (!PyArg_Parse(format, "s", &fmt))
Guido van Rossum02975121992-08-17 08:55:12 +00001029 return NULL;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001030 f = whichtable(&fmt);
1031 size = calcsize(fmt, f);
Guido van Rossum02975121992-08-17 08:55:12 +00001032 if (size < 0)
1033 return NULL;
Barry Warsaw30695fa1996-12-12 23:32:31 +00001034 result = PyString_FromStringAndSize((char *)NULL, size);
Guido van Rossum02975121992-08-17 08:55:12 +00001035 if (result == NULL)
1036 return NULL;
1037
1038 s = fmt;
1039 i = 1;
Barry Warsaw30695fa1996-12-12 23:32:31 +00001040 res = restart = PyString_AsString(result);
Guido van Rossum02975121992-08-17 08:55:12 +00001041
1042 while ((c = *s++) != '\0') {
Guido van Rossum730806d1998-04-10 22:27:42 +00001043 if (isspace((int)c))
Guido van Rossume20aef51997-08-26 20:39:54 +00001044 continue;
Guido van Rossum02975121992-08-17 08:55:12 +00001045 if ('0' <= c && c <= '9') {
1046 num = c - '0';
1047 while ('0' <= (c = *s++) && c <= '9')
1048 num = num*10 + (c - '0');
1049 if (c == '\0')
1050 break;
1051 }
1052 else
1053 num = 1;
1054
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001055 e = getentry(c, f);
1056 if (e == NULL)
1057 goto fail;
Guido van Rossumb9d338c1997-01-03 15:40:33 +00001058 nres = restart + align((int)(res-restart), c, e);
1059 /* Fill padd bytes with zeros */
1060 while (res < nres)
1061 *res++ = '\0';
Guido van Rossum3aa27fd1996-12-31 02:10:45 +00001062 if (num == 0 && c != 's')
1063 continue;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001064 do {
1065 if (c == 'x') {
1066 /* doesn't consume arguments */
Guido van Rossum3aa27fd1996-12-31 02:10:45 +00001067 memset(res, '\0', num);
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001068 res += num;
Guido van Rossum02975121992-08-17 08:55:12 +00001069 break;
Guido van Rossum02975121992-08-17 08:55:12 +00001070 }
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001071 if (i >= n) {
1072 PyErr_SetString(StructError,
1073 "insufficient arguments to pack");
1074 goto fail;
1075 }
1076 v = PyTuple_GetItem(args, i++);
1077 if (v == NULL)
1078 goto fail;
1079 if (c == 's') {
1080 /* num is string size, not repeat count */
1081 int n;
1082 if (!PyString_Check(v)) {
1083 PyErr_SetString(StructError,
1084 "argument for 's' must be a string");
1085 goto fail;
1086 }
1087 n = PyString_Size(v);
1088 if (n > num)
1089 n = num;
1090 if (n > 0)
1091 memcpy(res, PyString_AsString(v), n);
1092 if (n < num)
Guido van Rossum3aa27fd1996-12-31 02:10:45 +00001093 memset(res+n, '\0', num-n);
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001094 res += num;
1095 break;
1096 }
Guido van Rossum9eb671f1997-09-05 07:08:39 +00001097 else if (c == 'p') {
1098 /* num is string size + 1,
1099 to fit in the count byte */
1100 int n;
1101 num--; /* now num is max string size */
1102 if (!PyString_Check(v)) {
1103 PyErr_SetString(StructError,
1104 "argument for 'p' must be a string");
1105 goto fail;
1106 }
1107 n = PyString_Size(v);
1108 if (n > num)
1109 n = num;
1110 if (n > 0)
1111 memcpy(res+1, PyString_AsString(v), n);
1112 if (n < num)
1113 /* no real need, just to be nice */
1114 memset(res+1+n, '\0', num-n);
1115 *res++ = n; /* store the length byte */
1116 res += num;
1117 break;
1118 }
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001119 else {
1120 if (e->pack(res, v, e) < 0)
1121 goto fail;
1122 res += e->size;
1123 }
1124 } while (--num > 0);
Guido van Rossum02975121992-08-17 08:55:12 +00001125 }
1126
1127 if (i < n) {
Barry Warsaw30695fa1996-12-12 23:32:31 +00001128 PyErr_SetString(StructError,
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001129 "too many arguments for pack format");
Guido van Rossum02975121992-08-17 08:55:12 +00001130 goto fail;
1131 }
1132
1133 return result;
1134
1135 fail:
Barry Warsaw30695fa1996-12-12 23:32:31 +00001136 Py_DECREF(result);
Guido van Rossum02975121992-08-17 08:55:12 +00001137 return NULL;
1138}
1139
1140
Guido van Rossum9897f0f1997-12-21 06:46:20 +00001141static char unpack__doc__[] = "\
1142unpack(fmt, string) -> (v1, v2, ...)\n\
1143Unpack the string, containing packed C structure data, according\n\
1144to fmt. Requires len(string)==calcsize(fmt).\n\
Guido van Rossum414fd481997-12-19 04:24:24 +00001145See struct.__doc__ for more on format strings.";
Guido van Rossum02975121992-08-17 08:55:12 +00001146
Barry Warsaw30695fa1996-12-12 23:32:31 +00001147static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +00001148struct_unpack(PyObject *self, PyObject *args)
Guido van Rossum02975121992-08-17 08:55:12 +00001149{
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001150 const formatdef *f, *e;
Guido van Rossum02975121992-08-17 08:55:12 +00001151 char *str, *start, *fmt, *s;
1152 char c;
Barry Warsawb9a781e1997-01-03 00:26:28 +00001153 int len, size, num;
Barry Warsaw30695fa1996-12-12 23:32:31 +00001154 PyObject *res, *v;
Guido van Rossum02975121992-08-17 08:55:12 +00001155
Guido van Rossum43713e52000-02-29 13:59:29 +00001156 if (!PyArg_ParseTuple(args, "ss#:unpack", &fmt, &start, &len))
Guido van Rossum02975121992-08-17 08:55:12 +00001157 return NULL;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001158 f = whichtable(&fmt);
1159 size = calcsize(fmt, f);
1160 if (size < 0)
1161 return NULL;
Guido van Rossum02975121992-08-17 08:55:12 +00001162 if (size != len) {
Barry Warsaw30695fa1996-12-12 23:32:31 +00001163 PyErr_SetString(StructError,
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001164 "unpack str size does not match format");
Guido van Rossum02975121992-08-17 08:55:12 +00001165 return NULL;
1166 }
Barry Warsaw30695fa1996-12-12 23:32:31 +00001167 res = PyList_New(0);
Guido van Rossum02975121992-08-17 08:55:12 +00001168 if (res == NULL)
1169 return NULL;
1170 str = start;
1171 s = fmt;
1172 while ((c = *s++) != '\0') {
Guido van Rossum730806d1998-04-10 22:27:42 +00001173 if (isspace((int)c))
Guido van Rossume20aef51997-08-26 20:39:54 +00001174 continue;
Guido van Rossum02975121992-08-17 08:55:12 +00001175 if ('0' <= c && c <= '9') {
1176 num = c - '0';
1177 while ('0' <= (c = *s++) && c <= '9')
1178 num = num*10 + (c - '0');
1179 if (c == '\0')
1180 break;
1181 }
1182 else
1183 num = 1;
1184
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001185 e = getentry(c, f);
1186 if (e == NULL)
1187 goto fail;
1188 str = start + align((int)(str-start), c, e);
Guido van Rossum3aa27fd1996-12-31 02:10:45 +00001189 if (num == 0 && c != 's')
1190 continue;
Guido van Rossum02975121992-08-17 08:55:12 +00001191
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001192 do {
1193 if (c == 'x') {
1194 str += num;
Guido van Rossum02975121992-08-17 08:55:12 +00001195 break;
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001196 }
1197 if (c == 's') {
1198 /* num is string size, not repeat count */
1199 v = PyString_FromStringAndSize(str, num);
1200 if (v == NULL)
1201 goto fail;
1202 str += num;
1203 num = 0;
1204 }
Guido van Rossum9eb671f1997-09-05 07:08:39 +00001205 else if (c == 'p') {
1206 /* num is string buffer size,
1207 not repeat count */
1208 int n = *(unsigned char*)str;
1209 /* first byte (unsigned) is string size */
1210 if (n >= num)
1211 n = num-1;
1212 v = PyString_FromStringAndSize(str+1, n);
1213 if (v == NULL)
1214 goto fail;
1215 str += num;
1216 num = 0;
1217 }
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001218 else {
1219 v = e->unpack(str, e);
1220 if (v == NULL)
1221 goto fail;
1222 str += e->size;
Guido van Rossum02975121992-08-17 08:55:12 +00001223 }
Barry Warsaw30695fa1996-12-12 23:32:31 +00001224 if (v == NULL || PyList_Append(res, v) < 0)
Guido van Rossum02975121992-08-17 08:55:12 +00001225 goto fail;
Barry Warsaw30695fa1996-12-12 23:32:31 +00001226 Py_DECREF(v);
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001227 } while (--num > 0);
Guido van Rossum02975121992-08-17 08:55:12 +00001228 }
1229
Guido van Rossumf7e6b4b1996-12-31 01:41:25 +00001230 v = PyList_AsTuple(res);
1231 Py_DECREF(res);
1232 return v;
Guido van Rossum02975121992-08-17 08:55:12 +00001233
1234 fail:
Barry Warsaw30695fa1996-12-12 23:32:31 +00001235 Py_DECREF(res);
Guido van Rossum02975121992-08-17 08:55:12 +00001236 return NULL;
1237}
1238
Guido van Rossum90ddb7b1992-08-19 16:44:15 +00001239
Guido van Rossum02975121992-08-17 08:55:12 +00001240/* List of functions */
1241
Barry Warsaw30695fa1996-12-12 23:32:31 +00001242static PyMethodDef struct_methods[] = {
Guido van Rossum414fd481997-12-19 04:24:24 +00001243 {"calcsize", struct_calcsize, METH_VARARGS, calcsize__doc__},
1244 {"pack", struct_pack, METH_VARARGS, pack__doc__},
1245 {"unpack", struct_unpack, METH_VARARGS, unpack__doc__},
Guido van Rossum02975121992-08-17 08:55:12 +00001246 {NULL, NULL} /* sentinel */
1247};
1248
1249
1250/* Module initialization */
1251
Guido van Rossum3886bb61998-12-04 18:50:17 +00001252DL_EXPORT(void)
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00001253initstruct(void)
Guido van Rossum02975121992-08-17 08:55:12 +00001254{
Barry Warsaw30695fa1996-12-12 23:32:31 +00001255 PyObject *m, *d;
Guido van Rossum02975121992-08-17 08:55:12 +00001256
1257 /* Create the module and add the functions */
Guido van Rossum414fd481997-12-19 04:24:24 +00001258 m = Py_InitModule4("struct", struct_methods, struct__doc__,
1259 (PyObject*)NULL, PYTHON_API_VERSION);
Guido van Rossum02975121992-08-17 08:55:12 +00001260
1261 /* Add some symbolic constants to the module */
Barry Warsaw30695fa1996-12-12 23:32:31 +00001262 d = PyModule_GetDict(m);
Guido van Rossum0cb96de1997-10-01 04:29:29 +00001263 StructError = PyErr_NewException("struct.error", NULL, NULL);
1264 if (StructError == NULL)
1265 return;
Barry Warsaw30695fa1996-12-12 23:32:31 +00001266 PyDict_SetItemString(d, "error", StructError);
Guido van Rossum02975121992-08-17 08:55:12 +00001267}