Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1 | /* struct module -- pack values into and (out of) strings */ |
| 2 | |
| 3 | /* New version supporting byte order, alignment and size options, |
| 4 | character strings, and unsigned numbers */ |
| 5 | |
| 6 | #include "Python.h" |
| 7 | #include "structseq.h" |
| 8 | #include "structmember.h" |
| 9 | #include <ctype.h> |
| 10 | |
Bob Ippolito | d3611eb | 2006-05-23 19:31:23 +0000 | [diff] [blame] | 11 | static PyTypeObject PyStructType; |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 12 | |
| 13 | /* compatibility macros */ |
| 14 | #if (PY_VERSION_HEX < 0x02050000) |
| 15 | typedef int Py_ssize_t; |
| 16 | #endif |
| 17 | |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 18 | /* PY_USE_INT_WHEN_POSSIBLE is an experimental flag that changes the |
| 19 | struct API to return int instead of long when possible. This is |
| 20 | often a significant performance improvement. */ |
| 21 | /* |
| 22 | #define PY_USE_INT_WHEN_POSSIBLE 1 |
| 23 | */ |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 24 | |
| 25 | |
| 26 | /* The translation function for each format character is table driven */ |
| 27 | |
| 28 | typedef struct _formatdef { |
| 29 | char format; |
| 30 | int size; |
| 31 | int alignment; |
| 32 | PyObject* (*unpack)(const char *, |
| 33 | const struct _formatdef *); |
| 34 | int (*pack)(char *, PyObject *, |
| 35 | const struct _formatdef *); |
| 36 | } formatdef; |
| 37 | |
| 38 | typedef struct _formatcode { |
| 39 | const struct _formatdef *fmtdef; |
| 40 | int offset; |
Bob Ippolito | eb62127 | 2006-05-24 15:32:06 +0000 | [diff] [blame] | 41 | int size; |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 42 | } formatcode; |
| 43 | |
| 44 | /* Struct object interface */ |
| 45 | |
| 46 | typedef struct { |
| 47 | PyObject_HEAD |
| 48 | int s_size; |
| 49 | int s_len; |
| 50 | formatcode *s_codes; |
| 51 | PyObject *s_format; |
| 52 | PyObject *weakreflist; /* List of weak references */ |
| 53 | } PyStructObject; |
| 54 | |
Bob Ippolito | eb62127 | 2006-05-24 15:32:06 +0000 | [diff] [blame] | 55 | |
Bob Ippolito | 07c023b | 2006-05-23 19:32:25 +0000 | [diff] [blame] | 56 | #define PyStruct_Check(op) PyObject_TypeCheck(op, &PyStructType) |
| 57 | #define PyStruct_CheckExact(op) ((op)->ob_type == &PyStructType) |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 58 | |
| 59 | |
| 60 | /* Exception */ |
| 61 | |
| 62 | static PyObject *StructError; |
| 63 | |
| 64 | |
| 65 | /* Define various structs to figure out the alignments of types */ |
| 66 | |
| 67 | |
| 68 | typedef struct { char c; short x; } st_short; |
| 69 | typedef struct { char c; int x; } st_int; |
| 70 | typedef struct { char c; long x; } st_long; |
| 71 | typedef struct { char c; float x; } st_float; |
| 72 | typedef struct { char c; double x; } st_double; |
| 73 | typedef struct { char c; void *x; } st_void_p; |
| 74 | |
| 75 | #define SHORT_ALIGN (sizeof(st_short) - sizeof(short)) |
| 76 | #define INT_ALIGN (sizeof(st_int) - sizeof(int)) |
| 77 | #define LONG_ALIGN (sizeof(st_long) - sizeof(long)) |
| 78 | #define FLOAT_ALIGN (sizeof(st_float) - sizeof(float)) |
| 79 | #define DOUBLE_ALIGN (sizeof(st_double) - sizeof(double)) |
| 80 | #define VOID_P_ALIGN (sizeof(st_void_p) - sizeof(void *)) |
| 81 | |
| 82 | /* We can't support q and Q in native mode unless the compiler does; |
| 83 | in std mode, they're 8 bytes on all platforms. */ |
| 84 | #ifdef HAVE_LONG_LONG |
| 85 | typedef struct { char c; PY_LONG_LONG x; } s_long_long; |
| 86 | #define LONG_LONG_ALIGN (sizeof(s_long_long) - sizeof(PY_LONG_LONG)) |
| 87 | #endif |
| 88 | |
| 89 | #define STRINGIFY(x) #x |
| 90 | |
| 91 | #ifdef __powerc |
| 92 | #pragma options align=reset |
| 93 | #endif |
| 94 | |
| 95 | /* Helper to get a PyLongObject by hook or by crook. Caller should decref. */ |
| 96 | |
| 97 | static PyObject * |
| 98 | get_pylong(PyObject *v) |
| 99 | { |
| 100 | PyNumberMethods *m; |
| 101 | |
| 102 | assert(v != NULL); |
| 103 | if (PyInt_Check(v)) |
| 104 | return PyLong_FromLong(PyInt_AS_LONG(v)); |
| 105 | if (PyLong_Check(v)) { |
| 106 | Py_INCREF(v); |
| 107 | return v; |
| 108 | } |
| 109 | m = v->ob_type->tp_as_number; |
| 110 | if (m != NULL && m->nb_long != NULL) { |
| 111 | v = m->nb_long(v); |
| 112 | if (v == NULL) |
| 113 | return NULL; |
| 114 | if (PyLong_Check(v)) |
| 115 | return v; |
| 116 | Py_DECREF(v); |
| 117 | } |
| 118 | PyErr_SetString(StructError, |
| 119 | "cannot convert argument to long"); |
| 120 | return NULL; |
| 121 | } |
| 122 | |
| 123 | /* Helper routine to get a Python integer and raise the appropriate error |
| 124 | if it isn't one */ |
| 125 | |
| 126 | static int |
| 127 | get_long(PyObject *v, long *p) |
| 128 | { |
| 129 | long x = PyInt_AsLong(v); |
| 130 | if (x == -1 && PyErr_Occurred()) { |
| 131 | if (PyErr_ExceptionMatches(PyExc_TypeError)) |
| 132 | PyErr_SetString(StructError, |
| 133 | "required argument is not an integer"); |
| 134 | return -1; |
| 135 | } |
| 136 | *p = x; |
| 137 | return 0; |
| 138 | } |
| 139 | |
| 140 | |
| 141 | /* Same, but handling unsigned long */ |
| 142 | |
| 143 | static int |
| 144 | get_ulong(PyObject *v, unsigned long *p) |
| 145 | { |
| 146 | if (PyLong_Check(v)) { |
| 147 | unsigned long x = PyLong_AsUnsignedLong(v); |
| 148 | if (x == (unsigned long)(-1) && PyErr_Occurred()) |
| 149 | return -1; |
| 150 | *p = x; |
| 151 | return 0; |
| 152 | } |
| 153 | else { |
| 154 | return get_long(v, (long *)p); |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | #ifdef HAVE_LONG_LONG |
| 159 | |
| 160 | /* Same, but handling native long long. */ |
| 161 | |
| 162 | static int |
| 163 | get_longlong(PyObject *v, PY_LONG_LONG *p) |
| 164 | { |
| 165 | PY_LONG_LONG x; |
| 166 | |
| 167 | v = get_pylong(v); |
| 168 | if (v == NULL) |
| 169 | return -1; |
| 170 | assert(PyLong_Check(v)); |
| 171 | x = PyLong_AsLongLong(v); |
| 172 | Py_DECREF(v); |
| 173 | if (x == (PY_LONG_LONG)-1 && PyErr_Occurred()) |
| 174 | return -1; |
| 175 | *p = x; |
| 176 | return 0; |
| 177 | } |
| 178 | |
| 179 | /* Same, but handling native unsigned long long. */ |
| 180 | |
| 181 | static int |
| 182 | get_ulonglong(PyObject *v, unsigned PY_LONG_LONG *p) |
| 183 | { |
| 184 | unsigned PY_LONG_LONG x; |
| 185 | |
| 186 | v = get_pylong(v); |
| 187 | if (v == NULL) |
| 188 | return -1; |
| 189 | assert(PyLong_Check(v)); |
| 190 | x = PyLong_AsUnsignedLongLong(v); |
| 191 | Py_DECREF(v); |
| 192 | if (x == (unsigned PY_LONG_LONG)-1 && PyErr_Occurred()) |
| 193 | return -1; |
| 194 | *p = x; |
| 195 | return 0; |
| 196 | } |
| 197 | |
| 198 | #endif |
| 199 | |
| 200 | /* Floating point helpers */ |
| 201 | |
| 202 | static PyObject * |
| 203 | unpack_float(const char *p, /* start of 4-byte string */ |
| 204 | int le) /* true for little-endian, false for big-endian */ |
| 205 | { |
| 206 | double x; |
| 207 | |
| 208 | x = _PyFloat_Unpack4((unsigned char *)p, le); |
| 209 | if (x == -1.0 && PyErr_Occurred()) |
| 210 | return NULL; |
| 211 | return PyFloat_FromDouble(x); |
| 212 | } |
| 213 | |
| 214 | static PyObject * |
| 215 | unpack_double(const char *p, /* start of 8-byte string */ |
| 216 | int le) /* true for little-endian, false for big-endian */ |
| 217 | { |
| 218 | double x; |
| 219 | |
| 220 | x = _PyFloat_Unpack8((unsigned char *)p, le); |
| 221 | if (x == -1.0 && PyErr_Occurred()) |
| 222 | return NULL; |
| 223 | return PyFloat_FromDouble(x); |
| 224 | } |
| 225 | |
| 226 | |
| 227 | /* A large number of small routines follow, with names of the form |
| 228 | |
| 229 | [bln][up]_TYPE |
| 230 | |
| 231 | [bln] distiguishes among big-endian, little-endian and native. |
| 232 | [pu] distiguishes between pack (to struct) and unpack (from struct). |
| 233 | TYPE is one of char, byte, ubyte, etc. |
| 234 | */ |
| 235 | |
| 236 | /* Native mode routines. ****************************************************/ |
| 237 | /* NOTE: |
| 238 | In all n[up]_<type> routines handling types larger than 1 byte, there is |
| 239 | *no* guarantee that the p pointer is properly aligned for each type, |
| 240 | therefore memcpy is called. An intermediate variable is used to |
| 241 | compensate for big-endian architectures. |
| 242 | Normally both the intermediate variable and the memcpy call will be |
| 243 | skipped by C optimisation in little-endian architectures (gcc >= 2.91 |
| 244 | does this). */ |
| 245 | |
| 246 | static PyObject * |
| 247 | nu_char(const char *p, const formatdef *f) |
| 248 | { |
| 249 | return PyString_FromStringAndSize(p, 1); |
| 250 | } |
| 251 | |
| 252 | static PyObject * |
| 253 | nu_byte(const char *p, const formatdef *f) |
| 254 | { |
| 255 | return PyInt_FromLong((long) *(signed char *)p); |
| 256 | } |
| 257 | |
| 258 | static PyObject * |
| 259 | nu_ubyte(const char *p, const formatdef *f) |
| 260 | { |
| 261 | return PyInt_FromLong((long) *(unsigned char *)p); |
| 262 | } |
| 263 | |
| 264 | static PyObject * |
| 265 | nu_short(const char *p, const formatdef *f) |
| 266 | { |
| 267 | short x; |
| 268 | memcpy((char *)&x, p, sizeof x); |
| 269 | return PyInt_FromLong((long)x); |
| 270 | } |
| 271 | |
| 272 | static PyObject * |
| 273 | nu_ushort(const char *p, const formatdef *f) |
| 274 | { |
| 275 | unsigned short x; |
| 276 | memcpy((char *)&x, p, sizeof x); |
| 277 | return PyInt_FromLong((long)x); |
| 278 | } |
| 279 | |
| 280 | static PyObject * |
| 281 | nu_int(const char *p, const formatdef *f) |
| 282 | { |
| 283 | int x; |
| 284 | memcpy((char *)&x, p, sizeof x); |
| 285 | return PyInt_FromLong((long)x); |
| 286 | } |
| 287 | |
| 288 | static PyObject * |
| 289 | nu_uint(const char *p, const formatdef *f) |
| 290 | { |
| 291 | unsigned int x; |
| 292 | memcpy((char *)&x, p, sizeof x); |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 293 | #ifdef PY_USE_INT_WHEN_POSSIBLE |
Bob Ippolito | 04ab994 | 2006-05-25 19:33:38 +0000 | [diff] [blame] | 294 | if (x <= LONG_MAX) |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 295 | return PyInt_FromLong((long)x); |
| 296 | #endif |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 297 | return PyLong_FromUnsignedLong((unsigned long)x); |
| 298 | } |
| 299 | |
| 300 | static PyObject * |
| 301 | nu_long(const char *p, const formatdef *f) |
| 302 | { |
| 303 | long x; |
| 304 | memcpy((char *)&x, p, sizeof x); |
| 305 | return PyInt_FromLong(x); |
| 306 | } |
| 307 | |
| 308 | static PyObject * |
| 309 | nu_ulong(const char *p, const formatdef *f) |
| 310 | { |
| 311 | unsigned long x; |
| 312 | memcpy((char *)&x, p, sizeof x); |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 313 | #ifdef PY_USE_INT_WHEN_POSSIBLE |
Bob Ippolito | 04ab994 | 2006-05-25 19:33:38 +0000 | [diff] [blame] | 314 | if (x <= LONG_MAX) |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 315 | return PyInt_FromLong((long)x); |
| 316 | #endif |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 317 | return PyLong_FromUnsignedLong(x); |
| 318 | } |
| 319 | |
| 320 | /* Native mode doesn't support q or Q unless the platform C supports |
| 321 | long long (or, on Windows, __int64). */ |
| 322 | |
| 323 | #ifdef HAVE_LONG_LONG |
| 324 | |
| 325 | static PyObject * |
| 326 | nu_longlong(const char *p, const formatdef *f) |
| 327 | { |
| 328 | PY_LONG_LONG x; |
| 329 | memcpy((char *)&x, p, sizeof x); |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 330 | #ifdef PY_USE_INT_WHEN_POSSIBLE |
Bob Ippolito | 04ab994 | 2006-05-25 19:33:38 +0000 | [diff] [blame] | 331 | if (x >= LONG_MIN && x <= LONG_MAX) |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 332 | return PyInt_FromLong(Py_SAFE_DOWNCAST(x, PY_LONG_LONG, long)); |
| 333 | #endif |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 334 | return PyLong_FromLongLong(x); |
| 335 | } |
| 336 | |
| 337 | static PyObject * |
| 338 | nu_ulonglong(const char *p, const formatdef *f) |
| 339 | { |
| 340 | unsigned PY_LONG_LONG x; |
| 341 | memcpy((char *)&x, p, sizeof x); |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 342 | #ifdef PY_USE_INT_WHEN_POSSIBLE |
Bob Ippolito | 04ab994 | 2006-05-25 19:33:38 +0000 | [diff] [blame] | 343 | if (x <= LONG_MAX) |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 344 | return PyInt_FromLong(Py_SAFE_DOWNCAST(x, unsigned PY_LONG_LONG, long)); |
| 345 | #endif |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 346 | return PyLong_FromUnsignedLongLong(x); |
| 347 | } |
| 348 | |
| 349 | #endif |
| 350 | |
| 351 | static PyObject * |
| 352 | nu_float(const char *p, const formatdef *f) |
| 353 | { |
| 354 | float x; |
| 355 | memcpy((char *)&x, p, sizeof x); |
| 356 | return PyFloat_FromDouble((double)x); |
| 357 | } |
| 358 | |
| 359 | static PyObject * |
| 360 | nu_double(const char *p, const formatdef *f) |
| 361 | { |
| 362 | double x; |
| 363 | memcpy((char *)&x, p, sizeof x); |
| 364 | return PyFloat_FromDouble(x); |
| 365 | } |
| 366 | |
| 367 | static PyObject * |
| 368 | nu_void_p(const char *p, const formatdef *f) |
| 369 | { |
| 370 | void *x; |
| 371 | memcpy((char *)&x, p, sizeof x); |
| 372 | return PyLong_FromVoidPtr(x); |
| 373 | } |
| 374 | |
| 375 | static int |
| 376 | np_byte(char *p, PyObject *v, const formatdef *f) |
| 377 | { |
| 378 | long x; |
| 379 | if (get_long(v, &x) < 0) |
| 380 | return -1; |
| 381 | if (x < -128 || x > 127){ |
| 382 | PyErr_SetString(StructError, |
| 383 | "byte format requires -128<=number<=127"); |
| 384 | return -1; |
| 385 | } |
| 386 | *p = (char)x; |
| 387 | return 0; |
| 388 | } |
| 389 | |
| 390 | static int |
| 391 | np_ubyte(char *p, PyObject *v, const formatdef *f) |
| 392 | { |
| 393 | long x; |
| 394 | if (get_long(v, &x) < 0) |
| 395 | return -1; |
| 396 | if (x < 0 || x > 255){ |
| 397 | PyErr_SetString(StructError, |
| 398 | "ubyte format requires 0<=number<=255"); |
| 399 | return -1; |
| 400 | } |
| 401 | *p = (char)x; |
| 402 | return 0; |
| 403 | } |
| 404 | |
| 405 | static int |
| 406 | np_char(char *p, PyObject *v, const formatdef *f) |
| 407 | { |
| 408 | if (!PyString_Check(v) || PyString_Size(v) != 1) { |
| 409 | PyErr_SetString(StructError, |
| 410 | "char format require string of length 1"); |
| 411 | return -1; |
| 412 | } |
| 413 | *p = *PyString_AsString(v); |
| 414 | return 0; |
| 415 | } |
| 416 | |
| 417 | static int |
| 418 | np_short(char *p, PyObject *v, const formatdef *f) |
| 419 | { |
| 420 | long x; |
| 421 | short y; |
| 422 | if (get_long(v, &x) < 0) |
| 423 | return -1; |
| 424 | if (x < SHRT_MIN || x > SHRT_MAX){ |
| 425 | PyErr_SetString(StructError, |
| 426 | "short format requires " STRINGIFY(SHRT_MIN) |
| 427 | "<=number<=" STRINGIFY(SHRT_MAX)); |
| 428 | return -1; |
| 429 | } |
| 430 | y = (short)x; |
| 431 | memcpy(p, (char *)&y, sizeof y); |
| 432 | return 0; |
| 433 | } |
| 434 | |
| 435 | static int |
| 436 | np_ushort(char *p, PyObject *v, const formatdef *f) |
| 437 | { |
| 438 | long x; |
| 439 | unsigned short y; |
| 440 | if (get_long(v, &x) < 0) |
| 441 | return -1; |
| 442 | if (x < 0 || x > USHRT_MAX){ |
| 443 | PyErr_SetString(StructError, |
| 444 | "short format requires 0<=number<=" STRINGIFY(USHRT_MAX)); |
| 445 | return -1; |
| 446 | } |
| 447 | y = (unsigned short)x; |
| 448 | memcpy(p, (char *)&y, sizeof y); |
| 449 | return 0; |
| 450 | } |
| 451 | |
| 452 | static int |
| 453 | np_int(char *p, PyObject *v, const formatdef *f) |
| 454 | { |
| 455 | long x; |
| 456 | int y; |
| 457 | if (get_long(v, &x) < 0) |
| 458 | return -1; |
| 459 | y = (int)x; |
| 460 | memcpy(p, (char *)&y, sizeof y); |
| 461 | return 0; |
| 462 | } |
| 463 | |
| 464 | static int |
| 465 | np_uint(char *p, PyObject *v, const formatdef *f) |
| 466 | { |
| 467 | unsigned long x; |
| 468 | unsigned int y; |
| 469 | if (get_ulong(v, &x) < 0) |
| 470 | return -1; |
| 471 | y = (unsigned int)x; |
| 472 | memcpy(p, (char *)&y, sizeof y); |
| 473 | return 0; |
| 474 | } |
| 475 | |
| 476 | static int |
| 477 | np_long(char *p, PyObject *v, const formatdef *f) |
| 478 | { |
| 479 | long x; |
| 480 | if (get_long(v, &x) < 0) |
| 481 | return -1; |
| 482 | memcpy(p, (char *)&x, sizeof x); |
| 483 | return 0; |
| 484 | } |
| 485 | |
| 486 | static int |
| 487 | np_ulong(char *p, PyObject *v, const formatdef *f) |
| 488 | { |
| 489 | unsigned long x; |
| 490 | if (get_ulong(v, &x) < 0) |
| 491 | return -1; |
| 492 | memcpy(p, (char *)&x, sizeof x); |
| 493 | return 0; |
| 494 | } |
| 495 | |
| 496 | #ifdef HAVE_LONG_LONG |
| 497 | |
| 498 | static int |
| 499 | np_longlong(char *p, PyObject *v, const formatdef *f) |
| 500 | { |
| 501 | PY_LONG_LONG x; |
| 502 | if (get_longlong(v, &x) < 0) |
| 503 | return -1; |
| 504 | memcpy(p, (char *)&x, sizeof x); |
| 505 | return 0; |
| 506 | } |
| 507 | |
| 508 | static int |
| 509 | np_ulonglong(char *p, PyObject *v, const formatdef *f) |
| 510 | { |
| 511 | unsigned PY_LONG_LONG x; |
| 512 | if (get_ulonglong(v, &x) < 0) |
| 513 | return -1; |
| 514 | memcpy(p, (char *)&x, sizeof x); |
| 515 | return 0; |
| 516 | } |
| 517 | #endif |
| 518 | |
| 519 | static int |
| 520 | np_float(char *p, PyObject *v, const formatdef *f) |
| 521 | { |
| 522 | float x = (float)PyFloat_AsDouble(v); |
| 523 | if (x == -1 && PyErr_Occurred()) { |
| 524 | PyErr_SetString(StructError, |
| 525 | "required argument is not a float"); |
| 526 | return -1; |
| 527 | } |
| 528 | memcpy(p, (char *)&x, sizeof x); |
| 529 | return 0; |
| 530 | } |
| 531 | |
| 532 | static int |
| 533 | np_double(char *p, PyObject *v, const formatdef *f) |
| 534 | { |
| 535 | double x = PyFloat_AsDouble(v); |
| 536 | if (x == -1 && PyErr_Occurred()) { |
| 537 | PyErr_SetString(StructError, |
| 538 | "required argument is not a float"); |
| 539 | return -1; |
| 540 | } |
| 541 | memcpy(p, (char *)&x, sizeof(double)); |
| 542 | return 0; |
| 543 | } |
| 544 | |
| 545 | static int |
| 546 | np_void_p(char *p, PyObject *v, const formatdef *f) |
| 547 | { |
| 548 | void *x; |
| 549 | |
| 550 | v = get_pylong(v); |
| 551 | if (v == NULL) |
| 552 | return -1; |
| 553 | assert(PyLong_Check(v)); |
| 554 | x = PyLong_AsVoidPtr(v); |
| 555 | Py_DECREF(v); |
| 556 | if (x == NULL && PyErr_Occurred()) |
| 557 | return -1; |
| 558 | memcpy(p, (char *)&x, sizeof x); |
| 559 | return 0; |
| 560 | } |
| 561 | |
| 562 | static formatdef native_table[] = { |
| 563 | {'x', sizeof(char), 0, NULL}, |
| 564 | {'b', sizeof(char), 0, nu_byte, np_byte}, |
| 565 | {'B', sizeof(char), 0, nu_ubyte, np_ubyte}, |
| 566 | {'c', sizeof(char), 0, nu_char, np_char}, |
| 567 | {'s', sizeof(char), 0, NULL}, |
| 568 | {'p', sizeof(char), 0, NULL}, |
| 569 | {'h', sizeof(short), SHORT_ALIGN, nu_short, np_short}, |
| 570 | {'H', sizeof(short), SHORT_ALIGN, nu_ushort, np_ushort}, |
| 571 | {'i', sizeof(int), INT_ALIGN, nu_int, np_int}, |
| 572 | {'I', sizeof(int), INT_ALIGN, nu_uint, np_uint}, |
| 573 | {'l', sizeof(long), LONG_ALIGN, nu_long, np_long}, |
| 574 | {'L', sizeof(long), LONG_ALIGN, nu_ulong, np_ulong}, |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 575 | #ifdef HAVE_LONG_LONG |
| 576 | {'q', sizeof(PY_LONG_LONG), LONG_LONG_ALIGN, nu_longlong, np_longlong}, |
| 577 | {'Q', sizeof(PY_LONG_LONG), LONG_LONG_ALIGN, nu_ulonglong,np_ulonglong}, |
| 578 | #endif |
Bob Ippolito | a99865b | 2006-05-25 19:56:56 +0000 | [diff] [blame] | 579 | {'f', sizeof(float), FLOAT_ALIGN, nu_float, np_float}, |
| 580 | {'d', sizeof(double), DOUBLE_ALIGN, nu_double, np_double}, |
| 581 | {'P', sizeof(void *), VOID_P_ALIGN, nu_void_p, np_void_p}, |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 582 | {0} |
| 583 | }; |
| 584 | |
| 585 | /* Big-endian routines. *****************************************************/ |
| 586 | |
| 587 | static PyObject * |
| 588 | bu_int(const char *p, const formatdef *f) |
| 589 | { |
| 590 | long x = 0; |
| 591 | int i = f->size; |
| 592 | do { |
| 593 | x = (x<<8) | (*p++ & 0xFF); |
| 594 | } while (--i > 0); |
| 595 | /* Extend the sign bit. */ |
| 596 | if (SIZEOF_LONG > f->size) |
| 597 | x |= -(x & (1L << (8*f->size - 1))); |
| 598 | return PyInt_FromLong(x); |
| 599 | } |
| 600 | |
| 601 | static PyObject * |
| 602 | bu_uint(const char *p, const formatdef *f) |
| 603 | { |
| 604 | unsigned long x = 0; |
| 605 | int i = f->size; |
| 606 | do { |
| 607 | x = (x<<8) | (*p++ & 0xFF); |
| 608 | } while (--i > 0); |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 609 | #ifdef PY_USE_INT_WHEN_POSSIBLE |
Bob Ippolito | 04ab994 | 2006-05-25 19:33:38 +0000 | [diff] [blame] | 610 | if (x <= LONG_MAX) |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 611 | return PyInt_FromLong((long)x); |
Bob Ippolito | 3b0cae9 | 2006-05-25 19:15:27 +0000 | [diff] [blame] | 612 | #else |
| 613 | if (SIZEOF_LONG > f->size) |
| 614 | return PyInt_FromLong((long)x); |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 615 | #endif |
| 616 | return PyLong_FromUnsignedLong(x); |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 617 | } |
| 618 | |
| 619 | static PyObject * |
| 620 | bu_longlong(const char *p, const formatdef *f) |
| 621 | { |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 622 | #if HAVE_LONG_LONG |
| 623 | PY_LONG_LONG x = 0; |
| 624 | int i = f->size; |
| 625 | do { |
| 626 | x = (x<<8) | (*p++ & 0xFF); |
| 627 | } while (--i > 0); |
| 628 | /* Extend the sign bit. */ |
| 629 | if (SIZEOF_LONG_LONG > f->size) |
| 630 | x |= -(x & (1L << (8 * f->size - 1))); |
| 631 | #ifdef PY_USE_INT_WHEN_POSSIBLE |
Bob Ippolito | 04ab994 | 2006-05-25 19:33:38 +0000 | [diff] [blame] | 632 | if (x >= LONG_MIN && x <= LONG_MAX) |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 633 | return PyInt_FromLong(Py_SAFE_DOWNCAST(x, PY_LONG_LONG, long)); |
| 634 | #endif |
| 635 | return PyLong_FromLongLong(x); |
| 636 | #else |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 637 | return _PyLong_FromByteArray((const unsigned char *)p, |
| 638 | 8, |
| 639 | 0, /* little-endian */ |
| 640 | 1 /* signed */); |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 641 | #endif |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 642 | } |
| 643 | |
| 644 | static PyObject * |
| 645 | bu_ulonglong(const char *p, const formatdef *f) |
| 646 | { |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 647 | #if HAVE_LONG_LONG |
| 648 | unsigned PY_LONG_LONG x = 0; |
| 649 | int i = f->size; |
| 650 | do { |
| 651 | x = (x<<8) | (*p++ & 0xFF); |
| 652 | } while (--i > 0); |
| 653 | #ifdef PY_USE_INT_WHEN_POSSIBLE |
Bob Ippolito | 04ab994 | 2006-05-25 19:33:38 +0000 | [diff] [blame] | 654 | if (x <= LONG_MAX) |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 655 | return PyInt_FromLong(Py_SAFE_DOWNCAST(x, unsigned PY_LONG_LONG, long)); |
| 656 | #endif |
| 657 | return PyLong_FromUnsignedLongLong(x); |
| 658 | #else |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 659 | return _PyLong_FromByteArray((const unsigned char *)p, |
| 660 | 8, |
| 661 | 0, /* little-endian */ |
| 662 | 0 /* signed */); |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 663 | #endif |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 664 | } |
| 665 | |
| 666 | static PyObject * |
| 667 | bu_float(const char *p, const formatdef *f) |
| 668 | { |
| 669 | return unpack_float(p, 0); |
| 670 | } |
| 671 | |
| 672 | static PyObject * |
| 673 | bu_double(const char *p, const formatdef *f) |
| 674 | { |
| 675 | return unpack_double(p, 0); |
| 676 | } |
| 677 | |
| 678 | static int |
| 679 | bp_int(char *p, PyObject *v, const formatdef *f) |
| 680 | { |
| 681 | long x; |
| 682 | int i; |
| 683 | if (get_long(v, &x) < 0) |
| 684 | return -1; |
| 685 | i = f->size; |
| 686 | do { |
| 687 | p[--i] = (char)x; |
| 688 | x >>= 8; |
| 689 | } while (i > 0); |
| 690 | return 0; |
| 691 | } |
| 692 | |
| 693 | static int |
| 694 | bp_uint(char *p, PyObject *v, const formatdef *f) |
| 695 | { |
| 696 | unsigned long x; |
| 697 | int i; |
| 698 | if (get_ulong(v, &x) < 0) |
| 699 | return -1; |
| 700 | i = f->size; |
| 701 | do { |
| 702 | p[--i] = (char)x; |
| 703 | x >>= 8; |
| 704 | } while (i > 0); |
| 705 | return 0; |
| 706 | } |
| 707 | |
| 708 | static int |
| 709 | bp_longlong(char *p, PyObject *v, const formatdef *f) |
| 710 | { |
| 711 | int res; |
| 712 | v = get_pylong(v); |
| 713 | if (v == NULL) |
| 714 | return -1; |
| 715 | res = _PyLong_AsByteArray((PyLongObject *)v, |
| 716 | (unsigned char *)p, |
| 717 | 8, |
| 718 | 0, /* little_endian */ |
| 719 | 1 /* signed */); |
| 720 | Py_DECREF(v); |
| 721 | return res; |
| 722 | } |
| 723 | |
| 724 | static int |
| 725 | bp_ulonglong(char *p, PyObject *v, const formatdef *f) |
| 726 | { |
| 727 | int res; |
| 728 | v = get_pylong(v); |
| 729 | if (v == NULL) |
| 730 | return -1; |
| 731 | res = _PyLong_AsByteArray((PyLongObject *)v, |
| 732 | (unsigned char *)p, |
| 733 | 8, |
| 734 | 0, /* little_endian */ |
| 735 | 0 /* signed */); |
| 736 | Py_DECREF(v); |
| 737 | return res; |
| 738 | } |
| 739 | |
| 740 | static int |
| 741 | bp_float(char *p, PyObject *v, const formatdef *f) |
| 742 | { |
| 743 | double x = PyFloat_AsDouble(v); |
| 744 | if (x == -1 && PyErr_Occurred()) { |
| 745 | PyErr_SetString(StructError, |
| 746 | "required argument is not a float"); |
| 747 | return -1; |
| 748 | } |
| 749 | return _PyFloat_Pack4(x, (unsigned char *)p, 0); |
| 750 | } |
| 751 | |
| 752 | static int |
| 753 | bp_double(char *p, PyObject *v, const formatdef *f) |
| 754 | { |
| 755 | double x = PyFloat_AsDouble(v); |
| 756 | if (x == -1 && PyErr_Occurred()) { |
| 757 | PyErr_SetString(StructError, |
| 758 | "required argument is not a float"); |
| 759 | return -1; |
| 760 | } |
| 761 | return _PyFloat_Pack8(x, (unsigned char *)p, 0); |
| 762 | } |
| 763 | |
| 764 | static formatdef bigendian_table[] = { |
| 765 | {'x', 1, 0, NULL}, |
| 766 | {'b', 1, 0, bu_int, bp_int}, |
| 767 | {'B', 1, 0, bu_uint, bp_int}, |
| 768 | {'c', 1, 0, nu_char, np_char}, |
| 769 | {'s', 1, 0, NULL}, |
| 770 | {'p', 1, 0, NULL}, |
| 771 | {'h', 2, 0, bu_int, bp_int}, |
| 772 | {'H', 2, 0, bu_uint, bp_uint}, |
| 773 | {'i', 4, 0, bu_int, bp_int}, |
| 774 | {'I', 4, 0, bu_uint, bp_uint}, |
| 775 | {'l', 4, 0, bu_int, bp_int}, |
| 776 | {'L', 4, 0, bu_uint, bp_uint}, |
| 777 | {'q', 8, 0, bu_longlong, bp_longlong}, |
| 778 | {'Q', 8, 0, bu_ulonglong, bp_ulonglong}, |
| 779 | {'f', 4, 0, bu_float, bp_float}, |
| 780 | {'d', 8, 0, bu_double, bp_double}, |
| 781 | {0} |
| 782 | }; |
| 783 | |
| 784 | /* Little-endian routines. *****************************************************/ |
| 785 | |
| 786 | static PyObject * |
| 787 | lu_int(const char *p, const formatdef *f) |
| 788 | { |
| 789 | long x = 0; |
| 790 | int i = f->size; |
| 791 | do { |
| 792 | x = (x<<8) | (p[--i] & 0xFF); |
| 793 | } while (i > 0); |
| 794 | /* Extend the sign bit. */ |
| 795 | if (SIZEOF_LONG > f->size) |
| 796 | x |= -(x & (1L << (8*f->size - 1))); |
| 797 | return PyInt_FromLong(x); |
| 798 | } |
| 799 | |
| 800 | static PyObject * |
| 801 | lu_uint(const char *p, const formatdef *f) |
| 802 | { |
| 803 | unsigned long x = 0; |
| 804 | int i = f->size; |
| 805 | do { |
| 806 | x = (x<<8) | (p[--i] & 0xFF); |
| 807 | } while (i > 0); |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 808 | #ifdef PY_USE_INT_WHEN_POSSIBLE |
Bob Ippolito | 04ab994 | 2006-05-25 19:33:38 +0000 | [diff] [blame] | 809 | if (x <= LONG_MAX) |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 810 | return PyInt_FromLong((long)x); |
Bob Ippolito | 3b0cae9 | 2006-05-25 19:15:27 +0000 | [diff] [blame] | 811 | #else |
| 812 | if (SIZEOF_LONG > f->size) |
| 813 | return PyInt_FromLong((long)x); |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 814 | #endif |
| 815 | return PyLong_FromUnsignedLong((long)x); |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 816 | } |
| 817 | |
| 818 | static PyObject * |
| 819 | lu_longlong(const char *p, const formatdef *f) |
| 820 | { |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 821 | #if HAVE_LONG_LONG |
| 822 | PY_LONG_LONG x = 0; |
| 823 | int i = f->size; |
| 824 | do { |
| 825 | x = (x<<8) | (p[--i] & 0xFF); |
| 826 | } while (i > 0); |
| 827 | /* Extend the sign bit. */ |
| 828 | if (SIZEOF_LONG_LONG > f->size) |
| 829 | x |= -(x & (1L << (8 * f->size - 1))); |
| 830 | #ifdef PY_USE_INT_WHEN_POSSIBLE |
Bob Ippolito | 04ab994 | 2006-05-25 19:33:38 +0000 | [diff] [blame] | 831 | if (x >= LONG_MIN && x <= LONG_MAX) |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 832 | return PyInt_FromLong(Py_SAFE_DOWNCAST(x, PY_LONG_LONG, long)); |
| 833 | #endif |
| 834 | return PyLong_FromLongLong(x); |
| 835 | #else |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 836 | return _PyLong_FromByteArray((const unsigned char *)p, |
| 837 | 8, |
| 838 | 1, /* little-endian */ |
| 839 | 1 /* signed */); |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 840 | #endif |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 841 | } |
| 842 | |
| 843 | static PyObject * |
| 844 | lu_ulonglong(const char *p, const formatdef *f) |
| 845 | { |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 846 | #if HAVE_LONG_LONG |
| 847 | unsigned PY_LONG_LONG x = 0; |
| 848 | int i = f->size; |
| 849 | do { |
| 850 | x = (x<<8) | (p[--i] & 0xFF); |
| 851 | } while (i > 0); |
| 852 | #ifdef PY_USE_INT_WHEN_POSSIBLE |
Bob Ippolito | 04ab994 | 2006-05-25 19:33:38 +0000 | [diff] [blame] | 853 | if (x <= LONG_MAX) |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 854 | return PyInt_FromLong(Py_SAFE_DOWNCAST(x, unsigned PY_LONG_LONG, long)); |
| 855 | #endif |
| 856 | return PyLong_FromUnsignedLongLong(x); |
| 857 | #else |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 858 | return _PyLong_FromByteArray((const unsigned char *)p, |
| 859 | 8, |
| 860 | 1, /* little-endian */ |
| 861 | 0 /* signed */); |
Bob Ippolito | 94f68ee | 2006-05-25 18:44:50 +0000 | [diff] [blame] | 862 | #endif |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 863 | } |
| 864 | |
| 865 | static PyObject * |
| 866 | lu_float(const char *p, const formatdef *f) |
| 867 | { |
| 868 | return unpack_float(p, 1); |
| 869 | } |
| 870 | |
| 871 | static PyObject * |
| 872 | lu_double(const char *p, const formatdef *f) |
| 873 | { |
| 874 | return unpack_double(p, 1); |
| 875 | } |
| 876 | |
| 877 | static int |
| 878 | lp_int(char *p, PyObject *v, const formatdef *f) |
| 879 | { |
| 880 | long x; |
| 881 | int i; |
| 882 | if (get_long(v, &x) < 0) |
| 883 | return -1; |
| 884 | i = f->size; |
| 885 | do { |
| 886 | *p++ = (char)x; |
| 887 | x >>= 8; |
| 888 | } while (--i > 0); |
| 889 | return 0; |
| 890 | } |
| 891 | |
| 892 | static int |
| 893 | lp_uint(char *p, PyObject *v, const formatdef *f) |
| 894 | { |
| 895 | unsigned long x; |
| 896 | int i; |
| 897 | if (get_ulong(v, &x) < 0) |
| 898 | return -1; |
| 899 | i = f->size; |
| 900 | do { |
| 901 | *p++ = (char)x; |
| 902 | x >>= 8; |
| 903 | } while (--i > 0); |
| 904 | return 0; |
| 905 | } |
| 906 | |
| 907 | static int |
| 908 | lp_longlong(char *p, PyObject *v, const formatdef *f) |
| 909 | { |
| 910 | int res; |
| 911 | v = get_pylong(v); |
| 912 | if (v == NULL) |
| 913 | return -1; |
| 914 | res = _PyLong_AsByteArray((PyLongObject*)v, |
| 915 | (unsigned char *)p, |
| 916 | 8, |
| 917 | 1, /* little_endian */ |
| 918 | 1 /* signed */); |
| 919 | Py_DECREF(v); |
| 920 | return res; |
| 921 | } |
| 922 | |
| 923 | static int |
| 924 | lp_ulonglong(char *p, PyObject *v, const formatdef *f) |
| 925 | { |
| 926 | int res; |
| 927 | v = get_pylong(v); |
| 928 | if (v == NULL) |
| 929 | return -1; |
| 930 | res = _PyLong_AsByteArray((PyLongObject*)v, |
| 931 | (unsigned char *)p, |
| 932 | 8, |
| 933 | 1, /* little_endian */ |
| 934 | 0 /* signed */); |
| 935 | Py_DECREF(v); |
| 936 | return res; |
| 937 | } |
| 938 | |
| 939 | static int |
| 940 | lp_float(char *p, PyObject *v, const formatdef *f) |
| 941 | { |
| 942 | double x = PyFloat_AsDouble(v); |
| 943 | if (x == -1 && PyErr_Occurred()) { |
| 944 | PyErr_SetString(StructError, |
| 945 | "required argument is not a float"); |
| 946 | return -1; |
| 947 | } |
| 948 | return _PyFloat_Pack4(x, (unsigned char *)p, 1); |
| 949 | } |
| 950 | |
| 951 | static int |
| 952 | lp_double(char *p, PyObject *v, const formatdef *f) |
| 953 | { |
| 954 | double x = PyFloat_AsDouble(v); |
| 955 | if (x == -1 && PyErr_Occurred()) { |
| 956 | PyErr_SetString(StructError, |
| 957 | "required argument is not a float"); |
| 958 | return -1; |
| 959 | } |
| 960 | return _PyFloat_Pack8(x, (unsigned char *)p, 1); |
| 961 | } |
| 962 | |
| 963 | static formatdef lilendian_table[] = { |
| 964 | {'x', 1, 0, NULL}, |
| 965 | {'b', 1, 0, lu_int, lp_int}, |
| 966 | {'B', 1, 0, lu_uint, lp_int}, |
| 967 | {'c', 1, 0, nu_char, np_char}, |
| 968 | {'s', 1, 0, NULL}, |
| 969 | {'p', 1, 0, NULL}, |
| 970 | {'h', 2, 0, lu_int, lp_int}, |
| 971 | {'H', 2, 0, lu_uint, lp_uint}, |
| 972 | {'i', 4, 0, lu_int, lp_int}, |
| 973 | {'I', 4, 0, lu_uint, lp_uint}, |
| 974 | {'l', 4, 0, lu_int, lp_int}, |
| 975 | {'L', 4, 0, lu_uint, lp_uint}, |
| 976 | {'q', 8, 0, lu_longlong, lp_longlong}, |
| 977 | {'Q', 8, 0, lu_ulonglong, lp_ulonglong}, |
| 978 | {'f', 4, 0, lu_float, lp_float}, |
| 979 | {'d', 8, 0, lu_double, lp_double}, |
| 980 | {0} |
| 981 | }; |
| 982 | |
| 983 | |
| 984 | static const formatdef * |
| 985 | whichtable(char **pfmt) |
| 986 | { |
| 987 | const char *fmt = (*pfmt)++; /* May be backed out of later */ |
| 988 | switch (*fmt) { |
| 989 | case '<': |
| 990 | return lilendian_table; |
| 991 | case '>': |
| 992 | case '!': /* Network byte order is big-endian */ |
| 993 | return bigendian_table; |
| 994 | case '=': { /* Host byte order -- different from native in aligment! */ |
| 995 | int n = 1; |
| 996 | char *p = (char *) &n; |
| 997 | if (*p == 1) |
| 998 | return lilendian_table; |
| 999 | else |
| 1000 | return bigendian_table; |
| 1001 | } |
| 1002 | default: |
| 1003 | --*pfmt; /* Back out of pointer increment */ |
| 1004 | /* Fall through */ |
| 1005 | case '@': |
| 1006 | return native_table; |
| 1007 | } |
| 1008 | } |
| 1009 | |
| 1010 | |
| 1011 | /* Get the table entry for a format code */ |
| 1012 | |
| 1013 | static const formatdef * |
| 1014 | getentry(int c, const formatdef *f) |
| 1015 | { |
| 1016 | for (; f->format != '\0'; f++) { |
| 1017 | if (f->format == c) { |
| 1018 | return f; |
| 1019 | } |
| 1020 | } |
| 1021 | PyErr_SetString(StructError, "bad char in struct format"); |
| 1022 | return NULL; |
| 1023 | } |
| 1024 | |
| 1025 | |
| 1026 | /* Align a size according to a format code */ |
| 1027 | |
| 1028 | static int |
| 1029 | align(int size, int c, const formatdef *e) |
| 1030 | { |
| 1031 | if (e->format == c) { |
| 1032 | if (e->alignment) { |
| 1033 | size = ((size + e->alignment - 1) |
| 1034 | / e->alignment) |
| 1035 | * e->alignment; |
| 1036 | } |
| 1037 | } |
| 1038 | return size; |
| 1039 | } |
| 1040 | |
| 1041 | |
| 1042 | /* calculate the size of a format string */ |
| 1043 | |
| 1044 | static int |
| 1045 | prepare_s(PyStructObject *self) |
| 1046 | { |
| 1047 | const formatdef *f; |
| 1048 | const formatdef *e; |
| 1049 | formatcode *codes; |
| 1050 | |
| 1051 | const char *s; |
| 1052 | const char *fmt; |
| 1053 | char c; |
Bob Ippolito | eb62127 | 2006-05-24 15:32:06 +0000 | [diff] [blame] | 1054 | int size, len, num, itemsize, x; |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1055 | |
| 1056 | fmt = PyString_AS_STRING(self->s_format); |
| 1057 | |
| 1058 | f = whichtable((char **)&fmt); |
| 1059 | |
| 1060 | s = fmt; |
| 1061 | size = 0; |
| 1062 | len = 0; |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1063 | while ((c = *s++) != '\0') { |
| 1064 | if (isspace(Py_CHARMASK(c))) |
| 1065 | continue; |
| 1066 | if ('0' <= c && c <= '9') { |
| 1067 | num = c - '0'; |
| 1068 | while ('0' <= (c = *s++) && c <= '9') { |
| 1069 | x = num*10 + (c - '0'); |
| 1070 | if (x/10 != num) { |
| 1071 | PyErr_SetString( |
| 1072 | StructError, |
| 1073 | "overflow in item count"); |
| 1074 | return -1; |
| 1075 | } |
| 1076 | num = x; |
| 1077 | } |
| 1078 | if (c == '\0') |
| 1079 | break; |
| 1080 | } |
| 1081 | else |
| 1082 | num = 1; |
| 1083 | |
| 1084 | e = getentry(c, f); |
| 1085 | if (e == NULL) |
| 1086 | return -1; |
| 1087 | |
| 1088 | switch (c) { |
| 1089 | case 's': /* fall through */ |
| 1090 | case 'p': len++; break; |
| 1091 | case 'x': break; |
| 1092 | default: len += num; break; |
| 1093 | } |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1094 | |
| 1095 | itemsize = e->size; |
| 1096 | size = align(size, c, e); |
| 1097 | x = num * itemsize; |
| 1098 | size += x; |
| 1099 | if (x/itemsize != num || size < 0) { |
| 1100 | PyErr_SetString(StructError, |
| 1101 | "total struct size too long"); |
| 1102 | return -1; |
| 1103 | } |
| 1104 | } |
| 1105 | |
| 1106 | self->s_size = size; |
| 1107 | self->s_len = len; |
Bob Ippolito | eb62127 | 2006-05-24 15:32:06 +0000 | [diff] [blame] | 1108 | codes = PyMem_MALLOC((len + 1) * sizeof(formatcode)); |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1109 | if (codes == NULL) { |
| 1110 | PyErr_NoMemory(); |
| 1111 | return -1; |
| 1112 | } |
| 1113 | self->s_codes = codes; |
| 1114 | |
| 1115 | s = fmt; |
| 1116 | size = 0; |
| 1117 | while ((c = *s++) != '\0') { |
| 1118 | if (isspace(Py_CHARMASK(c))) |
| 1119 | continue; |
| 1120 | if ('0' <= c && c <= '9') { |
| 1121 | num = c - '0'; |
| 1122 | while ('0' <= (c = *s++) && c <= '9') |
| 1123 | num = num*10 + (c - '0'); |
| 1124 | if (c == '\0') |
| 1125 | break; |
| 1126 | } |
| 1127 | else |
| 1128 | num = 1; |
| 1129 | |
| 1130 | e = getentry(c, f); |
| 1131 | |
| 1132 | size = align(size, c, e); |
Bob Ippolito | eb62127 | 2006-05-24 15:32:06 +0000 | [diff] [blame] | 1133 | if (c == 's' || c == 'p') { |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1134 | codes->offset = size; |
Bob Ippolito | eb62127 | 2006-05-24 15:32:06 +0000 | [diff] [blame] | 1135 | codes->size = num; |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1136 | codes->fmtdef = e; |
| 1137 | codes++; |
Bob Ippolito | eb62127 | 2006-05-24 15:32:06 +0000 | [diff] [blame] | 1138 | size += num; |
| 1139 | } else if (c == 'x') { |
| 1140 | size += num; |
| 1141 | } else { |
| 1142 | while (--num >= 0) { |
| 1143 | codes->offset = size; |
| 1144 | codes->size = e->size; |
| 1145 | codes->fmtdef = e; |
| 1146 | codes++; |
| 1147 | size += e->size; |
| 1148 | } |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1149 | } |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1150 | } |
| 1151 | codes->fmtdef = NULL; |
Bob Ippolito | eb62127 | 2006-05-24 15:32:06 +0000 | [diff] [blame] | 1152 | codes->offset = size; |
| 1153 | codes->size = 0; |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1154 | |
| 1155 | return 0; |
| 1156 | } |
| 1157 | |
| 1158 | static PyObject * |
| 1159 | s_new(PyTypeObject *type, PyObject *args, PyObject *kwds) |
| 1160 | { |
| 1161 | PyObject *self; |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1162 | |
| 1163 | assert(type != NULL && type->tp_alloc != NULL); |
| 1164 | |
| 1165 | self = type->tp_alloc(type, 0); |
| 1166 | if (self != NULL) { |
| 1167 | PyStructObject *s = (PyStructObject*)self; |
| 1168 | Py_INCREF(Py_None); |
| 1169 | s->s_format = Py_None; |
| 1170 | s->s_codes = NULL; |
| 1171 | s->s_size = -1; |
| 1172 | s->s_len = -1; |
| 1173 | } |
| 1174 | return self; |
| 1175 | } |
| 1176 | |
| 1177 | static int |
| 1178 | s_init(PyObject *self, PyObject *args, PyObject *kwds) |
| 1179 | { |
| 1180 | PyStructObject *soself = (PyStructObject *)self; |
| 1181 | PyObject *o_format = NULL; |
| 1182 | int ret = 0; |
| 1183 | static char *kwlist[] = {"format", 0}; |
| 1184 | |
| 1185 | assert(PyStruct_Check(self)); |
| 1186 | |
| 1187 | if (!PyArg_ParseTupleAndKeywords(args, kwds, "S:Struct", kwlist, |
| 1188 | &o_format)) |
| 1189 | return -1; |
| 1190 | |
| 1191 | Py_INCREF(o_format); |
| 1192 | Py_XDECREF(soself->s_format); |
| 1193 | soself->s_format = o_format; |
| 1194 | |
| 1195 | ret = prepare_s(soself); |
| 1196 | return ret; |
| 1197 | } |
| 1198 | |
| 1199 | static void |
| 1200 | s_dealloc(PyStructObject *s) |
| 1201 | { |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1202 | if (s->weakreflist != NULL) |
| 1203 | PyObject_ClearWeakRefs((PyObject *)s); |
| 1204 | if (s->s_codes != NULL) { |
| 1205 | PyMem_FREE(s->s_codes); |
| 1206 | } |
| 1207 | Py_XDECREF(s->s_format); |
| 1208 | s->ob_type->tp_free((PyObject *)s); |
| 1209 | } |
| 1210 | |
Bob Ippolito | eb62127 | 2006-05-24 15:32:06 +0000 | [diff] [blame] | 1211 | static PyObject * |
| 1212 | s_unpack_internal(PyStructObject *soself, char *startfrom) { |
| 1213 | formatcode *code; |
| 1214 | Py_ssize_t i = 0; |
| 1215 | PyObject *result = PyTuple_New(soself->s_len); |
| 1216 | if (result == NULL) |
| 1217 | return NULL; |
| 1218 | |
| 1219 | for (code = soself->s_codes; code->fmtdef != NULL; code++) { |
| 1220 | PyObject *v; |
| 1221 | const formatdef *e = code->fmtdef; |
| 1222 | const char *res = startfrom + code->offset; |
| 1223 | if (e->format == 's') { |
| 1224 | v = PyString_FromStringAndSize(res, code->size); |
| 1225 | if (v == NULL) |
| 1226 | goto fail; |
| 1227 | PyTuple_SET_ITEM(result, i++, v); |
| 1228 | } else if (e->format == 'p') { |
| 1229 | Py_ssize_t n = *(unsigned char*)res; |
| 1230 | if (n >= code->size) |
| 1231 | n = code->size - 1; |
| 1232 | v = PyString_FromStringAndSize(res + 1, n); |
| 1233 | if (v == NULL) |
| 1234 | goto fail; |
| 1235 | PyTuple_SET_ITEM(result, i++, v); |
| 1236 | } else { |
| 1237 | v = e->unpack(res, e); |
| 1238 | if (v == NULL) |
| 1239 | goto fail; |
| 1240 | PyTuple_SET_ITEM(result, i++, v); |
| 1241 | } |
| 1242 | } |
| 1243 | |
| 1244 | return result; |
| 1245 | fail: |
| 1246 | Py_DECREF(result); |
| 1247 | return NULL; |
| 1248 | }; |
| 1249 | |
| 1250 | |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1251 | PyDoc_STRVAR(s_unpack__doc__, |
| 1252 | "unpack(str) -> (v1, v2, ...)\n\ |
| 1253 | \n\ |
| 1254 | Return tuple containing values unpacked according to this Struct's format.\n\ |
| 1255 | Requires len(str) == self.size. See struct.__doc__ for more on format\n\ |
| 1256 | strings."); |
| 1257 | |
| 1258 | static PyObject * |
| 1259 | s_unpack(PyObject *self, PyObject *inputstr) |
| 1260 | { |
Bob Ippolito | eb62127 | 2006-05-24 15:32:06 +0000 | [diff] [blame] | 1261 | PyStructObject *soself = (PyStructObject *)self; |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1262 | assert(PyStruct_Check(self)); |
| 1263 | assert(soself->s_codes != NULL); |
| 1264 | if (inputstr == NULL || !PyString_Check(inputstr) || |
Bob Ippolito | eb62127 | 2006-05-24 15:32:06 +0000 | [diff] [blame] | 1265 | PyString_GET_SIZE(inputstr) != soself->s_size) { |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1266 | PyErr_Format(StructError, |
| 1267 | "unpack requires a string argument of length %d", soself->s_size); |
| 1268 | return NULL; |
| 1269 | } |
Bob Ippolito | eb62127 | 2006-05-24 15:32:06 +0000 | [diff] [blame] | 1270 | return s_unpack_internal(soself, PyString_AS_STRING(inputstr)); |
| 1271 | } |
| 1272 | |
| 1273 | PyDoc_STRVAR(s_unpack_from__doc__, |
| 1274 | "unpack_from(buffer[, offset]) -> (v1, v2, ...)\n\ |
| 1275 | \n\ |
| 1276 | Return tuple containing values unpacked according to this Struct's format.\n\ |
| 1277 | Unlike unpack, unpack_from can unpack values from any object supporting\n\ |
| 1278 | the buffer API, not just str. Requires len(buffer[offset:]) >= self.size.\n\ |
| 1279 | See struct.__doc__ for more on format strings."); |
| 1280 | |
| 1281 | static PyObject * |
| 1282 | s_unpack_from(PyObject *self, PyObject *args, PyObject *kwds) |
| 1283 | { |
| 1284 | static char *kwlist[] = {"buffer", "offset", 0}; |
| 1285 | #if (PY_VERSION_HEX < 0x02050000) |
| 1286 | static char *fmt = "z#|i:unpack_from"; |
| 1287 | #else |
| 1288 | static char *fmt = "z#|n:unpack_from"; |
| 1289 | #endif |
| 1290 | Py_ssize_t buffer_len = 0, offset = 0; |
| 1291 | char *buffer = NULL; |
| 1292 | PyStructObject *soself = (PyStructObject *)self; |
| 1293 | assert(PyStruct_Check(self)); |
| 1294 | assert(soself->s_codes != NULL); |
| 1295 | |
| 1296 | if (!PyArg_ParseTupleAndKeywords(args, kwds, fmt, kwlist, |
| 1297 | &buffer, &buffer_len, &offset)) |
| 1298 | return NULL; |
| 1299 | |
| 1300 | if (buffer == NULL) { |
| 1301 | PyErr_Format(StructError, |
| 1302 | "unpack_from requires a buffer argument"); |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1303 | return NULL; |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1304 | } |
Bob Ippolito | eb62127 | 2006-05-24 15:32:06 +0000 | [diff] [blame] | 1305 | |
| 1306 | if (offset < 0) |
| 1307 | offset += buffer_len; |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1308 | |
Bob Ippolito | eb62127 | 2006-05-24 15:32:06 +0000 | [diff] [blame] | 1309 | if (offset < 0 || (buffer_len - offset) < soself->s_size) { |
| 1310 | PyErr_Format(StructError, |
| 1311 | "unpack_from requires a buffer of at least %d bytes", |
| 1312 | soself->s_size); |
| 1313 | return NULL; |
| 1314 | } |
| 1315 | return s_unpack_internal(soself, buffer + offset); |
| 1316 | } |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1317 | |
| 1318 | PyDoc_STRVAR(s_pack__doc__, |
| 1319 | "pack(v1, v2, ...) -> string\n\ |
| 1320 | \n\ |
| 1321 | Return a string containing values v1, v2, ... packed according to this\n\ |
| 1322 | Struct's format. See struct.__doc__ for more on format strings."); |
| 1323 | |
| 1324 | static PyObject * |
| 1325 | s_pack(PyObject *self, PyObject *args) |
| 1326 | { |
| 1327 | PyStructObject *soself; |
| 1328 | PyObject *result; |
| 1329 | char *restart; |
| 1330 | formatcode *code; |
| 1331 | Py_ssize_t i; |
| 1332 | |
| 1333 | soself = (PyStructObject *)self; |
| 1334 | assert(PyStruct_Check(self)); |
| 1335 | assert(soself->s_codes != NULL); |
| 1336 | if (args == NULL || !PyTuple_Check(args) || |
| 1337 | PyTuple_GET_SIZE(args) != soself->s_len) |
| 1338 | { |
| 1339 | PyErr_Format(StructError, |
| 1340 | "pack requires exactly %d arguments", soself->s_len); |
| 1341 | return NULL; |
| 1342 | } |
| 1343 | |
| 1344 | result = PyString_FromStringAndSize((char *)NULL, soself->s_size); |
| 1345 | if (result == NULL) |
| 1346 | return NULL; |
| 1347 | |
| 1348 | restart = PyString_AS_STRING(result); |
| 1349 | memset(restart, '\0', soself->s_size); |
| 1350 | i = 0; |
| 1351 | for (code = soself->s_codes; code->fmtdef != NULL; code++) { |
| 1352 | Py_ssize_t n; |
| 1353 | PyObject *v; |
| 1354 | const formatdef *e = code->fmtdef; |
| 1355 | char *res = restart + code->offset; |
| 1356 | if (e->format == 's') { |
| 1357 | v = PyTuple_GET_ITEM(args, i++); |
| 1358 | if (!PyString_Check(v)) { |
| 1359 | PyErr_SetString(StructError, |
| 1360 | "argument for 's' must be a string"); |
| 1361 | goto fail; |
| 1362 | } |
| 1363 | n = PyString_GET_SIZE(v); |
Bob Ippolito | eb62127 | 2006-05-24 15:32:06 +0000 | [diff] [blame] | 1364 | if (n > code->size) |
| 1365 | n = code->size; |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1366 | if (n > 0) |
| 1367 | memcpy(res, PyString_AS_STRING(v), n); |
| 1368 | } else if (e->format == 'p') { |
| 1369 | v = PyTuple_GET_ITEM(args, i++); |
| 1370 | if (!PyString_Check(v)) { |
| 1371 | PyErr_SetString(StructError, |
| 1372 | "argument for 'p' must be a string"); |
| 1373 | goto fail; |
| 1374 | } |
| 1375 | n = PyString_GET_SIZE(v); |
Bob Ippolito | eb62127 | 2006-05-24 15:32:06 +0000 | [diff] [blame] | 1376 | if (n > (code->size - 1)) |
| 1377 | n = code->size - 1; |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1378 | if (n > 0) |
| 1379 | memcpy(res + 1, PyString_AS_STRING(v), n); |
| 1380 | if (n > 255) |
| 1381 | n = 255; |
| 1382 | *res = Py_SAFE_DOWNCAST(n, Py_ssize_t, unsigned char); |
| 1383 | } else { |
Bob Ippolito | eb62127 | 2006-05-24 15:32:06 +0000 | [diff] [blame] | 1384 | v = PyTuple_GET_ITEM(args, i++); |
| 1385 | if (e->pack(res, v, e) < 0) |
| 1386 | goto fail; |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1387 | } |
| 1388 | } |
| 1389 | |
| 1390 | return result; |
| 1391 | |
| 1392 | fail: |
| 1393 | Py_DECREF(result); |
| 1394 | return NULL; |
| 1395 | |
| 1396 | } |
| 1397 | |
| 1398 | |
| 1399 | /* List of functions */ |
| 1400 | |
| 1401 | static struct PyMethodDef s_methods[] = { |
Bob Ippolito | eb62127 | 2006-05-24 15:32:06 +0000 | [diff] [blame] | 1402 | {"pack", (PyCFunction)s_pack, METH_VARARGS, s_pack__doc__}, |
| 1403 | {"unpack", (PyCFunction)s_unpack, METH_O, s_unpack__doc__}, |
| 1404 | {"unpack_from", (PyCFunction)s_unpack_from, METH_KEYWORDS, s_unpack_from__doc__}, |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1405 | {NULL, NULL} /* sentinel */ |
| 1406 | }; |
| 1407 | |
| 1408 | PyDoc_STRVAR(s__doc__, "Compiled struct object"); |
| 1409 | |
| 1410 | #define OFF(x) offsetof(PyStructObject, x) |
| 1411 | |
| 1412 | static PyMemberDef s_memberlist[] = { |
| 1413 | {"format", T_OBJECT, OFF(s_format), RO, |
| 1414 | "struct format string"}, |
| 1415 | {"size", T_INT, OFF(s_size), RO, |
| 1416 | "struct size in bytes"}, |
| 1417 | {"_len", T_INT, OFF(s_len), RO, |
| 1418 | "number of items expected in tuple"}, |
| 1419 | {NULL} /* Sentinel */ |
| 1420 | }; |
| 1421 | |
| 1422 | |
| 1423 | static |
| 1424 | PyTypeObject PyStructType = { |
Bob Ippolito | 3fc2bb9 | 2006-05-25 19:03:19 +0000 | [diff] [blame] | 1425 | PyObject_HEAD_INIT(NULL) |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1426 | 0, |
| 1427 | "Struct", |
| 1428 | sizeof(PyStructObject), |
| 1429 | 0, |
| 1430 | (destructor)s_dealloc, /* tp_dealloc */ |
| 1431 | 0, /* tp_print */ |
| 1432 | 0, /* tp_getattr */ |
| 1433 | 0, /* tp_setattr */ |
| 1434 | 0, /* tp_compare */ |
| 1435 | 0, /* tp_repr */ |
| 1436 | 0, /* tp_as_number */ |
| 1437 | 0, /* tp_as_sequence */ |
| 1438 | 0, /* tp_as_mapping */ |
| 1439 | 0, /* tp_hash */ |
| 1440 | 0, /* tp_call */ |
| 1441 | 0, /* tp_str */ |
| 1442 | PyObject_GenericGetAttr, /* tp_getattro */ |
| 1443 | PyObject_GenericSetAttr, /* tp_setattro */ |
| 1444 | 0, /* tp_as_buffer */ |
| 1445 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_WEAKREFS, /* tp_flags */ |
| 1446 | s__doc__, /* tp_doc */ |
| 1447 | 0, /* tp_traverse */ |
| 1448 | 0, /* tp_clear */ |
| 1449 | 0, /* tp_richcompare */ |
| 1450 | offsetof(PyStructObject, weakreflist), /* tp_weaklistoffset */ |
| 1451 | 0, /* tp_iter */ |
| 1452 | 0, /* tp_iternext */ |
| 1453 | s_methods, /* tp_methods */ |
| 1454 | s_memberlist, /* tp_members */ |
| 1455 | 0, /* tp_getset */ |
| 1456 | 0, /* tp_base */ |
| 1457 | 0, /* tp_dict */ |
| 1458 | 0, /* tp_descr_get */ |
| 1459 | 0, /* tp_descr_set */ |
| 1460 | 0, /* tp_dictoffset */ |
| 1461 | s_init, /* tp_init */ |
| 1462 | PyType_GenericAlloc, /* tp_alloc */ |
| 1463 | s_new, /* tp_new */ |
| 1464 | PyObject_Del, /* tp_free */ |
| 1465 | }; |
| 1466 | |
| 1467 | /* Module initialization */ |
| 1468 | |
| 1469 | PyMODINIT_FUNC |
| 1470 | init_struct(void) |
| 1471 | { |
| 1472 | PyObject *m = Py_InitModule("_struct", NULL); |
| 1473 | if (m == NULL) |
| 1474 | return; |
| 1475 | |
Bob Ippolito | 3fc2bb9 | 2006-05-25 19:03:19 +0000 | [diff] [blame] | 1476 | PyStructType.ob_type = &PyType_Type; |
| 1477 | if (PyType_Ready(&PyStructType) < 0) |
| 1478 | return; |
| 1479 | |
Bob Ippolito | a99865b | 2006-05-25 19:56:56 +0000 | [diff] [blame] | 1480 | /* Check endian and swap in faster functions */ |
| 1481 | { |
| 1482 | int one = 1; |
| 1483 | formatdef *native = native_table; |
| 1484 | formatdef *other, *ptr; |
| 1485 | if ((int)*(unsigned char*)&one) |
| 1486 | other = lilendian_table; |
| 1487 | else |
| 1488 | other = bigendian_table; |
Bob Ippolito | 964e02a | 2006-05-25 21:09:45 +0000 | [diff] [blame] | 1489 | /* Scan through the native table, find a matching |
| 1490 | entry in the endian table and swap in the |
| 1491 | native implementations whenever possible |
| 1492 | (64-bit platforms may not have "standard" sizes) */ |
Bob Ippolito | a99865b | 2006-05-25 19:56:56 +0000 | [diff] [blame] | 1493 | while (native->format != '\0' && other->format != '\0') { |
| 1494 | ptr = other; |
| 1495 | while (ptr->format != '\0') { |
| 1496 | if (ptr->format == native->format) { |
Bob Ippolito | 964e02a | 2006-05-25 21:09:45 +0000 | [diff] [blame] | 1497 | /* Match faster when formats are |
| 1498 | listed in the same order */ |
Bob Ippolito | a99865b | 2006-05-25 19:56:56 +0000 | [diff] [blame] | 1499 | if (ptr == other) |
| 1500 | other++; |
Bob Ippolito | 964e02a | 2006-05-25 21:09:45 +0000 | [diff] [blame] | 1501 | /* Only use the trick if the |
| 1502 | size matches */ |
| 1503 | if (ptr->size != native->size) |
| 1504 | break; |
| 1505 | /* Skip float and double, could be |
| 1506 | "unknown" float format */ |
| 1507 | if (ptr->format == 'd' || ptr->format == 'f') |
| 1508 | break; |
| 1509 | ptr->pack = native->pack; |
| 1510 | ptr->unpack = native->unpack; |
Bob Ippolito | a99865b | 2006-05-25 19:56:56 +0000 | [diff] [blame] | 1511 | break; |
| 1512 | } |
| 1513 | ptr++; |
| 1514 | } |
| 1515 | native++; |
| 1516 | } |
| 1517 | } |
Bob Ippolito | 04ab994 | 2006-05-25 19:33:38 +0000 | [diff] [blame] | 1518 | |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1519 | /* Add some symbolic constants to the module */ |
| 1520 | if (StructError == NULL) { |
| 1521 | StructError = PyErr_NewException("struct.error", NULL, NULL); |
| 1522 | if (StructError == NULL) |
| 1523 | return; |
| 1524 | } |
Bob Ippolito | 04ab994 | 2006-05-25 19:33:38 +0000 | [diff] [blame] | 1525 | |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1526 | Py_INCREF(StructError); |
| 1527 | PyModule_AddObject(m, "error", StructError); |
Bob Ippolito | 04ab994 | 2006-05-25 19:33:38 +0000 | [diff] [blame] | 1528 | |
Bob Ippolito | 232f3c9 | 2006-05-23 19:12:41 +0000 | [diff] [blame] | 1529 | Py_INCREF((PyObject*)&PyStructType); |
| 1530 | PyModule_AddObject(m, "Struct", (PyObject*)&PyStructType); |
| 1531 | } |