| 1 | /////////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: unix/stdpaths.cpp |
| 3 | // Purpose: wxStandardPaths implementation for Unix & OpenVMS systems |
| 4 | // Author: Vadim Zeitlin |
| 5 | // Modified by: |
| 6 | // Created: 2004-10-19 |
| 7 | // RCS-ID: $Id$ |
| 8 | // Copyright: (c) 2004 Vadim Zeitlin <vadim@wxwindows.org> |
| 9 | // License: wxWindows license |
| 10 | /////////////////////////////////////////////////////////////////////////////// |
| 11 | |
| 12 | // ============================================================================ |
| 13 | // declarations |
| 14 | // ============================================================================ |
| 15 | |
| 16 | // ---------------------------------------------------------------------------- |
| 17 | // headers |
| 18 | // ---------------------------------------------------------------------------- |
| 19 | |
| 20 | // for compilers that support precompilation, includes "wx.h". |
| 21 | #include "wx/wxprec.h" |
| 22 | |
| 23 | #ifdef __BORLANDC__ |
| 24 | #pragma hdrstop |
| 25 | #endif |
| 26 | |
| 27 | #if wxUSE_STDPATHS |
| 28 | |
| 29 | #include "wx/stdpaths.h" |
| 30 | |
| 31 | #ifndef WX_PRECOMP |
| 32 | #include "wx/wxcrt.h" |
| 33 | #include "wx/utils.h" |
| 34 | #endif //WX_PRECOMP |
| 35 | |
| 36 | #include "wx/filename.h" |
| 37 | #include "wx/log.h" |
| 38 | #include "wx/textfile.h" |
| 39 | |
| 40 | #if defined( __LINUX__ ) || defined( __VMS ) |
| 41 | #include <unistd.h> |
| 42 | #endif |
| 43 | |
| 44 | // ============================================================================ |
| 45 | // common VMS/Unix part of wxStandardPaths implementation |
| 46 | // ============================================================================ |
| 47 | |
| 48 | void wxStandardPaths::SetInstallPrefix(const wxString& prefix) |
| 49 | { |
| 50 | m_prefix = prefix; |
| 51 | } |
| 52 | |
| 53 | wxString wxStandardPaths::GetUserConfigDir() const |
| 54 | { |
| 55 | return wxFileName::GetHomeDir(); |
| 56 | } |
| 57 | |
| 58 | |
| 59 | // ============================================================================ |
| 60 | // wxStandardPaths implementation for VMS |
| 61 | // ============================================================================ |
| 62 | |
| 63 | #ifdef __VMS |
| 64 | |
| 65 | wxString wxStandardPaths::GetInstallPrefix() const |
| 66 | { |
| 67 | if ( m_prefix.empty() ) |
| 68 | { |
| 69 | wx_const_cast(wxStandardPaths *, this)->m_prefix = wxT("/sys$system"); |
| 70 | } |
| 71 | |
| 72 | return m_prefix; |
| 73 | } |
| 74 | |
| 75 | wxString wxStandardPaths::GetConfigDir() const |
| 76 | { |
| 77 | return _T("/sys$manager"); |
| 78 | } |
| 79 | |
| 80 | wxString wxStandardPaths::GetDataDir() const |
| 81 | { |
| 82 | return AppendAppInfo(GetInstallPrefix() + _T("/sys$share")); |
| 83 | } |
| 84 | |
| 85 | wxString wxStandardPaths::GetLocalDataDir() const |
| 86 | { |
| 87 | return AppendAppInfo(_T("/sys$manager")); |
| 88 | } |
| 89 | |
| 90 | wxString wxStandardPaths::GetUserDataDir() const |
| 91 | { |
| 92 | return wxFileName::GetHomeDir(); |
| 93 | } |
| 94 | |
| 95 | wxString wxStandardPaths::GetPluginsDir() const |
| 96 | { |
| 97 | return wxString(); // TODO: this is wrong, it should return something |
| 98 | } |
| 99 | |
| 100 | wxString |
| 101 | wxStandardPaths::GetLocalizedResourcesDir(const wxString& lang, |
| 102 | ResourceCat category) const |
| 103 | { |
| 104 | return wxStandardPathsBase::GetLocalizedResourcesDir(lang, category); |
| 105 | } |
| 106 | |
| 107 | wxString wxStandardPaths::GetExecutablePath() const |
| 108 | { |
| 109 | return wxStandardPathsBase::GetExecutablePath(); |
| 110 | } |
| 111 | |
| 112 | #else // !__VMS |
| 113 | |
| 114 | // ============================================================================ |
| 115 | // wxStandardPaths implementation for Unix |
| 116 | // ============================================================================ |
| 117 | |
| 118 | wxString wxStandardPaths::GetExecutablePath() const |
| 119 | { |
| 120 | #ifdef __LINUX__ |
| 121 | wxString exeStr; |
| 122 | |
| 123 | char buf[4096]; |
| 124 | int result = readlink("/proc/self/exe", buf, WXSIZEOF(buf) - sizeof(char)); |
| 125 | if ( result != -1 ) |
| 126 | { |
| 127 | buf[result] = '\0'; // readlink() doesn't NUL-terminate the buffer |
| 128 | |
| 129 | // if the /proc/self/exe symlink has been dropped by the kernel for |
| 130 | // some reason, then readlink() could also return success but |
| 131 | // "(deleted)" as link destination... |
| 132 | if ( strcmp(buf, "(deleted)") != 0 ) |
| 133 | exeStr = wxString(buf, wxConvLibc); |
| 134 | } |
| 135 | |
| 136 | if ( exeStr.empty() ) |
| 137 | { |
| 138 | // UPX-specific hack: when using UPX on linux, the kernel will drop the |
| 139 | // /proc/self/exe link; in this case we try to look for a special |
| 140 | // environment variable called " " which is created by UPX to save |
| 141 | // /proc/self/exe contents. See |
| 142 | // http://sf.net/tracker/?func=detail&atid=309863&aid=1565357&group_id=9863 |
| 143 | // for more information about this issue. |
| 144 | wxGetEnv(wxT(" "), &exeStr); |
| 145 | } |
| 146 | |
| 147 | if ( !exeStr.empty() ) |
| 148 | return exeStr; |
| 149 | #endif // __LINUX__ |
| 150 | |
| 151 | return wxStandardPathsBase::GetExecutablePath(); |
| 152 | } |
| 153 | |
| 154 | void wxStandardPaths::DetectPrefix() |
| 155 | { |
| 156 | // we can try to infer the prefix from the location of the executable |
| 157 | wxString exeStr = GetExecutablePath(); |
| 158 | if ( !exeStr.empty() ) |
| 159 | { |
| 160 | // consider that we're in the last "bin" subdirectory of our prefix |
| 161 | size_t pos = exeStr.rfind(wxT("/bin/")); |
| 162 | if ( pos != wxString::npos ) |
| 163 | m_prefix.assign(exeStr, 0, pos); |
| 164 | } |
| 165 | |
| 166 | if ( m_prefix.empty() ) |
| 167 | { |
| 168 | m_prefix = wxT("/usr/local"); |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | wxString wxStandardPaths::GetInstallPrefix() const |
| 173 | { |
| 174 | if ( m_prefix.empty() ) |
| 175 | { |
| 176 | wxStandardPaths *pathPtr = wx_const_cast(wxStandardPaths *, this); |
| 177 | pathPtr->DetectPrefix(); |
| 178 | } |
| 179 | |
| 180 | return m_prefix; |
| 181 | } |
| 182 | |
| 183 | // ---------------------------------------------------------------------------- |
| 184 | // public functions |
| 185 | // ---------------------------------------------------------------------------- |
| 186 | |
| 187 | wxString wxStandardPaths::GetConfigDir() const |
| 188 | { |
| 189 | return _T("/etc"); |
| 190 | } |
| 191 | |
| 192 | wxString wxStandardPaths::GetDataDir() const |
| 193 | { |
| 194 | return AppendAppInfo(GetInstallPrefix() + _T("/share")); |
| 195 | } |
| 196 | |
| 197 | wxString wxStandardPaths::GetLocalDataDir() const |
| 198 | { |
| 199 | return AppendAppInfo(_T("/etc")); |
| 200 | } |
| 201 | |
| 202 | wxString wxStandardPaths::GetUserDataDir() const |
| 203 | { |
| 204 | return AppendAppInfo(wxFileName::GetHomeDir() + _T("/.")); |
| 205 | } |
| 206 | |
| 207 | wxString wxStandardPaths::GetPluginsDir() const |
| 208 | { |
| 209 | return AppendAppInfo(GetInstallPrefix() + _T("/lib")); |
| 210 | } |
| 211 | |
| 212 | wxString |
| 213 | wxStandardPaths::GetLocalizedResourcesDir(const wxString& lang, |
| 214 | ResourceCat category) const |
| 215 | { |
| 216 | if ( category != ResourceCat_Messages ) |
| 217 | return wxStandardPathsBase::GetLocalizedResourcesDir(lang, category); |
| 218 | |
| 219 | return GetInstallPrefix() + _T("/share/locale/") + lang + _T("/LC_MESSAGES"); |
| 220 | } |
| 221 | |
| 222 | wxString wxStandardPaths::GetDocumentsDir() const |
| 223 | { |
| 224 | { |
| 225 | wxLogNull logNull; |
| 226 | wxString homeDir = wxFileName::GetHomeDir(); |
| 227 | wxString configPath; |
| 228 | if (wxGetenv(wxT("XDG_CONFIG_HOME"))) |
| 229 | configPath = wxGetenv(wxT("XDG_CONFIG_HOME")); |
| 230 | else |
| 231 | configPath = homeDir + wxT("/.config"); |
| 232 | wxString dirsFile = configPath + wxT("/user-dirs.dirs"); |
| 233 | if (wxFileExists(dirsFile)) |
| 234 | { |
| 235 | wxTextFile textFile; |
| 236 | if (textFile.Open(dirsFile)) |
| 237 | { |
| 238 | size_t i; |
| 239 | for (i = 0; i < textFile.GetLineCount(); i++) |
| 240 | { |
| 241 | wxString line(textFile[i]); |
| 242 | int pos = line.Find(wxT("XDG_DOCUMENTS_DIR")); |
| 243 | if (pos != wxNOT_FOUND) |
| 244 | { |
| 245 | wxString value = line.AfterFirst(wxT('=')); |
| 246 | value.Replace(wxT("$HOME"), homeDir); |
| 247 | value.Trim(true); |
| 248 | value.Trim(false); |
| 249 | if (!value.IsEmpty() && wxDirExists(value)) |
| 250 | return value; |
| 251 | else |
| 252 | break; |
| 253 | } |
| 254 | } |
| 255 | } |
| 256 | } |
| 257 | } |
| 258 | |
| 259 | return wxStandardPathsBase::GetDocumentsDir(); |
| 260 | } |
| 261 | |
| 262 | #endif // __VMS/!__VMS |
| 263 | |
| 264 | #endif // wxUSE_STDPATHS |