00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062 #ifndef XIMOL_STR_CAST_HPP_
00063 #define XIMOL_STR_CAST_HPP_
00064
00065 #include <ximol/namespace_defs.hpp>
00066 #include <ximol/export_defs.hpp>
00067 #include <ximol/typedefs.hpp>
00068
00069
00070 XIMOL_BEGIN_NAMESPACE
00071
00072 template < typename Char_dest, typename Char_source > struct converter
00073 {
00074 static Char_dest get(Char_source);
00075 static ::std::basic_string<Char_dest> get(const ::std::basic_string<Char_source> & wstr);
00076 };
00077
00078 template <> struct XIMOL_EXPORT converter<char, wchar_t>
00079 {
00080 static char get(wchar_t);
00081 static ::std::string get(const ::std::wstring & wstr);
00082 };
00083
00084 template <> struct XIMOL_EXPORT converter<char, char>
00085 {
00086 static char get(char);
00087 static ::std::string get(const ::std::string & str);
00088 };
00089
00090 template <> struct XIMOL_EXPORT converter<wchar_t, char>
00091 {
00092 static wchar_t get(char);
00093 static ::std::wstring get(const ::std::string & str);
00094 };
00095
00096 template <> struct XIMOL_EXPORT converter<wchar_t, wchar_t>
00097 {
00098 static wchar_t get(wchar_t);
00099 static ::std::wstring get(const ::std::wstring & wstr);
00100 };
00101
00102
00103 template<typename T> struct str {};
00104
00105
00106 template<> struct str< ::std::string >
00107 {
00108 template<typename T>
00109 static ::std::string cast(const T& t)
00110 {
00111 ::std::ostringstream ss;
00112 ss << t;
00113 return ss.str();
00114 };
00115
00116 static ::std::string cast(const ::std::string & t) { return converter<char,char>::get(t); };
00117 static ::std::string cast(const ::std::wstring & t) { return converter<char,wchar_t>::get(t); };
00118
00119 static ::std::string cast(const char * t) { return converter<char,char>::get(t); };
00120 static ::std::string cast(const wchar_t * t) { return converter<char,wchar_t>::get(t); };
00121
00122 static ::std::string cast(char t) { return ::std::string(1,converter<char,char>::get(t)); };
00123 static ::std::string cast(wchar_t t) { return ::std::string(1,converter<char,wchar_t>::get(t)); };
00124 };
00125
00126
00127 template<> struct str< ::std::string const>: public str< ::std::string> {};
00128 template<> struct str<char const *>: public str< ::std::string> {};
00129 template<> struct str<char const []>: public str< ::std::string> {};
00130
00131 template<> struct str< ::std::wstring>
00132 {
00133 template<typename T>
00134 static ::std::wstring cast(const T& t)
00135 {
00136 ::std::ostringstream ss;
00137 ss << t;
00138 return converter<wchar_t, char>::get(ss.str());
00139 };
00140
00141 static ::std::wstring cast(const ::std::string & t) { return converter<wchar_t,char>::get(t); };
00142 static ::std::wstring cast(const ::std::wstring & t) { return converter<wchar_t,wchar_t>::get(t); };
00143
00144 static ::std::wstring cast(const char * t) { return converter<wchar_t,char>::get(t); };
00145 static ::std::wstring cast(const wchar_t * t) { return converter<wchar_t,wchar_t>::get(t); };
00146
00147 static ::std::wstring cast(char t) { return ::std::wstring(1,converter<wchar_t,char>::get(t)); };
00148 static ::std::wstring cast(wchar_t t) { return ::std::wstring(1,converter<wchar_t,wchar_t>::get(t)); };
00149 };
00150
00151
00152 template<> struct str< ::std::wstring const>: public str< ::std::wstring> {};
00153 template<> struct str<wchar_t const *>: public str< ::std::wstring> {};
00154 template<> struct str<wchar_t const []>: public str< ::std::wstring> {};
00155
00156 XIMOL_END_NAMESPACE
00157
00158 #endif // #ifndef XIMOL_STR_CAST_HPP_