boinc/lib/parse_test.cpp

78 lines
1.7 KiB
C++
Raw Normal View History

// test program for XML parser
#include <stdio.h>
#include <string>
using std::string;
#include "parse.h"
void parse(FILE* f) {
bool flag;
MIOFILE mf;
XML_PARSER xp(&mf);
char name[64];
char foo[64];
int val;
double x;
string s;
strcpy(name, "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
mf.init_file(f);
if (!xp.parse_start("blah")) {
printf("missing start tag\n");
return;
}
strcpy(foo, "xxx");
while (!xp.get_tag()) {
printf("get_tag(): is_tag %d text %s\n", xp.is_tag, xp.parsed_tag);
if (!xp.is_tag) {
printf("unexpected text: %s\n", xp.parsed_tag);
continue;
}
if (xp.match_tag("/blah")) {
printf("success\n");
return;
} else if (xp.parse_str("str", name, 64)) {
//} else if (xp.parse_string("str", s)) {
printf("got str: [%s]\n", s.c_str());
} else if (xp.parse_int("int", val)) {
printf("got int: %d\n", val);
} else if (xp.parse_double("double", x)) {
printf("got double: %f\n", x);
} else if (xp.parse_bool("bool", flag)) {
printf("got bool: %d\n", flag);
} else {
printf("unparsed tag: %s\n", xp.parsed_tag);
xp.skip_unexpected(true, "xml test");
}
}
printf("unexpected EOF\n");
}
int main() {
FILE* f = fopen("foo.xml", "r");
2013-02-26 18:40:31 +00:00
if (!f) {
fprintf(stderr, "no file\n");
exit(1);
}
parse(f);
}
/* try it with something like:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<blah>
<x>
asdlfkj
<x> fj</x>
</x>
<str>blah</str>
<int> 6
</int>
<double>6.555</double>
<bool>0</bool>
</blah>
*/