1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
/*
This file is part of Android File Transfer For Linux.
Copyright (C) 2015-2020 Vladimir Menshakov
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License,
or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef AFTL_QT_COMMANDQUEUE_H
#define AFTL_QT_COMMANDQUEUE_H
#include <QObject>
#include <QQueue>
#include <QMap>
#include <QDebug>
#include <mtp/ptp/ObjectId.h>
#include <mtp/ptp/ObjectFormat.h>
#include <mtp/metadata/Library.h>
class MtpObjectsModel;
class CommandQueue;
namespace mtp
{
class Library;
DECLARE_PTR(Library);
}
struct Command
{
virtual ~Command() = default;
virtual void execute(CommandQueue &queue) = 0;
};
struct FinishQueue : public Command
{
mtp::ObjectId DirectoryId; //return id
FinishQueue(mtp::ObjectId id): DirectoryId(id) { }
virtual void execute(CommandQueue &queue);
};
struct FileCommand : public Command
{
QString Filename;
FileCommand(const QString &filename) : Filename(filename) { }
};
struct MakeDirectory : public FileCommand
{
MakeDirectory(const QString &filename) :
FileCommand(filename) { }
void execute(CommandQueue &queue);
};
struct UploadFile : public FileCommand
{
mtp::ObjectFormat Format;
UploadFile(const QString &filename, mtp::ObjectFormat format) : FileCommand(filename), Format(format) { }
void execute(CommandQueue &queue);
};
struct ImportFile : public FileCommand
{
ImportFile(const QString &filename) : FileCommand(filename) { }
void execute(CommandQueue &queue);
};
struct DownloadFile : public FileCommand
{
mtp::ObjectId ObjectId;
DownloadFile(const QString &filename, mtp::ObjectId objectId) : FileCommand(filename), ObjectId(objectId) { }
void execute(CommandQueue &queue);
};
struct LoadLibrary : public Command
{
void execute(CommandQueue &queue);
};
class CommandQueue: public QObject
{
Q_OBJECT
private:
MtpObjectsModel * _model;
qint64 _completedFilesSize;
QMap<QString, mtp::ObjectId> _directories;
std::map<QString, mtp::Library::AlbumPtr> _albums;
struct Cover
{
QString Path;
int Score;
};
std::map<QString, Cover> _covers;
mtp::LibraryPtr _library;
volatile bool _aborted;
public:
CommandQueue(MtpObjectsModel *model);
~CommandQueue();
MtpObjectsModel *model() const
{ return _model; }
mtp::LibraryPtr library() const;
void loadLibrary();
void createDirectory(const QString &path);
void uploadFile(const QString &file, mtp::ObjectFormat format);
void downloadFile(const QString &filename, mtp::ObjectId objectId);
void importFile(const QString &file);
public slots:
void onFileProgress(qint64, qint64);
void execute(Command *cmd);
void start(const QString &filename);
void finish(mtp::ObjectId directoryId);
void addProgress(qint64);
void abort();
signals:
void started(QString);
void progress(qint64 bytes);
void total(qint64 bytes);
void finished();
};
#endif // COMMANDQUEUE_H
|