2010-08-01 16:13:27 +02:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-08-01 16:13:27 +02:00
|
|
|
|
|
|
|
Clementine 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.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "imobiledeviceconnection.h"
|
2011-04-22 18:50:29 +02:00
|
|
|
#include "core/logging.h"
|
2010-08-01 16:13:27 +02:00
|
|
|
|
|
|
|
#include <plist/plist.h>
|
2010-08-09 20:40:20 +02:00
|
|
|
|
2010-08-01 16:13:27 +02:00
|
|
|
#include <QCoreApplication>
|
|
|
|
#include <QtDebug>
|
|
|
|
|
|
|
|
iMobileDeviceConnection::iMobileDeviceConnection(const QString& uuid)
|
2010-08-14 13:16:11 +02:00
|
|
|
: device_(NULL), afc_(NULL), afc_port_(0) {
|
2010-08-01 16:13:27 +02:00
|
|
|
idevice_error_t err = idevice_new(&device_, uuid.toUtf8().constData());
|
|
|
|
if (err != IDEVICE_E_SUCCESS) {
|
2011-04-22 18:50:29 +02:00
|
|
|
qLog(Warning) << "idevice error:" << err;
|
2010-08-01 16:13:27 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-08-14 13:16:11 +02:00
|
|
|
lockdownd_client_t lockdown;
|
|
|
|
|
2010-09-20 23:03:31 +02:00
|
|
|
QByteArray label_ascii = QCoreApplication::applicationName().toAscii();
|
|
|
|
const char* label = label_ascii.constData();
|
2010-08-01 16:13:27 +02:00
|
|
|
lockdownd_error_t lockdown_err =
|
2010-08-14 13:16:11 +02:00
|
|
|
lockdownd_client_new_with_handshake(device_, &lockdown, label);
|
2010-08-01 16:13:27 +02:00
|
|
|
if (lockdown_err != LOCKDOWN_E_SUCCESS) {
|
2011-04-22 18:50:29 +02:00
|
|
|
qLog(Warning) << "lockdown error:" << lockdown_err;
|
2010-08-01 16:13:27 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-08-14 13:16:11 +02:00
|
|
|
lockdown_err = lockdownd_start_service(lockdown, "com.apple.afc", &afc_port_);
|
2010-08-01 16:13:27 +02:00
|
|
|
if (lockdown_err != LOCKDOWN_E_SUCCESS) {
|
2011-04-22 18:50:29 +02:00
|
|
|
qLog(Warning) << "lockdown error:" << lockdown_err;
|
2010-08-14 13:16:11 +02:00
|
|
|
lockdownd_client_free(lockdown);
|
2010-08-01 16:13:27 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
afc_error_t afc_err = afc_client_new(device_, afc_port_, &afc_);
|
|
|
|
if (afc_err != 0) {
|
2011-04-22 18:50:29 +02:00
|
|
|
qLog(Warning) << "afc error:" << afc_err;
|
2010-08-14 13:16:11 +02:00
|
|
|
lockdownd_client_free(lockdown);
|
2010-08-01 16:13:27 +02:00
|
|
|
return;
|
|
|
|
}
|
2010-08-14 13:16:11 +02:00
|
|
|
|
|
|
|
lockdownd_client_free(lockdown);
|
2010-08-01 16:13:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
iMobileDeviceConnection::~iMobileDeviceConnection() {
|
|
|
|
if (afc_) {
|
|
|
|
afc_client_free(afc_);
|
|
|
|
}
|
|
|
|
if (device_) {
|
|
|
|
idevice_free(device_);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-09 22:22:55 +02:00
|
|
|
template <typename T, typename F>
|
|
|
|
T GetPListValue(plist_t node, F f) {
|
|
|
|
T ret;
|
|
|
|
f(node, &ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-08-09 20:40:20 +02:00
|
|
|
QVariant iMobileDeviceConnection::GetProperty(const QString& property, const QString& domain) {
|
2010-08-14 13:16:11 +02:00
|
|
|
lockdownd_client_t lockdown;
|
2010-09-20 23:03:31 +02:00
|
|
|
QByteArray label_ascii = QCoreApplication::applicationName().toAscii();
|
|
|
|
const char* label = label_ascii.constData();
|
2010-08-14 13:16:11 +02:00
|
|
|
|
|
|
|
lockdownd_error_t lockdown_err =
|
|
|
|
lockdownd_client_new_with_handshake(device_, &lockdown, label);
|
|
|
|
if (lockdown_err != LOCKDOWN_E_SUCCESS) {
|
2011-04-22 18:50:29 +02:00
|
|
|
qLog(Warning) << "lockdown error:" << lockdown_err;
|
2010-08-14 13:16:11 +02:00
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
2010-08-01 16:13:27 +02:00
|
|
|
plist_t node = NULL;
|
2010-09-20 23:03:31 +02:00
|
|
|
QByteArray domain_ascii = domain.toAscii();
|
|
|
|
const char* d = domain_ascii.isEmpty() ? NULL : domain_ascii.constData();
|
|
|
|
//const char* d = domain.isEmpty() ? NULL : "com.apple.disk_usage";
|
|
|
|
lockdownd_get_value(lockdown, d, property.toAscii().constData(), &node);
|
2010-08-14 13:16:11 +02:00
|
|
|
lockdownd_client_free(lockdown);
|
2010-08-09 20:40:20 +02:00
|
|
|
|
2010-09-20 23:03:31 +02:00
|
|
|
if (!node) {
|
2011-04-22 18:50:29 +02:00
|
|
|
qLog(Warning) << "get_value failed" << property << domain;
|
2010-08-09 20:40:20 +02:00
|
|
|
return QVariant();
|
2010-09-20 23:03:31 +02:00
|
|
|
}
|
2010-08-09 20:40:20 +02:00
|
|
|
|
2010-08-09 22:22:55 +02:00
|
|
|
switch (plist_get_node_type(node)) {
|
2010-08-09 20:40:20 +02:00
|
|
|
case PLIST_BOOLEAN:
|
2010-08-09 22:22:55 +02:00
|
|
|
return bool(GetPListValue<quint8>(node, plist_get_bool_val));
|
2010-08-09 20:40:20 +02:00
|
|
|
|
|
|
|
case PLIST_UINT:
|
2010-08-09 22:22:55 +02:00
|
|
|
return QVariant::fromValue(GetPListValue<uint64_t>(node, plist_get_uint_val));
|
|
|
|
|
|
|
|
case PLIST_STRING: {
|
|
|
|
char* data = GetPListValue<char*>(node, plist_get_string_val);
|
|
|
|
QString ret = QString::fromUtf8(data);
|
|
|
|
free(data);
|
|
|
|
return ret;
|
|
|
|
}
|
2010-08-01 16:13:27 +02:00
|
|
|
|
2010-08-09 20:40:20 +02:00
|
|
|
default:
|
2011-04-22 18:50:29 +02:00
|
|
|
qLog(Warning) << "Unhandled PList type";
|
2010-08-09 20:40:20 +02:00
|
|
|
return QVariant();
|
2010-08-01 16:13:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList iMobileDeviceConnection::ReadDirectory(const QString& path,
|
|
|
|
QDir::Filters filters) {
|
|
|
|
char** list = NULL;
|
|
|
|
afc_error_t err = afc_read_directory(afc_, path.toUtf8().constData(), &list);
|
|
|
|
if (err != AFC_E_SUCCESS || !list) {
|
|
|
|
return QStringList();
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList ret;
|
|
|
|
for (char** p = list ; *p != NULL ; ++p) {
|
|
|
|
QString filename = QString::fromUtf8(*p);
|
|
|
|
free(*p);
|
|
|
|
|
|
|
|
if (filters == QDir::NoFilter)
|
|
|
|
ret << filename;
|
|
|
|
else {
|
|
|
|
if (filters & QDir::NoDotAndDotDot && (filename == "." || filename == ".."))
|
|
|
|
continue;
|
|
|
|
if (!(filters & QDir::Hidden) && filename.startsWith("."))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
QString filetype = GetFileInfo(path + "/" + filename, "st_ifmt");
|
|
|
|
if ((filetype == "S_IFREG" && (filters & QDir::Files)) ||
|
|
|
|
(filetype == "S_IFDIR" && (filters & QDir::Dirs)) ||
|
|
|
|
(filetype == "S_IFLNK" && (!(filters & QDir::NoSymLinks))))
|
|
|
|
ret << filename;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(list);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-08-29 01:37:10 +02:00
|
|
|
bool iMobileDeviceConnection::MkDir(const QString& path) {
|
|
|
|
afc_error_t err = afc_make_directory(afc_, path.toUtf8().constData());
|
|
|
|
return err == AFC_E_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2010-08-01 16:13:27 +02:00
|
|
|
QString iMobileDeviceConnection::GetFileInfo(const QString& path, const QString& key) {
|
|
|
|
QString ret;
|
|
|
|
char** infolist = NULL;
|
|
|
|
afc_error_t err = afc_get_file_info(afc_, path.toUtf8().constData(), &infolist);
|
|
|
|
if (err != AFC_E_SUCCESS || !infolist) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString last_key;
|
|
|
|
for (char** p = infolist ; *p != NULL ; ++p) {
|
|
|
|
if (last_key.isNull()) {
|
|
|
|
last_key = QString::fromUtf8(*p);
|
|
|
|
} else {
|
|
|
|
if (last_key == key)
|
|
|
|
ret = QString::fromUtf8(*p);
|
|
|
|
last_key = QString();
|
|
|
|
}
|
|
|
|
free(*p);
|
|
|
|
}
|
|
|
|
free(infolist);
|
|
|
|
return ret;
|
|
|
|
}
|
2010-08-08 19:41:06 +02:00
|
|
|
|
|
|
|
bool iMobileDeviceConnection::Exists(const QString& path) {
|
|
|
|
return !GetFileInfo(path, "st_ifmt").isNull();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString iMobileDeviceConnection::GetUnusedFilename(
|
|
|
|
Itdb_iTunesDB* itdb, const Song& metadata) {
|
|
|
|
// This function does the same as itdb_cp_get_dest_filename, except it
|
|
|
|
// accesses the device's filesystem through imobiledevice.
|
|
|
|
|
|
|
|
// Get the total number of F.. directories
|
|
|
|
int total_musicdirs = 0;
|
|
|
|
for ( ; ; ++total_musicdirs) {
|
|
|
|
QString dir;
|
|
|
|
dir.sprintf("/iTunes_Control/Music/F%02d", total_musicdirs);
|
|
|
|
|
|
|
|
if (!Exists(dir))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (total_musicdirs <= 0) {
|
2011-04-22 18:50:29 +02:00
|
|
|
qLog(Warning) << "No 'F..'' directories found on iPod";
|
2010-08-08 19:41:06 +02:00
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pick one at random
|
|
|
|
const int dir_num = qrand() % total_musicdirs;
|
|
|
|
QString dir;
|
|
|
|
dir.sprintf("/iTunes_Control/Music/F%02d", dir_num);
|
|
|
|
|
|
|
|
if (!Exists(dir)) {
|
2011-04-22 18:50:29 +02:00
|
|
|
qLog(Warning) << "Music directory doesn't exist:" << dir;
|
2010-08-08 19:41:06 +02:00
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use the same file extension as the original file, default to mp3.
|
|
|
|
QString extension = metadata.filename().section('.', -1, -1).toLower();
|
|
|
|
if (extension.isEmpty())
|
|
|
|
extension = "mp3";
|
|
|
|
|
|
|
|
// Loop until we find an unused filename.
|
|
|
|
// Use the same naming convention as libgpod, which is
|
|
|
|
// "libgpod" + 6-digit random number
|
|
|
|
static const int kRandMax = 999999;
|
|
|
|
QString filename;
|
|
|
|
forever {
|
|
|
|
filename.sprintf("libgpod%06d", qrand() % kRandMax);
|
|
|
|
filename += "." + extension;
|
|
|
|
|
|
|
|
if (!Exists(dir + "/" + filename))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return dir + "/" + filename;
|
|
|
|
}
|