strawberry-audio-player-win.../src/device/mtpdevice.cpp

299 lines
7.8 KiB
C++
Raw Normal View History

2018-02-27 18:06:05 +01:00
/*
* Strawberry Music Player
* This file was part of Clementine.
* Copyright 2010, David Sansome <me@davidsansome.com>
2021-03-20 21:14:47 +01:00
* Copyright 2019-2021, Jonas Kvinge <jonas@jkvinge.net>
2018-02-27 18:06:05 +01:00
*
* 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/>.
2018-08-09 18:10:03 +02:00
*
2018-02-27 18:06:05 +01:00
*/
#include "config.h"
#include <libmtp.h>
2020-06-14 23:54:18 +02:00
#include <cstdint>
#include <cstdlib>
2018-02-27 18:06:05 +01:00
#include <QThread>
#include <QMutex>
#include <QFile>
#include <QByteArray>
#include <QList>
#include <QString>
#include <QUrl>
2018-02-27 18:06:05 +01:00
#include "core/logging.h"
#include "core/shared_ptr.h"
#include "core/application.h"
#include "core/musicstorage.h"
2023-07-21 05:25:57 +02:00
#include "collection/collectionmodel.h"
#include "collection/collectionbackend.h"
#include "connecteddevice.h"
2018-02-27 18:06:05 +01:00
#include "mtpdevice.h"
#include "mtploader.h"
2019-09-07 23:50:36 +02:00
#include "mtpconnection.h"
class DeviceLister;
class DeviceManager;
2018-02-27 18:06:05 +01:00
2020-10-17 17:29:09 +02:00
bool MtpDevice::sInitializedLibMTP = false;
2018-02-27 18:06:05 +01:00
MtpDevice::MtpDevice(const QUrl &url, DeviceLister *lister, const QString &unique_id, SharedPtr<DeviceManager> manager, Application *app, const int database_id, const bool first_time, QObject *parent)
2021-07-11 07:40:57 +02:00
: ConnectedDevice(url, lister, unique_id, manager, app, database_id, first_time, parent),
loader_(nullptr),
loader_thread_(nullptr),
closing_(false) {
2018-02-27 18:06:05 +01:00
2020-10-17 17:29:09 +02:00
if (!sInitializedLibMTP) {
2018-02-27 18:06:05 +01:00
LIBMTP_Init();
2020-10-17 17:29:09 +02:00
sInitializedLibMTP = true;
2018-02-27 18:06:05 +01:00
}
}
2019-07-19 19:56:37 +02:00
MtpDevice::~MtpDevice() {
2019-07-19 19:56:37 +02:00
if (loader_) {
loader_thread_->exit();
loader_->deleteLater();
loader_ = nullptr;
db_busy_.unlock();
loader_thread_->deleteLater();
}
2019-07-19 19:56:37 +02:00
}
2018-02-27 18:06:05 +01:00
bool MtpDevice::Init() {
2018-02-27 18:06:05 +01:00
2024-04-09 23:20:26 +02:00
InitBackendDirectory(QStringLiteral("/"), first_time_, false);
model_->Init();
2018-02-27 18:06:05 +01:00
loader_ = new MtpLoader(url_, app_->task_manager(), backend_);
loader_thread_ = new QThread();
2018-02-27 18:06:05 +01:00
loader_->moveToThread(loader_thread_);
2021-01-26 16:48:04 +01:00
QObject::connect(loader_, &MtpLoader::Error, this, &MtpDevice::LoaderError);
QObject::connect(loader_, &MtpLoader::TaskStarted, this, &MtpDevice::TaskStarted);
QObject::connect(loader_, &MtpLoader::LoadFinished, this, &MtpDevice::LoadFinished);
QObject::connect(loader_thread_, &QThread::started, loader_, &MtpLoader::LoadDatabase);
2018-02-27 18:06:05 +01:00
return true;
}
void MtpDevice::ConnectAsync() {
2019-07-19 19:56:37 +02:00
db_busy_.lock();
loader_thread_->start();
2019-07-19 19:56:37 +02:00
}
void MtpDevice::Close() {
closing_ = true;
if (IsLoading()) {
loader_->Abort();
}
else {
ConnectedDevice::Close();
}
2018-02-27 18:06:05 +01:00
}
2021-06-12 20:53:23 +02:00
void MtpDevice::LoadFinished(const bool success, MtpConnection *connection) {
connection_.reset(connection);
2018-02-27 18:06:05 +01:00
2019-07-11 00:28:19 +02:00
loader_thread_->exit();
2018-02-27 18:06:05 +01:00
loader_->deleteLater();
loader_ = nullptr;
db_busy_.unlock();
if (closing_) {
ConnectedDevice::Close();
}
else {
2021-01-26 16:48:04 +01:00
emit DeviceConnectFinished(unique_id_, success);
}
2018-02-27 18:06:05 +01:00
}
2021-06-12 20:53:23 +02:00
void MtpDevice::LoaderError(const QString &message) {
2019-07-19 19:56:37 +02:00
app_->AddError(message);
}
2018-02-27 18:06:05 +01:00
bool MtpDevice::StartCopy(QList<Song::FileType> *supported_types) {
// Ensure only one "organize files" can be active at any one time
2018-02-27 18:06:05 +01:00
db_busy_.lock();
if (!connection_ || !connection_->is_valid()) return false;
2018-02-27 18:06:05 +01:00
// Did the caller want a list of supported types?
if (supported_types) {
if (!GetSupportedFiletypes(supported_types, connection_->device())) {
QString error_text;
FinishCopy(false, error_text);
2018-02-27 18:06:05 +01:00
return false;
}
}
return true;
}
static int ProgressCallback(uint64_t const sent, uint64_t const total, void const *const data) {
2018-02-27 18:06:05 +01:00
const MusicStorage::CopyJob *job = reinterpret_cast<const MusicStorage::CopyJob*>(data);
2021-10-30 02:21:29 +02:00
job->progress_(static_cast<float>(sent) / static_cast<float>(total));
2018-02-27 18:06:05 +01:00
return 0;
2018-02-27 18:06:05 +01:00
}
bool MtpDevice::CopyToStorage(const CopyJob &job, QString &error_text) {
2018-02-27 18:06:05 +01:00
if (!connection_ || !connection_->is_valid()) return false;
2018-02-27 18:06:05 +01:00
// Convert metadata
LIBMTP_track_t track;
job.metadata_.ToMTP(&track);
// Send the file
int ret = LIBMTP_Send_Track_From_File(connection_->device(), job.source_.toUtf8().constData(), &track, ProgressCallback, &job);
if (ret != 0) {
LIBMTP_error_struct *error = LIBMTP_Get_Errorstack(connection_->device());
if (error) {
error_text = QString::fromUtf8(error->error_text);
qLog(Error) << error_text;
LIBMTP_Clear_Errorstack(connection_->device());
}
return false;
}
2018-02-27 18:06:05 +01:00
// Add it to our CollectionModel
2023-02-18 14:09:27 +01:00
Song metadata_on_device(Song::Source::Device);
2018-02-27 18:06:05 +01:00
metadata_on_device.InitFromMTP(&track, url_.host());
metadata_on_device.set_directory_id(1);
2019-07-19 19:56:37 +02:00
metadata_on_device.set_artist(metadata_on_device.effective_albumartist());
2024-04-09 23:20:26 +02:00
metadata_on_device.set_albumartist(QLatin1String(""));
2018-02-27 18:06:05 +01:00
songs_to_add_ << metadata_on_device;
// Remove the original if requested
if (job.remove_original_) {
if (!QFile::remove(job.source_)) return false;
}
return true;
}
bool MtpDevice::FinishCopy(const bool success, QString &error_text) {
2018-02-27 18:06:05 +01:00
if (success) {
if (!songs_to_add_.isEmpty()) backend_->AddOrUpdateSongs(songs_to_add_);
if (!songs_to_remove_.isEmpty()) backend_->DeleteSongs(songs_to_remove_);
}
songs_to_add_.clear();
songs_to_remove_.clear();
// This is done in the organize thread so close the unique DB connection.
2019-07-25 17:56:28 +02:00
backend_->Close();
2018-02-27 18:06:05 +01:00
db_busy_.unlock();
return ConnectedDevice::FinishCopy(success, error_text);
2018-02-27 18:06:05 +01:00
}
void MtpDevice::StartDelete() { StartCopy(nullptr); }
bool MtpDevice::DeleteFromStorage(const DeleteJob &job) {
2021-06-22 14:02:37 +02:00
if (!connection_ || !connection_->is_valid()) return false;
2019-07-19 19:56:37 +02:00
2018-02-27 18:06:05 +01:00
// Extract the ID from the song's URL
QString filename = job.metadata_.url().path();
filename.remove(QLatin1Char('/'));
2018-02-27 18:06:05 +01:00
bool ok = false;
uint32_t id = filename.toUInt(&ok);
if (!ok) return false;
// Remove the file
int ret = LIBMTP_Delete_Object(connection_->device(), id);
if (ret != 0) return false;
// Remove it from our collection model
songs_to_remove_ << job.metadata_;
return true;
}
bool MtpDevice::FinishDelete(const bool success, QString &error_text) { return FinishCopy(success, error_text); }
2018-02-27 18:06:05 +01:00
bool MtpDevice::GetSupportedFiletypes(QList<Song::FileType> *ret) {
QMutexLocker l(&db_busy_);
MtpConnection connection(url_);
2019-07-19 19:56:37 +02:00
2018-02-27 18:06:05 +01:00
if (!connection.is_valid()) {
qLog(Warning) << "Error connecting to MTP device, couldn't get list of supported filetypes";
return false;
}
return GetSupportedFiletypes(ret, connection.device());
}
bool MtpDevice::GetSupportedFiletypes(QList<Song::FileType> *ret, LIBMTP_mtpdevice_t *device) {
uint16_t *list = nullptr;
uint16_t length = 0;
2021-08-23 21:21:08 +02:00
if (LIBMTP_Get_Supported_Filetypes(device, &list, &length) != 0 || !list || !length) {
2018-02-27 18:06:05 +01:00
return false;
2021-08-23 21:21:08 +02:00
}
2018-02-27 18:06:05 +01:00
for (int i = 0; i < length; ++i) {
2022-06-13 00:23:42 +02:00
switch (static_cast<LIBMTP_filetype_t>(list[i])) {
2023-02-18 14:09:27 +01:00
case LIBMTP_FILETYPE_WAV: *ret << Song::FileType::WAV; break;
2018-02-27 18:06:05 +01:00
case LIBMTP_FILETYPE_MP2:
2023-02-18 14:09:27 +01:00
case LIBMTP_FILETYPE_MP3: *ret << Song::FileType::MPEG; break;
case LIBMTP_FILETYPE_WMA: *ret << Song::FileType::ASF; break;
2018-02-27 18:06:05 +01:00
case LIBMTP_FILETYPE_MP4:
case LIBMTP_FILETYPE_M4A:
2023-02-18 14:09:27 +01:00
case LIBMTP_FILETYPE_AAC: *ret << Song::FileType::MP4; break;
2018-02-27 18:06:05 +01:00
case LIBMTP_FILETYPE_FLAC:
2023-02-18 14:09:27 +01:00
*ret << Song::FileType::FLAC;
*ret << Song::FileType::OggFlac;
2018-02-27 18:06:05 +01:00
break;
case LIBMTP_FILETYPE_OGG:
2023-02-18 14:09:27 +01:00
*ret << Song::FileType::OggVorbis;
*ret << Song::FileType::OggSpeex;
*ret << Song::FileType::OggFlac;
2018-02-27 18:06:05 +01:00
break;
default:
2022-06-13 00:23:42 +02:00
qLog(Error) << "Unknown MTP file format" << LIBMTP_Get_Filetype_Description(static_cast<LIBMTP_filetype_t>(list[i]));
2018-02-27 18:06:05 +01:00
break;
}
}
free(list);
return true;
}