2018-08-09 18:10:03 +02:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
|
|
|
* This file was part of Clementine.
|
|
|
|
* Copyright 2010, David Sansome <me@davidsansome.com>
|
|
|
|
* Copyright 2018, Jonas Kvinge <jonas@jkvinge.net>
|
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QMap>
|
|
|
|
#include <QString>
|
|
|
|
#include <QtDebug>
|
|
|
|
|
|
|
|
#include "core/logging.h"
|
2018-10-23 23:25:02 +02:00
|
|
|
#include "internetservices.h"
|
2018-08-09 18:10:03 +02:00
|
|
|
#include "internetservice.h"
|
|
|
|
|
2018-10-23 23:25:02 +02:00
|
|
|
InternetServices::InternetServices(QObject *parent) : QObject(parent) {}
|
2019-07-22 20:53:05 +02:00
|
|
|
|
|
|
|
InternetServices::~InternetServices() {
|
|
|
|
|
|
|
|
while (!services_.isEmpty()) {
|
|
|
|
delete services_.take(services_.firstKey());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2018-08-09 18:10:03 +02:00
|
|
|
|
2018-10-23 23:25:02 +02:00
|
|
|
void InternetServices::AddService(InternetService *service) {
|
2018-08-09 18:10:03 +02:00
|
|
|
|
2018-10-23 23:25:02 +02:00
|
|
|
services_.insert(service->source(), service);
|
2018-08-09 18:10:03 +02:00
|
|
|
if (service->has_initial_load_settings()) service->InitialLoadSettings();
|
|
|
|
else service->ReloadSettings();
|
|
|
|
|
2018-10-23 23:25:02 +02:00
|
|
|
qLog(Debug) << "Added internet service" << service->name();
|
|
|
|
|
2018-08-09 18:10:03 +02:00
|
|
|
}
|
|
|
|
|
2018-10-23 23:25:02 +02:00
|
|
|
void InternetServices::RemoveService(InternetService *service) {
|
2018-08-09 18:10:03 +02:00
|
|
|
|
2018-10-23 23:25:02 +02:00
|
|
|
if (!services_.contains(service->source())) return;
|
|
|
|
services_.remove(service->source());
|
2021-01-26 16:48:04 +01:00
|
|
|
QObject::disconnect(service, nullptr, this, nullptr);
|
2018-08-09 18:10:03 +02:00
|
|
|
|
2019-07-22 20:53:05 +02:00
|
|
|
qLog(Debug) << "Removed internet service" << service->name();
|
2018-08-09 18:10:03 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-10-23 23:25:02 +02:00
|
|
|
InternetService *InternetServices::ServiceBySource(const Song::Source &source) {
|
2018-08-09 18:10:03 +02:00
|
|
|
|
2018-10-23 23:25:02 +02:00
|
|
|
if (services_.contains(source)) return services_.value(source);
|
2018-08-09 18:10:03 +02:00
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-10-23 23:25:02 +02:00
|
|
|
void InternetServices::ReloadSettings() {
|
|
|
|
for (InternetService *service : services_.values()) {
|
2018-08-09 18:10:03 +02:00
|
|
|
service->ReloadSettings();
|
|
|
|
}
|
|
|
|
}
|
2019-07-24 19:16:51 +02:00
|
|
|
|
|
|
|
void InternetServices::Exit() {
|
|
|
|
|
|
|
|
for (InternetService *service : services_.values()) {
|
|
|
|
wait_for_exit_ << service;
|
2021-01-26 16:48:04 +01:00
|
|
|
QObject::connect(service, &InternetService::ExitFinished, this, &InternetServices::ExitReceived);
|
2019-07-24 19:16:51 +02:00
|
|
|
service->Exit();
|
|
|
|
}
|
2019-12-28 03:35:07 +01:00
|
|
|
if (wait_for_exit_.isEmpty()) emit ExitFinished();
|
2019-07-24 19:16:51 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void InternetServices::ExitReceived() {
|
|
|
|
|
|
|
|
InternetService *service = qobject_cast<InternetService*>(sender());
|
|
|
|
wait_for_exit_.removeAll(service);
|
|
|
|
if (wait_for_exit_.isEmpty()) emit ExitFinished();
|
|
|
|
|
|
|
|
}
|