/* * 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 #include #include #include #include #include #include #include #include #include #include #include #include #include "core/filesystemwatcherinterface.h" #include "core/logging.h" #include "core/timeconstants.h" #include "core/tagreaderclient.h" #include "core/taskmanager.h" #include "core/imageutils.h" #include "directory.h" #include "collectionbackend.h" #include "collectionwatcher.h" #include "playlistparsers/cueparser.h" #include "settings/collectionsettingspage.h" #ifdef HAVE_SONGFINGERPRINTING # include "engine/chromaprinter.h" #endif // This is defined by one of the windows headers that is included by taglib. #ifdef RemoveDirectory # undef RemoveDirectory #endif using namespace std::chrono_literals; namespace { static const char *kNoMediaFile = ".nomedia"; static const char *kNoMusicFile = ".nomusic"; } // namespace QStringList CollectionWatcher::sValidImages = QStringList() << "jpg" << "png" << "gif" << "jpeg"; CollectionWatcher::CollectionWatcher(Song::Source source, QObject *parent) : QObject(parent), source_(source), backend_(nullptr), task_manager_(nullptr), fs_watcher_(FileSystemWatcherInterface::Create(this)), original_thread_(nullptr), scan_on_startup_(true), monitor_(true), song_tracking_(true), mark_songs_unavailable_(true), expire_unavailable_songs_days_(60), overwrite_rating_(false), stop_requested_(false), rescan_in_progress_(false), rescan_timer_(new QTimer(this)), periodic_scan_timer_(new QTimer(this)), rescan_paused_(false), total_watches_(0), cue_parser_(new CueParser(backend_, this)), last_scan_time_(0) { original_thread_ = thread(); rescan_timer_->setInterval(2s); rescan_timer_->setSingleShot(true); periodic_scan_timer_->setInterval(86400 * kMsecPerSec); periodic_scan_timer_->setSingleShot(false); QStringList image_formats = ImageUtils::SupportedImageFormats(); for (const QString &format : image_formats) { if (!sValidImages.contains(format)) { sValidImages.append(format); } } ReloadSettings(); QObject::connect(rescan_timer_, &QTimer::timeout, this, &CollectionWatcher::RescanPathsNow); QObject::connect(periodic_scan_timer_, &QTimer::timeout, this, &CollectionWatcher::IncrementalScanCheck); } void CollectionWatcher::ExitAsync() { QMetaObject::invokeMethod(this, "Exit", Qt::QueuedConnection); } void CollectionWatcher::Exit() { Q_ASSERT(QThread::currentThread() == thread()); Stop(); if (backend_) backend_->Close(); moveToThread(original_thread_); emit ExitFinished(); } void CollectionWatcher::ReloadSettingsAsync() { QMetaObject::invokeMethod(this, "ReloadSettings", Qt::QueuedConnection); } void CollectionWatcher::ReloadSettings() { const bool was_monitoring_before = monitor_; QSettings s; s.beginGroup(CollectionSettingsPage::kSettingsGroup); scan_on_startup_ = s.value("startup_scan", true).toBool(); monitor_ = s.value("monitor", true).toBool(); QStringList filters = s.value("cover_art_patterns", QStringList() << "front" << "cover").toStringList(); song_tracking_ = s.value("song_tracking", false).toBool(); mark_songs_unavailable_ = song_tracking_ ? true : s.value("mark_songs_unavailable", true).toBool(); expire_unavailable_songs_days_ = s.value("expire_unavailable_songs", 60).toInt(); overwrite_rating_ = s.value("overwrite_rating", false).toBool(); s.endGroup(); best_image_filters_.clear(); for (const QString &filter : filters) { QString str = filter.trimmed(); if (!str.isEmpty()) best_image_filters_ << str; } if (!monitor_ && was_monitoring_before) { fs_watcher_->Clear(); } else if (monitor_ && !was_monitoring_before) { // Add all directories to all QFileSystemWatchers again for (const Directory &dir : std::as_const(watched_dirs_)) { SubdirectoryList subdirs = backend_->SubdirsInDirectory(dir.id); for (const Subdirectory &subdir : subdirs) { AddWatch(dir, subdir.path); } } } if (mark_songs_unavailable_ && !periodic_scan_timer_->isActive()) { periodic_scan_timer_->start(); } else if (!mark_songs_unavailable_ && periodic_scan_timer_->isActive()) { periodic_scan_timer_->stop(); } } CollectionWatcher::ScanTransaction::ScanTransaction(CollectionWatcher *watcher, const int dir, const bool incremental, const bool ignores_mtime, const bool mark_songs_unavailable) : progress_(0), progress_max_(0), dir_(dir), incremental_(incremental), ignores_mtime_(ignores_mtime), mark_songs_unavailable_(mark_songs_unavailable), expire_unavailable_songs_days_(60), watcher_(watcher), cached_songs_dirty_(true), cached_songs_missing_fingerprint_dirty_(true), known_subdirs_dirty_(true) { QString description; if (watcher_->device_name_.isEmpty()) { description = tr("Updating collection"); } else { description = tr("Updating %1").arg(watcher_->device_name_); } task_id_ = watcher_->task_manager_->StartTask(description); emit watcher_->ScanStarted(task_id_); } CollectionWatcher::ScanTransaction::~ScanTransaction() { // If we're stopping then don't commit the transaction if (!watcher_->stop_requested_) { CommitNewOrUpdatedSongs(); } watcher_->task_manager_->SetTaskFinished(task_id_); } void CollectionWatcher::ScanTransaction::AddToProgress(const quint64 n) { progress_ += n; watcher_->task_manager_->SetTaskProgress(task_id_, progress_, progress_max_); } void CollectionWatcher::ScanTransaction::AddToProgressMax(const quint64 n) { progress_max_ += n; watcher_->task_manager_->SetTaskProgress(task_id_, progress_, progress_max_); } void CollectionWatcher::ScanTransaction::CommitNewOrUpdatedSongs() { if (!deleted_songs.isEmpty()) { if (mark_songs_unavailable_) { emit watcher_->SongsUnavailable(deleted_songs); } else { emit watcher_->SongsDeleted(deleted_songs); } deleted_songs.clear(); } if (!new_songs.isEmpty()) { emit watcher_->NewOrUpdatedSongs(new_songs); new_songs.clear(); } if (!touched_songs.isEmpty()) { emit watcher_->SongsMTimeUpdated(touched_songs); touched_songs.clear(); } if (!readded_songs.isEmpty()) { emit watcher_->SongsReadded(readded_songs); readded_songs.clear(); } if (!new_subdirs.isEmpty()) { emit watcher_->SubdirsDiscovered(new_subdirs); } if (!touched_subdirs.isEmpty()) { emit watcher_->SubdirsMTimeUpdated(touched_subdirs); touched_subdirs.clear(); } for (const Subdirectory &subdir : deleted_subdirs) { if (watcher_->watched_dirs_.contains(dir_)) { watcher_->RemoveWatch(watcher_->watched_dirs_[dir_], subdir); } } deleted_subdirs.clear(); if (watcher_->monitor_) { // Watch the new subdirectories for (const Subdirectory &subdir : new_subdirs) { if (watcher_->watched_dirs_.contains(dir_)) { watcher_->AddWatch(watcher_->watched_dirs_[dir_], subdir.path); } } } new_subdirs.clear(); if (incremental_ || ignores_mtime_) { emit watcher_->UpdateLastSeen(dir_, expire_unavailable_songs_days_); } } SongList CollectionWatcher::ScanTransaction::FindSongsInSubdirectory(const QString &path) { if (cached_songs_dirty_) { const SongList songs = watcher_->backend_->FindSongsInDirectory(dir_); for (const Song &song : songs) { const QString p = song.url().toLocalFile().section('/', 0, -2); cached_songs_.insert(p, song); } cached_songs_dirty_ = false; } if (cached_songs_.contains(path)) { return cached_songs_.values(path); } else return SongList(); } bool CollectionWatcher::ScanTransaction::HasSongsWithMissingFingerprint(const QString &path) { if (cached_songs_missing_fingerprint_dirty_) { const SongList songs = watcher_->backend_->SongsWithMissingFingerprint(dir_); for (const Song &song : songs) { const QString p = song.url().toLocalFile().section('/', 0, -2); cached_songs_missing_fingerprint_.insert(p, song); } cached_songs_missing_fingerprint_dirty_ = false; } return cached_songs_missing_fingerprint_.contains(path); } void CollectionWatcher::ScanTransaction::SetKnownSubdirs(const SubdirectoryList &subdirs) { known_subdirs_ = subdirs; known_subdirs_dirty_ = false; } bool CollectionWatcher::ScanTransaction::HasSeenSubdir(const QString &path) { if (known_subdirs_dirty_) { SetKnownSubdirs(watcher_->backend_->SubdirsInDirectory(dir_)); } return std::any_of(known_subdirs_.begin(), known_subdirs_.end(), [path](const Subdirectory &subdir) { return subdir.path == path && subdir.mtime != 0; }); } SubdirectoryList CollectionWatcher::ScanTransaction::GetImmediateSubdirs(const QString &path) { if (known_subdirs_dirty_) { SetKnownSubdirs(watcher_->backend_->SubdirsInDirectory(dir_)); } SubdirectoryList ret; for (const Subdirectory &subdir : known_subdirs_) { if (subdir.path.left(subdir.path.lastIndexOf(QDir::separator())) == path && subdir.mtime != 0) { ret << subdir; } } return ret; } SubdirectoryList CollectionWatcher::ScanTransaction::GetAllSubdirs() { if (known_subdirs_dirty_) { SetKnownSubdirs(watcher_->backend_->SubdirsInDirectory(dir_)); } return known_subdirs_; } void CollectionWatcher::AddDirectory(const Directory &dir, const SubdirectoryList &subdirs) { watched_dirs_[dir.id] = dir; if (subdirs.isEmpty()) { // This is a new directory that we've never seen before. Scan it fully. ScanTransaction transaction(this, dir.id, false, false, mark_songs_unavailable_); const quint64 files_count = FilesCountForPath(&transaction, dir.path); transaction.SetKnownSubdirs(subdirs); transaction.AddToProgressMax(files_count); ScanSubdirectory(dir.path, Subdirectory(), files_count, &transaction); last_scan_time_ = QDateTime::currentDateTime().toSecsSinceEpoch(); } else { // We can do an incremental scan - looking at the mtimes of each subdirectory and only rescan if the directory has changed. ScanTransaction transaction(this, dir.id, true, false, mark_songs_unavailable_); QMap subdir_files_count; const quint64 files_count = FilesCountForSubdirs(&transaction, subdirs, subdir_files_count); transaction.SetKnownSubdirs(subdirs); transaction.AddToProgressMax(files_count); for (const Subdirectory &subdir : subdirs) { if (stop_requested_) break; if (scan_on_startup_) ScanSubdirectory(subdir.path, subdir, subdir_files_count[subdir.path], &transaction); if (monitor_) AddWatch(dir, subdir.path); } last_scan_time_ = QDateTime::currentDateTime().toSecsSinceEpoch(); } emit CompilationsNeedUpdating(); } void CollectionWatcher::ScanSubdirectory(const QString &path, const Subdirectory &subdir, const quint64 files_count, ScanTransaction *t, const bool force_noincremental) { QFileInfo path_info(path); QDir path_dir(path); // Do not scan symlinked dirs that are already in collection if (path_info.isSymLink()) { QString real_path = path_info.symLinkTarget(); for (const Directory &dir : std::as_const(watched_dirs_)) { if (real_path.startsWith(dir.path)) { return; } } } // Do not scan directories containing a .nomedia or .nomusic file if (path_dir.exists(kNoMediaFile) || path_dir.exists(kNoMusicFile)) { return; } bool songs_missing_fingerprint = false; #ifdef HAVE_SONGFINGERPRINTING if (song_tracking_) { songs_missing_fingerprint = t->HasSongsWithMissingFingerprint(path); } #endif if (!t->ignores_mtime() && !force_noincremental && t->is_incremental() && subdir.mtime == path_info.lastModified().toSecsSinceEpoch() && !songs_missing_fingerprint) { // The directory hasn't changed since last time t->AddToProgress(files_count); return; } QMap album_art; QStringList files_on_disk; SubdirectoryList my_new_subdirs; // If a directory is moved then only its parent gets a changed notification, so we need to look and see if any of our children don't exist any more. // If one has been removed, "rescan" it to get the deleted songs SubdirectoryList previous_subdirs = t->GetImmediateSubdirs(path); for (const Subdirectory &prev_subdir : previous_subdirs) { if (!QFile::exists(prev_subdir.path) && prev_subdir.path != path) { ScanSubdirectory(prev_subdir.path, prev_subdir, 0, t, true); } } // First we "quickly" get a list of the files in the directory that we think might be music. While we're here, we also look for new subdirectories and possible album artwork. QDirIterator it(path, QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoDotAndDotDot); while (it.hasNext()) { if (stop_requested_) return; QString child(it.next()); QFileInfo child_info(child); if (child_info.isDir()) { if (!child_info.isHidden() && !t->HasSeenSubdir(child)) { // We haven't seen this subdirectory before - add it to a list and later we'll tell the backend about it and scan it. Subdirectory new_subdir; new_subdir.directory_id = -1; new_subdir.path = child; new_subdir.mtime = child_info.lastModified().toSecsSinceEpoch(); my_new_subdirs << new_subdir; } t->AddToProgress(1); } else { QString ext_part(ExtensionPart(child)); QString dir_part(DirectoryPart(child)); if (sValidImages.contains(ext_part)) { album_art[dir_part] << child; t->AddToProgress(1); } else if (TagReaderClient::Instance()->IsMediaFileBlocking(child)) { files_on_disk << child; } else { t->AddToProgress(1); } } } if (stop_requested_) return; // Ask the database for a list of files in this directory SongList songs_in_db = t->FindSongsInSubdirectory(path); QSet cues_processed; // Now compare the list from the database with the list of files on disk QStringList files_on_disk_copy = files_on_disk; for (const QString &file : files_on_disk_copy) { if (stop_requested_) return; // Associated CUE QString new_cue = NoExtensionPart(file) + ".cue"; SongList matching_songs; if (FindSongsByPath(songs_in_db, file, &matching_songs)) { // Found matching song in DB by path. Song matching_song = matching_songs.first(); // The song is in the database and still on disk. // Check the mtime to see if it's been changed since it was added. QFileInfo file_info(file); if (!file_info.exists()) { // Partially fixes race condition - if file was removed between being added to the list and now. files_on_disk.removeAll(file); t->AddToProgress(1); continue; } // CUE sheet's path from collection (if any). qint64 matching_song_cue_mtime = static_cast(GetMtimeForCue(matching_song.cue_path())); // CUE sheet's path from this file (if any). qint64 new_cue_mtime = static_cast(GetMtimeForCue(new_cue)); bool cue_added = new_cue_mtime != 0 && !matching_song.has_cue(); bool cue_deleted = matching_song_cue_mtime == 0 && matching_song.has_cue(); // Watch out for CUE songs which have their mtime equal to qMax(media_file_mtime, cue_sheet_mtime) bool changed = (matching_song.mtime() != qMax(file_info.lastModified().toSecsSinceEpoch(), matching_song_cue_mtime)) || cue_deleted || cue_added; // Also want to look to see whether the album art has changed QUrl image = ImageForSong(file, album_art); if ((matching_song.art_automatic().isEmpty() && !image.isEmpty()) || (!matching_song.art_automatic().isEmpty() && !matching_song.has_embedded_cover() && !QFile::exists(matching_song.art_automatic().toLocalFile()))) { changed = true; } bool missing_fingerprint = false; #ifdef HAVE_SONGFINGERPRINTING if (song_tracking_ && matching_song.fingerprint().isEmpty()) { missing_fingerprint = true; } #endif if (changed) { qLog(Debug) << file << "has changed."; } else if (missing_fingerprint) { qLog(Debug) << file << "is missing fingerprint."; } // The song's changed or missing fingerprint - create fingerprint and reread the metadata from file. if (t->ignores_mtime() || changed || missing_fingerprint) { QString fingerprint; #ifdef HAVE_SONGFINGERPRINTING if (song_tracking_) { Chromaprinter chromaprinter(file); fingerprint = chromaprinter.CreateFingerprint(); if (fingerprint.isEmpty()) { fingerprint = "NONE"; } } #endif if (!cue_deleted && (matching_song.has_cue() || cue_added)) { // If CUE associated. UpdateCueAssociatedSongs(file, path, fingerprint, new_cue, image, matching_songs, t); } else { // If no CUE or it's about to lose it. UpdateNonCueAssociatedSong(file, fingerprint, matching_songs, image, cue_deleted, t); } } // Nothing has changed - mark the song available without re-scanning else if (matching_song.is_unavailable()) { t->readded_songs << matching_songs; } } else { // Search the DB by fingerprint. QString fingerprint; #ifdef HAVE_SONGFINGERPRINTING if (song_tracking_) { Chromaprinter chromaprinter(file); fingerprint = chromaprinter.CreateFingerprint(); if (fingerprint.isEmpty()) { fingerprint = "NONE"; } } #endif if (song_tracking_ && !fingerprint.isEmpty() && fingerprint != "NONE" && FindSongsByFingerprint(file, fingerprint, &matching_songs)) { // The song is in the database and still on disk. // Check the mtime to see if it's been changed since it was added. QFileInfo file_info(file); if (!file_info.exists()) { // Partially fixes race condition - if file was removed between being added to the list and now. files_on_disk.removeAll(file); t->AddToProgress(1); continue; } // Make sure the songs aren't deleted, as they still exist elsewhere with a different fingerprint. bool matching_songs_has_cue = false; for (const Song &matching_song : matching_songs) { QString matching_filename = matching_song.url().toLocalFile(); if (!t->files_changed_path_.contains(matching_filename)) { t->files_changed_path_ << matching_filename; qLog(Debug) << matching_filename << "has changed path to" << file; } if (t->deleted_songs.contains(matching_song)) { t->deleted_songs.removeAll(matching_song); } if (matching_song.has_cue()) { matching_songs_has_cue = true; } } // CUE sheet's path from this file (if any). const qint64 new_cue_mtime = static_cast(GetMtimeForCue(new_cue)); const bool cue_deleted = new_cue_mtime == 0 && matching_songs_has_cue; const bool cue_added = new_cue_mtime != 0 && !matching_songs_has_cue; // Get new album art QUrl image = ImageForSong(file, album_art); if (!cue_deleted && (matching_songs_has_cue || cue_added)) { // CUE associated. UpdateCueAssociatedSongs(file, path, fingerprint, new_cue, image, matching_songs, t); } else { // If no CUE or it's about to lose it. UpdateNonCueAssociatedSong(file, fingerprint, matching_songs, image, cue_deleted, t); } } else { // The song is on disk but not in the DB SongList songs = ScanNewFile(file, path, fingerprint, new_cue, &cues_processed); if (songs.isEmpty()) { t->AddToProgress(1); continue; } qLog(Debug) << file << "is new."; // Choose an image for the song(s) QUrl image = ImageForSong(file, album_art); for (Song song : songs) { song.set_directory_id(t->dir()); if (song.art_automatic().isEmpty()) song.set_art_automatic(image); t->new_songs << song; } } } t->AddToProgress(1); } // Look for deleted songs for (const Song &song : songs_in_db) { QString file = song.url().toLocalFile(); if (!song.is_unavailable() && !files_on_disk.contains(file) && !t->files_changed_path_.contains(file)) { qLog(Debug) << "Song deleted from disk:" << file; t->deleted_songs << song; } } // Add this subdir to the new or touched list Subdirectory updated_subdir; updated_subdir.directory_id = t->dir(); updated_subdir.mtime = path_info.exists() ? path_info.lastModified().toSecsSinceEpoch() : 0; updated_subdir.path = path; if (subdir.directory_id == -1) { t->new_subdirs << updated_subdir; } else { t->touched_subdirs << updated_subdir; } if (updated_subdir.mtime == 0) { // Subdirectory deleted, mark it for removal from the watcher. t->deleted_subdirs << updated_subdir; } // Recurse into the new subdirs that we found for (const Subdirectory &my_new_subdir : my_new_subdirs) { if (stop_requested_) return; ScanSubdirectory(my_new_subdir.path, my_new_subdir, 0, t, true); } } void CollectionWatcher::UpdateCueAssociatedSongs(const QString &file, const QString &path, const QString &fingerprint, const QString &matching_cue, const QUrl &image, const SongList &old_cue_songs, ScanTransaction *t) { QHash sections_map; for (const Song &song : old_cue_songs) { sections_map.insert(song.beginning_nanosec(), song); } // Load new CUE songs QFile cue_file(matching_cue); if (!cue_file.exists()) return; if (!cue_file.open(QIODevice::ReadOnly)) { qLog(Error) << "Could not open CUE file" << matching_cue << "for reading:" << cue_file.errorString(); return; } const SongList songs = cue_parser_->Load(&cue_file, matching_cue, path, false); cue_file.close(); // Update every song that's in the CUE and collection QSet used_ids; for (Song new_cue_song : songs) { new_cue_song.set_source(source_); new_cue_song.set_directory_id(t->dir()); new_cue_song.set_fingerprint(fingerprint); if (sections_map.contains(new_cue_song.beginning_nanosec())) { // Changed section const Song matching_cue_song = sections_map[new_cue_song.beginning_nanosec()]; new_cue_song.set_id(matching_cue_song.id()); if (!new_cue_song.has_embedded_cover()) new_cue_song.set_art_automatic(image); new_cue_song.MergeUserSetData(matching_cue_song, true); AddChangedSong(file, matching_cue_song, new_cue_song, t); used_ids.insert(matching_cue_song.id()); } else { // A new section t->new_songs << new_cue_song; } } // Sections that are now missing for (const Song &old_cue : old_cue_songs) { if (!used_ids.contains(old_cue.id())) { t->deleted_songs << old_cue; } } } void CollectionWatcher::UpdateNonCueAssociatedSong(const QString &file, const QString &fingerprint, const SongList &matching_songs, const QUrl &image, const bool cue_deleted, ScanTransaction *t) { // If a CUE got deleted, we turn it's first section into the new 'raw' (cueless) song and we just remove the rest of the sections from the collection const Song &matching_song = matching_songs.first(); if (cue_deleted) { for (const Song &song : matching_songs) { if (!song.IsMetadataAndMoreEqual(matching_song)) { t->deleted_songs << song; } } } Song song_on_disk(source_); TagReaderClient::Instance()->ReadFileBlocking(file, &song_on_disk); if (song_on_disk.is_valid()) { song_on_disk.set_source(source_); song_on_disk.set_directory_id(t->dir()); song_on_disk.set_id(matching_song.id()); song_on_disk.set_fingerprint(fingerprint); if (!song_on_disk.has_embedded_cover()) song_on_disk.set_art_automatic(image); song_on_disk.MergeUserSetData(matching_song, !overwrite_rating_); AddChangedSong(file, matching_song, song_on_disk, t); } } SongList CollectionWatcher::ScanNewFile(const QString &file, const QString &path, const QString &fingerprint, const QString &matching_cue, QSet *cues_processed) { SongList songs; quint64 matching_cue_mtime = GetMtimeForCue(matching_cue); if (matching_cue_mtime != 0) { // If it's a CUE - create virtual tracks // Don't process the same CUE many times if (cues_processed->contains(matching_cue)) return songs; QFile cue_file(matching_cue); if (!cue_file.exists()) return songs; if (!cue_file.open(QIODevice::ReadOnly)) { qLog(Error) << "Could not open CUE file" << matching_cue << "for reading:" << cue_file.errorString(); return songs; } // Ignore FILEs pointing to other media files. // Also, watch out for incorrect media files. // Playlist parser for CUEs considers every entry in sheet valid and we don't want invalid media getting into collection! QString file_nfd = file.normalized(QString::NormalizationForm_D); SongList cue_congs = cue_parser_->Load(&cue_file, matching_cue, path, false); cue_file.close(); songs.reserve(cue_congs.count()); for (Song &cue_song : cue_congs) { cue_song.set_source(source_); cue_song.set_fingerprint(fingerprint); if (cue_song.url().toLocalFile().normalized(QString::NormalizationForm_D) == file_nfd) { songs << cue_song; } } if (!songs.isEmpty()) { *cues_processed << matching_cue; } } else { // It's a normal media file Song song(source_); TagReaderClient::Instance()->ReadFileBlocking(file, &song); if (song.is_valid()) { song.set_source(source_); song.set_fingerprint(fingerprint); songs << song; } } return songs; } void CollectionWatcher::AddChangedSong(const QString &file, const Song &matching_song, const Song &new_song, ScanTransaction *t) { if (matching_song.is_unavailable()) { qLog(Debug) << file << "unavailable song restored."; t->new_songs << new_song; } else if (!matching_song.IsMetadataEqual(new_song)) { qLog(Debug) << file << "metadata changed."; t->new_songs << new_song; } else if (matching_song.fingerprint() != new_song.fingerprint()) { qLog(Debug) << file << "fingerprint changed."; t->new_songs << new_song; } else if (matching_song.art_automatic() != new_song.art_automatic() || matching_song.art_manual() != new_song.art_manual()) { qLog(Debug) << file << "art changed."; t->new_songs << new_song; } else if (matching_song.mtime() != new_song.mtime()) { qLog(Debug) << file << "mtime changed."; t->touched_songs << new_song; } else { qLog(Debug) << file << "unchanged."; t->touched_songs << new_song; } } quint64 CollectionWatcher::GetMtimeForCue(const QString &cue_path) { if (cue_path.isEmpty()) { return 0; } const QFileInfo file_info(cue_path); if (!file_info.exists()) { return 0; } const QDateTime cue_last_modified = file_info.lastModified(); return cue_last_modified.isValid() ? cue_last_modified.toSecsSinceEpoch() : 0; } void CollectionWatcher::AddWatch(const Directory &dir, const QString &path) { if (!QFile::exists(path)) return; QObject::connect(fs_watcher_, &FileSystemWatcherInterface::PathChanged, this, &CollectionWatcher::DirectoryChanged, Qt::UniqueConnection); fs_watcher_->AddPath(path); subdir_mapping_[path] = dir; } void CollectionWatcher::RemoveWatch(const Directory &dir, const Subdirectory &subdir) { QStringList subdir_paths = subdir_mapping_.keys(dir); for (const QString &subdir_path : subdir_paths) { if (subdir_path != subdir.path) continue; fs_watcher_->RemovePath(subdir_path); subdir_mapping_.remove(subdir_path); break; } } void CollectionWatcher::RemoveDirectory(const Directory &dir) { rescan_queue_.remove(dir.id); watched_dirs_.remove(dir.id); // Stop watching the directory's subdirectories QStringList subdir_paths = subdir_mapping_.keys(dir); for (const QString &subdir_path : subdir_paths) { fs_watcher_->RemovePath(subdir_path); subdir_mapping_.remove(subdir_path); } } bool CollectionWatcher::FindSongsByPath(const SongList &songs, const QString &path, SongList *out) { for (const Song &song : songs) { if (song.url().toLocalFile() == path) { *out << song; } } return !out->isEmpty(); } bool CollectionWatcher::FindSongsByFingerprint(const QString &file, const QString &fingerprint, SongList *out) { SongList songs = backend_->GetSongsByFingerprint(fingerprint); for (const Song &song : songs) { QString filename = song.url().toLocalFile(); QFileInfo info(filename); // Allow mulitiple songs in different directories with the same fingerprint. // Only use the matching song by fingerprint if it doesn't already exist in a different path. if (file == filename || !info.exists()) { *out << song; } } return !out->isEmpty(); } bool CollectionWatcher::FindSongsByFingerprint(const QString &file, const SongList &songs, const QString &fingerprint, SongList *out) { for (const Song &song : songs) { QString filename = song.url().toLocalFile(); if (song.fingerprint() == fingerprint && (file == filename || !QFileInfo::exists(filename))) { *out << song; return true; } } return !out->isEmpty(); } void CollectionWatcher::DirectoryChanged(const QString &subdir) { // Find what dir it was in QHash::const_iterator it = subdir_mapping_.constFind(subdir); if (it == subdir_mapping_.constEnd()) { return; } Directory dir = *it; qLog(Debug) << "Subdir" << subdir << "changed under directory" << dir.path << "id" << dir.id; // Queue the subdir for rescanning if (!rescan_queue_[dir.id].contains(subdir)) rescan_queue_[dir.id] << subdir; if (!rescan_paused_) rescan_timer_->start(); } void CollectionWatcher::RescanPathsNow() { QList dirs = rescan_queue_.keys(); for (const int dir : dirs) { if (stop_requested_) break; ScanTransaction transaction(this, dir, false, false, mark_songs_unavailable_); QMap subdir_files_count; for (const QString &path : rescan_queue_[dir]) { quint64 files_count = FilesCountForPath(&transaction, path); subdir_files_count[path] = files_count; transaction.AddToProgressMax(files_count); } for (const QString &path : rescan_queue_[dir]) { if (stop_requested_) break; Subdirectory subdir; subdir.directory_id = dir; subdir.mtime = 0; subdir.path = path; ScanSubdirectory(path, subdir, subdir_files_count[path], &transaction); } } rescan_queue_.clear(); emit CompilationsNeedUpdating(); } QString CollectionWatcher::PickBestImage(const QStringList &images) { // This is used when there is more than one image in a directory. // Pick the biggest image that matches the most important filter QStringList filtered; for (const QString &filter_text : best_image_filters_) { // The images in the images list are represented by a full path, so we need to isolate just the filename for (const QString &image : images) { QFileInfo file_info(image); QString filename(file_info.fileName()); if (filename.contains(filter_text, Qt::CaseInsensitive)) filtered << image; } // We assume the filters are give in the order best to worst, so if we've got a result, we go with it. // Otherwise we might start capturing more generic rules if (!filtered.isEmpty()) break; } if (filtered.isEmpty()) { // The filter was too restrictive, just use the original list filtered = images; } int biggest_size = 0; QString biggest_path; for (const QString &path : filtered) { if (stop_requested_) break; QImage image(path); if (image.isNull()) continue; int size = image.width() * image.height(); if (size > biggest_size) { biggest_size = size; biggest_path = path; } } return biggest_path; } QUrl CollectionWatcher::ImageForSong(const QString &path, QMap &album_art) { QString dir(DirectoryPart(path)); if (album_art.contains(dir)) { if (album_art[dir].count() == 1) { return QUrl::fromLocalFile(album_art[dir][0]); } else { QString best_image = PickBestImage(album_art[dir]); album_art[dir] = QStringList() << best_image; return QUrl::fromLocalFile(best_image); } } return QUrl(); } void CollectionWatcher::SetRescanPausedAsync(bool pause) { QMetaObject::invokeMethod(this, "SetRescanPaused", Qt::QueuedConnection, Q_ARG(bool, pause)); } void CollectionWatcher::SetRescanPaused(bool pause) { rescan_paused_ = pause; if (!rescan_paused_ && !rescan_queue_.isEmpty()) RescanPathsNow(); } void CollectionWatcher::IncrementalScanAsync() { QMetaObject::invokeMethod(this, "IncrementalScanNow", Qt::QueuedConnection); } void CollectionWatcher::FullScanAsync() { QMetaObject::invokeMethod(this, "FullScanNow", Qt::QueuedConnection); } void CollectionWatcher::RescanTracksAsync(const SongList &songs) { // Is List thread safe? if not, this may crash. song_rescan_queue_.append(songs); // Call only if it's not already running if (!rescan_in_progress_) { QMetaObject::invokeMethod(this, "RescanTracksNow", Qt::QueuedConnection); } } void CollectionWatcher::IncrementalScanCheck() { qint64 duration = QDateTime::currentDateTime().toSecsSinceEpoch() - last_scan_time_; if (duration >= 86400) { qLog(Debug) << "Performing periodic incremental scan."; IncrementalScanNow(); } } void CollectionWatcher::IncrementalScanNow() { PerformScan(true, false); } void CollectionWatcher::FullScanNow() { PerformScan(false, true); } void CollectionWatcher::RescanTracksNow() { Q_ASSERT(!rescan_in_progress_); stop_requested_ = false; // Currently we are too stupid to rescan one file at a time, so we'll just scan the full directories QStringList scanned_dirs; // To avoid double scans while (!song_rescan_queue_.isEmpty()) { if (stop_requested_) break; Song song = song_rescan_queue_.takeFirst(); QString songdir = song.url().toLocalFile().section('/', 0, -2); if (!scanned_dirs.contains(songdir)) { qLog(Debug) << "Song" << song.title() << "dir id" << song.directory_id() << "dir" << songdir; ScanTransaction transaction(this, song.directory_id(), false, false, mark_songs_unavailable_); quint64 files_count = FilesCountForPath(&transaction, songdir); ScanSubdirectory(songdir, Subdirectory(), files_count, &transaction); scanned_dirs << songdir; emit CompilationsNeedUpdating(); } else { qLog(Debug) << "Directory" << songdir << "already scanned - skipping."; } } Q_ASSERT(song_rescan_queue_.isEmpty()); rescan_in_progress_ = false; } void CollectionWatcher::PerformScan(const bool incremental, const bool ignore_mtimes) { stop_requested_ = false; for (const Directory &dir : std::as_const(watched_dirs_)) { if (stop_requested_) break; ScanTransaction transaction(this, dir.id, incremental, ignore_mtimes, mark_songs_unavailable_); SubdirectoryList subdirs(transaction.GetAllSubdirs()); if (subdirs.isEmpty()) { qLog(Debug) << "Collection directory wasn't in subdir list."; Subdirectory subdir; subdir.path = dir.path; subdir.directory_id = dir.id; subdirs << subdir; } QMap subdir_files_count; quint64 files_count = FilesCountForSubdirs(&transaction, subdirs, subdir_files_count); transaction.AddToProgressMax(files_count); for (const Subdirectory &subdir : subdirs) { if (stop_requested_) break; ScanSubdirectory(subdir.path, subdir, subdir_files_count[subdir.path], &transaction); } } last_scan_time_ = QDateTime::currentDateTime().toSecsSinceEpoch(); emit CompilationsNeedUpdating(); } quint64 CollectionWatcher::FilesCountForPath(ScanTransaction *t, const QString &path) { quint64 i = 0; QDirIterator it(path, QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoDotAndDotDot); while (it.hasNext()) { if (stop_requested_) break; QString child = it.next(); QFileInfo path_info(child); if (path_info.isDir()) { if (path_info.exists(kNoMediaFile) || path_info.exists(kNoMusicFile)) { continue; } if (path_info.isSymLink()) { QString real_path = path_info.symLinkTarget(); for (const Directory &dir : std::as_const(watched_dirs_)) { if (real_path.startsWith(dir.path)) { continue; } } } if (!t->HasSeenSubdir(child) && !path_info.isHidden()) { // We haven't seen this subdirectory before, so we need to include the file count for this directory too. i += FilesCountForPath(t, child); } } ++i; } return i; } quint64 CollectionWatcher::FilesCountForSubdirs(ScanTransaction *t, const SubdirectoryList &subdirs, QMap &subdir_files_count) { quint64 i = 0; for (const Subdirectory &subdir : subdirs) { if (stop_requested_) break; const quint64 files_count = FilesCountForPath(t, subdir.path); subdir_files_count[subdir.path] = files_count; i += files_count; } return i; }