summaryrefslogtreecommitdiff
path: root/src/saxparser.cc
diff options
context:
space:
mode:
authorAndré Nusser <andre.nusser@googlemail.com>2016-03-23 18:24:29 +0100
committerAndré Nusser <andre.nusser@googlemail.com>2016-03-29 22:19:49 +0200
commit8c585aa006741b95c1175afcdb01cdd3d8d2d7db (patch)
tree66c482877189c0d63708caffa0e614caf1b8f228 /src/saxparser.cc
parent01e216f82e24e7668a892e5a912ccbf1369ae255 (diff)
Do the file related actions in SAXParser.
Diffstat (limited to 'src/saxparser.cc')
-rw-r--r--src/saxparser.cc65
1 files changed, 30 insertions, 35 deletions
diff --git a/src/saxparser.cc b/src/saxparser.cc
index e59a1fe..e32143d 100644
--- a/src/saxparser.cc
+++ b/src/saxparser.cc
@@ -26,9 +26,10 @@
*/
#include "saxparser.h"
-#include <stdio.h>
#include <string.h>
#include <hugin.hpp>
+#include <sstream>
+#include <iostream>
SAXParser::SAXParser()
{
@@ -50,54 +51,48 @@ SAXParser::~SAXParser()
XML_ParserFree(p);
}
-int SAXParser::parse()
+int SAXParser::parseFile(const std::string& filename)
{
- DEBUG(sax, "parse()\n");
-
- std::string buf;
- int len;
-
- do {
- len = readData(buf, 32);
- if(len <= -1) {
- parseError("", 0, "Could not read data", 0);
- return 1;
- }
- if(!XML_Parse(p, (char*)buf.c_str(), len, len == 0)) {
- parseError(buf, len, XML_ErrorString(XML_GetErrorCode(p)),
- (int)XML_GetCurrentLineNumber(p));
- return 1;
- }
-
- buf.clear();
- } while(len);
+ if(filename.empty())
+ {
+ return 0;
+ }
+
+ std::ifstream file(filename, std::ifstream::in);
+
+ if(!file.is_open()) {
+ return 1;
+ }
+
+ std::stringstream ss;
+ ss << file.rdbuf();
+ std::string str = ss.str();
+
+ parseString(str, filename);
return 0;
}
-int SAXParser::parse(const std::string& buffer)
+int SAXParser::parseString(const std::string& str, const std::string& xml_source_name)
{
- DEBUG(sax, "parse(buffer %d bytes)\n", (int)buffer.length());
+ DEBUG(sax, "parse(buffer %d bytes)\n", (int)str.length());
- if(!XML_Parse(p, buffer.c_str(), buffer.length(), true)) {
- parseError(buffer, buffer.length(),
- XML_ErrorString(XML_GetErrorCode(p)),
- (int)XML_GetCurrentLineNumber(p));
+ if(!XML_Parse(p, str.c_str(), str.length(), true)) {
+ parseError(str, XML_ErrorString(XML_GetErrorCode(p)),
+ xml_source_name, (int)XML_GetCurrentLineNumber(p));
return 1;
}
return 0;
}
-void SAXParser::parseError(const std::string& buf, std::size_t len, const std::string& error, std::size_t lineno)
+void SAXParser::parseError(const std::string& buf, const std::string& error, const std::string& xml_source_name, std::size_t lineno)
{
- fprintf(stderr, "SAXParser error at line %d: %s\n", (int)lineno, error.c_str());
- fprintf(stderr, "Buffer %u bytes: \n[\n", (int)len);
-
- fwrite((char*)buf.c_str(), len, 1, stderr);
-
- fprintf(stderr, "\n]\n");
- fflush(stderr);
+ std::cerr << "SAXParser error trying to parse from source: " << xml_source_name << "\n";
+ std::cerr << "At line " << lineno << ": " << error << "\n";
+ std::cerr << "Buffer " << buf.size() << " bytes: \n[\n";
+ std::cerr << buf;
+ std::cerr << "\n]" << std::endl;
}
void SAXParser::character_hndl(void* p, const XML_Char* s, int len)