Apparently the code to forestall Tk eating events was too aggressive (Tk user input...
[python/dscho.git] / Modules / structmodule.c
blob9d1c436494c62e0a5b92d5c78e67f6d4c4ca16e0
2 /* struct module -- pack values into and (out of) strings */
4 /* New version supporting byte order, alignment and size options,
5 character strings, and unsigned numbers */
7 static char struct__doc__[] = "\
8 Functions to convert between Python values and C structs.\n\
9 Python strings are used to hold the data representing the C struct\n\
10 and also as format strings to describe the layout of data in the C struct.\n\
11 \n\
12 The 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\
19 The remaining chars indicate types of args and must match exactly;\n\
20 these 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\
24 Special cases (preceding decimal count indicates length):\n\
25 s:string (array of char); p: pascal string (w. count byte).\n\
26 Special case (only available in native format):\n\
27 P:an integer type that is wide enough to hold a pointer.\n\
28 Whitespace between formats is ignored.\n\
29 \n\
30 The variable struct.error is an exception raised on errors.";
32 #include "Python.h"
34 #include <ctype.h>
37 /* Exception */
39 static PyObject *StructError;
42 /* Define various structs to figure out the alignments of types */
44 #ifdef __MWERKS__
46 ** XXXX We have a problem here. There are no unique alignment rules
47 ** on the PowerPC mac.
49 #ifdef __powerc
50 #pragma options align=mac68k
51 #endif
52 #endif /* __MWERKS__ */
54 typedef struct { char c; short x; } s_short;
55 typedef struct { char c; int x; } s_int;
56 typedef struct { char c; long x; } s_long;
57 typedef struct { char c; float x; } s_float;
58 typedef struct { char c; double x; } s_double;
59 typedef struct { char c; void *x; } s_void_p;
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))
66 #define VOID_P_ALIGN (sizeof(s_void_p) - sizeof(void *))
68 #define STRINGIFY(x) #x
70 #ifdef __powerc
71 #pragma options align=reset
72 #endif
74 /* Helper routine to get a Python integer and raise the appropriate error
75 if it isn't one */
77 static int
78 get_long(PyObject *v, long *p)
80 long x = PyInt_AsLong(v);
81 if (x == -1 && PyErr_Occurred()) {
82 if (PyErr_ExceptionMatches(PyExc_TypeError))
83 PyErr_SetString(StructError,
84 "required argument is not an integer");
85 return -1;
87 *p = x;
88 return 0;
92 /* Same, but handling unsigned long */
94 static int
95 get_ulong(PyObject *v, unsigned long *p)
97 if (PyLong_Check(v)) {
98 unsigned long x = PyLong_AsUnsignedLong(v);
99 if (x == (unsigned long)(-1) && PyErr_Occurred())
100 return -1;
101 *p = x;
102 return 0;
104 else {
105 return get_long(v, (long *)p);
110 /* Floating point helpers */
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 */
116 /* XXX Inf/NaN are not handled quite right (but underflow is!) */
118 static int
119 pack_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 */
123 int s;
124 int e;
125 double f;
126 long fbits;
128 if (x < 0) {
129 s = 1;
130 x = -x;
132 else
133 s = 0;
135 f = frexp(x, &e);
137 /* Normalize f to be in the range [1.0, 2.0) */
138 if (0.5 <= f && f < 1.0) {
139 f *= 2.0;
140 e--;
142 else if (f == 0.0) {
143 e = 0;
145 else {
146 PyErr_SetString(PyExc_SystemError,
147 "frexp() result out of range");
148 return -1;
151 if (e >= 128) {
152 /* XXX 128 itself is reserved for Inf/NaN */
153 PyErr_SetString(PyExc_OverflowError,
154 "float too large to pack with f format");
155 return -1;
157 else if (e < -126) {
158 /* Gradual underflow */
159 f = ldexp(f, 126 + e);
160 e = 0;
162 else if (!(e == 0 && f == 0.0)) {
163 e += 127;
164 f -= 1.0; /* Get rid of leading 1 */
167 f *= 8388608.0; /* 2**23 */
168 fbits = (long) floor(f + 0.5); /* Round */
170 /* First byte */
171 *p = (s<<7) | (e>>1);
172 p += incr;
174 /* Second byte */
175 *p = (char) (((e&1)<<7) | (fbits>>16));
176 p += incr;
178 /* Third byte */
179 *p = (fbits>>8) & 0xFF;
180 p += incr;
182 /* Fourth byte */
183 *p = fbits&0xFF;
185 /* Done */
186 return 0;
189 static int
190 pack_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 */
194 int s;
195 int e;
196 double f;
197 long fhi, flo;
199 if (x < 0) {
200 s = 1;
201 x = -x;
203 else
204 s = 0;
206 f = frexp(x, &e);
208 /* Normalize f to be in the range [1.0, 2.0) */
209 if (0.5 <= f && f < 1.0) {
210 f *= 2.0;
211 e--;
213 else if (f == 0.0) {
214 e = 0;
216 else {
217 PyErr_SetString(PyExc_SystemError,
218 "frexp() result out of range");
219 return -1;
222 if (e >= 1024) {
223 /* XXX 1024 itself is reserved for Inf/NaN */
224 PyErr_SetString(PyExc_OverflowError,
225 "float too large to pack with d format");
226 return -1;
228 else if (e < -1022) {
229 /* Gradual underflow */
230 f = ldexp(f, 1022 + e);
231 e = 0;
233 else if (!(e == 0 && f == 0.0)) {
234 e += 1023;
235 f -= 1.0; /* Get rid of leading 1 */
238 /* 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 */
245 /* First byte */
246 *p = (s<<7) | (e>>4);
247 p += incr;
249 /* Second byte */
250 *p = (char) (((e&0xF)<<4) | (fhi>>24));
251 p += incr;
253 /* Third byte */
254 *p = (fhi>>16) & 0xFF;
255 p += incr;
257 /* Fourth byte */
258 *p = (fhi>>8) & 0xFF;
259 p += incr;
261 /* Fifth byte */
262 *p = fhi & 0xFF;
263 p += incr;
265 /* Sixth byte */
266 *p = (flo>>16) & 0xFF;
267 p += incr;
269 /* Seventh byte */
270 *p = (flo>>8) & 0xFF;
271 p += incr;
273 /* Eighth byte */
274 *p = flo & 0xFF;
275 p += incr;
277 /* Done */
278 return 0;
281 static PyObject *
282 unpack_float(const char *p, /* Where the high order byte is */
283 int incr) /* 1 for big-endian; -1 for little-endian */
285 int s;
286 int e;
287 long f;
288 double x;
290 /* First byte */
291 s = (*p>>7) & 1;
292 e = (*p & 0x7F) << 1;
293 p += incr;
295 /* Second byte */
296 e |= (*p>>7) & 1;
297 f = (*p & 0x7F) << 16;
298 p += incr;
300 /* Third byte */
301 f |= (*p & 0xFF) << 8;
302 p += incr;
304 /* Fourth byte */
305 f |= *p & 0xFF;
307 x = (double)f / 8388608.0;
309 /* XXX This sadly ignores Inf/NaN issues */
310 if (e == 0)
311 e = -126;
312 else {
313 x += 1.0;
314 e -= 127;
316 x = ldexp(x, e);
318 if (s)
319 x = -x;
321 return PyFloat_FromDouble(x);
324 static PyObject *
325 unpack_double(const char *p, /* Where the high order byte is */
326 int incr) /* 1 for big-endian; -1 for little-endian */
328 int s;
329 int e;
330 long fhi, flo;
331 double x;
333 /* First byte */
334 s = (*p>>7) & 1;
335 e = (*p & 0x7F) << 4;
336 p += incr;
338 /* Second byte */
339 e |= (*p>>4) & 0xF;
340 fhi = (*p & 0xF) << 24;
341 p += incr;
343 /* Third byte */
344 fhi |= (*p & 0xFF) << 16;
345 p += incr;
347 /* Fourth byte */
348 fhi |= (*p & 0xFF) << 8;
349 p += incr;
351 /* Fifth byte */
352 fhi |= *p & 0xFF;
353 p += incr;
355 /* Sixth byte */
356 flo = (*p & 0xFF) << 16;
357 p += incr;
359 /* Seventh byte */
360 flo |= (*p & 0xFF) << 8;
361 p += incr;
363 /* Eighth byte */
364 flo |= *p & 0xFF;
365 p += incr;
367 x = (double)fhi + (double)flo / 16777216.0; /* 2**24 */
368 x /= 268435456.0; /* 2**28 */
370 /* XXX This sadly ignores Inf/NaN */
371 if (e == 0)
372 e = -1022;
373 else {
374 x += 1.0;
375 e -= 1023;
377 x = ldexp(x, e);
379 if (s)
380 x = -x;
382 return PyFloat_FromDouble(x);
386 /* The translation function for each format character is table driven */
388 typedef struct _formatdef {
389 char format;
390 int size;
391 int alignment;
392 PyObject* (*unpack)(const char *,
393 const struct _formatdef *);
394 int (*pack)(char *, PyObject *,
395 const struct _formatdef *);
396 } formatdef;
398 static PyObject *
399 nu_char(const char *p, const formatdef *f)
401 return PyString_FromStringAndSize(p, 1);
404 static PyObject *
405 nu_byte(const char *p, const formatdef *f)
407 return PyInt_FromLong((long) *(signed char *)p);
410 static PyObject *
411 nu_ubyte(const char *p, const formatdef *f)
413 return PyInt_FromLong((long) *(unsigned char *)p);
416 static PyObject *
417 nu_short(const char *p, const formatdef *f)
419 return PyInt_FromLong((long) *(short *)p);
422 static PyObject *
423 nu_ushort(const char *p, const formatdef *f)
425 return PyInt_FromLong((long) *(unsigned short *)p);
428 static PyObject *
429 nu_int(const char *p, const formatdef *f)
431 return PyInt_FromLong((long) *(int *)p);
434 static PyObject *
435 nu_uint(const char *p, const formatdef *f)
437 unsigned int x = *(unsigned int *)p;
438 return PyLong_FromUnsignedLong((unsigned long)x);
441 static PyObject *
442 nu_long(const char *p, const formatdef *f)
444 return PyInt_FromLong(*(long *)p);
447 static PyObject *
448 nu_ulong(const char *p, const formatdef *f)
450 return PyLong_FromUnsignedLong(*(unsigned long *)p);
453 static PyObject *
454 nu_float(const char *p, const formatdef *f)
456 float x;
457 memcpy((char *)&x, p, sizeof(float));
458 return PyFloat_FromDouble((double)x);
461 static PyObject *
462 nu_double(const char *p, const formatdef *f)
464 double x;
465 memcpy((char *)&x, p, sizeof(double));
466 return PyFloat_FromDouble(x);
469 static PyObject *
470 nu_void_p(const char *p, const formatdef *f)
472 return PyLong_FromVoidPtr(*(void **)p);
475 static int
476 np_byte(char *p, PyObject *v, const formatdef *f)
478 long x;
479 if (get_long(v, &x) < 0)
480 return -1;
481 if (x < -128 || x > 127){
482 PyErr_SetString(StructError,
483 "byte format requires -128<=number<=127");
484 return -1;
486 *p = (char)x;
487 return 0;
490 static int
491 np_ubyte(char *p, PyObject *v, const formatdef *f)
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;
501 *p = (char)x;
502 return 0;
505 static int
506 np_char(char *p, PyObject *v, const formatdef *f)
508 if (!PyString_Check(v) || PyString_Size(v) != 1) {
509 PyErr_SetString(StructError,
510 "char format require string of length 1");
511 return -1;
513 *p = *PyString_AsString(v);
514 return 0;
517 static int
518 np_short(char *p, PyObject *v, const formatdef *f)
520 long x;
521 if (get_long(v, &x) < 0)
522 return -1;
523 if (x < SHRT_MIN || x > SHRT_MAX){
524 PyErr_SetString(StructError,
525 "short format requires " STRINGIFY(SHRT_MIN)
526 "<=number<=" STRINGIFY(SHRT_MAX));
527 return -1;
529 * (short *)p = (short)x;
530 return 0;
533 static int
534 np_ushort(char *p, PyObject *v, const formatdef *f)
536 long x;
537 if (get_long(v, &x) < 0)
538 return -1;
539 if (x < 0 || x > USHRT_MAX){
540 PyErr_SetString(StructError,
541 "short format requires 0<=number<=" STRINGIFY(USHRT_MAX));
542 return -1;
544 * (unsigned short *)p = (unsigned short)x;
545 return 0;
548 static int
549 np_int(char *p, PyObject *v, const formatdef *f)
551 long x;
552 if (get_long(v, &x) < 0)
553 return -1;
554 * (int *)p = x;
555 return 0;
558 static int
559 np_uint(char *p, PyObject *v, const formatdef *f)
561 unsigned long x;
562 if (get_ulong(v, &x) < 0)
563 return -1;
564 * (unsigned int *)p = x;
565 return 0;
568 static int
569 np_long(char *p, PyObject *v, const formatdef *f)
571 long x;
572 if (get_long(v, &x) < 0)
573 return -1;
574 * (long *)p = x;
575 return 0;
578 static int
579 np_ulong(char *p, PyObject *v, const formatdef *f)
581 unsigned long x;
582 if (get_ulong(v, &x) < 0)
583 return -1;
584 * (unsigned long *)p = x;
585 return 0;
588 static int
589 np_float(char *p, PyObject *v, const formatdef *f)
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;
597 memcpy(p, (char *)&x, sizeof(float));
598 return 0;
601 static int
602 np_double(char *p, PyObject *v, const formatdef *f)
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;
610 memcpy(p, (char *)&x, sizeof(double));
611 return 0;
614 static int
615 np_void_p(char *p, PyObject *v, const formatdef *f)
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;
625 *(void **)p = x;
626 return 0;
629 static formatdef native_table[] = {
630 {'x', sizeof(char), 0, NULL},
631 {'b', sizeof(char), 0, nu_byte, np_byte},
632 {'B', sizeof(char), 0, nu_ubyte, np_ubyte},
633 {'c', sizeof(char), 0, nu_char, np_char},
634 {'s', sizeof(char), 0, NULL},
635 {'p', sizeof(char), 0, NULL},
636 {'h', sizeof(short), SHORT_ALIGN, nu_short, np_short},
637 {'H', sizeof(short), SHORT_ALIGN, nu_ushort, np_ushort},
638 {'i', sizeof(int), INT_ALIGN, nu_int, np_int},
639 {'I', sizeof(int), INT_ALIGN, nu_uint, np_uint},
640 {'l', sizeof(long), LONG_ALIGN, nu_long, np_long},
641 {'L', sizeof(long), LONG_ALIGN, nu_ulong, np_ulong},
642 {'f', sizeof(float), FLOAT_ALIGN, nu_float, np_float},
643 {'d', sizeof(double), DOUBLE_ALIGN, nu_double, np_double},
644 {'P', sizeof(void *), VOID_P_ALIGN, nu_void_p, np_void_p},
648 static PyObject *
649 bu_int(const char *p, const formatdef *f)
651 long x = 0;
652 int i = f->size;
653 do {
654 x = (x<<8) | (*p++ & 0xFF);
655 } while (--i > 0);
656 /* Extend the sign bit. */
657 if (SIZEOF_LONG > f->size)
658 x |= -(x & (1L << (8*f->size - 1)));
659 return PyInt_FromLong(x);
662 static PyObject *
663 bu_uint(const char *p, const formatdef *f)
665 unsigned long x = 0;
666 int i = f->size;
667 do {
668 x = (x<<8) | (*p++ & 0xFF);
669 } while (--i > 0);
670 if (f->size >= 4)
671 return PyLong_FromUnsignedLong(x);
672 else
673 return PyInt_FromLong((long)x);
676 static PyObject *
677 bu_float(const char *p, const formatdef *f)
679 return unpack_float(p, 1);
682 static PyObject *
683 bu_double(const char *p, const formatdef *f)
685 return unpack_double(p, 1);
688 static int
689 bp_int(char *p, PyObject *v, const formatdef *f)
691 long x;
692 int i;
693 if (get_long(v, &x) < 0)
694 return -1;
695 i = f->size;
696 do {
697 p[--i] = (char)x;
698 x >>= 8;
699 } while (i > 0);
700 return 0;
703 static int
704 bp_uint(char *p, PyObject *v, const formatdef *f)
706 unsigned long x;
707 int i;
708 if (get_ulong(v, &x) < 0)
709 return -1;
710 i = f->size;
711 do {
712 p[--i] = (char)x;
713 x >>= 8;
714 } while (i > 0);
715 return 0;
718 static int
719 bp_float(char *p, PyObject *v, const formatdef *f)
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;
727 return pack_float(x, p, 1);
730 static int
731 bp_double(char *p, PyObject *v, const formatdef *f)
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;
739 return pack_double(x, p, 1);
742 static 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},
748 {'p', 1, 0, NULL},
749 {'h', 2, 0, bu_int, bp_int},
750 {'H', 2, 0, bu_uint, bp_uint},
751 {'i', 4, 0, bu_int, bp_int},
752 {'I', 4, 0, bu_uint, bp_uint},
753 {'l', 4, 0, bu_int, bp_int},
754 {'L', 4, 0, bu_uint, bp_uint},
755 {'f', 4, 0, bu_float, bp_float},
756 {'d', 8, 0, bu_double, bp_double},
760 static PyObject *
761 lu_int(const char *p, const formatdef *f)
763 long x = 0;
764 int i = f->size;
765 do {
766 x = (x<<8) | (p[--i] & 0xFF);
767 } while (i > 0);
768 /* Extend the sign bit. */
769 if (SIZEOF_LONG > f->size)
770 x |= -(x & (1L << (8*f->size - 1)));
771 return PyInt_FromLong(x);
774 static PyObject *
775 lu_uint(const char *p, const formatdef *f)
777 unsigned long x = 0;
778 int i = f->size;
779 do {
780 x = (x<<8) | (p[--i] & 0xFF);
781 } while (i > 0);
782 if (f->size >= 4)
783 return PyLong_FromUnsignedLong(x);
784 else
785 return PyInt_FromLong((long)x);
788 static PyObject *
789 lu_float(const char *p, const formatdef *f)
791 return unpack_float(p+3, -1);
794 static PyObject *
795 lu_double(const char *p, const formatdef *f)
797 return unpack_double(p+7, -1);
800 static int
801 lp_int(char *p, PyObject *v, const formatdef *f)
803 long x;
804 int i;
805 if (get_long(v, &x) < 0)
806 return -1;
807 i = f->size;
808 do {
809 *p++ = (char)x;
810 x >>= 8;
811 } while (--i > 0);
812 return 0;
815 static int
816 lp_uint(char *p, PyObject *v, const formatdef *f)
818 unsigned long x;
819 int i;
820 if (get_ulong(v, &x) < 0)
821 return -1;
822 i = f->size;
823 do {
824 *p++ = (char)x;
825 x >>= 8;
826 } while (--i > 0);
827 return 0;
830 static int
831 lp_float(char *p, PyObject *v, const formatdef *f)
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;
839 return pack_float(x, p+3, -1);
842 static int
843 lp_double(char *p, PyObject *v, const formatdef *f)
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;
851 return pack_double(x, p+7, -1);
854 static 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},
860 {'p', 1, 0, NULL},
861 {'h', 2, 0, lu_int, lp_int},
862 {'H', 2, 0, lu_uint, lp_uint},
863 {'i', 4, 0, lu_int, lp_int},
864 {'I', 4, 0, lu_uint, lp_uint},
865 {'l', 4, 0, lu_int, lp_int},
866 {'L', 4, 0, lu_uint, lp_uint},
867 {'f', 4, 0, lu_float, lp_float},
868 {'d', 8, 0, lu_double, lp_double},
873 static const formatdef *
874 whichtable(char **pfmt)
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;
891 default:
892 --*pfmt; /* Back out of pointer increment */
893 /* Fall through */
894 case '@':
895 return native_table;
900 /* Get the table entry for a format code */
902 static const formatdef *
903 getentry(int c, const formatdef *f)
905 for (; f->format != '\0'; f++) {
906 if (f->format == c) {
907 return f;
910 PyErr_SetString(StructError, "bad char in struct format");
911 return NULL;
915 /* Align a size according to a format code */
917 static int
918 align(int size, int c, const formatdef *e)
920 if (e->format == c) {
921 if (e->alignment) {
922 size = ((size + e->alignment - 1)
923 / e->alignment)
924 * e->alignment;
927 return size;
931 /* calculate the size of a format string */
933 static int
934 calcsize(const char *fmt, const formatdef *f)
936 const formatdef *e;
937 const char *s;
938 char c;
939 int size, num, itemsize, x;
941 s = fmt;
942 size = 0;
943 while ((c = *s++) != '\0') {
944 if (isspace((int)c))
945 continue;
946 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) {
951 PyErr_SetString(
952 StructError,
953 "overflow in item count");
954 return -1;
956 num = x;
958 if (c == '\0')
959 break;
961 else
962 num = 1;
964 e = getentry(c, f);
965 if (e == NULL)
966 return -1;
967 itemsize = e->size;
968 size = align(size, c, e);
969 x = num * itemsize;
970 size += x;
971 if (x/itemsize != num || size < 0) {
972 PyErr_SetString(StructError,
973 "total struct size too long");
974 return -1;
978 return size;
982 static char calcsize__doc__[] = "\
983 calcsize(fmt) -> int\n\
984 Return size of C struct described by format string fmt.\n\
985 See struct.__doc__ for more on format strings.";
987 static PyObject *
988 struct_calcsize(PyObject *self, PyObject *args)
990 char *fmt;
991 const formatdef *f;
992 int size;
994 if (!PyArg_ParseTuple(args, "s:calcsize", &fmt))
995 return NULL;
996 f = whichtable(&fmt);
997 size = calcsize(fmt, f);
998 if (size < 0)
999 return NULL;
1000 return PyInt_FromLong((long)size);
1004 static char pack__doc__[] = "\
1005 pack(fmt, v1, v2, ...) -> string\n\
1006 Return string containing values v1, v2, ... packed according to fmt.\n\
1007 See struct.__doc__ for more on format strings.";
1009 static PyObject *
1010 struct_pack(PyObject *self, PyObject *args)
1012 const formatdef *f, *e;
1013 PyObject *format, *result, *v;
1014 char *fmt;
1015 int size, num;
1016 int i, n;
1017 char *s, *res, *restart, *nres;
1018 char c;
1020 if (args == NULL || !PyTuple_Check(args) ||
1021 (n = PyTuple_Size(args)) < 1)
1023 PyErr_SetString(PyExc_TypeError,
1024 "struct.pack requires at least one argument");
1025 return NULL;
1027 format = PyTuple_GetItem(args, 0);
1028 if (!PyArg_Parse(format, "s", &fmt))
1029 return NULL;
1030 f = whichtable(&fmt);
1031 size = calcsize(fmt, f);
1032 if (size < 0)
1033 return NULL;
1034 result = PyString_FromStringAndSize((char *)NULL, size);
1035 if (result == NULL)
1036 return NULL;
1038 s = fmt;
1039 i = 1;
1040 res = restart = PyString_AsString(result);
1042 while ((c = *s++) != '\0') {
1043 if (isspace((int)c))
1044 continue;
1045 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;
1052 else
1053 num = 1;
1055 e = getentry(c, f);
1056 if (e == NULL)
1057 goto fail;
1058 nres = restart + align((int)(res-restart), c, e);
1059 /* Fill padd bytes with zeros */
1060 while (res < nres)
1061 *res++ = '\0';
1062 if (num == 0 && c != 's')
1063 continue;
1064 do {
1065 if (c == 'x') {
1066 /* doesn't consume arguments */
1067 memset(res, '\0', num);
1068 res += num;
1069 break;
1071 if (i >= n) {
1072 PyErr_SetString(StructError,
1073 "insufficient arguments to pack");
1074 goto fail;
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;
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)
1093 memset(res+n, '\0', num-n);
1094 res += num;
1095 break;
1097 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;
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;
1119 else {
1120 if (e->pack(res, v, e) < 0)
1121 goto fail;
1122 res += e->size;
1124 } while (--num > 0);
1127 if (i < n) {
1128 PyErr_SetString(StructError,
1129 "too many arguments for pack format");
1130 goto fail;
1133 return result;
1135 fail:
1136 Py_DECREF(result);
1137 return NULL;
1141 static char unpack__doc__[] = "\
1142 unpack(fmt, string) -> (v1, v2, ...)\n\
1143 Unpack the string, containing packed C structure data, according\n\
1144 to fmt. Requires len(string)==calcsize(fmt).\n\
1145 See struct.__doc__ for more on format strings.";
1147 static PyObject *
1148 struct_unpack(PyObject *self, PyObject *args)
1150 const formatdef *f, *e;
1151 char *str, *start, *fmt, *s;
1152 char c;
1153 int len, size, num;
1154 PyObject *res, *v;
1156 if (!PyArg_ParseTuple(args, "ss#:unpack", &fmt, &start, &len))
1157 return NULL;
1158 f = whichtable(&fmt);
1159 size = calcsize(fmt, f);
1160 if (size < 0)
1161 return NULL;
1162 if (size != len) {
1163 PyErr_SetString(StructError,
1164 "unpack str size does not match format");
1165 return NULL;
1167 res = PyList_New(0);
1168 if (res == NULL)
1169 return NULL;
1170 str = start;
1171 s = fmt;
1172 while ((c = *s++) != '\0') {
1173 if (isspace((int)c))
1174 continue;
1175 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;
1182 else
1183 num = 1;
1185 e = getentry(c, f);
1186 if (e == NULL)
1187 goto fail;
1188 str = start + align((int)(str-start), c, e);
1189 if (num == 0 && c != 's')
1190 continue;
1192 do {
1193 if (c == 'x') {
1194 str += num;
1195 break;
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;
1205 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;
1218 else {
1219 v = e->unpack(str, e);
1220 if (v == NULL)
1221 goto fail;
1222 str += e->size;
1224 if (v == NULL || PyList_Append(res, v) < 0)
1225 goto fail;
1226 Py_DECREF(v);
1227 } while (--num > 0);
1230 v = PyList_AsTuple(res);
1231 Py_DECREF(res);
1232 return v;
1234 fail:
1235 Py_DECREF(res);
1236 return NULL;
1240 /* List of functions */
1242 static PyMethodDef struct_methods[] = {
1243 {"calcsize", struct_calcsize, METH_VARARGS, calcsize__doc__},
1244 {"pack", struct_pack, METH_VARARGS, pack__doc__},
1245 {"unpack", struct_unpack, METH_VARARGS, unpack__doc__},
1246 {NULL, NULL} /* sentinel */
1250 /* Module initialization */
1252 DL_EXPORT(void)
1253 initstruct(void)
1255 PyObject *m, *d;
1257 /* Create the module and add the functions */
1258 m = Py_InitModule4("struct", struct_methods, struct__doc__,
1259 (PyObject*)NULL, PYTHON_API_VERSION);
1261 /* Add some symbolic constants to the module */
1262 d = PyModule_GetDict(m);
1263 StructError = PyErr_NewException("struct.error", NULL, NULL);
1264 if (StructError == NULL)
1265 return;
1266 PyDict_SetItemString(d, "error", StructError);