-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathXMLScanner_chunkwise.cpp
37 lines (33 loc) · 1019 Bytes
/
XMLScanner_chunkwise.cpp
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
#include "textwolf/xmlscanner.hpp"
#include "textwolf/charset.hpp"
#include "textwolf/sourceiterator.hpp"
#include <iostream>
#include <string>
#include <setjmp.h>
#ifdef _WIN32
#pragma warning (disable:4611)
//... on Windows you have on to disable warning C4611 (we know what we are doing)
#endif
typedef textwolf::charset::UTF8 Encoding;
typedef textwolf::SrcIterator Iterator;
typedef textwolf::XMLScanner<Iterator,Encoding,Encoding,std::string> Scanner;
bool output( Scanner& scan, const char* chunk, std::size_t chunksize)
{
jmp_buf eom;
scan.setSource( Iterator( chunk, chunksize, &eom));
if (setjmp(eom) != 0)
{
return false; //... do call the function with the next chunk
}
Scanner::iterator itr = scan.begin(), end = scan.end();
for (; itr != end; ++itr)
{
if (itr->error())
{
throw std::runtime_error( std::string("xml error: ") + itr->error());
}
std::string elem = std::string( itr->content(),itr->size());
std::cout << itr->name() << " " << elem << std::endl;
}
return true;
}