QxOrm  1.4.9
C++ Object Relational Mapping library
QxSqlRelation_ManyToMany.h
Go to the documentation of this file.
00001 /****************************************************************************
00002 **
00003 ** https://www.qxorm.com/
00004 ** Copyright (C) 2013 Lionel Marty (contact@qxorm.com)
00005 **
00006 ** This file is part of the QxOrm library
00007 **
00008 ** This software is provided 'as-is', without any express or implied
00009 ** warranty. In no event will the authors be held liable for any
00010 ** damages arising from the use of this software
00011 **
00012 ** Commercial Usage
00013 ** Licensees holding valid commercial QxOrm licenses may use this file in
00014 ** accordance with the commercial license agreement provided with the
00015 ** Software or, alternatively, in accordance with the terms contained in
00016 ** a written agreement between you and Lionel Marty
00017 **
00018 ** GNU General Public License Usage
00019 ** Alternatively, this file may be used under the terms of the GNU
00020 ** General Public License version 3.0 as published by the Free Software
00021 ** Foundation and appearing in the file 'license.gpl3.txt' included in the
00022 ** packaging of this file. Please review the following information to
00023 ** ensure the GNU General Public License version 3.0 requirements will be
00024 ** met : http://www.gnu.org/copyleft/gpl.html
00025 **
00026 ** If you are unsure which license is appropriate for your use, or
00027 ** if you have questions regarding the use of this file, please contact :
00028 ** contact@qxorm.com
00029 **
00030 ****************************************************************************/
00031 
00032 #ifndef _QX_SQL_RELATION_MANY_TO_MANY_H_
00033 #define _QX_SQL_RELATION_MANY_TO_MANY_H_
00034 
00035 #ifdef _MSC_VER
00036 #pragma once
00037 #endif
00038 
00046 #include <QxDao/QxSqlRelation.h>
00047 
00048 namespace qx {
00049 
00054 template <class DataType, class Owner>
00055 class QxSqlRelation_ManyToMany : public QxSqlRelation<DataType, Owner>
00056 {
00057 
00058 private:
00059 
00060    typedef typename QxSqlRelation<DataType, Owner>::type_owner type_owner;
00061    typedef typename QxSqlRelation<DataType, Owner>::type_data type_data;
00062    typedef typename QxSqlRelation<DataType, Owner>::type_container type_container;
00063    typedef typename QxSqlRelation<DataType, Owner>::type_generic_container type_generic_container;
00064    typedef typename QxSqlRelation<DataType, Owner>::type_item type_item;
00065    typedef typename type_generic_container::type_iterator type_iterator;
00066    typedef typename type_item::type_value type_value;
00067 
00068    enum { is_data_container = QxSqlRelation<DataType, Owner>::is_data_container };
00069 
00070 public:
00071 
00072    QxSqlRelation_ManyToMany(IxDataMember * p, const QString & sExtraTable, const QString & sForeignKeyOwner, const QString & sForeignKeyDataType) : QxSqlRelation<DataType, Owner>(p) { this->setRelationType(qx::IxSqlRelation::many_to_many); this->setExtraTable(sExtraTable); this->setForeignKeyOwner(sForeignKeyOwner); this->setForeignKeyDataType(sForeignKeyDataType); this->verifyParameters(); }
00073    virtual ~QxSqlRelation_ManyToMany() { static_assert(is_data_container, "is_data_container"); }
00074 
00075    virtual QString getDescription() const                                     { return "relation many-to-many"; }
00076    virtual bool getCartesianProduct() const                                   { return true; }
00077    virtual void createTable(QxSqlRelationParams & params) const               { Q_UNUSED(params); }
00078    virtual void lazySelect(QxSqlRelationParams & params) const                { Q_UNUSED(params); }
00079    virtual void lazyFrom(QxSqlRelationParams & params) const                  { Q_UNUSED(params); }
00080    virtual void eagerFrom(QxSqlRelationParams & params) const                 { Q_UNUSED(params); }
00081    virtual void lazyJoin(QxSqlRelationParams & params) const                  { Q_UNUSED(params); }
00082    virtual void lazyWhere(QxSqlRelationParams & params) const                 { Q_UNUSED(params); }
00083    virtual void eagerWhere(QxSqlRelationParams & params) const                { Q_UNUSED(params); }
00084    virtual void lazyWhereSoftDelete(QxSqlRelationParams & params) const       { Q_UNUSED(params); }
00085    virtual void lazyFetch_ResolveInput(QxSqlRelationParams & params) const    { Q_UNUSED(params); }
00086    virtual void eagerFetch_ResolveInput(QxSqlRelationParams & params) const   { Q_UNUSED(params); }
00087    virtual void lazyFetch_ResolveOutput(QxSqlRelationParams & params) const   { Q_UNUSED(params); }
00088    virtual void lazyInsert(QxSqlRelationParams & params) const                { Q_UNUSED(params); }
00089    virtual void lazyInsert_Values(QxSqlRelationParams & params) const         { Q_UNUSED(params); }
00090    virtual void lazyUpdate(QxSqlRelationParams & params) const                { Q_UNUSED(params); }
00091    virtual void lazyInsert_ResolveInput(QxSqlRelationParams & params) const   { Q_UNUSED(params); }
00092    virtual void lazyUpdate_ResolveInput(QxSqlRelationParams & params) const   { Q_UNUSED(params); }
00093    virtual QSqlError onBeforeSave(QxSqlRelationParams & params) const         { Q_UNUSED(params); return QSqlError(); }
00094 
00095    virtual QVariant getIdFromQuery(bool bEager, QxSqlRelationParams & params, int iOffset, int iNameIndex) const
00096    { return this->getIdFromQuery_ManyToMany(bEager, params, iOffset, iNameIndex); }
00097 
00098    virtual void updateOffset(bool bEager, QxSqlRelationParams & params) const
00099    { this->updateOffset_ManyToMany(bEager, params); }
00100 
00101    virtual void eagerSelect(QxSqlRelationParams & params) const
00102    { this->eagerSelect_ManyToMany(params); }
00103 
00104    virtual void eagerJoin(QxSqlRelationParams & params) const
00105    { this->eagerJoin_ManyToMany(params); }
00106 
00107    virtual void eagerWhereSoftDelete(QxSqlRelationParams & params) const
00108    { this->eagerWhereSoftDelete_ManyToMany(params); }
00109 
00110    virtual void * eagerFetch_ResolveOutput(QxSqlRelationParams & params) const
00111    {
00112       if (! this->verifyOffset(params, true)) { return NULL; }
00113       QSqlQuery & query = params.query();
00114       IxDataMember * p = NULL; IxDataMember * pId = this->getDataId(); qAssert(pId);
00115       long lIndex = 0; long lOffsetId = ((pId && (! params.isDistinct())) ? pId->getNameCount() : 0); bool bValidId(false);
00116       long lOffsetOld = params.offset(); this->updateOffset(true, params);
00117       long lRelation = 0; IxSqlRelation * pRelation = NULL;
00118 
00119       if (! params.isDistinct())
00120       {
00121          for (int i = 0; i < pId->getNameCount(); i++)
00122          { QVariant v = query.value(lOffsetOld + i); bValidId = (bValidId || qx::trait::is_valid_primary_key(v)); }
00123          if (! bValidId) { return NULL; }
00124       }
00125 
00126       type_item item = this->createItem();
00127       type_data & item_val = item.value_qx();
00128       if (! this->callTriggerBeforeFetch(item_val, params)) { return NULL; }
00129 
00130       if (! params.isDistinct())
00131       {
00132          for (int i = 0; i < pId->getNameCount(); i++)
00133          { QVariant v = query.value(lOffsetOld + i); qx::cvt::from_variant(v, item.key(), "", i, qx::cvt::context::e_database); }
00134          for (int i = 0; i < pId->getNameCount(); i++)
00135          { QVariant v = query.value(lOffsetOld + i); pId->fromVariant((& item_val), v, "", i, qx::cvt::context::e_database); }
00136       }
00137       else
00138       {
00139          for (int i = 0; i < pId->getNameCount(); i++)
00140          { QVariant v = this->getIdFromQuery(true, params, (lOffsetOld + i), i); qx::cvt::from_variant(v, item.key(), "", i, qx::cvt::context::e_database); }
00141       }
00142 
00143       long lOffsetRelation = (lOffsetOld + lOffsetId); long lCurrIndex = 0;
00144       while ((p = this->nextData(lIndex)))
00145       { if (params.checkColumns(p->getKey())) { p->fromVariant((& item_val), query.value(lCurrIndex + lOffsetRelation), -1, qx::cvt::context::e_database); lCurrIndex++; } }
00146 
00147       if (params.relationX())
00148       {
00149          long lOffsetCurrent = (lCurrIndex + lOffsetRelation);
00150          QString sOldCustomAliasOwner = params.getCustomAliasOwner(); params.setCustomAliasOwner(params.getCustomAlias());
00151          long lIndexOwnerOld = params.indexOwner(); params.setIndexOwner(params.index());
00152          void * pOwnerOld = params.owner(); params.setOwner(& item_val);
00153          lOffsetOld = params.offset(); params.setOffset(lOffsetCurrent);
00154          while ((pRelation = this->nextRelation(lRelation)))
00155          { if (this->addLazyRelation(params, pRelation)) { pRelation->lazyFetch_ResolveOutput(params); } }
00156          params.setOwner(pOwnerOld); params.setOffset(lOffsetOld);
00157          params.setCustomAliasOwner(sOldCustomAliasOwner);
00158          params.setIndexOwner(lIndexOwnerOld);
00159       }
00160 
00161       if (! this->callTriggerAfterFetch(item_val, params)) { return NULL; }
00162       type_value * pValue = type_generic_container::insertItem(this->getContainer(params), item);
00163       if (! type_item::is_value_pointer && pValue) { return pValue; }
00164       return (& item_val);
00165    }
00166 
00167    virtual QSqlError onAfterSave(QxSqlRelationParams & params) const
00168    {
00169       QSqlError daoError;
00170       if (this->isNullData(params)) { return this->deleteFromExtraTable(params); }
00171       if (! params.recursiveMode()) { daoError = qx::dao::save(this->getContainer(params), (& params.database())); }
00172       else { daoError = qx::dao::save_with_relation_recursive(this->getContainer(params), params.saveMode(), (& params.database()), (& params)); }
00173       if (daoError.isValid()) { return daoError; }
00174       daoError = this->deleteFromExtraTable(params);
00175       if (daoError.isValid()) { return daoError; }
00176       daoError = this->insertIntoExtraTable(params);
00177       if (daoError.isValid()) { return daoError; }
00178       return QSqlError();
00179    }
00180 
00181    virtual QString createExtraTable() const
00182    { return this->createExtraTable_ManyToMany(); }
00183 
00184 private:
00185 
00186    void verifyParameters()
00187    { qAssert(! this->getExtraTable().isEmpty() && ! this->getForeignKeyOwner().isEmpty() && ! this->getForeignKeyDataType().isEmpty() && (this->getForeignKeyOwner() != this->getForeignKeyDataType())); }
00188 
00189    QSqlError deleteFromExtraTable(QxSqlRelationParams & params) const
00190    { return this->deleteFromExtraTable_ManyToMany(params); }
00191 
00192    QSqlError insertIntoExtraTable(QxSqlRelationParams & params) const
00193    {
00194       IxDataMember * pIdOwner = this->getDataIdOwner(); qAssert(pIdOwner);
00195       IxDataMember * pIdData = this->getDataId(); qAssert(pIdData);
00196       if (! pIdOwner || ! pIdData) { return QSqlError(); }
00197       QStringList lstForeignKeyOwner = this->getForeignKeyOwner().split("|");
00198       QStringList lstForeignKeyDataType = this->getForeignKeyDataType().split("|");
00199       qAssert(pIdOwner->getNameCount() == lstForeignKeyOwner.count());
00200       qAssert(pIdData->getNameCount() == lstForeignKeyDataType.count());
00201 
00202       QString sql = "INSERT INTO " + this->getExtraTable() + " (";
00203       sql += pIdOwner->getSqlName(", ", this->getForeignKeyOwner(), false, (& params.builder()));
00204       sql += ", ";
00205       sql += pIdData->getSqlName(", ", this->getForeignKeyDataType(), false, (& params.builder()));
00206       sql += ") VALUES (";
00207       sql += pIdOwner->getSqlPlaceHolder("", -1, ", ", this->getForeignKeyOwner()) + ", " + pIdData->getSqlPlaceHolder("", -1, ", ", this->getForeignKeyDataType()) + ")";
00208       if (this->traceSqlQuery()) { qDebug("[QxOrm] sql query (extra-table) : %s", qPrintable(sql)); }
00209 
00210       type_item item;
00211       type_container & container = this->getContainer(params);
00212       type_iterator itr = type_generic_container::begin(container, item);
00213       type_iterator itr_end = type_generic_container::end(container);
00214       QSqlQuery queryInsert(params.database());
00215       if (! queryInsert.prepare(sql)) { return queryInsert.lastError(); }
00216 
00217       while (itr != itr_end)
00218       {
00219          pIdOwner->setSqlPlaceHolder(queryInsert, params.owner(), "", this->getForeignKeyOwner());
00220          pIdData->setSqlPlaceHolder(queryInsert, (& item.value_qx()), "", this->getForeignKeyDataType());
00221          if (! queryInsert.exec()) { return queryInsert.lastError(); }
00222          itr = type_generic_container::next(container, itr, item);
00223       }
00224 
00225       return QSqlError();
00226    }
00227 
00228 };
00229 
00230 } // namespace qx
00231 
00232 #endif // _QX_SQL_RELATION_MANY_TO_MANY_H_