mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-04 14:20:05 +00:00
Per a suggestion of JMarc's, first write the saved file to a
temporary name, then move it to its real location if we succeed.
This prevents our over-writing the existing file with a corrupt
one.
(cherry picked from commit 10364082c8
)
This commit is contained in:
parent
0f3746400e
commit
094129f804
@ -1276,12 +1276,38 @@ bool Buffer::save() const
|
|||||||
// We don't need autosaves in the immediate future. (Asger)
|
// We don't need autosaves in the immediate future. (Asger)
|
||||||
resetAutosaveTimers();
|
resetAutosaveTimers();
|
||||||
|
|
||||||
FileName backupName;
|
// if the file does not yet exist, none of the backup activity
|
||||||
bool madeBackup = false;
|
// that follows is necessary
|
||||||
|
if (!fileName().exists())
|
||||||
|
return writeFile(fileName());
|
||||||
|
|
||||||
// make a backup if the file already exists
|
// we first write the file to a new name, then move it to its
|
||||||
if (lyxrc.make_backup && fileName().exists()) {
|
// proper location once that has been done successfully. that
|
||||||
backupName = FileName(absFileName() + '~');
|
// way we preserve the original file if something goes wrong.
|
||||||
|
string const savepath = fileName().onlyPath().absFileName();
|
||||||
|
string savename = "tmp-" + fileName().onlyFileName();
|
||||||
|
FileName savefile(addName(savepath, savename));
|
||||||
|
while (savefile.exists()) {
|
||||||
|
if (savefile.absFileName().size() > 1024) {
|
||||||
|
Alert::error(_("Write failure"),
|
||||||
|
bformat(_("Cannot find temporary filename for:\n %1$s.\n"
|
||||||
|
"Even %2$s exists!"),
|
||||||
|
from_utf8(fileName().absFileName()),
|
||||||
|
from_utf8(savefile.absFileName())));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
savename = "tmp-" + savename;
|
||||||
|
savefile.set(addName(savepath, savename));
|
||||||
|
}
|
||||||
|
|
||||||
|
LYXERR(Debug::FILES, "Saving to " << savefile.absFileName());
|
||||||
|
if (!writeFile(savefile))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
// we will set this to false if we fail
|
||||||
|
bool made_backup = true;
|
||||||
|
if (lyxrc.make_backup) {
|
||||||
|
FileName backupName(absFileName() + '~');
|
||||||
if (!lyxrc.backupdir_path.empty()) {
|
if (!lyxrc.backupdir_path.empty()) {
|
||||||
string const mangledName =
|
string const mangledName =
|
||||||
subst(subst(backupName.absFileName(), '/', '!'), ':', '!');
|
subst(subst(backupName.absFileName(), '/', '!'), ':', '!');
|
||||||
@ -1291,12 +1317,11 @@ bool Buffer::save() const
|
|||||||
|
|
||||||
// Except file is symlink do not copy because of #6587.
|
// Except file is symlink do not copy because of #6587.
|
||||||
// Hard links have bad luck.
|
// Hard links have bad luck.
|
||||||
if (fileName().isSymLink())
|
made_backup = fileName().isSymLink() ?
|
||||||
madeBackup = fileName().copyTo(backupName);
|
fileName().copyTo(backupName):
|
||||||
else
|
fileName().moveTo(backupName);
|
||||||
madeBackup = fileName().moveTo(backupName);
|
|
||||||
|
|
||||||
if (!madeBackup) {
|
if (!made_backup) {
|
||||||
Alert::error(_("Backup failure"),
|
Alert::error(_("Backup failure"),
|
||||||
bformat(_("Cannot create backup file %1$s.\n"
|
bformat(_("Cannot create backup file %1$s.\n"
|
||||||
"Please check whether the directory exists and is writable."),
|
"Please check whether the directory exists and is writable."),
|
||||||
@ -1305,15 +1330,17 @@ bool Buffer::save() const
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (writeFile(d->filename)) {
|
if (made_backup && savefile.moveTo(fileName())) {
|
||||||
markClean();
|
markClean();
|
||||||
return true;
|
return true;
|
||||||
} else {
|
|
||||||
// Saving failed, so backup is not backup
|
|
||||||
if (madeBackup)
|
|
||||||
backupName.moveTo(d->filename);
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
// else
|
||||||
|
Alert::error(_("Write failure"),
|
||||||
|
bformat(_("Cannot move saved file to:\n %1$s.\n"
|
||||||
|
"But the file has successfully been saved as:\n %2$s."),
|
||||||
|
from_utf8(fileName().absFileName()),
|
||||||
|
from_utf8(savefile.absFileName())));
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -28,6 +28,9 @@ What's new
|
|||||||
|
|
||||||
* DOCUMENT INPUT/OUTPUT
|
* DOCUMENT INPUT/OUTPUT
|
||||||
|
|
||||||
|
- When saving a file, LyX now writes the saved file first to a temporary
|
||||||
|
filename (tmp-oldfile.lyx) and only deletes the original file once the
|
||||||
|
new file has successfully been written.
|
||||||
|
|
||||||
|
|
||||||
* TEX2LYX IMPROVEMENTS
|
* TEX2LYX IMPROVEMENTS
|
||||||
|
Loading…
Reference in New Issue
Block a user