File size: 39,080 Bytes
7ffff7d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 | /******************************************************************************
* C extension code for astropy.utils.xml.iterparse
*
* Everything in this file has an alternate Python implementation and
* is included for performance reasons only.
*
* It has two main parts:
*
* - An IterParser object which parses an XML file using the expat
* library, feeding expat events through a Python iterator. It is
* faster and more memory efficient than the alternatives in the
* Python standard library because it does not build a tree of
* objects, and also throws away most text nodes, since for
* astropy.io.votable (the primary user of this library) we only
* care about simple text nodes contained between a single pair of
* open/close element nodes. It also has an optimization for
* recognizing the most commonly occuring element in a VO file,
* "TD".
*
* - Two functions, escape_xml() and escape_xml_cdata() that escape
* XML much faster than the alternatives in the Python standard
* library.
******************************************************************************/
#include <Python.h>
#include "structmember.h"
#include "expat.h"
/******************************************************************************
* Convenience macros and functions
******************************************************************************/
#ifdef _MSC_VER
#define inline
#endif
#undef CLAMP
#define CLAMP(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x)))
static Py_ssize_t
next_power_of_2(Py_ssize_t n)
{
/* Calculate the next-highest power of two */
n--;
n |= n >> 1;
n |= n >> 2;
n |= n >> 4;
n |= n >> 8;
n |= n >> 16;
n++;
return n;
}
/******************************************************************************
* Python version compatibility macros
******************************************************************************/
#if BYTEORDER == 1234
# define TD_AS_INT 0x00004454
# define TD_AS_INT_MASK 0x00ffffff
#else
# define TD_AS_INT 0x54440000
# define TD_AS_INT_MASK 0xffffff00
#endif
/* Clang doesn't like the hackish stuff PyTuple_SET_ITEM does... */
#ifdef __clang__
#undef PyTuple_SET_ITEM
#define PyTuple_SET_ITEM(a, b, c) PyTuple_SetItem((a), (b), (c))
#endif
/******************************************************************************
* IterParser type
******************************************************************************/
typedef struct {
PyObject_HEAD
XML_Parser parser; /* The expat parser */
int done; /* True when expat parser has read to EOF */
/* File-like object reading */
PyObject* fd; /* Python file object */
int file; /* C file descriptor */
PyObject* read; /* The read method on the file object */
ssize_t buffersize; /* The size of the read buffer */
XML_Char* buffer; /* The read buffer */
/* Text nodes */
Py_ssize_t text_alloc; /* The allocated size of the text buffer */
Py_ssize_t text_size; /* The size of the content in the text buffer */
XML_Char* text; /* Text buffer (for returning text nodes) */
int keep_text; /* Flag: keep appending text chunks to the current text node */
/* XML event queue */
PyObject** queue;
Py_ssize_t queue_size;
Py_ssize_t queue_read_idx;
Py_ssize_t queue_write_idx;
/* Store the last Python exception so it can be returned when
dequeing events */
PyObject* error_type;
PyObject* error_value;
PyObject* error_traceback;
/* Store the position for any XML exceptions that may be
returned later */
unsigned long last_line;
unsigned long last_col;
/* "Constants" for efficiency */
PyObject* dict_singleton; /* Empty dict */
PyObject* td_singleton; /* String "TD" */
PyObject* read_args; /* (buffersize) */
} IterParser;
/******************************************************************************
* Tuple queue
******************************************************************************/
/**
* Extend the tuple queue based on the new length of the textual XML input.
* This helps to cope with situations where the input is longer than
* requested (as occurs with transparent decompression of the input
* stream), and for the initial allocation to combine the logic in one place.
*/
static int
queue_realloc(IterParser *self, Py_ssize_t req_size)
{
PyObject** new_queue;
Py_ssize_t n = req_size / 2;
if (n <= self->queue_size)
return 0;
new_queue = realloc(self->queue, sizeof(PyObject*) * (size_t)n);
if (new_queue == NULL) {
PyErr_SetString(PyExc_MemoryError, "Out of memory for XML parsing queue.");
/*
* queue_realloc() is only called from IterParser_init() or
* IterParser_next() in situations where the queue is clear
* and empty. If this function were to be used in other
* situations it would be wise to iterate over the queue and
* clear/decrement the individual references, to save work for
* the garbage collector (in an out-of-memory situation).
*/
goto fail;
}
self->queue = new_queue;
self->queue_size = n;
return 0;
fail:
free(self->queue);
self->queue = NULL;
self->queue_size = 0;
return -1;
}
/******************************************************************************
* Text buffer
******************************************************************************/
/**
* Reallocate text buffer to the next highest power of two that fits the
* requested size.
*/
static int
text_realloc(IterParser *self, Py_ssize_t req_size)
{
Py_ssize_t n = req_size;
char *new_mem = NULL;
if (req_size < self->text_alloc) {
return 0;
}
/* Calculate the next-highest power of two */
n = next_power_of_2(n);
if (n < req_size) {
PyErr_SetString(PyExc_MemoryError, "Out of memory for XML text.");
return -1;
}
new_mem = malloc(n * sizeof(XML_Char));
if (new_mem == NULL) {
PyErr_SetString(PyExc_MemoryError, "Out of memory for XML text.");
return -1;
}
memcpy(new_mem, self->text, (size_t)(self->text_size + 1) * sizeof(XML_Char));
free(self->text);
self->text = new_mem;
self->text_alloc = n;
return 0;
}
#define IS_WHITESPACE(c) ((c) == (XML_Char)0x20 || \
(c) == (XML_Char)0x0d || \
(c) == (XML_Char)0x0a || \
(c) == (XML_Char)0x09)
/*
* Append text to the text buffer.
*
* For the first chunk of text, all whitespace characters before the
* first non-whitespace character are stripped. This saves time
* stripping on the Python side later.
*/
static int
text_append(IterParser *self, const XML_Char *data, Py_ssize_t len)
{
Py_ssize_t new_size;
if (len == 0) {
return 0;
}
/* If this is the first chunk, handle whitespace */
if (self->text_size == 0) {
while (len && IS_WHITESPACE(*data)) {
++data;
--len;
}
}
/* Grow text buffer if necessary */
new_size = self->text_size + len;
if (text_realloc(self, new_size + 1)) {
return -1;
}
memcpy(self->text + self->text_size,
data,
(size_t)len * sizeof(XML_Char));
self->text_size = new_size;
self->text[self->text_size] = (XML_Char)0x0;
return 0;
}
/*
* Erase all content from the text buffer.
*/
static void
text_clear(IterParser *self)
{
self->text[0] = (XML_Char)0;
self->text_size = 0;
}
/******************************************************************************
* XML event handling
******************************************************************************/
/*
* Make a "position tuple" from the current expat parser state. This
* is used to communicate the position of the parser within the file
* to the Python side for generation of meaningful error messages.
*
* It is of the form (line, col), where line and col are both PyInts.
*/
static inline PyObject*
make_pos(const IterParser *self)
{
return Py_BuildValue(
"(nn)",
(size_t)self->last_line,
(size_t)self->last_col);
}
/*
* Removes the namespace from an element or attribute name, that is,
* remove everything before the first colon. The namespace is not
* needed to parse standards-compliant VOTable files.
*
* The returned pointer is an internal pointer to the buffer passed
* in.
*/
static const XML_Char *
remove_namespace(const XML_Char *name)
{
const XML_Char* name_start = NULL;
/* If there is a namespace specifier, just chop it off */
for (name_start = name; *name_start != '\0'; ++name_start) {
if (*name_start == ':') {
break;
}
}
if (*name_start == ':') {
++name_start;
} else {
name_start = name;
}
return name_start;
}
/*
* Handle the expat startElement event.
*/
static void
startElement(IterParser *self, const XML_Char *name, const XML_Char **atts)
{
PyObject* pyname = NULL;
PyObject* pyatts = NULL;
const XML_Char** att_ptr = atts;
const XML_Char* name_start = NULL;
PyObject* tuple = NULL;
PyObject* key = NULL;
PyObject* val = NULL;
PyObject* pos = NULL;
/* If we've already had an error in a previous call, don't make
things worse. */
if (PyErr_Occurred() != NULL) {
XML_StopParser(self->parser, 0);
return;
}
/* Don't overflow the queue -- in practice this should *never* happen */
if (self->queue_write_idx < self->queue_size) {
tuple = PyTuple_New(4);
if (tuple == NULL) {
goto fail;
}
Py_INCREF(Py_True);
PyTuple_SET_ITEM(tuple, 0, Py_True);
/* This is an egregious but effective optimization. Since by
far the most frequently occurring element name in a large
VOTABLE file is TD, we explicitly check for it here with
integer comparison to avoid the lookup in the interned
string table in PyString_InternFromString, and return a
singleton string for "TD" */
if ((*(int*)name & TD_AS_INT_MASK) == TD_AS_INT) {
Py_INCREF(self->td_singleton);
PyTuple_SetItem(tuple, 1, self->td_singleton);
} else {
name_start = remove_namespace(name);
pyname = PyUnicode_FromString(name_start);
if (pyname == NULL) {
goto fail;
}
PyTuple_SetItem(tuple, 1, pyname);
pyname = NULL;
}
if (*att_ptr) {
pyatts = PyDict_New();
if (pyatts == NULL) {
goto fail;
}
do {
if (*(*(att_ptr + 1)) != 0) {
key = PyUnicode_FromString(*att_ptr);
if (key == NULL) {
goto fail;
}
val = PyUnicode_FromString(*(att_ptr + 1));
if (val == NULL) {
Py_DECREF(key);
goto fail;
}
if (PyDict_SetItem(pyatts, key, val)) {
Py_DECREF(key);
Py_DECREF(val);
goto fail;
}
Py_DECREF(key);
Py_DECREF(val);
key = val = NULL;
}
att_ptr += 2;
} while (*att_ptr);
} else {
Py_INCREF(self->dict_singleton);
pyatts = self->dict_singleton;
}
PyTuple_SetItem(tuple, 2, pyatts);
pyatts = NULL;
self->last_line = (unsigned long)XML_GetCurrentLineNumber(
self->parser);
self->last_col = (unsigned long)XML_GetCurrentColumnNumber(
self->parser);
pos = make_pos(self);
if (pos == NULL) {
goto fail;
}
PyTuple_SetItem(tuple, 3, pos);
pos = NULL;
text_clear(self);
self->keep_text = 1;
self->queue[self->queue_write_idx++] = tuple;
} else {
PyErr_SetString(
PyExc_RuntimeError,
"XML queue overflow in startElement. This most likely indicates an internal bug.");
goto fail;
}
return;
fail:
Py_XDECREF(tuple);
Py_XDECREF(pyatts);
XML_StopParser(self->parser, 0);
}
/*
* Handle the expat endElement event.
*/
static void
endElement(IterParser *self, const XML_Char *name)
{
PyObject* pyname = NULL;
PyObject* tuple = NULL;
PyObject* pytext = NULL;
const XML_Char* name_start = NULL;
XML_Char* end;
PyObject* pos = NULL;
/* If we've already had an error in a previous call, don't make
things worse. */
if (PyErr_Occurred() != NULL) {
XML_StopParser(self->parser, 0);
return;
}
/* Don't overflow the queue -- in practice this should *never* happen */
if (self->queue_write_idx < self->queue_size) {
tuple = PyTuple_New(4);
if (tuple == NULL) {
goto fail;
}
Py_INCREF(Py_False);
PyTuple_SET_ITEM(tuple, 0, Py_False);
/* This is an egregious but effective optimization. Since by
far the most frequently occurring element name in a large
VOTABLE file is TD, we explicitly check for it here with
integer comparison to avoid the lookup in the interned
string table in PyString_InternFromString, and return a
singleton string for "TD" */
if ((*(int*)name & TD_AS_INT_MASK) == TD_AS_INT) {
Py_INCREF(self->td_singleton);
PyTuple_SetItem(tuple, 1, self->td_singleton);
} else {
name_start = remove_namespace(name);
pyname = PyUnicode_FromString(name_start);
if (pyname == NULL) {
goto fail;
}
PyTuple_SetItem(tuple, 1, pyname);
pyname = NULL;
}
/* Cut whitespace off the end of the string */
end = self->text + self->text_size - 1;
while (end >= self->text && IS_WHITESPACE(*end)) {
--end;
--self->text_size;
}
pytext = PyUnicode_FromStringAndSize(self->text, self->text_size);
if (pytext == NULL) {
goto fail;
}
PyTuple_SetItem(tuple, 2, pytext);
pytext = NULL;
pos = make_pos(self);
if (pos == NULL) {
goto fail;
}
PyTuple_SetItem(tuple, 3, pos);
pos = NULL;
self->keep_text = 0;
self->queue[self->queue_write_idx++] = tuple;
} else {
PyErr_SetString(
PyExc_RuntimeError,
"XML queue overflow in endElement. This most likely indicates an internal bug.");
goto fail;
}
return;
fail:
Py_XDECREF(tuple);
XML_StopParser(self->parser, 0);
}
/*
* Handle the expat characterData event.
*/
static void
characterData(IterParser *self, const XML_Char *text, int len)
{
/* If we've already had an error in a previous call, don't make
things worse. */
if (PyErr_Occurred() != NULL) {
XML_StopParser(self->parser, 0);
return;
}
if (self->text_size == 0) {
self->last_line = (unsigned long)XML_GetCurrentLineNumber(
self->parser);
self->last_col = (unsigned long)XML_GetCurrentColumnNumber(
self->parser);
}
if (self->keep_text) {
(void)text_append(self, text, (Py_ssize_t)len);
}
}
/*
* Handle the XML declaration so that we can determine its encoding.
*/
static void
xmlDecl(IterParser *self, const XML_Char *version,
const XML_Char *encoding, int standalone)
{
PyObject* tuple = NULL;
PyObject* xml_str = NULL;
PyObject* attrs = NULL;
PyObject* encoding_str = NULL;
PyObject* version_str = NULL;
PyObject* pos = NULL;
if (self->queue_write_idx < self->queue_size) {
tuple = PyTuple_New(4);
if (tuple == NULL) {
goto fail;
}
Py_INCREF(Py_True);
PyTuple_SET_ITEM(tuple, 0, Py_True);
xml_str = PyUnicode_FromString("xml");
if (xml_str == NULL) {
goto fail;
}
PyTuple_SET_ITEM(tuple, 1, xml_str);
xml_str = NULL;
attrs = PyDict_New();
if (attrs == NULL) {
goto fail;
}
if (encoding) {
encoding_str = PyUnicode_FromString(encoding);
} else {
encoding_str = PyUnicode_FromString("");
}
if (encoding_str == NULL) {
goto fail;
}
if (PyDict_SetItemString(attrs, "encoding", encoding_str)) {
Py_DECREF(encoding_str);
goto fail;
}
Py_DECREF(encoding_str);
encoding_str = NULL;
if (version) {
version_str = PyUnicode_FromString(version);
} else {
version_str = PyUnicode_FromString("");
}
if (version_str == NULL) {
goto fail;
}
if (PyDict_SetItemString(attrs, "version", version_str)) {
Py_DECREF(version_str);
goto fail;
}
Py_DECREF(version_str);
version_str = NULL;
PyTuple_SET_ITEM(tuple, 2, attrs);
attrs = NULL;
self->last_line = (unsigned long)XML_GetCurrentLineNumber(
self->parser);
self->last_col = (unsigned long)XML_GetCurrentColumnNumber(
self->parser);
pos = make_pos(self);
if (pos == NULL) {
goto fail;
}
PyTuple_SetItem(tuple, 3, pos);
pos = NULL;
self->queue[self->queue_write_idx++] = tuple;
} else {
PyErr_SetString(
PyExc_RuntimeError,
"XML queue overflow in xmlDecl. This most likely indicates an internal bug.");
goto fail;
}
return;
fail:
Py_XDECREF(tuple);
Py_XDECREF(attrs);
XML_StopParser(self->parser, 0);
}
/*
* The object itself is an iterator, just return self for "iter(self)"
* on the Python side.
*/
static PyObject *
IterParser_iter(IterParser* self)
{
Py_INCREF(self);
return (PyObject*) self;
}
/*
* Get the next element from the iterator.
*
* The expat event handlers above (startElement, endElement, characterData) add
* elements to the queue, which are then dequeued by this method.
*
* Care must be taken to store and later raise exceptions. Any
* exceptions raised in the expat callbacks must be stored and then
* later thrown once the queue is emptied, otherwise the exception is
* raised "too early" in queue order.
*/
static PyObject *
IterParser_next(IterParser* self)
{
PyObject* data = NULL;
XML_Char* buf;
Py_ssize_t buflen;
/* Is there anything in the queue to return? */
if (self->queue_read_idx < self->queue_write_idx) {
return self->queue[self->queue_read_idx++];
}
/* Now that the queue is empty, is there an error we need to raise? */
if (self->error_type) {
PyErr_Restore(self->error_type, self->error_value, self->error_traceback);
self->error_type = NULL;
self->error_value = NULL;
self->error_traceback = NULL;
return NULL;
}
/* The queue is empty -- have we already fed the entire file to
expat? If so, we are done and indicate the end of the iterator
by simply returning NULL. */
if (self->done) {
return NULL;
}
self->queue_read_idx = 0;
self->queue_write_idx = 0;
do {
/* Handle a generic Python read method */
if (self->read) {
data = PyObject_CallObject(self->read, self->read_args);
if (data == NULL) {
goto fail;
}
if (PyBytes_AsStringAndSize(data, &buf, &buflen) == -1) {
Py_DECREF(data);
goto fail;
}
if (buflen < self->buffersize) {
/* EOF detection method only works for local regular files */
self->done = 1;
}
/* Handle a real C file descriptor or handle -- this is faster
if we've got one. */
} else {
buflen = (Py_ssize_t)read(
self->file, self->buffer, (size_t)self->buffersize);
if (buflen == -1) {
PyErr_SetFromErrno(PyExc_OSError);
goto fail;
} else if (buflen < self->buffersize) {
/* EOF detection method only works for local regular files */
self->done = 1;
}
buf = self->buffer;
}
if(queue_realloc(self, buflen)) {
Py_XDECREF(data);
goto fail;
}
/* Feed the read buffer to expat, which will call the event handlers */
if (XML_Parse(self->parser, buf, (int)buflen, self->done) == XML_STATUS_ERROR) {
/* One of the event handlers raised a Python error, make
note of it -- it won't be thrown until the queue is
emptied. */
if (PyErr_Occurred() != NULL) {
goto fail;
}
/* expat raised an error, make note of it -- it won't be thrown
until the queue is emptied. */
Py_XDECREF(data);
PyErr_Format(
PyExc_ValueError, "%lu:%lu: %s",
XML_GetCurrentLineNumber(self->parser),
XML_GetCurrentColumnNumber(self->parser),
XML_ErrorString(XML_GetErrorCode(self->parser)));
goto fail;
}
Py_XDECREF(data);
if (PyErr_Occurred() != NULL) {
goto fail;
}
} while (self->queue_write_idx == 0 && self->done == 0);
if (self->queue_write_idx == 0) {
return NULL;
}
if (self->queue_write_idx >= self->queue_size) {
PyErr_SetString(
PyExc_RuntimeError,
"XML queue overflow. This most likely indicates an internal bug.");
return NULL;
}
return self->queue[self->queue_read_idx++];
fail:
/* We got an exception somewhere along the way. Store the exception in
the IterParser object, but clear the exception in the Python interpreter,
so we can empty the event queue and raise the exception later. */
PyErr_Fetch(&self->error_type, &self->error_value, &self->error_traceback);
PyErr_Clear();
if (self->queue_read_idx < self->queue_write_idx) {
return self->queue[self->queue_read_idx++];
}
PyErr_Restore(self->error_type, self->error_value, self->error_traceback);
self->error_type = NULL;
self->error_value = NULL;
self->error_traceback = NULL;
return NULL;
}
/******************************************************************************
* IterParser object lifetime
******************************************************************************/
/* To support cyclical garbage collection, all PyObject's must be
visited. */
static int
IterParser_traverse(IterParser *self, visitproc visit, void *arg)
{
int vret;
Py_ssize_t read_index;
read_index = self->queue_read_idx;
while (read_index < self->queue_write_idx) {
vret = visit(self->queue[read_index++], arg);
if (vret != 0) return vret;
}
if (self->fd) {
vret = visit(self->fd, arg);
if (vret != 0) return vret;
}
if (self->read) {
vret = visit(self->read, arg);
if (vret != 0) return vret;
}
if (self->read_args) {
vret = visit(self->read_args, arg);
if (vret != 0) return vret;
}
if (self->dict_singleton) {
vret = visit(self->dict_singleton, arg);
if (vret != 0) return vret;
}
if (self->td_singleton) {
vret = visit(self->td_singleton, arg);
if (vret != 0) return vret;
}
if (self->error_type) {
vret = visit(self->error_type, arg);
if (vret != 0) return vret;
}
if (self->error_value) {
vret = visit(self->error_value, arg);
if (vret != 0) return vret;
}
if (self->error_traceback) {
vret = visit(self->error_traceback, arg);
if (vret != 0) return vret;
}
return 0;
}
/* To support cyclical garbage collection */
static int
IterParser_clear(IterParser *self)
{
PyObject *tmp;
while (self->queue_read_idx < self->queue_write_idx) {
tmp = self->queue[self->queue_read_idx];
self->queue[self->queue_read_idx] = NULL;
Py_XDECREF(tmp);
self->queue_read_idx++;
}
tmp = self->fd;
self->fd = NULL;
Py_XDECREF(tmp);
tmp = self->read;
self->read = NULL;
Py_XDECREF(tmp);
tmp = self->read_args;
self->read_args = NULL;
Py_XDECREF(tmp);
tmp = self->dict_singleton;
self->dict_singleton = NULL;
Py_XDECREF(tmp);
tmp = self->td_singleton;
self->td_singleton = NULL;
Py_XDECREF(tmp);
tmp = self->error_type;
self->error_type = NULL;
Py_XDECREF(tmp);
tmp = self->error_value;
self->error_value = NULL;
Py_XDECREF(tmp);
tmp = self->error_traceback;
self->error_traceback = NULL;
Py_XDECREF(tmp);
return 0;
}
/*
* Deallocate the IterParser object. For the internal PyObject*, just
* punt to IterParser_clear.
*/
static void
IterParser_dealloc(IterParser* self)
{
IterParser_clear(self);
free(self->buffer); self->buffer = NULL;
free(self->queue); self->queue = NULL;
free(self->text); self->text = NULL;
if (self->parser != NULL) {
XML_ParserFree(self->parser);
self->parser = NULL;
}
Py_TYPE(self)->tp_free((PyObject*)self);
}
/*
* Initialize the memory for an IterParser object
*/
static PyObject *
IterParser_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
IterParser *self = NULL;
self = (IterParser *)type->tp_alloc(type, 0);
if (self != NULL) {
self->parser = NULL;
self->fd = NULL;
self->file = -1;
self->read = NULL;
self->read_args = NULL;
self->dict_singleton = NULL;
self->td_singleton = NULL;
self->buffersize = 0;
self->buffer = NULL;
self->queue_read_idx = 0;
self->queue_write_idx = 0;
self->text_alloc = 0;
self->text_size = 0;
self->text = NULL;
self->keep_text = 0;
self->done = 0;
self->queue_size = 0;
self->queue = NULL;
self->error_type = NULL;
self->error_value = NULL;
self->error_traceback = NULL;
}
return (PyObject *)self;
}
/*
* Initialize an IterParser object
*
* The Python arguments are:
*
* *fd*: A Python file object or a callable object
* *buffersize*: The size of the read buffer
*/
static int
IterParser_init(IterParser *self, PyObject *args, PyObject *kwds)
{
PyObject* fd = NULL;
PyObject* read = NULL;
ssize_t buffersize = 1 << 14;
static char *kwlist[] = {"fd", "buffersize", NULL};
if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|n:IterParser.__init__", kwlist,
&fd, &buffersize)) {
return -1;
}
/* Keep the buffersize within a reasonable range */
self->buffersize = CLAMP(buffersize, (ssize_t)(1 << 10), (ssize_t)(1 << 24));
#ifdef __clang__
/* Clang can't handle the file descriptors Python gives us,
so in that case, we just call the object's read method. */
read = PyObject_GetAttrString(fd, "read");
if (read != NULL) {
fd = read;
}
#else
self->file = PyObject_AsFileDescriptor(fd);
if (self->file != -1) {
/* This is a real C file handle or descriptor. We therefore
need to allocate our own read buffer, and get the real C
object. */
self->buffer = malloc((size_t)self->buffersize);
if (self->buffer == NULL) {
PyErr_SetString(PyExc_MemoryError, "Out of memory");
goto fail;
}
self->fd = fd; Py_INCREF(self->fd);
lseek(self->file, 0, SEEK_SET);
} else
#endif
if (PyCallable_Check(fd)) {
/* fd is a Python callable */
self->fd = fd; Py_INCREF(self->fd);
self->read = fd; Py_INCREF(self->read);
} else {
PyErr_SetString(
PyExc_TypeError,
"Arg 1 to iterparser must be a file object or callable object");
goto fail;
}
PyErr_Clear();
self->queue_read_idx = 0;
self->queue_write_idx = 0;
self->done = 0;
self->text = malloc((size_t)buffersize * sizeof(XML_Char));
self->text_alloc = buffersize;
if (self->text == NULL) {
PyErr_SetString(PyExc_MemoryError, "Out of memory");
goto fail;
}
text_clear(self);
self->read_args = Py_BuildValue("(n)", buffersize);
if (self->read_args == NULL) {
goto fail;
}
self->dict_singleton = PyDict_New();
if (self->dict_singleton == NULL) {
goto fail;
}
self->td_singleton = PyUnicode_FromString("TD");
if (self->td_singleton == NULL) {
goto fail;
}
if (queue_realloc(self, buffersize)) {
goto fail;
}
/* Set up an expat parser with our callbacks */
self->parser = XML_ParserCreate(NULL);
if (self->parser == NULL) {
PyErr_SetString(PyExc_MemoryError, "Out of memory");
goto fail;
}
XML_SetUserData(self->parser, self);
XML_SetElementHandler(
self->parser,
(XML_StartElementHandler)startElement,
(XML_EndElementHandler)endElement);
XML_SetCharacterDataHandler(
self->parser,
(XML_CharacterDataHandler)characterData);
XML_SetXmlDeclHandler(
self->parser,
(XML_XmlDeclHandler)xmlDecl);
Py_XDECREF(read);
return 0;
fail:
Py_XDECREF(read);
Py_XDECREF(self->fd);
Py_XDECREF(self->read);
free(self->text);
Py_XDECREF(self->dict_singleton);
Py_XDECREF(self->td_singleton);
Py_XDECREF(self->read_args);
free(self->queue);
return -1;
}
static PyMemberDef IterParser_members[] =
{
{NULL} /* Sentinel */
};
static PyMethodDef IterParser_methods[] =
{
{NULL} /* Sentinel */
};
static PyTypeObject IterParserType =
{
PyVarObject_HEAD_INIT(NULL, 0)
"astropy.utils.xml._iterparser.IterParser", /*tp_name*/
sizeof(IterParser), /*tp_basicsize*/
0, /*tp_itemsize*/
(destructor)IterParser_dealloc, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_compare*/
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash */
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC, /*tp_flags*/
"IterParser objects", /* tp_doc */
(traverseproc)IterParser_traverse, /* tp_traverse */
(inquiry)IterParser_clear, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
(getiterfunc)IterParser_iter, /* tp_iter */
(iternextfunc)IterParser_next, /* tp_iternext */
IterParser_methods, /* tp_methods */
IterParser_members, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
(initproc)IterParser_init, /* tp_init */
0, /* tp_alloc */
IterParser_new, /* tp_new */
};
/******************************************************************************
* XML escaping
******************************************************************************/
/* These are in reverse order by input character */
static const char* escapes_cdata[] = {
">", ">",
"<", "<",
"&", "&",
"\0", "\0",
};
/* These are in reverse order by input character */
static const char* escapes[] = {
">", ">",
"<", "<",
"'", "'",
"&", "&",
"\"", """,
"\0", "\0"
};
/*
* Returns a copy of the given string (8-bit or Unicode) with the XML
* control characters converted to XML character entities.
*
* If an 8-bit string is passed in, an 8-bit string is returned. If a
* Unicode string is passed in, a Unicode string is returned.
*/
static PyObject*
_escape_xml(PyObject* self, PyObject *args, const char** escapes)
{
PyObject* input_obj;
PyObject* input_coerce = NULL;
PyObject* output_obj;
int count = 0;
Py_UNICODE* uinput = NULL;
char* input = NULL;
Py_ssize_t input_len;
Py_UNICODE* uoutput = NULL;
char* output = NULL;
Py_UNICODE* up = NULL;
char* p = NULL;
Py_ssize_t i;
const char** esc;
const char* ent;
if (!PyArg_ParseTuple(args, "O:escape_xml", &input_obj)) {
return NULL;
}
/* First, try as Unicode */
if (!PyBytes_Check(input_obj)) {
input_coerce = PyObject_Str(input_obj);
}
if (input_coerce) {
uinput = PyUnicode_AsUnicode(input_coerce);
if (uinput == NULL) {
Py_DECREF(input_coerce);
return NULL;
}
input_len = PyUnicode_GetLength(input_coerce);
for (i = 0; i < input_len; ++i) {
for (esc = escapes; ; esc += 2) {
if (uinput[i] > (Py_UNICODE)**esc) {
break;
} else if (uinput[i] == (Py_UNICODE)**esc) {
++count;
break;
}
}
}
if (count) {
uoutput = malloc((input_len + 1 + count * 5) * sizeof(Py_UNICODE));
if (uoutput == NULL) {
Py_DECREF(input_coerce);
PyErr_SetString(PyExc_MemoryError, "Out of memory");
return NULL;
}
up = uoutput;
for (i = 0; i < input_len; ++i) {
for (esc = escapes; ; esc += 2) {
if (uinput[i] > (Py_UNICODE)**esc) {
*(up++) = uinput[i];
break;
} else if (uinput[i] == (Py_UNICODE)**esc) {
for (ent = *(esc + 1); *ent != '\0'; ++ent) {
*(up++) = (Py_UNICODE)*ent;
}
break;
}
}
}
*up = 0;
Py_DECREF(input_coerce);
output_obj = PyUnicode_FromUnicode(uoutput, up - uoutput);
free(uoutput);
return output_obj;
} else {
return input_coerce;
}
}
/* Now try as bytes */
input_coerce = PyObject_Bytes(input_obj);
if (input_coerce) {
if (PyBytes_AsStringAndSize(input_coerce, &input, &input_len) == -1) {
Py_DECREF(input_coerce);
return NULL;
}
for (i = 0; i < input_len; ++i) {
for (esc = escapes; ; esc += 2) {
if (input[i] > **esc) {
break;
} else if (input[i] == **esc) {
++count;
break;
}
}
}
if (count) {
output = malloc((input_len + 1 + count * 5) * sizeof(char));
if (output == NULL) {
Py_DECREF(input_coerce);
PyErr_SetString(PyExc_MemoryError, "Out of memory");
return NULL;
}
p = output;
for (i = 0; i < input_len; ++i) {
for (esc = escapes; ; esc += 2) {
if (input[i] > **esc) {
*(p++) = input[i];
break;
} else if (input[i] == **esc) {
for (ent = *(esc + 1); *ent != '\0'; ++ent) {
*(p++) = *ent;
}
break;
}
}
}
*p = 0;
Py_DECREF(input_coerce);
output_obj = PyBytes_FromStringAndSize(output, p - output);
free(output);
return output_obj;
} else {
return input_coerce;
}
}
PyErr_SetString(PyExc_TypeError, "must be convertible to str or bytes");
return NULL;
}
static PyObject*
escape_xml(PyObject* self, PyObject *args)
{
return _escape_xml(self, args, escapes);
}
static PyObject*
escape_xml_cdata(PyObject* self, PyObject *args)
{
return _escape_xml(self, args, escapes_cdata);
}
/******************************************************************************
* Module setup
******************************************************************************/
static PyMethodDef module_methods[] =
{
{"escape_xml", (PyCFunction)escape_xml, METH_VARARGS,
"Fast method to escape XML strings"},
{"escape_xml_cdata", (PyCFunction)escape_xml_cdata, METH_VARARGS,
"Fast method to escape XML strings"},
{NULL} /* Sentinel */
};
struct module_state {
void* none;
};
static int module_traverse(PyObject* m, visitproc visit, void* arg)
{
return 0;
}
static int module_clear(PyObject* m)
{
return 0;
}
static struct PyModuleDef moduledef = {
PyModuleDef_HEAD_INIT,
"_iterparser",
"Fast XML parser",
sizeof(struct module_state),
module_methods,
NULL,
module_traverse,
module_clear,
NULL
};
PyMODINIT_FUNC
PyInit__iterparser(void)
{
PyObject* m;
m = PyModule_Create(&moduledef);
if (m == NULL)
return NULL;
if (PyType_Ready(&IterParserType) < 0)
return NULL;
Py_INCREF(&IterParserType);
PyModule_AddObject(m, "IterParser", (PyObject *)&IterParserType);
return m;
}
|