mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
298 lines
7.6 KiB
C++
298 lines
7.6 KiB
C++
#include "updater.h"
|
|
#include <base/system.h>
|
|
#include <engine/fetcher.h>
|
|
#include <engine/storage.h>
|
|
#include <engine/client.h>
|
|
#include <engine/external/json-parser/json.h>
|
|
#include <game/version.h>
|
|
|
|
#include <stdlib.h> // system
|
|
|
|
using std::string;
|
|
using std::map;
|
|
|
|
CUpdater::CUpdater()
|
|
{
|
|
m_pClient = NULL;
|
|
m_pStorage = NULL;
|
|
m_pFetcher = NULL;
|
|
m_State = CLEAN;
|
|
m_Percent = 0;
|
|
}
|
|
|
|
void CUpdater::Init()
|
|
{
|
|
m_pClient = Kernel()->RequestInterface<IClient>();
|
|
m_pStorage = Kernel()->RequestInterface<IStorage>();
|
|
m_pFetcher = Kernel()->RequestInterface<IFetcher>();
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
|
m_IsWinXP = os_compare_version(5, 1) <= 0;
|
|
#else
|
|
m_IsWinXP = false;
|
|
#endif
|
|
}
|
|
|
|
void CUpdater::ProgressCallback(CFetchTask *pTask, void *pUser)
|
|
{
|
|
CUpdater *pUpdate = (CUpdater *)pUser;
|
|
str_copy(pUpdate->m_Status, pTask->Dest(), sizeof(pUpdate->m_Status));
|
|
pUpdate->m_Percent = pTask->Progress();
|
|
}
|
|
|
|
void CUpdater::CompletionCallback(CFetchTask *pTask, void *pUser)
|
|
{
|
|
CUpdater *pUpdate = (CUpdater *)pUser;
|
|
const char *b = 0;
|
|
for(const char *a = pTask->Dest(); *a; a++)
|
|
if(*a == '/')
|
|
b = a + 1;
|
|
b = b ? b : pTask->Dest();
|
|
if(!str_comp(b, "update.json"))
|
|
{
|
|
if(pTask->State() == CFetchTask::STATE_DONE)
|
|
pUpdate->m_State = GOT_MANIFEST;
|
|
else if(pTask->State() == CFetchTask::STATE_ERROR)
|
|
pUpdate->m_State = FAIL;
|
|
}
|
|
else if(!str_comp(b, pUpdate->m_aLastFile))
|
|
{
|
|
if(pTask->State() == CFetchTask::STATE_DONE)
|
|
pUpdate->m_State = MOVE_FILES;
|
|
else if(pTask->State() == CFetchTask::STATE_ERROR)
|
|
pUpdate->m_State = FAIL;
|
|
}
|
|
delete pTask;
|
|
}
|
|
|
|
void CUpdater::FetchFile(const char *pFile, const char *pDestPath)
|
|
{
|
|
char aBuf[256], aPath[256];
|
|
str_format(aBuf, sizeof(aBuf), "https://%s/%s", g_Config.m_ClDDNetUpdate2Server, pFile);
|
|
if(!pDestPath)
|
|
pDestPath = pFile;
|
|
str_format(aPath, sizeof(aPath), "update/%s", pDestPath);
|
|
CFetchTask *Task = new CFetchTask(false);
|
|
m_pFetcher->QueueAdd(Task, aBuf, aPath, -2, this, &CUpdater::CompletionCallback, &CUpdater::ProgressCallback);
|
|
}
|
|
|
|
void CUpdater::MoveFile(const char *pFile)
|
|
{
|
|
char aBuf[256];
|
|
size_t len = str_length(pFile);
|
|
|
|
if(!str_comp_nocase(pFile + len - 4, ".dll") || !str_comp_nocase(pFile + len - 4, ".ttf"))
|
|
{
|
|
str_format(aBuf, sizeof(aBuf), "%s.old", pFile);
|
|
m_pStorage->RenameBinaryFile(pFile, aBuf);
|
|
str_format(aBuf, sizeof(aBuf), "update/%s", pFile);
|
|
m_pStorage->RenameBinaryFile(aBuf, pFile);
|
|
}
|
|
else
|
|
{
|
|
str_format(aBuf, sizeof(aBuf), "update/%s", pFile);
|
|
m_pStorage->RenameBinaryFile(aBuf, pFile);
|
|
}
|
|
}
|
|
|
|
void CUpdater::Update()
|
|
{
|
|
switch(m_State)
|
|
{
|
|
case GOT_MANIFEST:
|
|
PerformUpdate();
|
|
break;
|
|
case MOVE_FILES:
|
|
CommitUpdate();
|
|
break;
|
|
default:
|
|
return;
|
|
}
|
|
}
|
|
|
|
void CUpdater::AddFileJob(const char *pFile, bool job)
|
|
{
|
|
m_FileJobs[string(pFile)] = job;
|
|
}
|
|
|
|
void CUpdater::ReplaceClient()
|
|
{
|
|
dbg_msg("updater", "replacing " PLAT_CLIENT_EXEC);
|
|
|
|
//Replace running executable by renaming twice...
|
|
if(!m_IsWinXP)
|
|
{
|
|
m_pStorage->RemoveBinaryFile("DDNet.old");
|
|
m_pStorage->RenameBinaryFile(PLAT_CLIENT_EXEC, "DDNet.old");
|
|
m_pStorage->RenameBinaryFile("update/DDNet.tmp", PLAT_CLIENT_EXEC);
|
|
}
|
|
#if !defined(CONF_FAMILY_WINDOWS)
|
|
char aPath[512];
|
|
m_pStorage->GetBinaryPath(PLAT_CLIENT_EXEC, aPath, sizeof aPath);
|
|
char aBuf[512];
|
|
str_format(aBuf, sizeof aBuf, "chmod +x %s", aPath);
|
|
if (system(aBuf))
|
|
dbg_msg("updater", "ERROR: failed to set client executable bit");
|
|
#endif
|
|
}
|
|
|
|
void CUpdater::ReplaceServer()
|
|
{
|
|
dbg_msg("updater", "replacing " PLAT_SERVER_EXEC);
|
|
|
|
//Replace running executable by renaming twice...
|
|
m_pStorage->RemoveBinaryFile("DDNet-Server.old");
|
|
m_pStorage->RenameBinaryFile(PLAT_SERVER_EXEC, "DDNet-Server.old");
|
|
m_pStorage->RenameBinaryFile("update/DDNet-Server.tmp", PLAT_SERVER_EXEC);
|
|
#if !defined(CONF_FAMILY_WINDOWS)
|
|
char aPath[512];
|
|
m_pStorage->GetBinaryPath(PLAT_SERVER_EXEC, aPath, sizeof aPath);
|
|
char aBuf[512];
|
|
str_format(aBuf, sizeof aBuf, "chmod +x %s", aPath);
|
|
if (system(aBuf))
|
|
dbg_msg("updater", "ERROR: failed to set server executable bit");
|
|
#endif
|
|
}
|
|
|
|
void CUpdater::ParseUpdate()
|
|
{
|
|
char aPath[512];
|
|
IOHANDLE File = m_pStorage->OpenFile(m_pStorage->GetBinaryPath("update/update.json", aPath, sizeof aPath), IOFLAG_READ, IStorage::TYPE_ALL);
|
|
if(!File)
|
|
return;
|
|
|
|
char aBuf[4096*4];
|
|
mem_zero(aBuf, sizeof (aBuf));
|
|
io_read(File, aBuf, sizeof(aBuf));
|
|
io_close(File);
|
|
|
|
json_value *pVersions = json_parse(aBuf);
|
|
|
|
if(pVersions && pVersions->type == json_array)
|
|
{
|
|
for(int i = 0; i < json_array_length(pVersions); i++)
|
|
{
|
|
const json_value *pTemp;
|
|
const json_value *pCurrent = json_array_get(pVersions, i);
|
|
if(str_comp(json_string_get(json_object_get(pCurrent, "version")), GAME_RELEASE_VERSION))
|
|
{
|
|
if(json_boolean_get(json_object_get(pCurrent, "client")))
|
|
m_ClientUpdate = true;
|
|
if(json_boolean_get(json_object_get(pCurrent, "server")))
|
|
m_ServerUpdate = true;
|
|
if((pTemp = json_object_get(pCurrent, "download"))->type == json_array)
|
|
{
|
|
for(int j = 0; j < json_array_length(pTemp); j++)
|
|
AddFileJob(json_string_get(json_array_get(pTemp, j)), true);
|
|
}
|
|
if((pTemp = json_object_get(pCurrent, "remove"))->type == json_array)
|
|
{
|
|
for(int j = 0; j < json_array_length(pTemp); j++)
|
|
AddFileJob(json_string_get(json_array_get(pTemp, j)), false);
|
|
}
|
|
}
|
|
else
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void CUpdater::InitiateUpdate()
|
|
{
|
|
m_State = GETTING_MANIFEST;
|
|
FetchFile("update.json");
|
|
}
|
|
|
|
void CUpdater::PerformUpdate()
|
|
{
|
|
m_State = PARSING_UPDATE;
|
|
dbg_msg("updater", "parsing update.json");
|
|
ParseUpdate();
|
|
m_State = DOWNLOADING;
|
|
|
|
const char *aLastFile;
|
|
aLastFile = "";
|
|
for(map<string, bool>::reverse_iterator it = m_FileJobs.rbegin(); it != m_FileJobs.rend(); ++it)
|
|
{
|
|
if(it->second)
|
|
{
|
|
aLastFile = it->first.c_str();
|
|
break;
|
|
}
|
|
}
|
|
|
|
for(map<string, bool>::iterator it = m_FileJobs.begin(); it != m_FileJobs.end(); ++it)
|
|
{
|
|
if(it->second)
|
|
{
|
|
const char *pFile = it->first.c_str();
|
|
size_t len = str_length(pFile);
|
|
if(!str_comp_nocase(pFile + len - 4, ".dll"))
|
|
{
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
|
char aBuf[512];
|
|
str_copy(aBuf, pFile, sizeof(aBuf)); // SDL
|
|
str_copy(aBuf + len - 4, "-" PLAT_NAME, sizeof(aBuf) - len + 4); // -win32
|
|
str_append(aBuf, pFile + len - 4, sizeof(aBuf)); // .dll
|
|
FetchFile(aBuf, pFile);
|
|
#endif
|
|
// Ignore DLL downloads on other platforms, on Linux we statically link anyway
|
|
}
|
|
else
|
|
{
|
|
FetchFile(pFile);
|
|
}
|
|
aLastFile = pFile;
|
|
}
|
|
else
|
|
m_pStorage->RemoveBinaryFile(it->first.c_str());
|
|
}
|
|
|
|
if(m_ServerUpdate)
|
|
{
|
|
FetchFile(PLAT_SERVER_DOWN, "DDNet-Server.tmp");
|
|
aLastFile = "DDNet-Server.tmp";
|
|
}
|
|
if(m_ClientUpdate)
|
|
{
|
|
FetchFile(PLAT_CLIENT_DOWN, "DDNet.tmp");
|
|
aLastFile = "DDNet.tmp";
|
|
}
|
|
|
|
str_copy(m_aLastFile, aLastFile, sizeof(m_aLastFile));
|
|
}
|
|
|
|
void CUpdater::CommitUpdate()
|
|
{
|
|
for(map<std::string, bool>::iterator it = m_FileJobs.begin(); it != m_FileJobs.end(); ++it)
|
|
if(it->second)
|
|
MoveFile(it->first.c_str());
|
|
|
|
if(m_ClientUpdate)
|
|
ReplaceClient();
|
|
if(m_ServerUpdate)
|
|
ReplaceServer();
|
|
if(m_pClient->State() == IClient::STATE_ONLINE || m_pClient->EditorHasUnsavedData())
|
|
m_State = NEED_RESTART;
|
|
else
|
|
{
|
|
if(!m_IsWinXP)
|
|
m_pClient->Restart();
|
|
else
|
|
WinXpRestart();
|
|
}
|
|
}
|
|
|
|
void CUpdater::WinXpRestart()
|
|
{
|
|
char aBuf[512];
|
|
IOHANDLE bhFile = io_open(m_pStorage->GetBinaryPath("du.bat", aBuf, sizeof aBuf), IOFLAG_WRITE);
|
|
if(!bhFile)
|
|
return;
|
|
char bBuf[512];
|
|
str_format(bBuf, sizeof(bBuf), ":_R\r\ndel \"DDNet.exe\"\r\nif exist \"DDNet.exe\" goto _R\r\n:_T\r\nmove /y \"update\\DDNet.tmp\" \"DDNet.exe\"\r\nif not exist \"DDNet.exe\" goto _T\r\nstart DDNet.exe\r\ndel \"du.bat\"\r\n");
|
|
io_write(bhFile, bBuf, str_length(bBuf));
|
|
io_close(bhFile);
|
|
shell_execute(aBuf);
|
|
m_pClient->Quit();
|
|
}
|