forked from pocoproject/poco
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSAXException.cpp
More file actions
140 lines (108 loc) · 3.49 KB
/
SAXException.cpp
File metadata and controls
140 lines (108 loc) · 3.49 KB
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
//
// SAXException.cpp
//
// $Id: //poco/1.4/XML/src/SAXException.cpp#1 $
//
// Library: XML
// Package: SAX
// Module: SAX
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "Poco/SAX/SAXException.h"
#include "Poco/SAX/Locator.h"
#include <typeinfo>
#include <sstream>
namespace Poco {
namespace XML {
POCO_IMPLEMENT_EXCEPTION(SAXException, XMLException, "SAX Exception")
POCO_IMPLEMENT_EXCEPTION(SAXNotRecognizedException, SAXException, "Unrecognized SAX feature or property identifier")
POCO_IMPLEMENT_EXCEPTION(SAXNotSupportedException, SAXException, "Unsupported SAX feature or property identifier")
SAXParseException::SAXParseException(const std::string& msg, const Locator& loc):
SAXException(buildMessage(msg, loc.getPublicId(), loc.getSystemId(), loc.getLineNumber(), loc.getColumnNumber())),
_publicId(loc.getPublicId()),
_systemId(loc.getSystemId()),
_lineNumber(loc.getLineNumber()),
_columnNumber(loc.getColumnNumber())
{
}
SAXParseException::SAXParseException(const std::string& msg, const Locator& loc, const Poco::Exception& exc):
SAXException(buildMessage(msg, loc.getPublicId(), loc.getSystemId(), loc.getLineNumber(), loc.getColumnNumber()), exc),
_publicId(loc.getPublicId()),
_systemId(loc.getSystemId()),
_lineNumber(loc.getLineNumber()),
_columnNumber(loc.getColumnNumber())
{
}
SAXParseException::SAXParseException(const std::string& msg, const XMLString& publicId, const XMLString& systemId, int lineNumber, int columnNumber):
SAXException(buildMessage(msg, publicId, systemId, lineNumber, columnNumber)),
_publicId(publicId),
_systemId(systemId),
_lineNumber(lineNumber),
_columnNumber(columnNumber)
{
}
SAXParseException::SAXParseException(const std::string& msg, const XMLString& publicId, const XMLString& systemId, int lineNumber, int columnNumber, const Poco::Exception& exc):
SAXException(buildMessage(msg, publicId, systemId, lineNumber, columnNumber), exc),
_publicId(publicId),
_systemId(systemId),
_lineNumber(lineNumber),
_columnNumber(columnNumber)
{
}
SAXParseException::SAXParseException(const SAXParseException& exc):
SAXException(exc),
_publicId(exc._publicId),
_systemId(exc._systemId),
_lineNumber(exc._lineNumber),
_columnNumber(exc._columnNumber)
{
}
SAXParseException::~SAXParseException() throw()
{
}
SAXParseException& SAXParseException::operator = (const SAXParseException& exc)
{
if (&exc != this)
{
SAXException::operator = (exc);
_publicId = exc._publicId;
_systemId = exc._systemId;
_lineNumber = exc._lineNumber;
_columnNumber = exc._columnNumber;
}
return *this;
}
const char* SAXParseException::name() const throw()
{
return "SAXParseException";
}
const char* SAXParseException::className() const throw()
{
return typeid(*this).name();
}
Poco::Exception* SAXParseException::clone() const
{
return new SAXParseException(*this);
}
void SAXParseException::rethrow() const
{
throw *this;
}
std::string SAXParseException::buildMessage(const std::string& msg, const XMLString& publicId, const XMLString& systemId, int lineNumber, int columnNumber)
{
std::ostringstream result;
if (!msg.empty()) result << msg << " ";
result << "in ";
if (!systemId.empty())
result << "'" << fromXMLString(systemId) << "', ";
else if (!publicId.empty())
result << "'" << fromXMLString(publicId) << "', ";
if (lineNumber > 0)
result << "line " << lineNumber << " column " << columnNumber;
return result.str();
}
} } // namespace Poco::XML