blob: e39a0b2abab712dcd832e2f1de5100cc279be3f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
#include <stdio.h>
#ifdef WINDOWS
#include <direct.h>
#define GetCurrentDir _getcwd
#define ClientName "client.exe"
#else
#include <unistd.h>
#define GetCurrentDir getcwd
#define ClientName "client"
#endif
#include <errno.h>
#include <QFileInfo>
#include <QProcess>
#include <QString>
#include "Logger.h"
int main()
{
Logger::Info("Starting updater application\n");
char currentPath[FILENAME_MAX];
if (! GetCurrentDir(currentPath, sizeof(currentPath)))
{
return errno;
}
// check if whether client.bin.latest exists
// it shoultd be renamed to client.exe (on Windows) ot just client (on Linux)
QString cwd(currentPath);
QFileInfo binInfo(cwd + "/client.bin.latest");
if (! binInfo.exists())
{
Logger::Fatal("New client version not present.\n");
Logger::Fatal("Terminating.\n");
return -1;
}
// remove old client binary
QFile client(cwd + "/" + ClientName);
if (client.exists())
{
Logger::Trace("Removing old client executable\n");
if (! client.remove())
{
Logger::Fatal("Can't remove %s\n", client.fileName().toStdString().c_str());
return -1;
}
}
else
{
Logger::Warn("Client executable is absent\n");
}
if (QFile::rename(cwd + "/client.bin.latest", cwd + "/" + ClientName))
{
Logger::Info("Client successfully updated\n");
}
else
{
Logger::Fatal("Can't rename 'client.bin.latest'\n");
return -1;
}
// starting client process
QString program(cwd + "/" + ClientName);
if (! QProcess::startDetached(program))
{
Logger::Fatal("Failed to start client application\n");
return -1;
}
return 0;
}
|