123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- /****************************************************************************
- **
- ** https://www.qxorm.com/
- ** Copyright (C) 2013 Lionel Marty (contact@qxorm.com)
- **
- ** This file is part of the QxOrm library
- **
- ** This software is provided 'as-is', without any express or implied
- ** warranty. In no event will the authors be held liable for any
- ** damages arising from the use of this software
- **
- ** Commercial Usage
- ** Licensees holding valid commercial QxOrm licenses may use this file in
- ** accordance with the commercial license agreement provided with the
- ** Software or, alternatively, in accordance with the terms contained in
- ** a written agreement between you and Lionel Marty
- **
- ** GNU General Public License Usage
- ** Alternatively, this file may be used under the terms of the GNU
- ** General Public License version 3.0 as published by the Free Software
- ** Foundation and appearing in the file 'license.gpl3.txt' included in the
- ** packaging of this file. Please review the following information to
- ** ensure the GNU General Public License version 3.0 requirements will be
- ** met : http://www.gnu.org/copyleft/gpl.html
- **
- ** If you are unsure which license is appropriate for your use, or
- ** if you have questions regarding the use of this file, please contact :
- ** contact@qxorm.com
- **
- ****************************************************************************/
- #ifndef _QX_ARCHIVE_WIDE_TRAITS_H_
- #define _QX_ARCHIVE_WIDE_TRAITS_H_
- #ifdef _MSC_VER
- #pragma once
- #endif
- /*!
- * \file archive_wide_traits.h
- * \author Lionel Marty
- * \ingroup QxTraits
- * \brief qx::trait::is_archive_wide<T>::value : define if a boost::archive type uses wide string character and stream (for example std::wstring) or not (for example std::string)
- */
- #include <string>
- #include <iostream>
- #include <sstream>
- #include <fstream>
- #include <QtCore/qstring.h>
- #include <QxSerialize/boost/QxSerializeInclude.h>
- namespace qx {
- namespace trait {
- /*!
- * \ingroup QxTraits
- * \brief qx::trait::is_archive_wide<T>::value : define if a boost::archive type uses wide string character and stream (for example std::wstring) or not (for example std::string)
- */
- template <typename T> struct is_archive_wide { enum { value = false }; };
- #if _QX_SERIALIZE_WIDE_BINARY
- template <> struct is_archive_wide<boost::archive::binary_wiarchive> { enum { value = true }; };
- template <> struct is_archive_wide<boost::archive::binary_woarchive> { enum { value = true }; };
- #endif // _QX_SERIALIZE_WIDE_BINARY
- #if _QX_SERIALIZE_WIDE_TEXT
- template <> struct is_archive_wide<boost::archive::text_wiarchive> { enum { value = true }; };
- template <> struct is_archive_wide<boost::archive::text_woarchive> { enum { value = true }; };
- #endif // _QX_SERIALIZE_WIDE_TEXT
- #if _QX_SERIALIZE_WIDE_XML
- template <> struct is_archive_wide<boost::archive::xml_wiarchive> { enum { value = true }; };
- template <> struct is_archive_wide<boost::archive::xml_woarchive> { enum { value = true }; };
- #endif // _QX_SERIALIZE_WIDE_XML
- template <typename T>
- class archive_wide_traits
- {
- public:
- enum { is_wide = qx::trait::is_archive_wide<T>::value };
- typedef typename std::conditional<is_wide, wchar_t, char>::type type_char;
- typedef typename std::conditional<is_wide, std::wstring, std::string>::type type_string;
- typedef typename std::conditional<is_wide, std::wistream, std::istream>::type type_istream;
- typedef typename std::conditional<is_wide, std::wostream, std::ostream>::type type_ostream;
- typedef typename std::conditional<is_wide, std::wstringstream, std::stringstream>::type type_stringstream;
- typedef typename std::conditional<is_wide, std::wistringstream, std::istringstream>::type type_istringstream;
- typedef typename std::conditional<is_wide, std::wostringstream, std::ostringstream>::type type_ostringstream;
- typedef typename std::conditional<is_wide, std::wfstream, std::fstream>::type type_fstream;
- typedef typename std::conditional<is_wide, std::wifstream, std::ifstream>::type type_ifstream;
- typedef typename std::conditional<is_wide, std::wofstream, std::ofstream>::type type_ofstream;
- static inline QString toQString(const type_string & str) { return cvtQString<is_wide, 0>::toQString(str); }
- static inline void fromQString(const QString & str, type_string & result) { cvtQString<is_wide, 0>::fromQString(str, result); }
- static inline QByteArray toQByteArray(const type_string & str, type_string * owner) { return cvtQByteArray<is_wide, 0>::toQByteArray(str, owner); }
- static inline void fromQByteArray(const QByteArray & data, type_string & result) { cvtQByteArray<is_wide, 0>::fromQByteArray(data, result); }
- private:
- template <bool isWide /* = false */, int dummy>
- struct cvtQString
- {
- #ifndef QT_NO_STL
- static inline QString toQString(const std::string & str) { return QString::fromStdString(str); }
- static inline void fromQString(const QString & str, std::string & result) { result = str.toStdString(); }
- #else // QT_NO_STL
- static inline QString toQString(const std::string & str) { return QString::fromLatin1(str.data(), int(str.size())); }
- static inline void fromQString(const QString & str, std::string & result) { result = str.toLatin1().constData(); }
- #endif // QT_NO_STL
- };
- template <int dummy>
- struct cvtQString<true, dummy>
- {
- #if ((! defined(QT_NO_STL)) && (! defined(QT_NO_STL_WCHAR)))
- static inline QString toQString(const std::wstring & str) { return QString::fromStdWString(str); }
- static inline void fromQString(const QString & str, std::wstring & result) { result = str.toStdWString(); }
- #else // ((! defined(QT_NO_STL)) && (! defined(QT_NO_STL_WCHAR)))
- static inline QString toQString(const std::wstring & str) { Q_UNUSED(str); qAssert(false); /* Need STL compatibility ! */ return QString(); }
- static inline void fromQString(const QString & str, std::wstring & result) { Q_UNUSED(str); Q_UNUSED(result); qAssert(false); /* Need STL compatibility ! */ }
- #endif // ((! defined(QT_NO_STL)) && (! defined(QT_NO_STL_WCHAR)))
- };
- template <bool isWide /* = false */, int dummy>
- struct cvtQByteArray
- {
- static inline QByteArray toQByteArray(const std::string & str, std::string * owner)
- { if (owner) { (* owner) = str; }; return (owner ? QByteArray::fromRawData(owner->data(), owner->size()) : QByteArray(str.data(), str.size())); }
- static inline void fromQByteArray(const QByteArray & data, std::string & result)
- { result.clear(); result.append(data.constData(), data.size()); }
- };
- template <int dummy>
- struct cvtQByteArray<true, dummy>
- {
- static inline QByteArray toQByteArray(const std::wstring & str, std::wstring * owner)
- #if ((! defined(QT_NO_STL)) && (! defined(QT_NO_STL_WCHAR)))
- { Q_UNUSED(owner); return QString::fromStdWString(str).toUtf8(); }
- #else // ((! defined(QT_NO_STL)) && (! defined(QT_NO_STL_WCHAR)))
- { Q_UNUSED(owner); Q_UNUSED(str); qAssert(false); /* Need STL compatibility ! */ return QByteArray(); }
- #endif // ((! defined(QT_NO_STL)) && (! defined(QT_NO_STL_WCHAR)))
- static inline void fromQByteArray(const QByteArray & data, std::wstring & result)
- #if ((! defined(QT_NO_STL)) && (! defined(QT_NO_STL_WCHAR)))
- { result = QString::fromUtf8(data.constData(), data.size()).toStdWString(); }
- #else // ((! defined(QT_NO_STL)) && (! defined(QT_NO_STL_WCHAR)))
- { Q_UNUSED(data); Q_UNUSED(result); qAssert(false); /* Need STL compatibility ! */ }
- #endif // ((! defined(QT_NO_STL)) && (! defined(QT_NO_STL_WCHAR)))
- };
- };
- } // namespace trait
- } // namespace qx
- #endif // _QX_ARCHIVE_WIDE_TRAITS_H_
|