/* * This file is a part of Winix * and is not publicly distributed * * Copyright (c) 2010-2012, Tomasz Sowa * All rights reserved. * */ #ifndef headerfile_winix_db_dbtextstream #define headerfile_winix_db_dbtextstream #include #include "core/textstream.h" /* DbTextStream is used as a buffer for creating a database's query By default all operators<< escape its string artuments. 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 DbTextStream::RawText R(const RawType & par) { return DbTextStream::RawText(par); } now you can use DbTextStream in an easy way: DbTextStream query; std::string key = "some string"; query << R("select * from table where key=") << key << R(";"); in above example only the key is escaped. Also with escaping operators<< insert commas between parameters, e.g.: query << R("insert into table (key1, key2, key3) values (") << key1 << key2 << key3 << R(");"); between key1 key2 and key3 are commas inserted automatically */ class DbTextStream : public TextStream { public: /* 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) {} }; DbTextStream(); // extented escaping: adding E character before the first quote e.g. E'string' // default: true void SetExtented(bool ext); /* without escaping */ DbTextStream & PutText(const char *); DbTextStream & PutText(const std::string *); DbTextStream & PutText(const std::string &); DbTextStream & PutText(const wchar_t * str); DbTextStream & PutText(const std::wstring * str); DbTextStream & PutText(const std::wstring & str); /* we need this template operator for such calling: dbtextstream_object << R("some string"); "some string" is actually a table (not a pointer) */ template DbTextStream & operator<<(RawText raw) { return PutText(raw.par); } template DbTextStream & operator<<(RawText raw) { return PutText(raw.par); } DbTextStream & operator<<(RawText raw); DbTextStream & operator<<(RawText raw); DbTextStream & operator<<(RawText raw); DbTextStream & operator<<(RawText raw); DbTextStream & operator<<(RawText raw); DbTextStream & operator<<(RawText raw); DbTextStream & operator<<(RawText raw); DbTextStream & operator<<(RawText raw); DbTextStream & operator<<(RawText raw); DbTextStream & operator<<(RawText raw); DbTextStream & operator<<(RawText raw); DbTextStream & operator<<(RawText raw); DbTextStream & operator<<(RawText raw); DbTextStream & operator<<(RawText raw); DbTextStream & operator<<(RawText raw); DbTextStream & operator<<(RawText date); /* with escaping */ DbTextStream & EBinPutChar(char c); DbTextStream & ETextPutChar(char c); DbTextStream & ETextPutChar(wchar_t c); DbTextStream & EPutText(const char * str); DbTextStream & EPutText(const std::string * str); DbTextStream & EPutText(const std::string & str); DbTextStream & EPutText(const wchar_t * str); DbTextStream & EPutText(const std::wstring * str); DbTextStream & EPutText(const std::wstring & str); DbTextStream & EPutBin(const char * str, size_t len); DbTextStream & EPutBin(const std::string * str); DbTextStream & EPutBin(const std::string & str); DbTextStream & operator<<(const char * str); DbTextStream & operator<<(const std::string * str); DbTextStream & operator<<(const std::string & str); DbTextStream & operator<<(const wchar_t * str); DbTextStream & operator<<(const std::wstring * str); DbTextStream & operator<<(const std::wstring & str); DbTextStream & operator<<(bool); DbTextStream & operator<<(char); DbTextStream & operator<<(wchar_t); DbTextStream & operator<<(int); DbTextStream & operator<<(long); DbTextStream & operator<<(unsigned int); DbTextStream & operator<<(unsigned long); DbTextStream & operator<<(double); DbTextStream & operator<<(const void *); DbTextStream & operator<<(const std::vector & tabid); DbTextStream & operator<<(const PT::Space & space); DbTextStream & operator<<(const PT::Date & date); private: bool was_param; bool ext_escape; TextStream tmp_stream; char EBinGetHex(char c); }; #endif