/usr/include/xsd/cxx/parser/exceptions.ixx is in xsdcxx 4.0.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | // file : xsd/cxx/parser/exceptions.ixx
// copyright : Copyright (c) 2005-2014 Code Synthesis Tools CC
// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
#if defined(XSD_CXX_PARSER_USE_CHAR) || !defined(XSD_CXX_PARSER_USE_WCHAR)
#ifndef XSD_CXX_PARSER_EXCEPTIONS_IXX_CHAR
#define XSD_CXX_PARSER_EXCEPTIONS_IXX_CHAR
namespace xsd
{
namespace cxx
{
namespace parser
{
// error
//
inline
std::basic_ostream<char>&
operator<< (std::basic_ostream<char>& os, const error<char>& e)
{
return os << e.id () << ':' << e.line () << ':' << e.column ()
<< (e.severity () == severity::error
? " error: "
: " warning: ") << e.message ();
}
// diagnostics
//
inline
std::basic_ostream<char>&
operator<< (std::basic_ostream<char>& os, const diagnostics<char>& d)
{
for (diagnostics<char>::const_iterator b (d.begin ()), i (b);
i != d.end ();
++i)
{
if (i != b)
os << "\n";
os << *i;
}
return os;
}
// parsing
//
template<>
inline
void parsing<char>::
print (std::basic_ostream<char>& os) const
{
if (diagnostics_.empty ())
os << "instance document parsing failed";
else
os << diagnostics_;
}
}
}
}
#endif // XSD_CXX_PARSER_EXCEPTIONS_IXX_CHAR
#endif // XSD_CXX_PARSER_USE_CHAR
#if defined(XSD_CXX_PARSER_USE_WCHAR) || !defined(XSD_CXX_PARSER_USE_CHAR)
#ifndef XSD_CXX_PARSER_EXCEPTIONS_IXX_WCHAR
#define XSD_CXX_PARSER_EXCEPTIONS_IXX_WCHAR
namespace xsd
{
namespace cxx
{
namespace parser
{
// error
//
inline
std::basic_ostream<wchar_t>&
operator<< (std::basic_ostream<wchar_t>& os, const error<wchar_t>& e)
{
return os << e.id () << L':' << e.line () << L':' << e.column ()
<< (e.severity () == severity::error
? L" error: "
: L" warning: ") << e.message ();
}
// diagnostics
//
inline
std::basic_ostream<wchar_t>&
operator<< (std::basic_ostream<wchar_t>& os,
const diagnostics<wchar_t>& d)
{
for (diagnostics<wchar_t>::const_iterator b (d.begin ()), i (b);
i != d.end ();
++i)
{
if (i != b)
os << L"\n";
os << *i;
}
return os;
}
// parsing
//
template<>
inline
void parsing<wchar_t>::
print (std::basic_ostream<wchar_t>& os) const
{
if (diagnostics_.empty ())
os << L"instance document parsing failed";
else
os << diagnostics_;
}
}
}
}
#endif // XSD_CXX_PARSER_EXCEPTIONS_IXX_WCHAR
#endif // XSD_CXX_PARSER_USE_WCHAR
|