summaryrefslogtreecommitdiff
path: root/lib/ffs_paths.h
blob: d798719587dbf95ff6b00bb7b440c1790a1d1978 (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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html       *
// * Copyright (C) ZenJu (zhnmju123 AT gmx DOT de) - All Rights Reserved    *
// **************************************************************************

#ifndef STANDARDPATHS_H_INCLUDED
#define STANDARDPATHS_H_INCLUDED

#include <wx/stdpaths.h>
#include <zen/zstring.h>
#include <zen/file_handling.h>
#include <wx+/string_conv.h>

namespace zen
{
//------------------------------------------------------------------------------
//global program directories
//------------------------------------------------------------------------------
Zstring getResourceDir(); //resource directory WITH path separator at end
Zstring getConfigDir();   //config directory WITH path separator at end
//------------------------------------------------------------------------------

Zstring getLauncher();    //full path to application launcher C:\...\FreeFileSync.exe
bool isPortableVersion();













//---------------- implementation ----------------
namespace impl
{
inline
const Zstring& getBinaryDir() //directory containing executable WITH path separator at end
{
    static Zstring instance = beforeLast(utfCvrtTo<Zstring>(wxStandardPaths::Get().GetExecutablePath()), FILE_NAME_SEPARATOR) + Zstring(FILE_NAME_SEPARATOR); //extern linkage!
    return instance;
}

#ifdef FFS_WIN
inline
Zstring getInstallDir() //root install directory WITH path separator at end
{
    return beforeLast(beforeLast(getBinaryDir(), FILE_NAME_SEPARATOR), FILE_NAME_SEPARATOR) + FILE_NAME_SEPARATOR;
}
#endif
}


inline
bool isPortableVersion()
{
#ifdef FFS_WIN
    static const bool isPortable = !fileExists(impl::getInstallDir() + L"uninstall.exe"); //this check is a bit lame...

#elif defined FFS_LINUX
    static const bool isPortable = !endsWith(impl::getBinaryDir(), "/bin/"); //this check is a bit lame...
#endif
    return isPortable;
}


inline
Zstring getResourceDir()
{
#ifdef FFS_WIN
    return impl::getInstallDir();

#elif defined FFS_LINUX
    if (isPortableVersion())
        return impl::getBinaryDir();
    else //use OS' standard paths
        return appendSeparator(toZ(wxStandardPathsBase::Get().GetResourcesDir()));
#endif
}


inline
Zstring getConfigDir()
{
    if (isPortableVersion())
#ifdef FFS_WIN
        return impl::getInstallDir();
#elif defined FFS_LINUX
        //wxString(wxT(".")) + zToWx(FILE_NAME_SEPARATOR) -> don't use current working directory
        //avoid surprises with GlobalSettings.xml being newly created in each working directory
        return impl::getBinaryDir();
#endif
    else //use OS' standard paths
    {
        Zstring userDirectory = toZ(wxStandardPathsBase::Get().GetUserDataDir());

        if (!dirExists(userDirectory))
            try
            {
                makeDirectory(userDirectory); //only top directory needs to be created: no recursion necessary
            }
            catch (const FileError&) {}

        return appendSeparator(userDirectory);
    }
}


inline
Zstring getLauncher()
{
#ifdef FFS_WIN
    return impl::getInstallDir() + Zstr("FreeFileSync.exe");
#elif defined FFS_LINUX
    return impl::getBinaryDir() + Zstr("FreeFileSync");
#endif
}
}

#endif // STANDARDPATHS_H_INCLUDED
bgstack15