/* * Strawberry Music Player * Copyright 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 . * */ #ifndef RADIOSERVICES_H #define RADIOSERVICES_H #include #include #include "includes/shared_ptr.h" #include "core/song.h" #include "radiochannel.h" class QSortFilterProxyModel; class TaskManager; class Database; class NetworkAccessManager; class AlbumCoverLoader; class RadioBackend; class RadioModel; class RadioService; class RadioServices : public QObject { Q_OBJECT public: explicit RadioServices(const SharedPtr task_manager, const SharedPtr network, const SharedPtr database, const SharedPtr albumcover_loader, QObject *parent = nullptr); void AddService(RadioService *service); void RemoveService(RadioService *service); RadioService *ServiceBySource(const Song::Source source) const; template T *Service() { return static_cast(ServiceBySource(T::source)); } void ReloadSettings(); SharedPtr radio_backend() const { return backend_; } QSortFilterProxyModel *sort_model() const { return sort_model_; } private Q_SLOTS: void ServiceDeleted(); void GotChannelsFromBackend(const RadioChannelList &channels); void GotChannelsFromService(const RadioChannelList &channels); public Q_SLOTS: void GetChannels(); void RefreshChannels(); private: const SharedPtr network_; SharedPtr backend_; RadioModel *model_; QSortFilterProxyModel *sort_model_; QMap services_; bool channels_refresh_; }; #endif // RADIOSERVICES_H