aboutsummaryrefslogtreecommitdiff
path: root/src/support/error_handler.cc
blob: 2ca721def84ec409886c5996958a024706f202ea (plain)
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
#include "error_handler.h"

#include <xercesc/sax/SAXParseException.hpp>

#include <iostream>

#include "support/xalan_string.h"
#include "support/xerces_string_guard.h"

namespace {

inline std::string getMessage(const xercesc::SAXParseException& exception) {
	return std::string(
		*InputXSLT::XercesStringGuard<char>(exception.getMessage())
	);
}

}

namespace InputXSLT {

ErrorHandler::ErrorHandler():
	error_cache_{} { }

void ErrorHandler::warning(const xercesc::SAXParseException& exception) {
	this->constructErrorCache();

	this->error_cache_->emplace_back(
		"Warning: " + getMessage(exception)
	);
}

void ErrorHandler::error(const xercesc::SAXParseException& exception) {
	this->constructErrorCache();

	this->error_cache_->emplace_back(
		"Error: " + getMessage(exception)
	);
}

void ErrorHandler::fatalError(const xercesc::SAXParseException& exception) {
	this->constructErrorCache();

	this->error_cache_->emplace_back(
		"Fatal error: " + getMessage(exception)
	);
}

void ErrorHandler::resetErrors() { }

void ErrorHandler::problem(
	xalan::ProblemListenerBase::eSource,
	xalan::ProblemListenerBase::eClassification,
	const xalan::XalanDOMString& message,
	const xalan::Locator*,
	const xalan::XalanNode*
) {
	this->constructErrorCache();

	this->error_cache_->emplace_back(
		"XSLT problem: " + toString(message)
	);
}

void ErrorHandler::problem(
	xalan::ProblemListenerBase::eSource,
	xalan::ProblemListenerBase::eClassification,
	const xalan::XalanNode*,
	const xalan::ElemTemplateElement*,
	const xalan::XalanDOMString& message,
	const xalan::XalanDOMChar*,
	xalan::XalanFileLoc,
	xalan::XalanFileLoc
) {
	this->constructErrorCache();

	this->error_cache_->emplace_back(
		"XSLT problem: " + toString(message)
	);
}

void ErrorHandler::problem(
	xalan::ProblemListenerBase::eSource,
	xalan::ProblemListenerBase::eClassification,
	const xalan::XalanDOMString& message,
	const xalan::XalanNode*
) {
	this->constructErrorCache();

	this->error_cache_->emplace_back(
		"XSLT problem: " + toString(message)
	);
}

void ErrorHandler::setPrintWriter(xalan::PrintWriter*) { }

auto ErrorHandler::getCachedErrors() -> error_cache_ptr {
	return error_cache_ptr(this->error_cache_.release());
}

void ErrorHandler::constructErrorCache() {
	if ( !this->error_cache_ ) {
		this->error_cache_.reset(new error_cache());
	}
}

}