blob: 44b80f6f9086c39d84b8622fdb338b1d0f1eaf82 (
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
// *****************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: https://www.gnu.org/licenses/gpl-3.0 *
// * Copyright (C) Zenju (zenju AT freefilesync DOT org) - All Rights Reserved *
// *****************************************************************************
#include "ffs_paths.h"
#include <zen/file_access.h>
#include <zen/thread.h>
#include <zen/sys_info.h>
#include <iostream> //std::cerr
using namespace zen;
namespace
{
Zstring getProcessParentFolderPath()
{
//buffer getSymlinkResolvedPath()!
//note: compiler generates magic-statics code => fine, we don't expect accesses during shutdown => don't need FunStatGlobal<>
static const Zstring exeFolderParentPath = []
{
try
{
const Zstring exePath = getRealProcessPath(); //throw FileError
const Zstring parentFolderPath = beforeLast(exePath, FILE_NAME_SEPARATOR, IfNotFoundReturn::none);
return beforeLast(parentFolderPath, FILE_NAME_SEPARATOR, IfNotFoundReturn::none);
}
catch (const FileError& e)
{
throw std::runtime_error(std::string(__FILE__) + '[' + numberTo<std::string>(__LINE__) + "] " + utfTo<std::string>(e.toString()));
}
}();
return exeFolderParentPath;
}
}
Zstring fff::getInstallDirPath()
{
return getProcessParentFolderPath();
}
Zstring fff::getResourceDirPf()
{
return getProcessParentFolderPath() + FILE_NAME_SEPARATOR + Zstr("Resources") + FILE_NAME_SEPARATOR;
}
Zstring fff::getConfigDirPathPf()
{
//note: compiler generates magic-statics code => fine, we don't expect accesses during shutdown
static const Zstring ffsConfigPathPf = []
{
/* Windows: %AppData%\FreeFileSync
macOS: ~/Library/Application Support/FreeFileSync
Linux (XDG layout): ~/.config/FreeFileSync */
const Zstring& ffsConfigPath = []
{
try
{
return
appendSeparator(getUserDataPath()) + Zstr("FreeFileSync"); //throw FileError
}
catch (const FileError& e)
{
throw std::runtime_error(std::string(__FILE__) + '[' + numberTo<std::string>(__LINE__) + "] " + utfTo<std::string>(e.toString()));
}
}();
try //create the config folder if not existing + create "Logs" subfolder while we're at it
{
createDirectoryIfMissingRecursion(appendSeparator(ffsConfigPath) + Zstr("Logs")); //throw FileError
}
catch (const FileError& e)
{
assert(false);
std::cerr << utfTo<std::string>(e.toString()) << '\n';
}
return appendSeparator(ffsConfigPath);
}();
return ffsConfigPathPf;
}
//this function is called by RealTimeSync!!!
Zstring fff::getFreeFileSyncLauncherPath()
{
return getProcessParentFolderPath() + Zstr("/FreeFileSync");
}
|