2 * Copyright (C) 2010 Ixonos Plc.
3 * Copyright (C) 2011-2021 Philipp Spitzer, gregor herrmann, Stefan Stahl
5 * This file is part of ConfClerk.
7 * ConfClerk is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the Free
9 * Software Foundation, either version 2 of the License, or (at your option)
12 * ConfClerk is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along with
18 * ConfClerk. If not, see <http://www.gnu.org/licenses/>.
27 #include <QStringList>
32 class OrmException: public std::runtime_error
35 OrmException(const QString& text) : std::runtime_error(text.toStdString()), mText(text) {}
36 virtual ~OrmException() throw() {}
37 virtual const QString& text() const { return mText; }
42 class OrmNoObjectException : public OrmException
45 OrmNoObjectException() : OrmException("SQL query expects one record but found none."){}
46 ~OrmNoObjectException() throw() {}
49 class OrmSqlException : public OrmException
52 OrmSqlException(const QString& text) : OrmException( QString("Sql error: ") + text ) {}
53 ~OrmSqlException() throw() {}
57 class OrmRecord : protected QSqlRecord
61 static T hydrate(const QSqlRecord& record);
62 void update(QString col, QVariant value = QVariant()); // updates specified column 'col'
65 QVariant value(QString col) const;
66 void setValue(QString col, QVariant value);
68 static T loadOne(QSqlQuery query);
69 static QList<T> load(QSqlQuery query);
72 static QSqlRecord toRecord(const QList<QSqlField> & columnList);
73 // all record items/columns are in one table
74 static QString columnsForSelect(const QString& prefix = QString());
75 static QString selectQuery();
76 static QString updateQuery();
78 static QVariant convertToC(QVariant value, QVariant::Type colType);
79 static QVariant convertToDb(QVariant value, QVariant::Type colType);
83 OrmRecord<T>::OrmRecord()
85 QSqlRecord::operator=(T::sColumns);
89 T OrmRecord<T>::hydrate(const QSqlRecord& record)
92 object.QSqlRecord::operator=(record);
96 // updates specified column 'col'
97 // if the value is not specified as an argument,
98 // it's taken from the record itself
99 // see also: setValue() method for more details
100 template <typename T>
101 void OrmRecord<T>::update(QString col, QVariant value)
104 query.prepare(QString(updateQuery() + "SET %1 = :col WHERE id = :id").arg(col));
105 if(value.isValid()) // take 'col' value from the method's arguments
106 query.bindValue(":col", value);
107 else // take 'col' value from the record; see setValue()
108 query.bindValue(":col", convertToDb(this->value(col), this->value(col).type()));
109 query.bindValue(":id", this->value("id"));
113 template <typename T>
114 QVariant OrmRecord<T>::value(QString col) const
116 return convertToC(QSqlRecord::value(col), T::sColumns.field(col).type());
119 template <typename T>
120 void OrmRecord<T>::setValue(QString col, QVariant value)
122 QSqlRecord::setValue(col, convertToDb(value, T::sColumns.field(col).type()));
125 template <typename T>
126 T OrmRecord<T>::loadOne(QSqlQuery query)
128 if (!query.isActive())
132 throw OrmSqlException(query.lastError().text());
138 throw OrmNoObjectException();
141 return hydrate(query.record());
144 template <typename T>
145 QList<T> OrmRecord<T>::load(QSqlQuery query)
147 if (!query.isActive())
151 qDebug() << "Error: " << query.lastError().driverText() << "; Type: " << query.lastError().type();
152 throw OrmSqlException(query.lastError().text());
159 objects << hydrate(query.record());
164 template <typename T>
165 QString OrmRecord<T>::columnsForSelect(const QString& prefix)
167 QStringList prefixedColumns;
168 for (int i=0; i<T::sColumns.count(); i++)
170 prefixedColumns.append(prefix.isEmpty() ?
171 T::sColumns.field(i).name() :
172 QString("%1.%2").arg(prefix, T::sColumns.field(i).name()));
174 return prefixedColumns.join(",");
177 template <typename T>
178 QString OrmRecord<T>::selectQuery()
180 return QString("SELECT %1 FROM %2 ").arg(columnsForSelect(), T::sTableName);
183 template <typename T>
184 QString OrmRecord<T>::updateQuery()
186 return QString("UPDATE %1 ").arg(T::sTableName);
189 template <typename T>
190 QSqlRecord OrmRecord<T>::toRecord(const QList<QSqlField> & columnList)
193 for(int i=0; i< columnList.count(); i++)
195 record.append(columnList[i]);
200 template <typename T>
201 QVariant OrmRecord<T>::convertToC(QVariant value, QVariant::Type colType)
203 if (colType == QVariant::DateTime && value.canConvert<uint>())
206 date.setTimeSpec(Qt::UTC);
207 date.setTime_t(value.toUInt());
214 template <typename T>
215 QVariant OrmRecord<T>::convertToDb(QVariant value, QVariant::Type colType)
217 if (colType == QVariant::DateTime && value.canConvert<QDateTime>())
219 QDateTime dateTime = value.toDateTime();
220 dateTime.setTimeSpec(Qt::UTC); // this is to avoid that dateTime.toTime_t changes the time depending on the local time zone
221 return dateTime.toTime_t();
227 #endif // ORMRECORD_H