summaryrefslogtreecommitdiff
path: root/shared/standard_paths.cpp
blob: 44deafff0b735aad9e46b62729046e022bfcc162 (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
// **************************************************************************
// * 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) 2008-2011 ZenJu (zhnmju123 AT gmx.de)                    *
// **************************************************************************
//
#include "standard_paths.h"
#include <wx/stdpaths.h>
#include "system_constants.h"
#include "string_conv.h"

using namespace zen;


namespace
{
const wxString& getBinaryDir() //directory containing executable WITH path separator at end
{
    static wxString instance = zToWx(wxToZ(wxStandardPaths::Get().GetExecutablePath()).BeforeLast(common::FILE_NAME_SEPARATOR) + common::FILE_NAME_SEPARATOR);
    return instance;
}

#ifdef FFS_WIN
wxString getInstallDir() //root install directory WITH path separator at end
{
    return getBinaryDir().BeforeLast(common::FILE_NAME_SEPARATOR).BeforeLast(common::FILE_NAME_SEPARATOR) + common::FILE_NAME_SEPARATOR;
}
#endif
}


bool zen::isPortableVersion()
{
#ifdef FFS_WIN
    static const bool isPortable = !wxFileExists(getInstallDir() + wxT("uninstall.exe")); //this check is a bit lame...
#elif defined FFS_LINUX
    static const bool isPortable = !::getBinaryDir().EndsWith(wxT("/bin/")); //this check is a bit lame...
#endif
    return isPortable;
}


wxString zen::getResourceDir()
{
#ifdef FFS_WIN
    return getInstallDir();
#elif defined FFS_LINUX
    if (isPortableVersion())
        return getBinaryDir();
    else //use OS' standard paths
    {
        wxString resourceDir = wxStandardPathsBase::Get().GetResourcesDir();

        if (!resourceDir.EndsWith(zToWx(common::FILE_NAME_SEPARATOR)))
            resourceDir += zToWx(common::FILE_NAME_SEPARATOR);

        return resourceDir;
    }
#endif
}


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

        if (!wxDirExists(userDirectory))
            ::wxMkdir(userDirectory); //only top directory needs to be created: no recursion necessary

        if (!userDirectory.EndsWith(zToWx(common::FILE_NAME_SEPARATOR)))
            userDirectory += zToWx(common::FILE_NAME_SEPARATOR);

        return userDirectory;
    }
}


wxString zen::getLauncher()
{
#ifdef FFS_WIN
    return getInstallDir() + wxT("FreeFileSync.exe");
#elif defined FFS_LINUX
    return getBinaryDir() + wxT("FreeFileSync");
#endif
}
bgstack15