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
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ILISTER_H
|
|
|
|
#define ILISTER_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <libimobiledevice/libimobiledevice.h>
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QtGlobal>
|
|
|
|
#include <QObject>
|
2018-02-27 18:06:05 +01:00
|
|
|
#include <QMutex>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QMap>
|
|
|
|
#include <QList>
|
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
#include "devicelister.h"
|
|
|
|
|
|
|
|
class iLister : public DeviceLister {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
iLister();
|
|
|
|
~iLister();
|
|
|
|
|
|
|
|
int priority() const { return 120; }
|
|
|
|
|
|
|
|
virtual QStringList DeviceUniqueIDs();
|
|
|
|
virtual QVariantList DeviceIcons(const QString &id);
|
|
|
|
virtual QString DeviceManufacturer(const QString &id);
|
|
|
|
virtual QString DeviceModel(const QString &id);
|
|
|
|
virtual quint64 DeviceCapacity(const QString &id);
|
|
|
|
virtual quint64 DeviceFreeSpace(const QString &id);
|
|
|
|
virtual QVariantMap DeviceHardwareInfo(const QString &id);
|
|
|
|
virtual QString MakeFriendlyName(const QString &id);
|
|
|
|
virtual QList<QUrl> MakeDeviceUrls(const QString &id);
|
|
|
|
virtual void UnmountDevice(const QString &id);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
virtual void UpdateDeviceFreeSpace(const QString &id);
|
|
|
|
|
|
|
|
private:
|
|
|
|
struct DeviceInfo {
|
|
|
|
DeviceInfo() : free_bytes(0), total_bytes(0) {}
|
|
|
|
|
|
|
|
QString uuid;
|
|
|
|
QString product_type;
|
|
|
|
quint64 free_bytes;
|
|
|
|
quint64 total_bytes;
|
|
|
|
QString name; // Name given to the iDevice by the user.
|
|
|
|
|
|
|
|
// Extra information.
|
|
|
|
QString colour;
|
|
|
|
QString imei;
|
|
|
|
QString hardware;
|
|
|
|
bool password_protected;
|
|
|
|
QString os_version;
|
|
|
|
QString timezone;
|
|
|
|
QString wifi_mac;
|
|
|
|
QString bt_mac;
|
|
|
|
};
|
|
|
|
|
|
|
|
virtual void Init();
|
|
|
|
|
|
|
|
static void EventCallback(const idevice_event_t *event, void *context);
|
|
|
|
|
|
|
|
void DeviceAddedCallback(const char *uuid);
|
|
|
|
void DeviceRemovedCallback(const char *uuid);
|
|
|
|
|
|
|
|
DeviceInfo ReadDeviceInfo(const char *uuid);
|
|
|
|
static QString UniqueId(const char *uuid);
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
T LockAndGetDeviceInfo(const QString &id, T DeviceInfo::*field);
|
|
|
|
|
|
|
|
private:
|
|
|
|
QMutex mutex_;
|
|
|
|
QMap<QString, DeviceInfo> devices_;
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
T iLister::LockAndGetDeviceInfo(const QString &id, T DeviceInfo::*field) {
|
|
|
|
QMutexLocker l(&mutex_);
|
|
|
|
if (!devices_.contains(id))
|
|
|
|
return T();
|
|
|
|
|
|
|
|
return devices_[id].*field;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|