/* * This file is a part of Winix * and is not publicly distributed * * Copyright (c) 2012, Tomasz Sowa * All rights reserved. * */ #ifndef headerfile_winix_templates_textextstream #define headerfile_winix_templates_textextstream #include #include "core/textstream.h" #include "textstream/textstream.h" /* TexTextStream is used as a buffer for creating a TeX input 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 TexTextStream::RawText R(const RawType & par) { return TexTextStream::RawText(par); } now you can use TexTextStream in an easy way: TexTextStream page; std::string key = "some text with $# ^{} tex \\ special characters"; page << key << R("\\def\\myfun{...}"); everything in 'key' is property escaped for using with TeX */ class TexTextStream : public TextStream { public: TexTextStream(); /* 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 */ TexTextStream & PutChar(char); TexTextStream & PutChar(wchar_t); TexTextStream & PutText(const char *); TexTextStream & PutText(const char *, size_t len); TexTextStream & PutText(const std::string *); TexTextStream & PutText(const std::string &); TexTextStream & PutText(const wchar_t * str); TexTextStream & PutText(const wchar_t * str, size_t len); TexTextStream & PutText(const std::wstring * str); TexTextStream & 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 TexTextStream & operator<<(const RawText & raw) { return PutText(raw.par); } template TexTextStream & operator<<(const RawText & raw) { return PutText(raw.par); } TexTextStream & operator<<(const RawText & raw); TexTextStream & operator<<(const RawText & raw); TexTextStream & operator<<(RawText raw); TexTextStream & operator<<(RawText raw); TexTextStream & operator<<(RawText raw); TexTextStream & operator<<(RawText raw); TexTextStream & operator<<(RawText raw); TexTextStream & operator<<(RawText raw); TexTextStream & operator<<(RawText raw); TexTextStream & operator<<(RawText raw); TexTextStream & operator<<(RawText raw); TexTextStream & operator<<(RawText raw); TexTextStream & operator<<(RawText raw); TexTextStream & operator<<(RawText raw); template TexTextStream & operator<<(RawText > raw); // 'write' don't escapes too // with these methods you can write a zero character too TexTextStream & Write(const char * buf, size_t len); TexTextStream & Write(const wchar_t * buf, size_t len); // for compatibility with standard library (Ezc uses it) TexTextStream & write(const char * buf, size_t len); TexTextStream & write(const wchar_t * buf, size_t len); /* with escaping */ TexTextStream & ETextPutChar(char c); TexTextStream & ETextPutChar(wchar_t c); TexTextStream & EPutText(const char * str); TexTextStream & EPutText(const char * str, size_t len); TexTextStream & EPutText(const std::string * str); TexTextStream & EPutText(const std::string & str); TexTextStream & EPutText(const wchar_t * str); TexTextStream & EPutText(const wchar_t * str, size_t len); TexTextStream & EPutText(const std::wstring * str); TexTextStream & EPutText(const std::wstring & str); TexTextStream & operator<<(const char * str); TexTextStream & operator<<(const std::string * str); TexTextStream & operator<<(const std::string & str); TexTextStream & operator<<(const wchar_t * str); TexTextStream & operator<<(const std::wstring * str); TexTextStream & operator<<(const std::wstring & str); TexTextStream & operator<<(char); TexTextStream & operator<<(wchar_t); TexTextStream & operator<<(int); TexTextStream & operator<<(long); TexTextStream & operator<<(unsigned int); TexTextStream & operator<<(unsigned long); TexTextStream & operator<<(double); TexTextStream & operator<<(const void *); TexTextStream & operator<<(const PT::Space & space); TexTextStream & operator<<(const PT::Date & Date); template TexTextStream & operator<<(const PT::TextStreamBase & arg); private: TextStream tmp_stream; }; template TexTextStream & TexTextStream::operator<<(RawText > raw) { TextStream::operator<<(raw.par); return *this; } template TexTextStream & TexTextStream::operator<<(const PT::TextStreamBase & arg) { typename PT::TextStreamBase::const_iterator i; for(i=arg.begin() ; i != arg.end() ; ++i) ETextPutChar(*i); return *this; } #endif