/* * Copyright (C) 2013 Emeric Poupon * * This file is part of LMS. * * LMS 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. * * LMS 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 LMS. If not, see . */ #pragma once #include #include #include #include #include #include #include #include #include "services/database/Types.hpp" #include "services/database/ScanSettings.hpp" #include "services/database/Session.hpp" #include "metadata/IParser.hpp" #include "services/scanner/IScannerService.hpp" #include "utils/Path.hpp" class UUID; namespace Recommendation { class IRecommendationService; } namespace Scanner { class ScannerService : public IScannerService { public: ScannerService(Database::Db& db, Recommendation::IRecommendationService& recommendationService); ~ScannerService(); ScannerService(const ScannerService&) = delete; ScannerService(ScannerService&&) = delete; ScannerService& operator=(const ScannerService&) = delete; ScannerService& operator=(ScannerService&&) = delete; void requestReload() override; void requestImmediateScan(bool force) override; Status getStatus() const override; Events& getEvents() override { return _events; } private: void start(); void stop(); // Job handling void scheduleNextScan(); void scheduleScan(bool force, const Wt::WDateTime& dateTime = {}); void abortScan(); // Update database (scheduled callback) void scan(bool force); void scanMediaDirectory( const std::filesystem::path& mediaDirectory, bool forceScan, ScanStats& stats); // Helpers void refreshScanSettings(); void countAllFiles(ScanStats& stats); void removeMissingTracks(ScanStats& stats); void removeOrphanEntries(); void checkDuplicatedAudioFiles(ScanStats& stats); void scanAudioFile(const std::filesystem::path& file, bool forceScan, ScanStats& stats); void notifyInProgressIfNeeded(const ScanStepStats& stats); void notifyInProgress(const ScanStepStats& stats); void reloadSimilarityEngine(ScanStats& stats); Recommendation::IRecommendationService& _recommendationService; std::mutex _controlMutex; std::atomic _abortScan {}; Wt::WIOService _ioService; boost::asio::system_timer _scheduleTimer {_ioService}; const bool _skipDuplicateRecordingMBID {}; Events _events; std::chrono::system_clock::time_point _lastScanInProgressEmit {}; Database::Session _dbSession; std::unique_ptr _metadataParser; mutable std::shared_mutex _statusMutex; State _curState {State::NotScheduled}; std::optional _lastCompleteScanStats; std::optional _currentScanStepStats; Wt::WDateTime _nextScheduledScan; // Current scan settings std::size_t _scanVersion {}; Wt::WTime _startTime; Database::ScanSettings::UpdatePeriod _updatePeriod {Database::ScanSettings::UpdatePeriod::Never}; std::vector _fileExtensions; std::filesystem::path _mediaDirectory; Database::ScanSettings::RecommendationEngineType _recommendationServiceType; }; } // Scanner