2010-08-14 18:39:45 +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-14 18:39:45 +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 "mtpconnection.h"
|
2011-04-22 18:50:29 +02:00
|
|
|
#include "core/logging.h"
|
2010-08-14 18:39:45 +02:00
|
|
|
|
|
|
|
#include <QRegExp>
|
|
|
|
#include <QtDebug>
|
|
|
|
|
2010-09-02 23:20:27 +02:00
|
|
|
MtpConnection::MtpConnection(const QUrl& url)
|
2010-08-14 18:39:45 +02:00
|
|
|
: device_(NULL)
|
|
|
|
{
|
2010-09-02 23:20:27 +02:00
|
|
|
QString hostname = url.host();
|
2010-08-14 18:39:45 +02:00
|
|
|
// Parse the URL
|
|
|
|
QRegExp host_re("^usb-(\\d+)-(\\d+)$");
|
|
|
|
|
|
|
|
if (host_re.indexIn(hostname) == -1) {
|
2011-04-22 18:50:29 +02:00
|
|
|
qLog(Warning) << "Invalid MTP device:" << hostname;
|
2010-08-14 18:39:45 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const unsigned int bus_location = host_re.cap(1).toInt();
|
|
|
|
const unsigned int device_num = host_re.cap(2).toInt();
|
|
|
|
|
2010-09-02 23:20:27 +02:00
|
|
|
if (url.hasQueryItem("vendor")) {
|
|
|
|
LIBMTP_raw_device_t* raw_device = (LIBMTP_raw_device_t*)malloc(sizeof(LIBMTP_raw_device_t));
|
|
|
|
raw_device->device_entry.vendor = url.queryItemValue("vendor").toAscii().data();
|
|
|
|
raw_device->device_entry.product = url.queryItemValue("product").toAscii().data();
|
|
|
|
raw_device->device_entry.vendor_id = url.queryItemValue("vendor_id").toUShort();
|
|
|
|
raw_device->device_entry.product_id = url.queryItemValue("product_id").toUShort();
|
|
|
|
raw_device->device_entry.device_flags = url.queryItemValue("quirks").toUInt();
|
|
|
|
|
|
|
|
raw_device->bus_location = bus_location;
|
|
|
|
raw_device->devnum = device_num;
|
|
|
|
|
|
|
|
device_ = LIBMTP_Open_Raw_Device(raw_device);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-08-14 18:39:45 +02:00
|
|
|
// Get a list of devices from libmtp and figure out which one is ours
|
|
|
|
int count = 0;
|
|
|
|
LIBMTP_raw_device_t* raw_devices = NULL;
|
|
|
|
LIBMTP_error_number_t err = LIBMTP_Detect_Raw_Devices(&raw_devices, &count);
|
|
|
|
if (err != LIBMTP_ERROR_NONE) {
|
2011-04-22 18:50:29 +02:00
|
|
|
qLog(Warning) << "MTP error:" << err;
|
2010-08-14 18:39:45 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
LIBMTP_raw_device_t* raw_device = NULL;
|
|
|
|
for (int i=0 ; i<count ; ++i) {
|
|
|
|
if (raw_devices[i].bus_location == bus_location &&
|
|
|
|
raw_devices[i].devnum == device_num) {
|
|
|
|
raw_device = &raw_devices[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!raw_device) {
|
2011-04-22 18:50:29 +02:00
|
|
|
qLog(Warning) << "MTP device not found";
|
2010-08-14 18:39:45 +02:00
|
|
|
free(raw_devices);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Connect to the device
|
|
|
|
device_ = LIBMTP_Open_Raw_Device(raw_device);
|
|
|
|
|
|
|
|
free(raw_devices);
|
|
|
|
}
|
|
|
|
|
|
|
|
MtpConnection::~MtpConnection() {
|
|
|
|
if (device_)
|
|
|
|
LIBMTP_Release_Device(device_);
|
|
|
|
}
|