// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #include "qsqlrecord.h" #include "qatomic.h" #include "qdebug.h" #include "qlist.h" #include "qsqlfield.h" #include "qstring.h" QT_BEGIN_NAMESPACE class QSqlRecordPrivate : public QSharedData { public: inline bool contains(qsizetype index) const { return index >= 0 && index < fields.size(); } QList fields; }; QT_DEFINE_QESDP_SPECIALIZATION_DTOR(QSqlRecordPrivate) /*! \class QSqlRecord \brief The QSqlRecord class encapsulates a database record. \ingroup database \ingroup shared \inmodule QtSql The QSqlRecord class encapsulates the functionality and characteristics of a database record (usually a row in a table or view within the database). QSqlRecord supports adding and removing fields as well as setting and retrieving field values. The values of a record's fields can be set by name or position with setValue(); if you want to set a field to null use setNull(). To find the position of a field by name use indexOf(), and to find the name of a field at a particular position use fieldName(). Use field() to retrieve a QSqlField object for a given field. Use contains() to see if the record contains a particular field name. When queries are generated to be executed on the database only those fields for which isGenerated() is true are included in the generated SQL. A record can have fields added with append() or insert(), replaced with replace(), and removed with remove(). All the fields can be removed with clear(). The number of fields is given by count(); all their values can be cleared (to null) using clearValues(). \sa QSqlField, QSqlQuery::record() */ /*! Constructs an empty record. \sa isEmpty(), append(), insert() */ QSqlRecord::QSqlRecord() : d(new QSqlRecordPrivate) { } /*! Constructs a copy of \a other. QSqlRecord is \l{implicitly shared}. This means you can make copies of a record in \l{constant time}. */ QSqlRecord::QSqlRecord(const QSqlRecord &other) = default; /*! \fn QSqlRecord::QSqlRecord(QSqlRecord &&other) \since 6.6 Move-constructs a new QSqlRecord from \a other. \note The moved-from object \a other is placed in a partially-formed state, in which the only valid operations are destruction and assignment of a new value. */ /*! \fn QSqlRecord &QSqlRecord::operator=(QSqlRecord &&other) \since 6.6 Move-assigns \a other to this QSqlRecord instance. \note The moved-from object \a other is placed in a partially-formed state, in which the only valid operations are destruction and assignment of a new value. */ /*! \fn void QSqlRecord::swap(QSqlRecord &other) \since 6.6 Swaps SQL record \a other with this SQL record. This operation is very fast and never fails. */ /*! Sets the record equal to \a other. QSqlRecord is \l{implicitly shared}. This means you can make copies of a record in \l{constant time}. */ QSqlRecord& QSqlRecord::operator=(const QSqlRecord &other) = default; /*! Destroys the object and frees any allocated resources. */ QSqlRecord::~QSqlRecord() = default; /*! \fn bool QSqlRecord::operator!=(const QSqlRecord &other) const Returns \c true if this object is not identical to \a other; otherwise returns \c false. \sa operator==() */ /*! Returns \c true if this object is identical to \a other (i.e., has the same fields in the same order); otherwise returns \c false. \sa operator!=() */ bool QSqlRecord::operator==(const QSqlRecord &other) const { return d->fields == other.d->fields; } /*! Returns the value of the field located at position \a index in the record. If \a index is out of bounds, an invalid QVariant is returned. \sa fieldName(), isNull() */ QVariant QSqlRecord::value(int index) const { return d->fields.value(index).value(); } /*! \overload */ QVariant QSqlRecord::value(const QString &name) const { return value(QStringView(name)); } /*! \overload Returns the value of the field called \a name in the record. If field \a name does not exist an invalid variant is returned. \sa indexOf(), isNull() */ QVariant QSqlRecord::value(QStringView name) const { return value(indexOf(name)); } /*! Returns the name of the field at position \a index. If the field does not exist, an empty string is returned. \sa indexOf() */ QString QSqlRecord::fieldName(int index) const { return d->fields.value(index).name(); } /*! \overload */ int QSqlRecord::indexOf(const QString &name) const { return indexOf(QStringView(name)); } /*! Returns the position of the field called \a name within the record, or -1 if it cannot be found. Field names are not case-sensitive. If more than one field matches, the first one is returned. \sa fieldName() */ int QSqlRecord::indexOf(QStringView name) const { QStringView tableName; QStringView fieldName(name); const qsizetype idx = name.indexOf(u'.'); if (idx != -1) { tableName = fieldName.left(idx); fieldName = fieldName.mid(idx + 1); } const int cnt = count(); for (int i = 0; i < cnt; ++i) { // Check the passed in name first in case it is an alias using a dot. // Then check if both the table and field match when there is a table name specified. const auto ¤tField = d->fields.at(i); const auto ¤tFieldName = currentField.name(); if (currentFieldName.compare(name, Qt::CaseInsensitive) == 0 || (idx != -1 && currentFieldName.compare(fieldName, Qt::CaseInsensitive) == 0 && currentField.tableName().compare(tableName, Qt::CaseInsensitive) == 0)) { return i; } } return -1; } /*! Returns the field at position \a index. If the \a index is out of range, function returns a \l{default-constructed value}. */ QSqlField QSqlRecord::field(int index) const { return d->fields.value(index); } /*! \overload */ QSqlField QSqlRecord::field(const QString &name) const { return field(QStringView(name)); } /*! \overload Returns the field called \a name. If the field called \a name is not found, function returns a \l{default-constructed value}. */ QSqlField QSqlRecord::field(QStringView name) const { return field(indexOf(name)); } /*! Append a copy of field \a field to the end of the record. \sa insert(), replace(), remove() */ void QSqlRecord::append(const QSqlField &field) { detach(); d->fields.append(field); } /*! Inserts the field \a field at position \a pos in the record. \sa append(), replace(), remove() */ void QSqlRecord::insert(int pos, const QSqlField &field) { detach(); d->fields.insert(pos, field); } /*! Replaces the field at position \a pos with the given \a field. If \a pos is out of range, nothing happens. \sa append(), insert(), remove() */ void QSqlRecord::replace(int pos, const QSqlField &field) { if (!d->contains(pos)) return; detach(); d->fields[pos] = field; } /*! Removes the field at position \a pos. If \a pos is out of range, nothing happens. \sa append(), insert(), replace() */ void QSqlRecord::remove(int pos) { if (!d->contains(pos)) return; detach(); d->fields.remove(pos); } /*! Removes all the record's fields. \sa clearValues(), isEmpty() */ void QSqlRecord::clear() { detach(); d->fields.clear(); } /*! Returns \c true if there are no fields in the record; otherwise returns \c false. \sa append(), insert(), clear() */ bool QSqlRecord::isEmpty() const { return d->fields.isEmpty(); } /*! \overload */ bool QSqlRecord::contains(const QString &name) const { return contains(QStringView(name)); } /*! Returns \c true if there is a field in the record called \a name; otherwise returns \c false. */ bool QSqlRecord::contains(QStringView name) const { return indexOf(name) >= 0; } /*! Clears the value of all fields in the record and sets each field to null. \sa setValue() */ void QSqlRecord::clearValues() { detach(); for (QSqlField &f : d->fields) f.clear(); } /*! \overload */ void QSqlRecord::setGenerated(const QString &name, bool generated) { setGenerated(QStringView(name), generated); } /*! Sets the generated flag for the field called \a name to \a generated. If the field does not exist, nothing happens. Only fields that have \a generated set to true are included in the SQL that is generated by QSqlQueryModel for example. \sa isGenerated() */ void QSqlRecord::setGenerated(QStringView name, bool generated) { setGenerated(indexOf(name), generated); } /*! Sets the generated flag for the field \a index to \a generated. \sa isGenerated() */ void QSqlRecord::setGenerated(int index, bool generated) { if (!d->contains(index)) return; detach(); d->fields[index].setGenerated(generated); } /*! Returns \c true if the field \a index is null or if there is no field at position \a index; otherwise returns \c false. \sa setNull() */ bool QSqlRecord::isNull(int index) const { return d->fields.value(index).isNull(); } /*! \overload */ bool QSqlRecord::isNull(const QString &name) const { return isNull(QStringView(name)); } /*! \overload Returns \c true if the field called \a name is null or if there is no field called \a name; otherwise returns \c false. \sa setNull() */ bool QSqlRecord::isNull(QStringView name) const { return isNull(indexOf(name)); } /*! Sets the value of field \a index to null. If the field does not exist, nothing happens. \sa setValue() */ void QSqlRecord::setNull(int index) { if (!d->contains(index)) return; detach(); d->fields[index].clear(); } /*! \overload */ void QSqlRecord::setNull(const QString &name) { setNull(QStringView(name)); } /*! \overload Sets the value of the field called \a name to null. If the field does not exist, nothing happens. */ void QSqlRecord::setNull(QStringView name) { setNull(indexOf(name)); } /*! \overload */ bool QSqlRecord::isGenerated(const QString &name) const { return isGenerated(QStringView(name)); } /*! \overload Returns \c true if the record has a field called \a name and this field is to be generated (the default); otherwise returns \c false. \sa setGenerated() */ bool QSqlRecord::isGenerated(QStringView name) const { return isGenerated(indexOf(name)); } /*! Returns \c true if the record has a field at position \a index and this field is to be generated (the default); otherwise returns \c false. \sa setGenerated() */ bool QSqlRecord::isGenerated(int index) const { return d->fields.value(index).isGenerated(); } /*! Returns the number of fields in the record. \sa isEmpty() */ int QSqlRecord::count() const { return d->fields.size(); } /*! Sets the value of the field at position \a index to \a val. If the field does not exist, nothing happens. \sa setNull() */ void QSqlRecord::setValue(int index, const QVariant &val) { if (!d->contains(index)) return; detach(); d->fields[index].setValue(val); } /*! \overload */ void QSqlRecord::setValue(const QString &name, const QVariant &val) { setValue(QStringView(name), val); } /*! \overload Sets the value of the field called \a name to \a val. If the field does not exist, nothing happens. \sa setNull() */ void QSqlRecord::setValue(QStringView name, const QVariant &val) { setValue(indexOf(name), val); } /*! \internal */ void QSqlRecord::detach() { d.detach(); } #ifndef QT_NO_DEBUG_STREAM QDebug operator<<(QDebug dbg, const QSqlRecord &r) { QDebugStateSaver saver(dbg); dbg.nospace(); const int count = r.count(); dbg << "QSqlRecord(" << count << ')'; for (int i = 0; i < count; ++i) { dbg.nospace(); dbg << '\n' << qSetFieldWidth(2) << Qt::right << i << Qt::left << qSetFieldWidth(0) << ':'; dbg.space(); dbg << r.field(i) << r.value(i).toString(); } return dbg; } #endif /*! \since 5.1 Returns a record containing the fields represented in \a keyFields set to values that match by field name. */ QSqlRecord QSqlRecord::keyValues(const QSqlRecord &keyFields) const { QSqlRecord retValues(keyFields); for (int i = retValues.count() - 1; i >= 0; --i) retValues.setValue(i, value(retValues.fieldName(i))); return retValues; } QT_END_NAMESPACE