/* * This file is a part of Winix * and is distributed under the 2-Clause BSD licence. * Author: Tomasz Sowa */ /* * Copyright (c) 2010-2021, Tomasz Sowa * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * */ #ifndef headerfile_winix_templates_htmltextstream #define headerfile_winix_templates_htmltextstream #include #include "core/textstream.h" namespace Winix { /* HtmlTextStream is used as a buffer for creating a html page By default all operators<< escape its string arguments. If you don't want to escape an argument you should use a helper function R() (raw argument) note: you have to define the function yourself, we do not provide it because such a short name would make a mess in namespaces sample: create a helper function R as follows: template HtmlTextStream::RawText R(const RawType & par) { return HtmlTextStream::RawText(par); } now you can use HtmlTextStream in an easy way: HtmlTextStream page; std::string key = "some string"; page << key << R("

html goes here

"); only html tags "" and "" will be correctly escaped currently following characters are escaped: < -> < > -> > & ->   " -> " ' -> ' (it is "'" but IE8 has a problem with ') 10 -> 13 -> */ class HtmlTextStream : public TextStream { public: HtmlTextStream(); /* * clearing the buffer and setting 'escape' flag to true */ void Clear(); void clear(); // utf8 methods call clear(), in the future Clear() will be renamed to clear() void to_str(std::wstring & str); /* a helper struct to select a proper operator<< (for non-escaping versions of these operators) */ template struct RawText { const RawType & par; RawText(const RawText & p) : par(p.par) {} RawText(const RawType & p) : par(p) {} }; /* without escaping */ HtmlTextStream & PutChar(char); HtmlTextStream & PutChar(wchar_t); HtmlTextStream & PutText(const char *); HtmlTextStream & PutText(const char *, size_t len); HtmlTextStream & PutText(const std::string *); HtmlTextStream & PutText(const std::string &); HtmlTextStream & PutText(const wchar_t * str); HtmlTextStream & PutText(const wchar_t * str, size_t len); HtmlTextStream & PutText(const std::wstring * str); HtmlTextStream & PutText(const std::wstring & str); /* we need this template operator for such calling: HtmlTextStream_object << R("some string"); "some string" is actually a table (not a pointer) */ template HtmlTextStream & operator<<(const RawText & raw) { return PutText(raw.par); } template HtmlTextStream & operator<<(const RawText & raw) { return PutText(raw.par); } HtmlTextStream & operator<<(const RawText & raw); HtmlTextStream & operator<<(const RawText & raw); HtmlTextStream & operator<<(RawText raw); HtmlTextStream & operator<<(RawText raw); HtmlTextStream & operator<<(RawText raw); HtmlTextStream & operator<<(RawText raw); HtmlTextStream & operator<<(RawText raw); HtmlTextStream & operator<<(RawText raw); HtmlTextStream & operator<<(RawText raw); HtmlTextStream & operator<<(RawText raw); HtmlTextStream & operator<<(RawText raw); HtmlTextStream & operator<<(RawText raw); HtmlTextStream & operator<<(RawText raw); HtmlTextStream & operator<<(RawText raw); HtmlTextStream & operator<<(RawText raw); HtmlTextStream & operator<<(RawText raw); template HtmlTextStream & operator<<(RawText > raw); // this method doesn't escape stream as there is no need for such behavior - stream should be already escaped HtmlTextStream & operator<<(const HtmlTextStream & stream); // 'write' don't escapes too // with these methods you can write a zero character too HtmlTextStream & Write(const char * buf, size_t len); HtmlTextStream & Write(const wchar_t * buf, size_t len); // for compatibility with standard library (Ezc uses it) HtmlTextStream & write(const char * buf, size_t len); HtmlTextStream & write(const wchar_t * buf, size_t len); /* with escaping */ HtmlTextStream & ETextPutChar(char c); HtmlTextStream & ETextPutChar(wchar_t c); HtmlTextStream & EPutText(const char * str); HtmlTextStream & EPutText(const char * str, size_t len); HtmlTextStream & EPutText(const std::string * str); HtmlTextStream & EPutText(const std::string & str); HtmlTextStream & EPutText(const wchar_t * str); HtmlTextStream & EPutText(const wchar_t * str, size_t len); HtmlTextStream & EPutText(const std::wstring * str); HtmlTextStream & EPutText(const std::wstring & str); /* * by default all operator<< shown below use escaping * but you can turn it off by calling Escape(false) */ void Escape(bool escape_characters); HtmlTextStream & operator<<(const char * str); HtmlTextStream & operator<<(const std::string * str); HtmlTextStream & operator<<(const std::string & str); HtmlTextStream & operator<<(const wchar_t * str); HtmlTextStream & operator<<(const std::wstring * str); HtmlTextStream & operator<<(const std::wstring & str); HtmlTextStream & operator<<(char); HtmlTextStream & operator<<(wchar_t); HtmlTextStream & operator<<(int); HtmlTextStream & operator<<(long); HtmlTextStream & operator<<(unsigned int); HtmlTextStream & operator<<(unsigned long); HtmlTextStream & operator<<(double); HtmlTextStream & operator<<(const void *); HtmlTextStream & operator<<(const pt::Space & space); HtmlTextStream & operator<<(const pt::Date & Date); template HtmlTextStream & operator<<(const pt::TextStreamBase & arg); private: //TextStream tmp_stream; std::wstring tmp_string; bool escape; }; template HtmlTextStream & HtmlTextStream::operator<<(RawText > raw) { TextStream::operator<<(raw.par); return *this; } template HtmlTextStream & HtmlTextStream::operator<<(const pt::TextStreamBase & arg) { typename pt::TextStreamBase::const_iterator i; if( escape ) { /* * warning: char* (utf-8) string will not be correctly handled here */ for(i=arg.begin() ; i != arg.end() ; ++i) ETextPutChar(*i); } else { TextStream::operator<<(arg); } return *this; } } // namespace Winix #endif