Remove FilePathResolve::SaveFromData.

This commit is contained in:
John Preston 2020-04-09 17:02:01 +04:00
parent 33f4946242
commit 669b79588e
2 changed files with 57 additions and 48 deletions

View File

@ -337,10 +337,7 @@ void DocumentOpenClickHandler::Open(
} else { } else {
Core::App().showDocument(data, context); Core::App().showDocument(data, context);
} }
} else if (!location.isEmpty() } else if (data->saveFromDataSilent()) {
|| (data->loaded()
&& !data->filepath(
FilePathResolve::SaveFromDataSilent).isEmpty())) {
openFile(); openFile();
} else if (data->status == FileReady } else if (data->status == FileReady
|| data->status == FileDownloadFailed) { || data->status == FileDownloadFailed) {
@ -364,14 +361,12 @@ void DocumentSaveClickHandler::Save(
auto savename = QString(); auto savename = QString();
if (mode != Mode::ToCacheOrFile || !data->saveToCache()) { if (mode != Mode::ToCacheOrFile || !data->saveToCache()) {
const auto filepath = data->filepath(FilePathResolve::Checked); if (mode != Mode::ToNewFile && data->saveFromData()) {
if (mode != Mode::ToNewFile
&& (!filepath.isEmpty()
|| !data->filepath(
FilePathResolve::SaveFromData).isEmpty())) {
return; return;
} }
const auto fileinfo = QFileInfo(filepath); const auto filepath = data->filepath(FilePathResolve::Checked);
const auto fileinfo = QFileInfo(
);
const auto filedir = filepath.isEmpty() const auto filedir = filepath.isEmpty()
? QDir() ? QDir()
: fileinfo.dir(); : fileinfo.dir();
@ -420,18 +415,16 @@ void DocumentOpenWithClickHandler::Open(
return; return;
} }
if (data->loaded()) { data->saveFromDataSilent();
const auto path = data->filepath( const auto path = data->filepath(FilePathResolve::Checked);
FilePathResolve::SaveFromDataSilent); if (!path.isEmpty()) {
if (!path.isEmpty()) { File::OpenWith(path, QCursor::pos());
File::OpenWith(path, QCursor::pos()); } else {
return; DocumentSaveClickHandler::Save(
} origin,
data,
DocumentSaveClickHandler::Mode::ToFile);
} }
DocumentSaveClickHandler::Save(
origin,
data,
DocumentSaveClickHandler::Mode::ToFile);
} }
void DocumentOpenWithClickHandler::onClickImpl() const { void DocumentOpenWithClickHandler::onClickImpl() const {
@ -1119,35 +1112,50 @@ void DocumentData::setLocation(const FileLocation &loc) {
} }
QString DocumentData::filepath(FilePathResolve resolve) const { QString DocumentData::filepath(FilePathResolve resolve) const {
bool check = (resolve != FilePathResolve::Cached); const auto check = (resolve != FilePathResolve::Cached);
QString result = (check && _location.name().isEmpty()) return (check && _location.name().isEmpty())
? QString() ? QString()
: location(check).name(); : location(check).name();
bool saveFromData = result.isEmpty() && !rawBytes().isEmpty(); }
if (saveFromData) {
if (resolve != FilePathResolve::SaveFromData bool DocumentData::saveFromData() {
&& resolve != FilePathResolve::SaveFromDataSilent) { if (!filepath(FilePathResolve::Checked).isEmpty()) {
saveFromData = false; return true;
} else if (resolve == FilePathResolve::SaveFromDataSilent
&& Global::AskDownloadPath()) {
saveFromData = false;
}
} }
if (saveFromData) { return saveFromDataChecked();
QString filename = documentSaveFilename(this); }
if (!filename.isEmpty()) {
QFile f(filename); bool DocumentData::saveFromDataSilent() {
if (f.open(QIODevice::WriteOnly)) { if (!filepath(FilePathResolve::Checked).isEmpty()) {
if (f.write(rawBytes()) == rawBytes().size()) { return true;
f.close(); } else if (Global::AskDownloadPath()) {
const_cast<DocumentData*>(this)->_location = FileLocation(filename); return false;
Local::writeFileLocation(mediaKey(), _location);
result = filename;
}
}
}
} }
return result; return saveFromDataChecked();
}
bool DocumentData::saveFromDataChecked() {
const auto media = activeMediaView();
if (!media) {
return false;
}
const auto bytes = media->bytes();
if (bytes.isEmpty()) {
return false;
}
const auto path = documentSaveFilename(this);
if (path.isEmpty()) {
return false;
}
auto file = QFile(path);
if (!file.open(QIODevice::WriteOnly)
|| file.write(bytes) != bytes.size()) {
return false;
}
file.close();
_location = FileLocation(path);
Local::writeFileLocation(mediaKey(), _location);
return true;
} }
bool DocumentData::isStickerSetInstalled() const { bool DocumentData::isStickerSetInstalled() const {

View File

@ -103,8 +103,6 @@ public:
enum class FilePathResolve { enum class FilePathResolve {
Cached, Cached,
Checked, Checked,
SaveFromData,
SaveFromDataSilent,
}; };
[[nodiscard]] bool loaded( [[nodiscard]] bool loaded(
FilePathResolve resolve = FilePathResolve::Cached) const; FilePathResolve resolve = FilePathResolve::Cached) const;
@ -131,6 +129,8 @@ public:
[[nodiscard]] const FileLocation &location(bool check = false) const; [[nodiscard]] const FileLocation &location(bool check = false) const;
void setLocation(const FileLocation &loc); void setLocation(const FileLocation &loc);
bool saveFromData();
bool saveFromDataSilent();
[[nodiscard]] QString filepath( [[nodiscard]] QString filepath(
FilePathResolve resolve = FilePathResolve::Cached) const; FilePathResolve resolve = FilePathResolve::Cached) const;
@ -296,6 +296,7 @@ private:
void destroyLoader() const; void destroyLoader() const;
[[nodiscard]] bool useStreamingLoader() const; [[nodiscard]] bool useStreamingLoader() const;
bool saveFromDataChecked();
// Two types of location: from MTProto by dc+access or from web by url // Two types of location: from MTProto by dc+access or from web by url
int32 _dc = 0; int32 _dc = 0;