/**************************************************************************** ** ** 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_DATE_NEUTRAL_H_ #define _QX_DATE_NEUTRAL_H_ #ifdef _MSC_VER #pragma once #endif /*! * \file QxDateNeutral.h * \author Lionel Marty * \ingroup QxDao * \brief Helper class to store a date value into database under neutral format (YYYYMMDD) => cross database compatibility */ #ifdef _QX_ENABLE_BOOST_SERIALIZATION #include #include #endif // _QX_ENABLE_BOOST_SERIALIZATION #include #include #include #include namespace qx { class QxDateNeutral; } // namespace qx QX_DLL_EXPORT QDataStream & operator<< (QDataStream & stream, const qx::QxDateNeutral & t) QX_USED; QX_DLL_EXPORT QDataStream & operator>> (QDataStream & stream, qx::QxDateNeutral & t) QX_USED; namespace qx { /*! * \ingroup QxDao * \brief qx::QxDateNeutral : helper class to store a date value into database under neutral format (YYYYMMDD) => cross database compatibility */ class QxDateNeutral { #ifdef _QX_ENABLE_BOOST_SERIALIZATION friend class boost::serialization::access; #endif // _QX_ENABLE_BOOST_SERIALIZATION friend QX_DLL_EXPORT QDataStream & ::operator<< (QDataStream & stream, const qx::QxDateNeutral & t); friend QX_DLL_EXPORT QDataStream & ::operator>> (QDataStream & stream, qx::QxDateNeutral & t); private: QDate m_date; //!< Data value under QDate format from Qt library QString m_neutral; //!< Data value under neutral format 'yyyyMMdd' public: QxDateNeutral() { ; } explicit QxDateNeutral(const QDate & date) : m_date(date) { update(); } explicit QxDateNeutral(const QString & neutral) : m_neutral(neutral) { update(); } virtual ~QxDateNeutral() { ; } inline QDate toDate() const { return m_date; } inline QString toNeutral() const { return m_neutral; } inline bool isValid() const { return m_date.isValid(); } inline void setDate(const QDate & date) { m_neutral = ""; m_date = date; update(); } inline void setNeutral(const QString & neutral) { m_date = QDate(); m_neutral = neutral; update(); } static QxDateNeutral fromDate(const QDate & date) { return QxDateNeutral(date); } static QxDateNeutral fromNeutral(const QString & neutral) { return QxDateNeutral(neutral); } private: static inline const char * format() { return "yyyyMMdd"; } void update() { if (m_neutral.isEmpty() && ! m_date.isValid()) { return; } else if (m_date.isValid()) { m_neutral = m_date.toString(format()); } else { qAssert(m_neutral.size() == QString(format()).size()); m_date = QDate::fromString(m_neutral, format()); qAssert(m_date.isValid()); } } #ifdef _QX_ENABLE_BOOST_SERIALIZATION template void serialize(Archive & ar, const unsigned int file_version) { Q_UNUSED(file_version); ar & boost::serialization::make_nvp("date_neutral", m_neutral); if (Archive::is_loading::value) { m_date = QDate(); update(); } } #endif // _QX_ENABLE_BOOST_SERIALIZATION }; } // namespace qx QX_REGISTER_CLASS_NAME(qx::QxDateNeutral) #endif // _QX_DATE_NEUTRAL_H_