2014-05-30 08:53:19 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2014-12-01 10:47:38 +00:00
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
Telegram Desktop 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.
|
|
|
|
|
|
|
|
It 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.
|
|
|
|
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2014-12-01 10:47:38 +00:00
|
|
|
Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
enum ToPrepareMediaType {
|
|
|
|
ToPrepareAuto,
|
|
|
|
ToPreparePhoto,
|
2015-05-29 18:52:43 +00:00
|
|
|
ToPrepareAudio,
|
2014-05-30 08:53:19 +00:00
|
|
|
ToPrepareVideo,
|
|
|
|
ToPrepareDocument,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ToPrepareMedia {
|
2015-05-29 18:52:43 +00:00
|
|
|
ToPrepareMedia(const QString &file, const PeerId &peer, ToPrepareMediaType t, bool ctrlShiftEnter, MsgId replyTo) : id(MTP::nonce<PhotoId>()), file(file), peer(peer), type(t), duration(0), ctrlShiftEnter(ctrlShiftEnter), replyTo(replyTo) {
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
2015-05-29 18:52:43 +00:00
|
|
|
ToPrepareMedia(const QImage &img, const PeerId &peer, ToPrepareMediaType t, bool ctrlShiftEnter, MsgId replyTo) : id(MTP::nonce<PhotoId>()), img(img), peer(peer), type(t), duration(0), ctrlShiftEnter(ctrlShiftEnter), replyTo(replyTo) {
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
2015-05-29 18:52:43 +00:00
|
|
|
ToPrepareMedia(const QByteArray &data, const PeerId &peer, ToPrepareMediaType t, bool ctrlShiftEnter, MsgId replyTo) : id(MTP::nonce<PhotoId>()), data(data), peer(peer), type(t), duration(0), ctrlShiftEnter(ctrlShiftEnter), replyTo(replyTo) {
|
|
|
|
}
|
|
|
|
ToPrepareMedia(const QByteArray &data, int32 duration, const PeerId &peer, ToPrepareMediaType t, bool ctrlShiftEnter, MsgId replyTo) : id(MTP::nonce<PhotoId>()), data(data), peer(peer), type(t), duration(duration), ctrlShiftEnter(ctrlShiftEnter), replyTo(replyTo) {
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
PhotoId id;
|
|
|
|
QString file;
|
|
|
|
QImage img;
|
|
|
|
QByteArray data;
|
|
|
|
PeerId peer;
|
|
|
|
ToPrepareMediaType type;
|
2015-05-29 18:52:43 +00:00
|
|
|
int32 duration;
|
2014-10-17 19:14:42 +00:00
|
|
|
bool ctrlShiftEnter;
|
2015-03-19 09:18:19 +00:00
|
|
|
MsgId replyTo;
|
2014-05-30 08:53:19 +00:00
|
|
|
};
|
|
|
|
typedef QList<ToPrepareMedia> ToPrepareMedias;
|
|
|
|
|
|
|
|
typedef QMap<int32, QByteArray> LocalFileParts;
|
|
|
|
struct ReadyLocalMedia {
|
2015-05-29 18:52:43 +00:00
|
|
|
ReadyLocalMedia(ToPrepareMediaType type, const QString &file, const QString &filename, int32 filesize, const QByteArray &data, const uint64 &id, const uint64 &thumbId, const QString &thumbExt, const PeerId &peer, const MTPPhoto &photo, const MTPAudio &audio, const PreparedPhotoThumbs &photoThumbs, const MTPDocument &document, const QByteArray &jpeg, bool ctrlShiftEnter, MsgId replyTo) :
|
2015-05-30 16:30:47 +00:00
|
|
|
replyTo(replyTo), type(type), file(file), filename(filename), filesize(filesize), data(data), thumbExt(thumbExt), id(id), thumbId(thumbId), peer(peer), photo(photo), document(document), audio(audio), photoThumbs(photoThumbs), ctrlShiftEnter(ctrlShiftEnter) {
|
2014-05-30 08:53:19 +00:00
|
|
|
if (!jpeg.isEmpty()) {
|
|
|
|
int32 size = jpeg.size();
|
|
|
|
for (int32 i = 0, part = 0; i < size; i += UploadPartSize, ++part) {
|
|
|
|
parts.insert(part, jpeg.mid(i, UploadPartSize));
|
|
|
|
}
|
|
|
|
jpeg_md5.resize(32);
|
|
|
|
hashMd5Hex(jpeg.constData(), jpeg.size(), jpeg_md5.data());
|
|
|
|
}
|
|
|
|
}
|
2015-03-19 09:18:19 +00:00
|
|
|
MsgId replyTo;
|
2014-05-30 08:53:19 +00:00
|
|
|
ToPrepareMediaType type;
|
|
|
|
QString file, filename;
|
|
|
|
int32 filesize;
|
|
|
|
QByteArray data;
|
2015-01-05 20:17:33 +00:00
|
|
|
QString thumbExt;
|
|
|
|
uint64 id, thumbId; // id always file-id of media, thumbId is file-id of thumb ( == id for photos)
|
2014-05-30 08:53:19 +00:00
|
|
|
PeerId peer;
|
|
|
|
|
|
|
|
MTPPhoto photo;
|
|
|
|
MTPDocument document;
|
2015-05-29 18:52:43 +00:00
|
|
|
MTPAudio audio;
|
2014-05-30 08:53:19 +00:00
|
|
|
PreparedPhotoThumbs photoThumbs;
|
|
|
|
LocalFileParts parts;
|
|
|
|
QByteArray jpeg_md5;
|
2014-10-17 19:14:42 +00:00
|
|
|
|
|
|
|
bool ctrlShiftEnter;
|
2014-05-30 08:53:19 +00:00
|
|
|
};
|
|
|
|
typedef QList<ReadyLocalMedia> ReadyLocalMedias;
|
|
|
|
|
|
|
|
class LocalImageLoader;
|
|
|
|
class LocalImageLoaderPrivate : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
LocalImageLoaderPrivate(int32 currentUser, LocalImageLoader *loader, QThread *thread);
|
|
|
|
~LocalImageLoaderPrivate();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void prepareImages();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
|
|
|
void imageReady();
|
|
|
|
void imageFailed(quint64 id);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
LocalImageLoader *loader;
|
|
|
|
int32 user;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class LocalImageLoader : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
LocalImageLoader(QObject *parent);
|
2015-03-19 09:18:19 +00:00
|
|
|
void append(const QStringList &files, const PeerId &peer, MsgId replyTo, ToPrepareMediaType t);
|
|
|
|
PhotoId append(const QByteArray &img, const PeerId &peer, MsgId replyTo, ToPrepareMediaType t);
|
2015-05-29 18:52:43 +00:00
|
|
|
AudioId append(const QByteArray &audio, int32 duration, const PeerId &peer, MsgId replyTo, ToPrepareMediaType t);
|
2015-03-19 09:18:19 +00:00
|
|
|
PhotoId append(const QImage &img, const PeerId &peer, MsgId replyTo, ToPrepareMediaType t, bool ctrlShiftEnter = false);
|
|
|
|
PhotoId append(const QString &file, const PeerId &peer, MsgId replyTo, ToPrepareMediaType t);
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
QMutex *readyMutex();
|
|
|
|
ReadyLocalMedias &readyList();
|
|
|
|
|
|
|
|
QMutex *toPrepareMutex();
|
|
|
|
ToPrepareMedias &toPrepareMedias();
|
|
|
|
|
|
|
|
~LocalImageLoader();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void onImageReady();
|
|
|
|
void onImageFailed(quint64 id);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
|
|
|
void imageReady();
|
|
|
|
void imageFailed(quint64 id);
|
|
|
|
void needToPrepare();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
ReadyLocalMedias ready;
|
|
|
|
ToPrepareMedias toPrepare;
|
|
|
|
QMutex readyLock, toPrepareLock;
|
|
|
|
QThread *thread;
|
|
|
|
LocalImageLoaderPrivate *priv;
|
|
|
|
|
|
|
|
};
|