2018-02-27 18:06:05 +01:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
|
|
|
* This file was part of Clementine.
|
|
|
|
* Copyright 2010, David Sansome <me@davidsansome.com>
|
|
|
|
*
|
|
|
|
* 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:39:44 +02:00
|
|
|
*
|
2018-02-27 18:06:05 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <memory>
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QObject>
|
2018-02-27 18:06:05 +01:00
|
|
|
#include <QDir>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QFile>
|
|
|
|
#include <QString>
|
2018-02-27 18:06:05 +01:00
|
|
|
#include <QtDebug>
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include "core/utilities.h"
|
|
|
|
#include "core/taskmanager.h"
|
|
|
|
#include "afcfile.h"
|
|
|
|
#include "afctransfer.h"
|
|
|
|
#include "imobiledeviceconnection.h"
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
AfcTransfer::AfcTransfer(const QString &uuid, const QString &local_destination, TaskManager *task_manager, std::shared_ptr<ConnectedDevice> device)
|
|
|
|
: QObject(nullptr), device_(device), task_manager_(task_manager), uuid_(uuid), local_destination_(local_destination) {
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
original_thread_ = thread();
|
|
|
|
|
|
|
|
important_directories_ << "/iTunes_Control/Artwork";
|
|
|
|
important_directories_ << "/iTunes_Control/Device";
|
|
|
|
important_directories_ << "/iTunes_Control/iTunes";
|
2018-05-01 00:41:33 +02:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
AfcTransfer::~AfcTransfer() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void AfcTransfer::CopyFromDevice() {
|
|
|
|
|
|
|
|
int task_id = 0;
|
|
|
|
if (task_manager_) {
|
|
|
|
task_id = task_manager_->StartTask(tr("Copying iPod database"));
|
|
|
|
emit TaskStarted(task_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Connect to the device
|
|
|
|
iMobileDeviceConnection c(uuid_);
|
|
|
|
|
|
|
|
// Copy directories. If one fails we stop.
|
|
|
|
bool success = true;
|
|
|
|
foreach (const QString &dir, important_directories_) {
|
|
|
|
if (!CopyDirFromDevice(&c, dir)) {
|
|
|
|
success = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (task_manager_) {
|
|
|
|
moveToThread(original_thread_);
|
|
|
|
task_manager_->SetTaskFinished(task_id);
|
|
|
|
emit CopyFinished(success);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AfcTransfer::CopyToDevice(iMobileDeviceConnection *connection) {
|
|
|
|
|
|
|
|
// Connect to the device
|
|
|
|
if (!connection)
|
|
|
|
connection = new iMobileDeviceConnection(uuid_);
|
|
|
|
|
|
|
|
foreach (const QString &dir, important_directories_)
|
|
|
|
if (!CopyDirToDevice(connection, dir))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AfcTransfer::CopyDirFromDevice(iMobileDeviceConnection *c, const QString &path) {
|
|
|
|
|
|
|
|
foreach (const QString &filename, c->ReadDirectory(path, QDir::Files | QDir::NoDotAndDotDot)) {
|
|
|
|
if (!CopyFileFromDevice(c, path + "/" + filename))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (const QString &dir, c->ReadDirectory(path, QDir::Dirs | QDir::NoDotAndDotDot)) {
|
|
|
|
if (!CopyDirFromDevice(c, path + "/" + dir))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AfcTransfer::CopyDirToDevice(iMobileDeviceConnection *c, const QString &path) {
|
|
|
|
|
|
|
|
QDir dir(local_destination_ + path);
|
|
|
|
|
|
|
|
if (!c->Exists(path)) {
|
|
|
|
c->MkDir(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (const QString &filename, dir.entryList(QDir::Files | QDir::NoDotAndDotDot)) {
|
|
|
|
if (!CopyFileToDevice(c, path + "/" + filename))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (const QString &dir, dir.entryList(QDir::Dirs | QDir::NoDotAndDotDot)) {
|
|
|
|
if (!CopyDirToDevice(c, path + "/" + dir))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AfcTransfer::CopyFileFromDevice(iMobileDeviceConnection *c, const QString &path) {
|
|
|
|
|
|
|
|
QString local_filename = local_destination_ + path;
|
|
|
|
QString local_dir = local_filename.section('/', 0, -2);
|
|
|
|
|
|
|
|
QDir d;
|
|
|
|
d.mkpath(local_dir);
|
|
|
|
|
|
|
|
QFile dest(local_filename);
|
|
|
|
AfcFile source(c, path);
|
|
|
|
|
|
|
|
return Utilities::Copy(&source, &dest);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AfcTransfer::CopyFileToDevice(iMobileDeviceConnection *c, const QString &path) {
|
|
|
|
|
|
|
|
QFile source(local_destination_ + path);
|
|
|
|
AfcFile dest(c, path);
|
|
|
|
|
|
|
|
return Utilities::Copy(&source, &dest);
|
|
|
|
|
|
|
|
}
|