mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
87 lines
2.5 KiB
C++
87 lines
2.5 KiB
C++
#ifndef ARABICA_UTILS_ESCAPER_HPP
|
|
#define ARABICA_UTILS_ESCAPER_HPP
|
|
|
|
#include <iostream>
|
|
#include <XML/UnicodeCharacters.hpp>
|
|
|
|
namespace Arabica {
|
|
namespace XML {
|
|
|
|
template<typename char_type, typename traits_type = std::char_traits<char_type> >
|
|
class text_escaper
|
|
{
|
|
private:
|
|
typedef char_type charT;
|
|
typedef traits_type traitsT;
|
|
typedef std::basic_ostream<charT, traitsT> ostreamT;
|
|
typedef Arabica::Unicode<charT> UnicodeT;
|
|
|
|
public:
|
|
text_escaper(ostreamT& stream) : stream_(stream) { }
|
|
void operator()(charT ch)
|
|
{
|
|
if(ch == UnicodeT::LESS_THAN_SIGN)
|
|
{
|
|
stream_ << UnicodeT::AMPERSAND
|
|
<< UnicodeT::LOWERCASE_L
|
|
<< UnicodeT::LOWERCASE_T
|
|
<< UnicodeT::SEMI_COLON;
|
|
return;
|
|
} // if(ch == UnicodeT::LESS_THAN_SIGN)
|
|
if(ch == UnicodeT::GREATER_THAN_SIGN)
|
|
{
|
|
stream_ << UnicodeT::AMPERSAND
|
|
<< UnicodeT::LOWERCASE_G
|
|
<< UnicodeT::LOWERCASE_T
|
|
<< UnicodeT::SEMI_COLON;
|
|
return;
|
|
} // if(ch == UnicodeT::GREATER_THAN_SIGN)
|
|
if(ch == UnicodeT::AMPERSAND)
|
|
{
|
|
stream_ << UnicodeT::AMPERSAND
|
|
<< UnicodeT::LOWERCASE_A
|
|
<< UnicodeT::LOWERCASE_M
|
|
<< UnicodeT::LOWERCASE_P
|
|
<< UnicodeT::SEMI_COLON;
|
|
return;
|
|
} // if(ch == case UnicodeT::AMPERSAND)
|
|
|
|
stream_ << ch;
|
|
} // operator()
|
|
|
|
protected:
|
|
ostreamT& stream_;
|
|
}; // text_escaper
|
|
|
|
template<typename char_type, typename traits_type = std::char_traits<char_type> >
|
|
class attribute_escaper : private text_escaper<char_type, traits_type>
|
|
{
|
|
private:
|
|
typedef char_type charT;
|
|
typedef traits_type traitsT;
|
|
typedef std::basic_ostream<charT, traitsT> ostreamT;
|
|
typedef Arabica::Unicode<charT> UnicodeT;
|
|
|
|
public:
|
|
attribute_escaper(ostreamT& stream) : text_escaper<char_type, traits_type>(stream) { }
|
|
void operator()(charT ch)
|
|
{
|
|
if(ch == UnicodeT::QUOTATION_MARK)
|
|
{
|
|
this->stream_ << UnicodeT::AMPERSAND
|
|
<< UnicodeT::LOWERCASE_Q
|
|
<< UnicodeT::LOWERCASE_U
|
|
<< UnicodeT::LOWERCASE_O
|
|
<< UnicodeT::LOWERCASE_T
|
|
<< UnicodeT::SEMI_COLON;
|
|
return;
|
|
} // if(ch == UnicodeT::QUOTATION_MARK)
|
|
|
|
text_escaper<char_type, traits_type>::operator()(ch);
|
|
} // operator()
|
|
}; // attribute_escaper
|
|
|
|
} // namespace XML
|
|
} // namespace Arabica
|
|
#endif // ARABICA_UTILS_ESCAPER_HPP
|
|
|