blob: 3b058270342ec6c388263a078183b77c3ef8dd07 (
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
99
100
101
102
103
104
105
|
// *****************************************************************************
// * 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/symlink_target.h>
#include <zen/sys_info.h>
#include <wx/stdpaths.h>
#include <wx/app.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 = []
{
Zstring exeFolderPath = beforeLast(utfTo<Zstring>(wxStandardPaths::Get().GetExecutablePath()), FILE_NAME_SEPARATOR, IfNotFoundReturn::none);
try
{
//get rid of relative path fragments, e.g.: C:\Data\Projects\FreeFileSync\Source\..\Build\Bin
exeFolderPath = getSymlinkResolvedPath(exeFolderPath); //throw FileError
}
catch (FileError&) { assert(false); }
return beforeLast(exeFolderPath, FILE_NAME_SEPARATOR, IfNotFoundReturn::none);
}();
return exeFolderParentPath;
}
}
//getFfsVolumeId() might be called during static destruction, e.g. async update check
VolumeId fff::getFfsVolumeId() //throw FileError
{
static VolumeId volumeId; //POD => no "magic static" code gen
static constinit2 std::once_flag onceFlagGetFfsVolumeId; //=> no "magic static" code gen
std::call_once(onceFlagGetFfsVolumeId, [] { volumeId = getVolumeId(getProcessPath()); }); //throw FileError
return volumeId;
}
bool fff::isPortableVersion()
{
return false; //users want local installation type: https://freefilesync.org/forum/viewtopic.php?t=5750
}
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 cfgFolderPathPf = []
{
//make independent from wxWidgets global variable "appname"; support being called by RealTimeSync
auto appName = wxTheApp->GetAppName();
wxTheApp->SetAppName(L"FreeFileSync");
ZEN_ON_SCOPE_EXIT(wxTheApp->SetAppName(appName));
//OS standard path (XDG layout): ~/.config/FreeFileSync
//wxBug: wxStandardPaths::GetUserDataDir() does not honor FileLayout_XDG flag
wxStandardPaths::Get().SetFileLayout(wxStandardPaths::FileLayout_XDG);
const Zstring cfgFolderPath = appendSeparator(utfTo<Zstring>(wxStandardPaths::Get().GetUserConfigDir())) + "FreeFileSync";
try //create the config folder if not existing + create "Logs" subfolder while we're at it
{
createDirectoryIfMissingRecursion(appendSeparator(cfgFolderPath) + Zstr("Logs")); //throw FileError
}
catch (const FileError& e)
{
assert(false);
std::cerr << utfTo<std::string>(e.toString()) << '\n';
}
return appendSeparator(cfgFolderPath);
}();
return cfgFolderPathPf;
}
//this function is called by RealTimeSync!!!
Zstring fff::getFreeFileSyncLauncherPath()
{
return getProcessParentFolderPath() + Zstr("/FreeFileSync");
}
|