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 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420
|
// -*- mode: c++; c-basic-offset:4 -*-
// This file is part of libdap, A C++ implementation of the OPeNDAP Data
// Access Protocol.
// Copyright (c) 2012 OPeNDAP, Inc.
// Author: James Gallagher <jgallagher@opendap.org>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
// You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.
#include "config.h"
//#define DODS_DEBUG 1
#include <iostream>
#include <sstream>
#include <cstring>
#include <cstdarg>
#include <cassert>
#include <libxml2/libxml/parserInternals.h>
#include "DMR.h"
#include "BaseType.h"
#include "Array.h"
#include "D4Group.h"
#include "D4Attributes.h"
#include "D4Maps.h"
#include "D4Enum.h"
#include "D4BaseTypeFactory.h"
#include "DapXmlNamespaces.h"
#include "D4ParserSax2.h"
#include "util.h"
#include "debug.h"
namespace libdap {
static const char *states[] = {
"parser_start",
"inside_dataset",
// inside_group is the state just after parsing the start of a Group
// element.
"inside_group",
"inside_attribute_container",
"inside_attribute",
"inside_attribute_value",
"inside_other_xml_attribute",
"inside_enum_def",
"inside_enum_const",
"inside_dim_def",
// This covers Byte, ..., Url, Opaque
"inside_simple_type",
// "inside_array",
"inside_dim",
"inside_map",
"inside_constructor",
"not_dap4_element",
"parser_unknown",
"parser_error",
"parser_fatal_error",
"parser_end"
};
static bool is_not(const char *name, const char *tag)
{
return strcmp(name, tag) != 0;
}
/** @brief Return the current Enumeration definition
* Allocate the Enumeration definition if needed and return it. Once parsing the current
* enumeration definition is complete, the pointer allocated/returned by this method will
* be copied into the current Group and this internal storage will be 'reset' using
* clear_enum_def().
*
* @return
*/
D4EnumDef *
D4ParserSax2::enum_def()
{
if (!d_enum_def) d_enum_def = new D4EnumDef;
return d_enum_def;
}
/** @brief Return the current Dimension definition
* Allocate the Dimension definition if needed and return it.
* @see enum_def() for an explanation of how this is used by the parser.
*
* @return
*/
D4Dimension *
D4ParserSax2::dim_def() {
if (!d_dim_def) d_dim_def = new D4Dimension;
return d_dim_def;
}
/** Dump XML attributes to local store so they can be easily manipulated.
* XML attribute names are always folded to lower case.
* @param attributes The XML attribute array
* @param nb_attributes The number of attributes
*/
void D4ParserSax2::transfer_xml_attrs(const xmlChar **attributes, int nb_attributes)
{
if (!xml_attrs.empty())
xml_attrs.clear(); // erase old attributes
// Make a value using the attribute name and the prefix, namespace URI
// and the value. The prefix might be null.
unsigned int index = 0;
for (int i = 0; i < nb_attributes; ++i, index += 5) {
xml_attrs.insert(map<string, XMLAttribute>::value_type(string((const char *)attributes[index]),
XMLAttribute(attributes + index + 1)));
DBG(cerr << "XML Attribute '" << (const char *)attributes[index] << "': "
<< xml_attrs[(const char *)attributes[index]].value << endl);
}
}
/** Transfer the XML namespaces to the local store so they can be manipulated
* more easily.
*
* @param namespaces Array of xmlChar*
* @param nb_namespaces The number of namespaces in the array.
*/
void D4ParserSax2::transfer_xml_ns(const xmlChar **namespaces, int nb_namespaces)
{
// make a value with the prefix and namespace URI. The prefix might be null.
for (int i = 0; i < nb_namespaces; ++i) {
namespace_table.insert(map<string, string>::value_type(namespaces[i * 2] != 0 ? (const char *)namespaces[i * 2] : "",
(const char *)namespaces[i * 2 + 1]));
}
}
/** Is a required XML attribute present? Attribute names are always lower case.
* @note To use this method, first call transfer_xml_attrs.
* @param attr The XML attribute
* @return True if the XML attribute was present in the last tag, otherwise
* it sets the global error state and returns false.
*/
bool D4ParserSax2::check_required_attribute(const string & attr)
{
if (xml_attrs.find(attr) == xml_attrs.end()) {
dmr_error(this, "Required attribute '%s' not found.", attr.c_str());
return false;
}
else
return true;
}
/** Is a XML attribute present? Attribute names are always lower case.
* @note To use this method, first call transfer_xml_attrs.
* @param attr The XML attribute
* @return True if the XML attribute was present in the last/current tag,
* false otherwise.
*/
bool D4ParserSax2::check_attribute(const string & attr)
{
return (xml_attrs.find(attr) != xml_attrs.end());
}
bool D4ParserSax2::process_dimension_def(const char *name, const xmlChar **attrs, int nb_attributes)
{
if (is_not(name, "Dimension"))
return false;
transfer_xml_attrs(attrs, nb_attributes);
if (!(check_required_attribute("name") && check_required_attribute("size"))) {
dmr_error(this, "The required attribute 'name' or 'size' was missing from a Dimension element.");
return false;
}
// This getter (dim_def) allocates a new object if needed.
dim_def()->set_name(xml_attrs["name"].value);
try {
dim_def()->set_size(xml_attrs["size"].value);
}
catch (Error &e) {
dmr_error(this, "%s", e.get_error_message().c_str());
return false;
}
return true;
}
/**
* @brief Process a Dim element.
* If a Dim element is found, the current variable is an Array. If the BaseType
* on the TOS is not already an Array, make it one. Append the dimension
* information to the Array variable on the TOS.
*
* @note Dim elements can have two attributes: name or size. The latter defines
* an 'anonymous' dimension (one without a name that does not reference a
* shared dimension object. If the \c name attribute is used, then the shared
* dimension used is the one defined by the enclosing group or found using the
* fully qualified name. The \name and \c size attributes are mutually exclusive.
*
* @param name XML element name; must be Dim
* @param attrs XML Attributes
* @param nb_attributes The number of XML Attributes
* @return True if the element is a Dim, false otherwise.
*/
bool D4ParserSax2::process_dimension(const char *name, const xmlChar **attrs, int nb_attributes)
{
if (is_not(name, "Dim"))
return false;
transfer_xml_attrs(attrs, nb_attributes);
if (check_attribute("size") && check_attribute("name")) {
dmr_error(this, "Only one of 'size' and 'name' are allowed in a Dim element, but both were used.");
return false;
}
if (!(check_attribute("size") || check_attribute("name"))) {
dmr_error(this, "Either 'size' or 'name' must be used in a Dim element.");
return false;
}
if (!top_basetype()->is_vector_type()) {
// Make the top BaseType* an array
BaseType *b = top_basetype();
pop_basetype();
Array *a = static_cast<Array*>(dmr()->factory()->NewVariable(dods_array_c, b->name()));
a->set_is_dap4(true);
a->add_var_nocopy(b);
a->set_attributes_nocopy(b->attributes());
// trick: instead of popping b's attributes, copying them and then pushing
// a's copy, just move the pointer (but make sure there's only one object that
// references that pointer).
b->set_attributes_nocopy(0);
push_basetype(a);
}
assert(top_basetype()->is_vector_type());
Array *a = static_cast<Array*>(top_basetype());
if (check_attribute("size")) {
a->append_dim(atoi(xml_attrs["size"].value.c_str())); // low budget code for now. jhrg 8/20/13
return true;
}
else if (check_attribute("name")) {
string name = xml_attrs["name"].value;
D4Dimension *dim = 0;
if (name[0] == '/') // lookup the Dimension in the root group
dim = dmr()->root()->find_dim(name);
else // get enclosing Group and lookup Dimension there
dim = top_group()->find_dim(name);
if (!dim)
throw Error("The dimension '" + name + "' was not found while parsing the variable '" + a->name() + "'.");
a->append_dim(dim);
return true;
}
return false;
}
bool D4ParserSax2::process_map(const char *name, const xmlChar **attrs, int nb_attributes)
{
if (is_not(name, "Map"))
return false;
transfer_xml_attrs(attrs, nb_attributes);
if (!check_attribute("name")) {
dmr_error(this, "The 'name' attribute must be used in a Map element.");
return false;
}
if (!top_basetype()->is_vector_type()) {
// Make the top BaseType* an array
BaseType *b = top_basetype();
pop_basetype();
Array *a = static_cast<Array*>(dmr()->factory()->NewVariable(dods_array_c, b->name()));
a->set_is_dap4(true);
a->add_var_nocopy(b);
a->set_attributes_nocopy(b->attributes());
// trick: instead of popping b's attributes, copying them and then pushing
// a's copy, just move the pointer (but make sure there's only one object that
// references that pointer).
b->set_attributes_nocopy(0);
push_basetype(a);
}
assert(top_basetype()->is_vector_type());
Array *a = static_cast<Array*>(top_basetype());
string map_name = xml_attrs["name"].value;
if (xml_attrs["name"].value[0] != '/')
map_name = top_group()->FQN() + map_name;
Array *map_source = 0; // The array variable that holds the data for the Map
if (map_name[0] == '/') // lookup the Map in the root group
map_source = dmr()->root()->find_map_source(map_name);
else // get enclosing Group and lookup Map there
map_source = top_group()->find_map_source(map_name);
// Change: If the parser is in 'strict' mode (the default) and the Array named by
// the Map cannot be fond, it is an error. If 'strict' mode is false (permissive
// mode), then this is not an error. However, the Array referenced by the Map will
// be null. This is a change in the parser's behavior to accommodate requests for
// Arrays that include Maps that do not also include the Map(s) in the request.
// See https://opendap.atlassian.net/browse/HYRAX-98. jhrg 4/13/16
if (!map_source && d_strict)
throw Error("The Map '" + map_name + "' was not found while parsing the variable '" + a->name() + "'.");
a->maps()->add_map(new D4Map(map_name, map_source));
return true;
}
bool D4ParserSax2::process_group(const char *name, const xmlChar **attrs, int nb_attributes)
{
if (is_not(name, "Group"))
return false;
transfer_xml_attrs(attrs, nb_attributes);
if (!check_required_attribute("name")) {
dmr_error(this, "The required attribute 'name' was missing from a Group element.");
return false;
}
BaseType *btp = dmr()->factory()->NewVariable(dods_group_c, xml_attrs["name"].value);
if (!btp) {
dmr_fatal_error(this, "Could not instantiate the Group '%s'.", xml_attrs["name"].value.c_str());
return false;
}
D4Group *grp = static_cast<D4Group*>(btp);
// Need to set this to get the D4Attribute behavior in the type classes
// shared between DAP2 and DAP4. jhrg 4/18/13
grp->set_is_dap4(true);
// link it up and change the current group
D4Group *parent = top_group();
if (!parent) {
dmr_fatal_error(this, "No Group on the Group stack.");
return false;
}
grp->set_parent(parent);
parent->add_group_nocopy(grp);
push_group(grp);
push_attributes(grp->attributes());
return true;
}
/** Check to see if the current tag is either an \c Attribute or an \c Alias
start tag. This method is a glorified macro...
@param name The start tag name
@param attrs The tag's XML attributes
@return True if the tag was an \c Attribute or \c Alias tag */
inline bool D4ParserSax2::process_attribute(const char *name, const xmlChar **attrs, int nb_attributes)
{
if (is_not(name, "Attribute"))
return false;
// These methods set the state to parser_error if a problem is found.
transfer_xml_attrs(attrs, nb_attributes);
// add error
if (!(check_required_attribute(string("name")) && check_required_attribute(string("type")))) {
dmr_error(this, "The required attribute 'name' or 'type' was missing from an Attribute element.");
return false;
}
if (xml_attrs["type"].value == "Container") {
push_state(inside_attribute_container);
DBG(cerr << "Pushing attribute container " << xml_attrs["name"].value << endl);
D4Attribute *child = new D4Attribute(xml_attrs["name"].value, attr_container_c);
D4Attributes *tos = top_attributes();
// add return
if (!tos) {
delete child;
dmr_fatal_error(this, "Expected an Attribute container on the top of the attribute stack.");
return false;
}
tos->add_attribute_nocopy(child);
push_attributes(child->attributes());
}
else if (xml_attrs["type"].value == "OtherXML") {
push_state(inside_other_xml_attribute);
dods_attr_name = xml_attrs["name"].value;
dods_attr_type = xml_attrs["type"].value;
}
else {
push_state(inside_attribute);
dods_attr_name = xml_attrs["name"].value;
dods_attr_type = xml_attrs["type"].value;
}
return true;
}
/** Check to see if the current tag is an \c Enumeration start tag.
@param name The start tag name
@param attrs The tag's XML attributes
@return True if the tag was an \c Enumeration */
inline bool D4ParserSax2::process_enum_def(const char *name, const xmlChar **attrs, int nb_attributes)
{
if (is_not(name, "Enumeration"))
return false;
transfer_xml_attrs(attrs, nb_attributes);
if (!(check_required_attribute("name") && check_required_attribute("basetype"))) {
dmr_error(this, "The required attribute 'name' or 'basetype' was missing from an Enumeration element.");
return false;
}
Type t = get_type(xml_attrs["basetype"].value.c_str());
if (!is_integer_type(t)) {
dmr_error(this, "The Enumeration '%s' must have an integer type, instead the type '%s' was used.",
xml_attrs["name"].value.c_str(), xml_attrs["basetype"].value.c_str());
return false;
}
// This getter allocates a new object if needed.
string enum_def_path = xml_attrs["name"].value;
#if 0
// Use FQNs when things are referenced, not when they are defined
if (xml_attrs["name"].value[0] != '/')
enum_def_path = top_group()->FQN() + enum_def_path;
#endif
enum_def()->set_name(enum_def_path);
enum_def()->set_type(t);
return true;
}
inline bool D4ParserSax2::process_enum_const(const char *name, const xmlChar **attrs, int nb_attributes)
{
if (is_not(name, "EnumConst"))
return false;
// These methods set the state to parser_error if a problem is found.
transfer_xml_attrs(attrs, nb_attributes);
if (!(check_required_attribute("name") && check_required_attribute("value"))) {
dmr_error(this, "The required attribute 'name' or 'value' was missing from an EnumConst element.");
return false;
}
istringstream iss(xml_attrs["value"].value);
long long value = 0;
iss >> skipws >> value;
if (iss.fail() || iss.bad()) {
dmr_error(this, "Expected an integer value for an Enumeration constant, got '%s' instead.",
xml_attrs["value"].value.c_str());
}
else if (!enum_def()->is_valid_enum_value(value)) {
dmr_error(this, "In an Enumeration constant, the value '%s' cannot fit in a variable of type '%s'.",
xml_attrs["value"].value.c_str(), D4type_name(d_enum_def->type()).c_str());
}
else {
// unfortunate choice of names... args are 'label' and 'value'
enum_def()->add_value(xml_attrs["name"].value, value);
}
return true;
}
/** Check to see if the current element is the start of a variable declaration.
If so, process it. A glorified macro...
@param name The start element name
@param attrs The element's XML attributes
@return True if the element was a variable */
inline bool D4ParserSax2::process_variable(const char *name, const xmlChar **attrs, int nb_attributes)
{
Type t = get_type(name);
if (is_simple_type(t)) {
process_variable_helper(t, inside_simple_type, attrs, nb_attributes);
return true;
}
else {
switch(t) {
case dods_structure_c:
process_variable_helper(t, inside_constructor, attrs, nb_attributes);
return true;
case dods_sequence_c:
process_variable_helper(t, inside_constructor, attrs, nb_attributes);
return true;
default:
return false;
}
}
}
/** Given that a tag which opens a variable declaration has just been read,
create the variable. Once created, push the variable onto the stack of
variables, push that variable's attribute table onto the attribute table
stack and update the state of the parser.
@param t The type of variable to create.
@param s The next state of the parser (e.g., inside_simple_type, ...)
@param attrs the attributes read with the tag */
void D4ParserSax2::process_variable_helper(Type t, ParseState s, const xmlChar **attrs, int nb_attributes)
{
transfer_xml_attrs(attrs, nb_attributes);
if (check_required_attribute("name")) {
BaseType *btp = dmr()->factory()->NewVariable(t, xml_attrs["name"].value);
if (!btp) {
dmr_fatal_error(this, "Could not instantiate the variable '%s'.", xml_attrs["name"].value.c_str());
return;
}
if ((t == dods_enum_c) && check_required_attribute("enum")) {
D4EnumDef *enum_def = 0;
string enum_path = xml_attrs["enum"].value;
if (enum_path[0] == '/')
enum_def = dmr()->root()->find_enum_def(enum_path);
else
enum_def = top_group()->find_enum_def(enum_path);
if (!enum_def)
dmr_fatal_error(this, "Could not find the Enumeration definition '%s'.", enum_path.c_str());
static_cast<D4Enum*>(btp)->set_enumeration(enum_def);
}
btp->set_is_dap4(true); // see comment above
push_basetype(btp);
push_attributes(btp->attributes());
push_state(s);
}
}
/** @name SAX Parser Callbacks
These methods are declared static in the class header. This gives them C
linkage which allows them to be used as callbacks by the SAX parser
engine. */
//@{
/** Initialize the SAX parser state object. This object is passed to each
callback as a void pointer. The initial state is parser_start.
@param p The SAX parser */
void D4ParserSax2::dmr_start_document(void * p)
{
D4ParserSax2 *parser = static_cast<D4ParserSax2*>(p);
parser->d_error_msg = "";
parser->char_data = "";
// Set this in intern_helper so that the loop test for the parser_end
// state works for the first iteration. It seems like XMLParseChunk calls this
// function on it's first run. jhrg 9/16/13
// parser->push_state(parser_start);
parser->push_attributes(parser->dmr()->root()->attributes());
if (parser->debug()) cerr << "Parser start state: " << states[parser->get_state()] << endl;
}
/** Clean up after finishing a parse.
@param p The SAX parser */
void D4ParserSax2::dmr_end_document(void * p)
{
D4ParserSax2 *parser = static_cast<D4ParserSax2*>(p);
if (parser->debug()) cerr << "Parser end state: " << states[parser->get_state()] << endl;
if (parser->get_state() != parser_end)
D4ParserSax2::dmr_error(parser, "The document contained unbalanced tags.");
// If we've found any sort of error, don't make the DMR; intern() will
// take care of the error.
if (parser->get_state() == parser_error || parser->get_state() == parser_fatal_error)
return;
if (!parser->empty_basetype() || parser->empty_group())
D4ParserSax2::dmr_error(parser, "The document did not contain a valid root Group or contained unbalanced tags.");
parser->pop_group(); // leave the stack 'clean'
parser->pop_attributes();
}
/**
* Callback run when libxml2 reads the start of an element
*
* @param p Pointer to the parser object
* @param l Localname of the element
* @param prefix Namespace prefix of the element
* @param URI the Element namespace name if available
* @param nb_namespaces Number of namespace definitions on that node
* @param namespaces Pointer to the array of prefix/URI pairs namespace definitions
* @param nb_attributes The number of attributes on that node
* @param nb_defaulted The number of defaulted attributes. The defaulted ones are at the end of the array
* @param attributes Pointer to the array of (localname/prefix/URI/value/end) attribute values.
*/
void D4ParserSax2::dmr_start_element(void *p, const xmlChar *l, const xmlChar *prefix, const xmlChar *URI,
int nb_namespaces, const xmlChar **namespaces, int nb_attributes, int /*nb_defaulted*/,
const xmlChar **attributes)
{
D4ParserSax2 *parser = static_cast<D4ParserSax2*>(p);
const char *localname = (const char *) l;
if (parser->debug()) cerr << "Start element " << localname << " prefix: "<< (prefix?(char *)prefix:"null") << " ns: "<< (URI?(char *)URI:"null")
<< " (state: " << states[parser->get_state()] << ")" << endl;
if(parser->get_state() != parser_error){
string dap4_ns_name = DapXmlNamspaces::getDapNamespaceString(DAP_4_0);
if (parser->debug()) cerr << "dap4_ns_name: " << dap4_ns_name << endl;
string this_element_ns_name = (URI != 0) ? ((char *)URI) : "";
if (parser->debug()) cerr << "this_element_ns_name: " << this_element_ns_name << endl;
if(this_element_ns_name.compare(dap4_ns_name)){
if (parser->debug()) cerr << "Start of non DAP4 element: " << localname << " detected." << endl;
parser->push_state(not_dap4_element);
// return;
}
}
switch (parser->get_state()) {
case parser_start:
if (is_not(localname, "Dataset"))
D4ParserSax2::dmr_error(parser, "Expected DMR to start with a Dataset element; found '%s' instead.", localname);
parser->root_ns = URI ? (const char *) URI : "";
parser->transfer_xml_attrs(attributes, nb_attributes);
if (parser->check_required_attribute(string("name")))
parser->dmr()->set_name(parser->xml_attrs["name"].value);
if (parser->check_attribute("dapVersion"))
parser->dmr()->set_dap_version(parser->xml_attrs["dapVersion"].value);
if (parser->check_attribute("dmrVersion"))
parser->dmr()->set_dmr_version(parser->xml_attrs["dmrVersion"].value);
if (parser->check_attribute("base"))
parser->dmr()->set_request_xml_base(parser->xml_attrs["base"].value);
if (!parser->root_ns.empty())
parser->dmr()->set_namespace(parser->root_ns);
// Push the root Group on the stack
parser->push_group(parser->dmr()->root());
parser->push_state(inside_dataset);
break;
// Both inside dataset and inside group can have the same stuff.
// The difference is that the Dataset holds the root group, which
// must be present; other groups are optional
case inside_dataset:
case inside_group:
if (parser->process_enum_def(localname, attributes, nb_attributes))
parser->push_state(inside_enum_def);
else if (parser->process_dimension_def(localname, attributes, nb_attributes))
parser->push_state(inside_dim_def);
else if (parser->process_group(localname, attributes, nb_attributes))
parser->push_state(inside_group);
else if (parser->process_variable(localname, attributes, nb_attributes))
// This will push either inside_simple_type or inside_structure
// onto the parser state stack.
break;
else if (parser->process_attribute(localname, attributes, nb_attributes))
// This will push either inside_attribute, inside_attribute_container
// or inside_otherxml_attribute onto the parser state stack
break;
else
D4ParserSax2::dmr_error(parser, "Expected an Attribute, Enumeration, Dimension, Group or variable element; found '%s' instead.", localname);
break;
case inside_attribute_container:
if (parser->process_attribute(localname, attributes, nb_attributes))
break;
else
D4ParserSax2::dmr_error(parser, "Expected an Attribute element; found '%s' instead.", localname);
break;
case inside_attribute:
if (parser->process_attribute(localname, attributes, nb_attributes))
break;
else if (strcmp(localname, "Value") == 0)
parser->push_state(inside_attribute_value);
else
dmr_error(parser, "Expected an 'Attribute' or 'Value' element; found '%s' instead.", localname);
break;
case inside_attribute_value:
// Attribute values are processed by the end element code.
break;
case inside_other_xml_attribute:
parser->other_xml_depth++;
// Accumulate the elements here
parser->other_xml.append("<");
if (prefix) {
parser->other_xml.append((const char *) prefix);
parser->other_xml.append(":");
}
parser->other_xml.append(localname);
if (nb_namespaces != 0) {
parser->transfer_xml_ns(namespaces, nb_namespaces);
for (map<string, string>::iterator i = parser->namespace_table.begin();
i != parser->namespace_table.end(); ++i) {
parser->other_xml.append(" xmlns");
if (!i->first.empty()) {
parser->other_xml.append(":");
parser->other_xml.append(i->first);
}
parser->other_xml.append("=\"");
parser->other_xml.append(i->second);
parser->other_xml.append("\"");
}
}
if (nb_attributes != 0) {
parser->transfer_xml_attrs(attributes, nb_attributes);
for (XMLAttrMap::iterator i = parser->xml_attr_begin(); i != parser->xml_attr_end(); ++i) {
parser->other_xml.append(" ");
if (!i->second.prefix.empty()) {
parser->other_xml.append(i->second.prefix);
parser->other_xml.append(":");
}
parser->other_xml.append(i->first);
parser->other_xml.append("=\"");
parser->other_xml.append(i->second.value);
parser->other_xml.append("\"");
}
}
parser->other_xml.append(">");
break;
case inside_enum_def:
// process an EnumConst element
if (parser->process_enum_const(localname, attributes, nb_attributes))
parser->push_state(inside_enum_const);
else
dmr_error(parser, "Expected an 'EnumConst' element; found '%s' instead.", localname);
break;
case inside_enum_const:
// No content; nothing to do
break;
case inside_dim_def:
// No content; nothing to do
break;
#if 0
case inside_dimension:
// No content.
break;
#endif
case inside_dim:
// No content.
break;
case inside_map:
// No content.
break;
case inside_simple_type:
if (parser->process_attribute(localname, attributes, nb_attributes))
break;
else if (parser->process_dimension(localname, attributes, nb_attributes))
parser->push_state(inside_dim);
else if (parser->process_map(localname, attributes, nb_attributes))
parser->push_state(inside_map);
else
dmr_error(parser, "Expected an 'Attribute', 'Dim' or 'Map' element; found '%s' instead.", localname);
break;
case inside_constructor:
if (parser->process_variable(localname, attributes, nb_attributes))
// This will push either inside_simple_type or inside_structure
// onto the parser state stack.
break;
else if (parser->process_attribute(localname, attributes, nb_attributes))
break;
else if (parser->process_dimension(localname, attributes, nb_attributes))
parser->push_state(inside_dim);
else if (parser->process_map(localname, attributes, nb_attributes))
parser->push_state(inside_map);
else
D4ParserSax2::dmr_error(parser, "Expected an Attribute, Dim, Map or variable element; found '%s' instead.", localname);
break;
case not_dap4_element:
if (parser->debug()) cerr << "Inside non DAP4 element. localname: " << localname << endl;
break;
case parser_unknown:
// FIXME?
// *** Never used? If so remove/error
parser->push_state(parser_unknown);
break;
case parser_error:
case parser_fatal_error:
break;
case parser_end:
// FIXME Error?
break;
}
if (parser->debug()) cerr << "Start element exit state: " << states[parser->get_state()] << endl;
}
void D4ParserSax2::dmr_end_element(void *p, const xmlChar *l, const xmlChar *prefix, const xmlChar *URI)
{
D4ParserSax2 *parser = static_cast<D4ParserSax2*>(p);
const char *localname = (const char *) l;
if (parser->debug())
cerr << "End element " << localname << " (state " << states[parser->get_state()] << ")" << endl;
switch (parser->get_state()) {
case parser_start:
dmr_fatal_error(parser, "Unexpected state, inside start state while processing element '%s'.", localname);
break;
case inside_dataset:
if (is_not(localname, "Dataset"))
D4ParserSax2::dmr_error(parser, "Expected an end Dataset tag; found '%s' instead.", localname);
parser->pop_state();
if (parser->get_state() != parser_start)
dmr_fatal_error(parser, "Unexpected state, expected start state.");
else {
parser->pop_state();
parser->push_state(parser_end);
}
break;
case inside_group: {
if (is_not(localname, "Group"))
D4ParserSax2::dmr_error(parser, "Expected an end tag for a Group; found '%s' instead.", localname);
if (!parser->empty_basetype() || parser->empty_group())
D4ParserSax2::dmr_error(parser,
"The document did not contain a valid root Group or contained unbalanced tags.");
parser->pop_group();
parser->pop_state();
break;
}
case inside_attribute_container:
if (is_not(localname, "Attribute"))
D4ParserSax2::dmr_error(parser, "Expected an end Attribute tag; found '%s' instead.", localname);
parser->pop_state();
parser->pop_attributes();
break;
case inside_attribute:
if (is_not(localname, "Attribute"))
D4ParserSax2::dmr_error(parser, "Expected an end Attribute tag; found '%s' instead.", localname);
parser->pop_state();
break;
case inside_attribute_value: {
if (is_not(localname, "Value"))
D4ParserSax2::dmr_error(parser, "Expected an end value tag; found '%s' instead.", localname);
parser->pop_state();
// The old code added more values using the name and type as
// indexes to find the correct attribute. Use get() for that
// now. Or fix this code to keep a pointer to the to attribute...
D4Attributes *attrs = parser->top_attributes();
D4Attribute *attr = attrs->get(parser->dods_attr_name);
if (!attr) {
attr = new D4Attribute(parser->dods_attr_name, StringToD4AttributeType(parser->dods_attr_type));
attrs->add_attribute_nocopy(attr);
}
attr->add_value(parser->char_data);
parser->char_data = ""; // Null this after use.
break;
}
case inside_other_xml_attribute: {
if (strcmp(localname, "Attribute") == 0 && parser->root_ns == (const char *) URI) {
parser->pop_state();
// The old code added more values using the name and type as
// indexes to find the correct attribute. Use get() for that
// now. Or fix this code to keep a pointer to the to attribute...
D4Attributes *attrs = parser->top_attributes();
D4Attribute *attr = attrs->get(parser->dods_attr_name);
if (!attr) {
attr = new D4Attribute(parser->dods_attr_name, StringToD4AttributeType(parser->dods_attr_type));
attrs->add_attribute_nocopy(attr);
}
attr->add_value(parser->other_xml);
parser->other_xml = ""; // Null this after use.
}
else {
if (parser->other_xml_depth == 0) {
D4ParserSax2::dmr_error(parser, "Expected an OtherXML attribute to end! Instead I found '%s'",
localname);
break;
}
parser->other_xml_depth--;
parser->other_xml.append("</");
if (prefix) {
parser->other_xml.append((const char *) prefix);
parser->other_xml.append(":");
}
parser->other_xml.append(localname);
parser->other_xml.append(">");
}
break;
}
case inside_enum_def:
if (is_not(localname, "Enumeration"))
D4ParserSax2::dmr_error(parser, "Expected an end Enumeration tag; found '%s' instead.", localname);
if (!parser->top_group())
D4ParserSax2::dmr_fatal_error(parser,
"Expected a Group to be the current item, while finishing up an Enumeration.");
else {
// copy the pointer; not a deep copy
parser->top_group()->enum_defs()->add_enum_nocopy(parser->enum_def());
// Set the enum_def to null; next call to enum_def() will
// allocate a new object
parser->clear_enum_def();
parser->pop_state();
}
break;
case inside_enum_const:
if (is_not(localname, "EnumConst"))
D4ParserSax2::dmr_error(parser, "Expected an end EnumConst tag; found '%s' instead.", localname);
parser->pop_state();
break;
case inside_dim_def: {
if (is_not(localname, "Dimension"))
D4ParserSax2::dmr_error(parser, "Expected an end Dimension tag; found '%s' instead.", localname);
if (!parser->top_group())
D4ParserSax2::dmr_error(parser,
"Expected a Group to be the current item, while finishing up an Dimension.");
// FIXME Use the Group on the top of the group stack
// copy the pointer; not a deep copy
parser->top_group()->dims()->add_dim_nocopy(parser->dim_def());
//parser->dmr()->root()->dims()->add_dim_nocopy(parser->dim_def());
// Set the dim_def to null; next call to dim_def() will
// allocate a new object. Calling 'clear' is important because
// the cleanup method will free dim_def if it's not null and
// we just copied the pointer in the add_dim_nocopy() call
// above.
parser->clear_dim_def();
parser->pop_state();
break;
}
case inside_simple_type:
if (is_simple_type(get_type(localname))) {
BaseType *btp = parser->top_basetype();
parser->pop_basetype();
parser->pop_attributes();
BaseType *parent = 0;
if (!parser->empty_basetype())
parent = parser->top_basetype();
else if (!parser->empty_group())
parent = parser->top_group();
else {
dmr_fatal_error(parser, "Both the Variable and Groups stacks are empty while closing a %s element.",
localname);
delete btp;
parser->pop_state();
break;
}
if (parent->type() == dods_array_c)
static_cast<Array*>(parent)->prototype()->add_var_nocopy(btp);
else
parent->add_var_nocopy(btp);
}
else
D4ParserSax2::dmr_error(parser, "Expected an end tag for a simple type; found '%s' instead.", localname);
parser->pop_state();
break;
case inside_dim:
if (is_not(localname, "Dim"))
D4ParserSax2::dmr_fatal_error(parser, "Expected an end Dim tag; found '%s' instead.", localname);
parser->pop_state();
break;
case inside_map:
if (is_not(localname, "Map"))
D4ParserSax2::dmr_fatal_error(parser, "Expected an end Map tag; found '%s' instead.", localname);
parser->pop_state();
break;
case inside_constructor: {
if (strcmp(localname, "Structure") != 0 && strcmp(localname, "Sequence") != 0) {
D4ParserSax2::dmr_error(parser, "Expected an end tag for a constructor; found '%s' instead.", localname);
return;
}
BaseType *btp = parser->top_basetype();
parser->pop_basetype();
parser->pop_attributes();
BaseType *parent = 0;
if (!parser->empty_basetype())
parent = parser->top_basetype();
else if (!parser->empty_group())
parent = parser->top_group();
else {
dmr_fatal_error(parser, "Both the Variable and Groups stacks are empty while closing a %s element.",
localname);
delete btp;
parser->pop_state();
break;
}
// TODO Why doesn't this code mirror the simple_var case and test
// for the parent being an array? jhrg 10/13/13
parent->add_var_nocopy(btp);
parser->pop_state();
break;
}
case not_dap4_element:
if (parser->debug()) cerr << "End of non DAP4 element: " << localname << endl;
parser->pop_state();
break;
case parser_unknown:
parser->pop_state();
break;
case parser_error:
case parser_fatal_error:
break;
case parser_end:
// FIXME Error?
break;
}
if (parser->debug()) cerr << "End element exit state: " << states[parser->get_state()] << endl;
}
/** Process/accumulate character data. This may be called more than once for
one logical clump of data. Only save character data when processing
'value' elements; throw away all other characters. */
void D4ParserSax2::dmr_get_characters(void * p, const xmlChar * ch, int len)
{
D4ParserSax2 *parser = static_cast<D4ParserSax2*>(p);
switch (parser->get_state()) {
case inside_attribute_value:
parser->char_data.append((const char *) (ch), len);
DBG(cerr << "Characters: '" << parser->char_data << "'" << endl);
break;
case inside_other_xml_attribute:
parser->other_xml.append((const char *) (ch), len);
DBG(cerr << "Other XML Characters: '" << parser->other_xml << "'" << endl);
break;
default:
break;
}
}
/** Read whitespace that's not really important for content. This is used
only for the OtherXML attribute type to preserve formating of the XML.
Doing so makes the attribute value far easier to read.
*/
void D4ParserSax2::dmr_ignoreable_whitespace(void *p, const xmlChar *ch, int len)
{
D4ParserSax2 *parser = static_cast<D4ParserSax2*>(p);
switch (parser->get_state()) {
case inside_other_xml_attribute:
parser->other_xml.append((const char *) (ch), len);
break;
default:
break;
}
}
/** Get characters in a cdata block. DAP does not use CData, but XML in an
OtherXML attribute (the value of that DAP attribute) might use it. This
callback also allows CData when the parser is in the 'parser_unknown'
state since some future DAP element might use it.
*/
void D4ParserSax2::dmr_get_cdata(void *p, const xmlChar *value, int len)
{
D4ParserSax2 *parser = static_cast<D4ParserSax2*>(p);
switch (parser->get_state()) {
case inside_other_xml_attribute:
parser->other_xml.append((const char *) (value), len);
break;
case parser_unknown:
break;
default:
D4ParserSax2::dmr_error(parser, "Found a CData block but none are allowed by DAP4.");
break;
}
}
/** Handle the standard XML entities.
@param parser The SAX parser
@param name The XML entity. */
xmlEntityPtr D4ParserSax2::dmr_get_entity(void *, const xmlChar * name)
{
return xmlGetPredefinedEntity(name);
}
/** Process an XML fatal error. Note that SAX provides for warnings, errors
and fatal errors. This code treats them all as fatal errors since there's
typically no way to tell a user about the error since there's often no
user interface for this software.
@note This static function does not throw an exception or otherwise
alter flow of control except for altering the parser state.
@param p The SAX parser
@param msg A printf-style format string. */
void D4ParserSax2::dmr_fatal_error(void * p, const char *msg, ...)
{
va_list args;
D4ParserSax2 *parser = static_cast<D4ParserSax2*>(p);
parser->push_state(parser_fatal_error);
va_start(args, msg);
char str[1024];
vsnprintf(str, 1024, msg, args);
va_end(args);
int line = xmlSAX2GetLineNumber(parser->d_context);
if (!parser->d_error_msg.empty()) parser->d_error_msg += "\n";
parser->d_error_msg += "At line " + long_to_string(line) + ": " + string(str);
}
void D4ParserSax2::dmr_error(void *p, const char *msg, ...)
{
va_list args;
D4ParserSax2 *parser = static_cast<D4ParserSax2*>(p);
parser->push_state(parser_error);
va_start(args, msg);
char str[1024];
vsnprintf(str, 1024, msg, args);
va_end(args);
int line = xmlSAX2GetLineNumber(parser->d_context);
if (!parser->d_error_msg.empty()) parser->d_error_msg += "\n";
parser->d_error_msg += "At line " + long_to_string(line) + ": " + string(str);
}
//@}
/** Clean up after a parse operation. If the parser encountered an error,
* throw either an Error or InternalErr object.
*/
void D4ParserSax2::cleanup_parse()
{
bool wellFormed = d_context->wellFormed;
bool valid = d_context->valid;
// d_context->sax = NULL;
xmlFreeParserCtxt(d_context);
delete d_enum_def;
d_enum_def = 0;
delete d_dim_def;
d_dim_def = 0;
// If there's an error, there may still be items on the stack at the
// end of the parse.
while (!btp_stack.empty()) {
delete top_basetype();
pop_basetype();
}
if (!wellFormed)
throw Error("The DMR was not well formed. " + d_error_msg);
else if (!valid)
throw Error("The DMR was not valid." + d_error_msg);
else if (get_state() == parser_error)
throw Error(d_error_msg);
else if (get_state() == parser_fatal_error)
throw InternalErr(d_error_msg);
}
/**
* Read the DMR from a stream.
*
* @param f The input stream
* @param dest_dmr Value-result parameter. Pass a pointer to a DMR in and
* the information in the DMR will be added to it.
* @param boundary If not empty, use this as the boundary tag in a MPM document
* that marks the end of the part hat holds the DMR. Stop reading when the
* boundary is found.
* @param debug If true, ouput helpful debugging messages, False by default.
*
* @exception Error Thrown if the XML document could not be read or parsed.
* @exception InternalErr Thrown if an internal error is found.
*/
void D4ParserSax2::intern(istream &f, DMR *dest_dmr, bool debug)
{
d_debug = debug;
// Code example from libxml2 docs re: read from a stream.
if (!f.good())
throw Error("Input stream not open or read error");
if (!dest_dmr)
throw InternalErr(__FILE__, __LINE__, "DMR object is null");
d_dmr = dest_dmr; // dump values here
#if 0
int line_num = 1;
string line;
// Get the <xml ... ?> line
getline(f, line);
if (line.length() == 0) throw Error("No input found while parsing the DMR.");
if (debug) cerr << "line: (" << line_num << "): " << endl << line << endl << endl;
d_context = xmlCreatePushParserCtxt(&d_dmr_sax_parser, this, line.c_str(), line.length(), "stream");
d_context->validate = true;
push_state(parser_start);
// Get the first line of stuff
getline(f, line);
++line_num;
if (debug) cerr << "line: (" << line_num << "): " << endl << line << endl << endl;
while (!f.eof() && (get_state() != parser_end)) {
xmlParseChunk(d_context, line.c_str(), line.length(), 0);
// Get the next line
getline(f, line);
++line_num;
if (debug) cerr << "line: (" << line_num << "): " << endl << line << endl << endl;
}
// This call ends the parse.
xmlParseChunk(d_context, line.c_str(), 0, 1/*terminate*/);
#else
int line_num = 1;
string line;
// Get the XML prolog line (looks like: <?xml ... ?> )
getline(f, line);
if (line.length() == 0) throw Error("No input found while parsing the DMR.");
if (debug) cerr << "line: (" << line_num << "): " << endl << line << endl << endl;
d_context = xmlCreatePushParserCtxt(&d_dmr_sax_parser, this, line.c_str(), line.length(), "stream");
d_context->validate = true;
push_state(parser_start);
// Get the first chunk of the stuff
long chunk_count = 0;
long chunk_size = 0;
f.read(d_parse_buffer, D4_PARSE_BUFF_SIZE);
chunk_size=f.gcount();
d_parse_buffer[chunk_size]=0; // null terminate the string. We can do it this way because the buffer is +1 bigger than D4_PARSE_BUFF_SIZE
if (debug) cerr << "chunk: (" << chunk_count++ << "): " << endl << d_parse_buffer << endl << endl;
while(!f.eof() && (get_state() != parser_end)){
xmlParseChunk(d_context, d_parse_buffer, chunk_size, 0);
// There is more to read. Get the next chunk
f.read(d_parse_buffer, D4_PARSE_BUFF_SIZE);
chunk_size=f.gcount();
d_parse_buffer[chunk_size]=0; // null terminate the string. We can do it this way because the buffer is +1 bigger than D4_PARSE_BUFF_SIZE
if (debug) cerr << "chunk: (" << chunk_count++ << "): " << endl << d_parse_buffer << endl << endl;
}
// This call ends the parse.
xmlParseChunk(d_context, d_parse_buffer, chunk_size, 1/*terminate*/);
#endif
// This checks that the state on the parser stack is parser_end and throws
// an exception if it's not (i.e., the loop exited with gcount() == 0).
cleanup_parse();
}
/** Parse a DMR document stored in a string.
*
* @param document Read the DMR from this string.
* @param dest_dmr Value/result parameter; dumps the information to this DMR
* instance.
* @param debug If true, output helpful debugging messages, False by default
*
* @exception Error Thrown if the XML document could not be read or parsed.
* @exception InternalErr Thrown if an internal error is found.
*
* @deprecated Remove this; it's confusing (looks like it's reading from a file
* with the name stored in 'document') and offers nothing more than the call
* below with the char* buffer.
*/
void D4ParserSax2::intern(const string &document, DMR *dest_dmr, bool debug)
{
intern(document.c_str(), document.length(), dest_dmr, debug);
}
/** Parse a DMR document stored in a char *buffer.
*
* @param document Read the DMR from this string.
* @param dest_dmr Value/result parameter; dumps the information to this DMR
* instance.
* @param debug If true, ouput helpful debugging messages, False by default
*
* @exception Error Thrown if the XML document could not be read or parsed.
* @exception InternalErr Thrown if an internal error is found.
*/
void D4ParserSax2::intern(const char *buffer, int size, DMR *dest_dmr, bool debug)
{
if (!(size > 0)) return;
d_debug = debug;
// Code example from libxml2 docs re: read from a stream.
if (!dest_dmr) throw InternalErr(__FILE__, __LINE__, "DMR object is null");
d_dmr = dest_dmr; // dump values in dest_dmr
push_state(parser_start);
d_context = xmlCreatePushParserCtxt(&d_dmr_sax_parser, this, buffer, size, "stream");
d_context->validate = true;
// This call ends the parse.
xmlParseChunk(d_context, buffer, 0, 1/*terminate*/);
// This checks that the state on the parser stack is parser_end and throws
// an exception if it's not (i.e., the loop exited with gcount() == 0).
cleanup_parse();
}
} // namespace libdap
|