2017-12-17 20:40:21 +00:00
|
|
|
#if defined(__unix__) || defined(__APPLE__)
|
2017-03-04 01:45:20 +00:00
|
|
|
#include "platform.h"
|
|
|
|
|
2017-03-25 20:15:00 +00:00
|
|
|
#include "utils.h"
|
2017-03-04 01:45:20 +00:00
|
|
|
|
2017-12-29 22:46:21 +00:00
|
|
|
#include "loguru.hpp"
|
2017-07-28 02:14:33 +00:00
|
|
|
|
2017-03-04 01:45:20 +00:00
|
|
|
#include <pthread.h>
|
2017-12-29 22:46:21 +00:00
|
|
|
#if defined(__FreeBSD__)
|
2018-01-11 02:43:01 +00:00
|
|
|
#include <pthread_np.h>
|
|
|
|
#include <sys/thr.h>
|
2017-12-29 22:46:21 +00:00
|
|
|
#elif defined(__OpenBSD__)
|
2018-01-11 02:43:01 +00:00
|
|
|
#include <pthread_np.h>
|
2017-12-29 22:46:21 +00:00
|
|
|
#endif
|
2017-09-22 01:14:57 +00:00
|
|
|
|
2017-03-04 01:45:20 +00:00
|
|
|
#include <assert.h>
|
|
|
|
#include <errno.h>
|
2017-09-22 01:14:57 +00:00
|
|
|
#include <limits.h>
|
|
|
|
#include <semaphore.h>
|
2017-03-04 01:45:20 +00:00
|
|
|
#include <signal.h>
|
2017-09-22 01:14:57 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2017-04-18 17:21:53 +00:00
|
|
|
#include <dirent.h>
|
2017-04-20 16:47:24 +00:00
|
|
|
#include <sys/stat.h>
|
2017-09-22 01:14:57 +00:00
|
|
|
#include <sys/types.h> // required for stat.h
|
|
|
|
|
|
|
|
#include <errno.h>
|
2017-04-21 06:32:18 +00:00
|
|
|
#include <fcntl.h>
|
2017-04-18 02:59:48 +00:00
|
|
|
|
2017-03-04 01:45:20 +00:00
|
|
|
#include <semaphore.h>
|
|
|
|
#include <sys/mman.h>
|
2017-09-22 01:14:57 +00:00
|
|
|
|
2017-12-17 20:40:21 +00:00
|
|
|
#if defined(__FreeBSD__)
|
2017-12-23 16:01:43 +00:00
|
|
|
#include <sys/param.h> // MAXPATHLEN
|
|
|
|
#include <sys/sysctl.h> // sysctl
|
2017-12-17 20:40:21 +00:00
|
|
|
#elif defined(__linux__)
|
2017-12-23 16:01:43 +00:00
|
|
|
#include <malloc.h>
|
2017-10-31 22:43:07 +00:00
|
|
|
#endif
|
|
|
|
|
2017-12-29 22:46:21 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <string>
|
|
|
|
|
2017-11-30 18:40:42 +00:00
|
|
|
namespace {
|
|
|
|
|
2017-12-01 17:50:39 +00:00
|
|
|
// Returns the canonicalized absolute pathname, without expanding symbolic
|
|
|
|
// links. This is a variant of realpath(2), C++ rewrite of
|
2017-11-30 18:40:42 +00:00
|
|
|
// https://github.com/freebsd/freebsd/blob/master/lib/libc/stdlib/realpath.c
|
|
|
|
optional<std::string> RealPathNotExpandSymlink(std::string path) {
|
|
|
|
if (path.empty()) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return nullopt;
|
|
|
|
}
|
|
|
|
if (path[0] == '\0') {
|
|
|
|
errno = ENOENT;
|
|
|
|
return nullopt;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do not use PATH_MAX because it is tricky on Linux.
|
|
|
|
// See https://eklitzke.org/path-max-is-tricky
|
|
|
|
char tmp[1024];
|
|
|
|
std::string resolved;
|
|
|
|
size_t i = 0;
|
|
|
|
struct stat sb;
|
|
|
|
if (path[0] == '/') {
|
|
|
|
resolved = "/";
|
|
|
|
i = 1;
|
|
|
|
} else {
|
|
|
|
if (!getcwd(tmp, sizeof tmp))
|
|
|
|
return nullopt;
|
|
|
|
resolved = tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (i < path.size()) {
|
|
|
|
auto j = path.find('/', i);
|
|
|
|
if (j == std::string::npos)
|
|
|
|
j = path.size();
|
|
|
|
auto next_token = path.substr(i, j - i);
|
|
|
|
i = j + 1;
|
|
|
|
if (resolved.back() != '/')
|
|
|
|
resolved += '/';
|
|
|
|
if (next_token.empty() || next_token == ".") {
|
|
|
|
// Handle consequential slashes and "."
|
|
|
|
continue;
|
|
|
|
} else if (next_token == "..") {
|
|
|
|
// Strip the last path component except when it is single "/"
|
|
|
|
if (resolved.size() > 1)
|
|
|
|
resolved.resize(resolved.rfind('/', resolved.size() - 2) + 1);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// Append the next path component.
|
|
|
|
// Here we differ from realpath(3), we use stat(2) instead of
|
|
|
|
// lstat(2) because we do not want to resolve symlinks.
|
|
|
|
resolved += next_token;
|
|
|
|
if (stat(resolved.c_str(), &sb) != 0)
|
|
|
|
return nullopt;
|
|
|
|
if (!S_ISDIR(sb.st_mode) && j < path.size()) {
|
|
|
|
errno = ENOTDIR;
|
|
|
|
return nullopt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove trailing slash except when a single "/".
|
|
|
|
if (resolved.size() > 1 && resolved.back() == '/')
|
|
|
|
resolved.pop_back();
|
|
|
|
return resolved;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2017-09-22 01:14:57 +00:00
|
|
|
void PlatformInit() {}
|
2017-03-28 01:47:12 +00:00
|
|
|
|
2017-12-14 22:35:21 +00:00
|
|
|
#ifdef __APPLE__
|
2017-12-23 16:01:43 +00:00
|
|
|
extern "C" int _NSGetExecutablePath(char* buf, uint32_t* bufsize);
|
2017-12-14 22:35:21 +00:00
|
|
|
#endif
|
|
|
|
|
2017-12-23 16:01:43 +00:00
|
|
|
// See
|
|
|
|
// https://stackoverflow.com/questions/143174/how-do-i-get-the-directory-that-a-program-is-running-from
|
2017-12-14 22:35:21 +00:00
|
|
|
std::string GetExecutablePath() {
|
2017-12-17 20:40:21 +00:00
|
|
|
#ifdef __APPLE__
|
2017-12-14 22:35:21 +00:00
|
|
|
uint32_t size = 0;
|
|
|
|
_NSGetExecutablePath(nullptr, &size);
|
2017-12-23 16:01:43 +00:00
|
|
|
char* buffer = new char[size];
|
2017-12-14 22:35:21 +00:00
|
|
|
_NSGetExecutablePath(buffer, &size);
|
2018-01-21 04:37:24 +00:00
|
|
|
char* resolved = realpath(buffer, nullptr);
|
|
|
|
std::string result(resolved);
|
2017-12-14 22:35:21 +00:00
|
|
|
delete[] buffer;
|
2018-01-21 04:37:24 +00:00
|
|
|
free(resolved);
|
2017-12-14 22:35:21 +00:00
|
|
|
return result;
|
2017-12-17 20:40:21 +00:00
|
|
|
#elif defined(__FreeBSD__)
|
|
|
|
static const int name[] = {
|
2018-01-11 02:43:01 +00:00
|
|
|
CTL_KERN,
|
|
|
|
KERN_PROC,
|
|
|
|
KERN_PROC_PATHNAME,
|
|
|
|
-1,
|
2017-12-17 20:40:21 +00:00
|
|
|
};
|
|
|
|
char path[MAXPATHLEN];
|
|
|
|
size_t len = sizeof(path);
|
|
|
|
path[0] = '\0';
|
|
|
|
(void)sysctl(name, 4, path, &len, NULL, 0);
|
|
|
|
return std::string(path);
|
|
|
|
#else
|
|
|
|
char buffer[PATH_MAX] = {0};
|
2018-01-11 02:43:01 +00:00
|
|
|
if (-1 == readlink("/proc/self/exe", buffer, PATH_MAX))
|
2018-01-03 12:38:01 +00:00
|
|
|
return "";
|
|
|
|
return buffer;
|
2017-12-14 22:35:21 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-10-25 02:11:11 +00:00
|
|
|
std::string GetWorkingDirectory() {
|
|
|
|
char result[FILENAME_MAX];
|
|
|
|
if (!getcwd(result, sizeof(result)))
|
|
|
|
return "";
|
|
|
|
std::string working_dir = std::string(result, strlen(result));
|
|
|
|
EnsureEndsInSlash(working_dir);
|
|
|
|
return working_dir;
|
|
|
|
}
|
|
|
|
|
2017-03-28 01:47:12 +00:00
|
|
|
std::string NormalizePath(const std::string& path) {
|
2017-11-30 18:40:42 +00:00
|
|
|
optional<std::string> resolved = RealPathNotExpandSymlink(path);
|
|
|
|
return resolved ? *resolved : path;
|
2017-03-28 01:47:12 +00:00
|
|
|
}
|
|
|
|
|
2017-04-18 02:59:48 +00:00
|
|
|
bool TryMakeDirectory(const std::string& absolute_path) {
|
2017-09-22 01:14:57 +00:00
|
|
|
const mode_t kMode = 0777; // UNIX style permissions
|
2017-04-18 02:59:48 +00:00
|
|
|
if (mkdir(absolute_path.c_str(), kMode) == -1) {
|
|
|
|
// Success if the directory exists.
|
|
|
|
return errno == EEXIST;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-04-16 22:48:54 +00:00
|
|
|
void SetCurrentThreadName(const std::string& thread_name) {
|
2017-07-28 02:14:33 +00:00
|
|
|
loguru::set_thread_name(thread_name.c_str());
|
2017-12-29 22:35:20 +00:00
|
|
|
#if defined(__APPLE__)
|
|
|
|
pthread_setname_np(thread_name.c_str());
|
|
|
|
#elif defined(__FreeBSD__) || defined(__OpenBSD__)
|
|
|
|
pthread_set_name_np(pthread_self(), thread_name.c_str());
|
|
|
|
#elif defined(__linux__)
|
|
|
|
pthread_setname_np(pthread_self(), thread_name.c_str());
|
2017-04-18 17:21:53 +00:00
|
|
|
#endif
|
2017-04-16 22:48:54 +00:00
|
|
|
}
|
|
|
|
|
2017-08-16 05:39:50 +00:00
|
|
|
optional<int64_t> GetLastModificationTime(const std::string& absolute_path) {
|
2017-04-20 16:47:24 +00:00
|
|
|
struct stat buf;
|
|
|
|
if (stat(absolute_path.c_str(), &buf) != 0) {
|
|
|
|
switch (errno) {
|
|
|
|
case ENOENT:
|
2017-09-22 01:14:57 +00:00
|
|
|
// std::cerr << "GetLastModificationTime: unable to find file " <<
|
|
|
|
// absolute_path << std::endl;
|
2017-08-16 05:39:50 +00:00
|
|
|
return nullopt;
|
2017-04-20 16:47:24 +00:00
|
|
|
case EINVAL:
|
2017-09-22 01:14:57 +00:00
|
|
|
// std::cerr << "GetLastModificationTime: invalid param to _stat for
|
|
|
|
// file file " << absolute_path << std::endl;
|
2017-08-16 05:39:50 +00:00
|
|
|
return nullopt;
|
2017-04-20 16:47:24 +00:00
|
|
|
default:
|
2017-09-22 01:14:57 +00:00
|
|
|
// std::cerr << "GetLastModificationTime: unhandled for " <<
|
|
|
|
// absolute_path << std::endl; exit(1);
|
2017-08-16 05:39:50 +00:00
|
|
|
return nullopt;
|
2017-04-20 16:47:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf.st_mtime;
|
|
|
|
}
|
|
|
|
|
2017-07-29 00:08:18 +00:00
|
|
|
void MoveFileTo(const std::string& dest, const std::string& source) {
|
|
|
|
// TODO/FIXME - do a real move.
|
|
|
|
CopyFileTo(dest, source);
|
|
|
|
}
|
|
|
|
|
2017-04-21 06:32:18 +00:00
|
|
|
// See http://stackoverflow.com/q/13198627
|
|
|
|
void CopyFileTo(const std::string& dest, const std::string& source) {
|
|
|
|
int fd_from = open(source.c_str(), O_RDONLY);
|
|
|
|
if (fd_from < 0)
|
|
|
|
return;
|
|
|
|
|
2017-05-20 00:41:27 +00:00
|
|
|
int fd_to = open(dest.c_str(), O_WRONLY | O_CREAT, 0666);
|
2017-04-21 06:32:18 +00:00
|
|
|
if (fd_to < 0)
|
|
|
|
goto out_error;
|
|
|
|
|
2017-04-21 17:00:36 +00:00
|
|
|
char buf[4096];
|
|
|
|
ssize_t nread;
|
2017-04-21 06:32:18 +00:00
|
|
|
while (nread = read(fd_from, buf, sizeof buf), nread > 0) {
|
2017-09-22 01:14:57 +00:00
|
|
|
char* out_ptr = buf;
|
2017-04-21 06:32:18 +00:00
|
|
|
ssize_t nwritten;
|
|
|
|
|
|
|
|
do {
|
|
|
|
nwritten = write(fd_to, out_ptr, nread);
|
|
|
|
|
|
|
|
if (nwritten >= 0) {
|
|
|
|
nread -= nwritten;
|
|
|
|
out_ptr += nwritten;
|
2017-09-22 01:14:57 +00:00
|
|
|
} else if (errno != EINTR)
|
2017-04-21 06:32:18 +00:00
|
|
|
goto out_error;
|
|
|
|
} while (nread > 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nread == 0) {
|
|
|
|
if (close(fd_to) < 0) {
|
|
|
|
fd_to = -1;
|
|
|
|
goto out_error;
|
|
|
|
}
|
|
|
|
close(fd_from);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
out_error:
|
|
|
|
close(fd_from);
|
|
|
|
if (fd_to >= 0)
|
|
|
|
close(fd_to);
|
|
|
|
}
|
|
|
|
|
2017-05-23 07:24:14 +00:00
|
|
|
bool IsSymLink(const std::string& path) {
|
|
|
|
struct stat buf;
|
2017-12-18 21:48:32 +00:00
|
|
|
return lstat(path.c_str(), &buf) == 0 && S_ISLNK(buf.st_mode);
|
2017-05-23 07:24:14 +00:00
|
|
|
}
|
|
|
|
|
2017-03-29 06:33:38 +00:00
|
|
|
std::vector<std::string> GetPlatformClangArguments() {
|
2017-04-26 04:13:04 +00:00
|
|
|
return {};
|
2017-03-29 06:33:38 +00:00
|
|
|
}
|
2017-03-28 01:47:12 +00:00
|
|
|
|
2017-08-17 18:02:47 +00:00
|
|
|
void FreeUnusedMemory() {
|
2018-01-04 18:55:11 +00:00
|
|
|
#if defined(__GLIBC__)
|
2017-08-17 18:02:47 +00:00
|
|
|
malloc_trim(0);
|
2017-10-31 22:43:07 +00:00
|
|
|
#endif
|
2017-08-17 18:02:47 +00:00
|
|
|
}
|
|
|
|
|
2017-12-22 17:07:21 +00:00
|
|
|
bool RunObjectiveCIndexTests() {
|
|
|
|
#if defined(__APPLE__)
|
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-01-07 07:42:42 +00:00
|
|
|
void TraceMe() {
|
|
|
|
// If the environment variable is defined, wait for a debugger.
|
|
|
|
// In gdb, you need to invoke `signal SIGCONT` if you want cquery to continue
|
|
|
|
// after detaching.
|
|
|
|
if (getenv("CQUERY_TRACEME"))
|
|
|
|
raise(SIGTSTP);
|
|
|
|
}
|
|
|
|
|
2017-03-21 17:06:22 +00:00
|
|
|
#endif
|