/* * Strawberry Music Player * This file was part of Clementine. * Copyright 2010, David Sansome * Copyright 2018-2021, Jonas Kvinge * * Strawberry is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Strawberry is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Strawberry. If not, see . * */ #include "config.h" #include #include #include #include #include #include #include #include #include #include #include "core/sqlquery.h" #include "core/song.h" #include "collectionquery.h" #include "collectionfilteroptions.h" #include "utilities/searchparserutils.h" CollectionQuery::CollectionQuery(const QSqlDatabase &db, const QString &songs_table, const CollectionFilterOptions &filter_options) : SqlQuery(db), songs_table_(songs_table), include_unavailable_(false), duplicates_only_(false), limit_(-1) { if (filter_options.max_age() != -1) { qint64 cutoff = QDateTime::currentDateTime().toSecsSinceEpoch() - filter_options.max_age(); where_clauses_ << QStringLiteral("ctime > ?"); bound_values_ << cutoff; } duplicates_only_ = filter_options.filter_mode() == CollectionFilterOptions::FilterMode::Duplicates; if (filter_options.filter_mode() == CollectionFilterOptions::FilterMode::Untagged) { where_clauses_ << QStringLiteral("(artist = '' OR album = '' OR title ='')"); } } QString CollectionQuery::RemoveSqlOperator(QString &token) { QString op = QStringLiteral("="); static QRegularExpression rxOp(QStringLiteral("^(=|<[>=]?|>=?|!=)")); QRegularExpressionMatch match = rxOp.match(token); if (match.hasMatch()) { op = match.captured(0); } token.remove(rxOp); if (op == QStringLiteral("!=")) { op = QStringLiteral("<>"); } return op; } void CollectionQuery::AddWhere(const QString &column, const QVariant &value, const QString &op) { // Ignore 'literal' for IN if (op.compare(QStringLiteral("IN"), Qt::CaseInsensitive) == 0) { QStringList values = value.toStringList(); QStringList final_values; final_values.reserve(values.count()); for (const QString &single_value : values) { final_values.append(QStringLiteral("?")); bound_values_ << single_value; } where_clauses_ << QStringLiteral("%1 IN (%2)").arg(column, final_values.join(QLatin1Char(','))); } else { // Do integers inline - sqlite seems to get confused when you pass integers to bound parameters #if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) if (value.metaType().id() == QMetaType::Int) { #else if (value.type() == QVariant::Int) { #endif where_clauses_ << QStringLiteral("%1 %2 %3").arg(column, op, value.toString()); } else if ( #if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) value.metaType().id() == QMetaType::QString #else value.type() == QVariant::String #endif && value.toString().isNull()) { where_clauses_ << QStringLiteral("%1 %2 ?").arg(column, op); bound_values_ << QLatin1String(""); } else { where_clauses_ << QStringLiteral("%1 %2 ?").arg(column, op); bound_values_ << value; } } } void CollectionQuery::AddWhereArtist(const QVariant &value) { where_clauses_ << QStringLiteral("((artist = ? AND albumartist = '') OR albumartist = ?)"); bound_values_ << value; bound_values_ << value; } void CollectionQuery::AddWhereRating(const QVariant &value, const QString &op) { float parsed_rating = Utilities::ParseSearchRating(value.toString()); // You can't query the database for a float, due to float precision errors, // So we have to use a certain tolerance, so that the searched value is definetly included. const float tolerance = 0.001F; if (op == QStringLiteral("<")) { AddWhere(QStringLiteral("rating"), parsed_rating-tolerance, QStringLiteral("<")); } else if (op == QStringLiteral(">")) { AddWhere(QStringLiteral("rating"), parsed_rating+tolerance, QStringLiteral(">")); } else if (op == QStringLiteral("<=")) { AddWhere(QStringLiteral("rating"), parsed_rating+tolerance, QStringLiteral("<=")); } else if (op == QStringLiteral(">=")) { AddWhere(QStringLiteral("rating"), parsed_rating-tolerance, QStringLiteral(">=")); } else if (op == QStringLiteral("<>")) { where_clauses_ << QStringLiteral("(rating?)"); bound_values_ << parsed_rating - tolerance; bound_values_ << parsed_rating + tolerance; } else /* (op == "=") */ { AddWhere(QStringLiteral("rating"), parsed_rating+tolerance, QStringLiteral("<")); AddWhere(QStringLiteral("rating"), parsed_rating-tolerance, QStringLiteral(">")); } } void CollectionQuery::AddCompilationRequirement(const bool compilation) { // The unary + is added to prevent sqlite from using the index idx_comp_artist. where_clauses_ << QStringLiteral("+compilation_effective = %1").arg(compilation ? 1 : 0); } QString CollectionQuery::GetInnerQuery() const { return duplicates_only_ ? QStringLiteral(" INNER JOIN (select * from duplicated_songs) dsongs " "ON (%songs_table.artist = dsongs.dup_artist " "AND %songs_table.album = dsongs.dup_album " "AND %songs_table.title = dsongs.dup_title) ") : QString(); } bool CollectionQuery::Exec() { QString sql = QStringLiteral("SELECT %1 FROM %2 %3").arg(column_spec_, songs_table_, GetInnerQuery()); QStringList where_clauses(where_clauses_); if (!include_unavailable_) { where_clauses << QStringLiteral("unavailable = 0"); } if (!where_clauses.isEmpty()) sql += QStringLiteral(" WHERE ") + where_clauses.join(QStringLiteral(" AND ")); if (!order_by_.isEmpty()) sql += QStringLiteral(" ORDER BY ") + order_by_; if (limit_ != -1) sql += QStringLiteral(" LIMIT ") + QString::number(limit_); sql.replace(QStringLiteral("%songs_table"), songs_table_); if (!QSqlQuery::prepare(sql)) return false; // Bind values for (const QVariant &value : bound_values_) { QSqlQuery::addBindValue(value); } return QSqlQuery::exec(); } bool CollectionQuery::Next() { return QSqlQuery::next(); } QVariant CollectionQuery::Value(const int column) const { return QSqlQuery::value(column); }