mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Merge #4482
4482: Use temporary file when saving editor file (fixes #4476) r=heinrich5991 a=def- <!-- What is the motivation for the changes of this pull request --> ## Checklist - [x] Tested the change ingame - [ ] Provided screenshots if it is a visual change - [ ] Tested in combination with possibly related configuration options - [ ] Written a unit test if it works standalone, system.c especially - [ ] Considered possible null pointers and out of bounds array indexing - [ ] Changed no physics that affect existing maps - [ ] Tested the change with [ASan+UBSan or valgrind's memcheck](https://github.com/ddnet/ddnet/#using-addresssanitizer--undefinedbehavioursanitizer-or-valgrinds-memcheck) (optional) Co-authored-by: def <dennis@felsin9.de>
This commit is contained in:
commit
473848a19d
|
@ -221,13 +221,15 @@ int CEditor::Save(const char *pFilename)
|
|||
|
||||
int CEditorMap::Save(class IStorage *pStorage, const char *pFileName)
|
||||
{
|
||||
char aBuf[256];
|
||||
str_format(aBuf, sizeof(aBuf), "saving to '%s'...", pFileName);
|
||||
char aFileNameTmp[IO_MAX_PATH_LENGTH];
|
||||
str_format(aFileNameTmp, sizeof(aFileNameTmp), "%s.%d.tmp", pFileName, pid());
|
||||
char aBuf[IO_MAX_PATH_LENGTH];
|
||||
str_format(aBuf, sizeof(aBuf), "saving to '%s'...", aFileNameTmp);
|
||||
m_pEditor->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "editor", aBuf);
|
||||
CDataFileWriter df;
|
||||
if(!df.Open(pStorage, pFileName))
|
||||
if(!df.Open(pStorage, aFileNameTmp))
|
||||
{
|
||||
str_format(aBuf, sizeof(aBuf), "failed to open file '%s'...", pFileName);
|
||||
str_format(aBuf, sizeof(aBuf), "failed to open file '%s'...", aFileNameTmp);
|
||||
m_pEditor->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "editor", aBuf);
|
||||
return 0;
|
||||
}
|
||||
|
@ -553,6 +555,13 @@ int CEditorMap::Save(class IStorage *pStorage, const char *pFileName)
|
|||
df.Finish();
|
||||
m_pEditor->Console()->Print(IConsole::OUTPUT_LEVEL_ADDINFO, "editor", "saving done");
|
||||
|
||||
str_format(aBuf, sizeof(aBuf), "moving '%s' to '%s'", aFileNameTmp, pFileName);
|
||||
m_pEditor->Console()->Print(IConsole::OUTPUT_LEVEL_ADDINFO, "editor", aBuf);
|
||||
if(!pStorage->RenameFile(aFileNameTmp, pFileName, IStorage::TYPE_SAVE))
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// send rcon.. if we can
|
||||
if(m_pEditor->Client()->RconAuthed())
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue