2013-01-04 16:01:50 +01:00
|
|
|
// Copyright (c) 2013, Thomas Goyne <plorkyeran@aegisub.org>
|
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice appear in all copies.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
//
|
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
|
|
|
|
#include <libaegisub/path.h>
|
|
|
|
|
|
|
|
#include <libaegisub/util_osx.h>
|
|
|
|
|
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
#include <pwd.h>
|
|
|
|
|
|
|
|
namespace {
|
2013-10-22 03:09:34 +02:00
|
|
|
#ifndef __APPLE__
|
2013-01-04 16:01:50 +01:00
|
|
|
std::string home_dir() {
|
|
|
|
const char *env = getenv("HOME");
|
|
|
|
if (env) return env;
|
|
|
|
|
|
|
|
if ((env = getenv("USER")) || (env = getenv("LOGNAME"))) {
|
|
|
|
if (passwd *user_info = getpwnam(env))
|
|
|
|
return user_info->pw_dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
throw agi::EnvironmentError("Could not get home directory. Make sure HOME is set.");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace agi {
|
|
|
|
|
|
|
|
void Path::FillPlatformSpecificPaths() {
|
2013-10-22 03:09:34 +02:00
|
|
|
#ifndef __APPLE__
|
2013-01-04 16:01:50 +01:00
|
|
|
agi::fs::path home = home_dir();
|
|
|
|
SetToken("?user", home/".aegisub");
|
|
|
|
SetToken("?local", home/".aegisub");
|
2013-10-22 03:09:34 +02:00
|
|
|
SetToken("?data", P_DATA);
|
|
|
|
#else
|
2013-10-22 03:10:21 +02:00
|
|
|
agi::fs::path app_support = agi::util::GetApplicationSupportDirectory();
|
2013-10-22 03:09:34 +02:00
|
|
|
SetToken("?user", app_support/"Aegisub");
|
|
|
|
SetToken("?local", app_support/"Aegisub");
|
2013-10-22 03:10:21 +02:00
|
|
|
SetToken("?data", agi::util::GetBundleSharedSupportDirectory());
|
2013-10-22 03:09:34 +02:00
|
|
|
#endif
|
2013-01-04 16:01:50 +01:00
|
|
|
SetToken("?temp", boost::filesystem::temp_directory_path());
|
|
|
|
SetToken("?dictionary", "/usr/share/hunspell");
|
|
|
|
SetToken("?docs", P_DOC);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|