2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* os_unix.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2020-01-01 11:16:22 +01:00
|
|
|
/* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
|
2014-02-10 02:10:30 +01:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "os_unix.h"
|
|
|
|
|
|
|
|
#ifdef UNIX_ENABLED
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "core/os/thread_dummy.h"
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/project_settings.h"
|
|
|
|
#include "drivers/unix/dir_access_unix.h"
|
|
|
|
#include "drivers/unix/file_access_unix.h"
|
|
|
|
#include "drivers/unix/mutex_posix.h"
|
2018-09-02 05:32:12 +02:00
|
|
|
#include "drivers/unix/net_socket_posix.h"
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "drivers/unix/rw_lock_posix.h"
|
|
|
|
#include "drivers/unix/semaphore_posix.h"
|
|
|
|
#include "drivers/unix/thread_posix.h"
|
|
|
|
#include "servers/visual_server.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-04-20 09:49:48 +02:00
|
|
|
#ifdef __APPLE__
|
|
|
|
#include <mach-o/dyld.h>
|
2018-09-25 13:40:53 +02:00
|
|
|
#include <mach/mach_time.h>
|
2016-04-20 09:49:48 +02:00
|
|
|
#endif
|
|
|
|
|
2020-09-18 11:54:18 +02:00
|
|
|
#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
|
2015-01-27 10:01:37 +01:00
|
|
|
#include <sys/param.h>
|
2018-01-08 01:52:24 +01:00
|
|
|
#include <sys/sysctl.h>
|
2015-01-27 10:01:37 +01:00
|
|
|
#endif
|
2018-09-11 18:13:45 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
#include <assert.h>
|
2017-03-08 02:50:13 +01:00
|
|
|
#include <dlfcn.h>
|
2017-03-05 16:44:50 +01:00
|
|
|
#include <errno.h>
|
|
|
|
#include <poll.h>
|
|
|
|
#include <signal.h>
|
2014-02-10 02:10:30 +01:00
|
|
|
#include <stdarg.h>
|
2020-01-04 04:01:57 +01:00
|
|
|
#include <stdio.h>
|
2014-02-10 02:10:30 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2017-03-05 16:44:50 +01:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/wait.h>
|
2017-09-22 07:56:02 +02:00
|
|
|
#include <unistd.h>
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-09-25 13:40:53 +02:00
|
|
|
/// Clock Setup function (used by get_ticks_usec)
|
|
|
|
static uint64_t _clock_start = 0;
|
|
|
|
#if defined(__APPLE__)
|
|
|
|
static double _clock_scale = 0;
|
|
|
|
static void _setup_clock() {
|
|
|
|
mach_timebase_info_data_t info;
|
|
|
|
kern_return_t ret = mach_timebase_info(&info);
|
2019-08-15 04:57:49 +02:00
|
|
|
ERR_FAIL_COND_MSG(ret != 0, "OS CLOCK IS NOT WORKING!");
|
2018-09-30 18:00:17 +02:00
|
|
|
_clock_scale = ((double)info.numer / (double)info.denom) / 1000.0;
|
2018-09-25 13:40:53 +02:00
|
|
|
_clock_start = mach_absolute_time() * _clock_scale;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#if defined(CLOCK_MONOTONIC_RAW) && !defined(JAVASCRIPT_ENABLED) // This is a better clock on Linux.
|
|
|
|
#define GODOT_CLOCK CLOCK_MONOTONIC_RAW
|
|
|
|
#else
|
|
|
|
#define GODOT_CLOCK CLOCK_MONOTONIC
|
|
|
|
#endif
|
|
|
|
static void _setup_clock() {
|
|
|
|
struct timespec tv_now = { 0, 0 };
|
2019-08-15 04:57:49 +02:00
|
|
|
ERR_FAIL_COND_MSG(clock_gettime(GODOT_CLOCK, &tv_now) != 0, "OS CLOCK IS NOT WORKING!");
|
2018-09-25 13:40:53 +02:00
|
|
|
_clock_start = ((uint64_t)tv_now.tv_nsec / 1000L) + (uint64_t)tv_now.tv_sec * 1000000L;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void OS_Unix::debug_break() {
|
|
|
|
|
|
|
|
assert(false);
|
|
|
|
};
|
|
|
|
|
2018-02-11 12:08:37 +01:00
|
|
|
static void handle_interrupt(int sig) {
|
|
|
|
if (ScriptDebugger::get_singleton() == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ScriptDebugger::get_singleton()->set_depth(-1);
|
|
|
|
ScriptDebugger::get_singleton()->set_lines_left(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void OS_Unix::initialize_debugging() {
|
|
|
|
|
|
|
|
if (ScriptDebugger::get_singleton() != NULL) {
|
|
|
|
struct sigaction action;
|
2019-04-08 16:06:57 +02:00
|
|
|
memset(&action, 0, sizeof(action));
|
2018-02-11 12:08:37 +01:00
|
|
|
action.sa_handler = handle_interrupt;
|
|
|
|
sigaction(SIGINT, &action, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
int OS_Unix::unix_initialize_audio(int p_audio_driver) {
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void OS_Unix::initialize_core() {
|
|
|
|
|
2018-03-20 04:15:27 +01:00
|
|
|
#ifdef NO_THREADS
|
2014-02-10 02:10:30 +01:00
|
|
|
ThreadDummy::make_default();
|
|
|
|
SemaphoreDummy::make_default();
|
|
|
|
MutexDummy::make_default();
|
2018-03-20 04:15:27 +01:00
|
|
|
RWLockDummy::make_default();
|
2014-02-10 02:10:30 +01:00
|
|
|
#else
|
2017-03-05 16:44:50 +01:00
|
|
|
ThreadPosix::make_default();
|
2019-10-24 16:34:18 +02:00
|
|
|
#if !defined(OSX_ENABLED) && !defined(IPHONE_ENABLED)
|
2014-02-10 02:10:30 +01:00
|
|
|
SemaphorePosix::make_default();
|
2019-10-24 16:34:18 +02:00
|
|
|
#endif
|
2017-03-05 16:44:50 +01:00
|
|
|
MutexPosix::make_default();
|
2017-01-07 22:25:37 +01:00
|
|
|
RWLockPosix::make_default();
|
2014-02-10 02:10:30 +01:00
|
|
|
#endif
|
|
|
|
FileAccess::make_default<FileAccessUnix>(FileAccess::ACCESS_RESOURCES);
|
|
|
|
FileAccess::make_default<FileAccessUnix>(FileAccess::ACCESS_USERDATA);
|
|
|
|
FileAccess::make_default<FileAccessUnix>(FileAccess::ACCESS_FILESYSTEM);
|
|
|
|
//FileAccessBufferedFA<FileAccessUnix>::make_default();
|
|
|
|
DirAccess::make_default<DirAccessUnix>(DirAccess::ACCESS_RESOURCES);
|
|
|
|
DirAccess::make_default<DirAccessUnix>(DirAccess::ACCESS_USERDATA);
|
|
|
|
DirAccess::make_default<DirAccessUnix>(DirAccess::ACCESS_FILESYSTEM);
|
|
|
|
|
|
|
|
#ifndef NO_NETWORK
|
2018-09-02 05:32:12 +02:00
|
|
|
NetSocketPosix::make_default();
|
2014-02-10 02:10:30 +01:00
|
|
|
IP_Unix::make_default();
|
|
|
|
#endif
|
|
|
|
|
2018-09-25 13:40:53 +02:00
|
|
|
_setup_clock();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2017-09-22 07:56:02 +02:00
|
|
|
void OS_Unix::finalize_core() {
|
2018-09-13 15:47:00 +02:00
|
|
|
|
|
|
|
NetSocketPosix::cleanup();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void OS_Unix::alert(const String &p_alert, const String &p_title) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
fprintf(stderr, "ERROR: %s\n", p_alert.utf8().get_data());
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
String OS_Unix::get_stdin_string(bool p_block) {
|
|
|
|
|
|
|
|
if (p_block) {
|
|
|
|
char buff[1024];
|
2017-12-10 17:05:24 +01:00
|
|
|
String ret = stdin_buf + fgets(buff, 1024, stdin);
|
2014-02-10 02:10:30 +01:00
|
|
|
stdin_buf = "";
|
|
|
|
return ret;
|
2017-12-10 17:05:24 +01:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2019-05-20 19:36:24 +02:00
|
|
|
String OS_Unix::get_name() const {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
return "Unix";
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t OS_Unix::get_unix_time() const {
|
|
|
|
|
|
|
|
return time(NULL);
|
|
|
|
};
|
|
|
|
|
2016-01-10 22:24:55 +01:00
|
|
|
uint64_t OS_Unix::get_system_time_secs() const {
|
2015-08-06 19:29:33 +02:00
|
|
|
struct timeval tv_now;
|
2015-08-06 20:08:48 +02:00
|
|
|
gettimeofday(&tv_now, NULL);
|
2016-01-10 22:24:55 +01:00
|
|
|
return uint64_t(tv_now.tv_sec);
|
2015-08-06 19:29:33 +02:00
|
|
|
}
|
|
|
|
|
2018-12-19 22:18:52 +01:00
|
|
|
uint64_t OS_Unix::get_system_time_msecs() const {
|
|
|
|
struct timeval tv_now;
|
|
|
|
gettimeofday(&tv_now, NULL);
|
2019-10-01 11:44:26 +02:00
|
|
|
return uint64_t(tv_now.tv_sec) * 1000 + uint64_t(tv_now.tv_usec) / 1000;
|
2018-12-19 22:18:52 +01:00
|
|
|
}
|
|
|
|
|
2015-06-06 03:40:56 +02:00
|
|
|
OS::Date OS_Unix::get_date(bool utc) const {
|
2017-03-05 16:44:50 +01:00
|
|
|
time_t t = time(NULL);
|
2020-09-04 13:22:43 +02:00
|
|
|
struct tm lt;
|
|
|
|
if (utc) {
|
|
|
|
gmtime_r(&t, <);
|
|
|
|
} else {
|
|
|
|
localtime_r(&t, <);
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
Date ret;
|
2020-09-04 13:22:43 +02:00
|
|
|
ret.year = 1900 + lt.tm_year;
|
2016-03-13 03:13:57 +01:00
|
|
|
// Index starting at 1 to match OS_Unix::get_date
|
2017-03-05 16:44:50 +01:00
|
|
|
// and Windows SYSTEMTIME and tm_mon follows the typical structure
|
2016-03-13 03:13:57 +01:00
|
|
|
// of 0-11, noted here: http://www.cplusplus.com/reference/ctime/tm/
|
2020-09-04 13:22:43 +02:00
|
|
|
ret.month = (Month)(lt.tm_mon + 1);
|
|
|
|
ret.day = lt.tm_mday;
|
|
|
|
ret.weekday = (Weekday)lt.tm_wday;
|
|
|
|
ret.dst = lt.tm_isdst;
|
2017-03-05 16:44:50 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
return ret;
|
|
|
|
}
|
2016-03-16 05:17:10 +01:00
|
|
|
|
2015-06-06 03:40:56 +02:00
|
|
|
OS::Time OS_Unix::get_time(bool utc) const {
|
2017-03-05 16:44:50 +01:00
|
|
|
time_t t = time(NULL);
|
2020-09-04 13:22:43 +02:00
|
|
|
struct tm lt;
|
|
|
|
if (utc) {
|
|
|
|
gmtime_r(&t, <);
|
|
|
|
} else {
|
|
|
|
localtime_r(&t, <);
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
Time ret;
|
2020-09-04 13:22:43 +02:00
|
|
|
ret.hour = lt.tm_hour;
|
|
|
|
ret.min = lt.tm_min;
|
|
|
|
ret.sec = lt.tm_sec;
|
2015-06-06 05:35:38 +02:00
|
|
|
get_time_zone_info();
|
2014-02-10 02:10:30 +01:00
|
|
|
return ret;
|
|
|
|
}
|
2015-06-06 05:35:38 +02:00
|
|
|
|
|
|
|
OS::TimeZoneInfo OS_Unix::get_time_zone_info() const {
|
|
|
|
time_t t = time(NULL);
|
2020-09-04 13:22:43 +02:00
|
|
|
struct tm lt;
|
|
|
|
localtime_r(&t, <);
|
2015-06-06 05:35:38 +02:00
|
|
|
char name[16];
|
2020-09-04 13:22:43 +02:00
|
|
|
strftime(name, 16, "%Z", <);
|
2015-06-06 05:35:38 +02:00
|
|
|
name[15] = 0;
|
|
|
|
TimeZoneInfo ret;
|
|
|
|
ret.name = name;
|
|
|
|
|
|
|
|
char bias_buf[16];
|
2020-09-04 13:22:43 +02:00
|
|
|
strftime(bias_buf, 16, "%z", <);
|
2015-06-06 05:35:38 +02:00
|
|
|
int bias;
|
|
|
|
bias_buf[15] = 0;
|
|
|
|
sscanf(bias_buf, "%d", &bias);
|
|
|
|
|
|
|
|
// convert from ISO 8601 (1 minute=1, 1 hour=100) to minutes
|
|
|
|
int hour = (int)bias / 100;
|
|
|
|
int minutes = bias % 100;
|
|
|
|
if (bias < 0)
|
|
|
|
ret.bias = hour * 60 - minutes;
|
|
|
|
else
|
|
|
|
ret.bias = hour * 60 + minutes;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void OS_Unix::delay_usec(uint32_t p_usec) const {
|
|
|
|
|
2019-07-07 23:08:51 +02:00
|
|
|
struct timespec rem = { static_cast<time_t>(p_usec / 1000000), (static_cast<long>(p_usec) % 1000000) * 1000 };
|
2017-08-22 18:02:12 +02:00
|
|
|
while (nanosleep(&rem, &rem) == EINTR) {
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
uint64_t OS_Unix::get_ticks_usec() const {
|
|
|
|
|
2018-09-25 13:40:53 +02:00
|
|
|
#if defined(__APPLE__)
|
|
|
|
uint64_t longtime = mach_absolute_time() * _clock_scale;
|
|
|
|
#else
|
|
|
|
// Unchecked return. Static analyzers might complain.
|
2019-02-13 09:23:29 +01:00
|
|
|
// If _setup_clock() succeeded, we assume clock_gettime() works.
|
2018-09-25 13:40:53 +02:00
|
|
|
struct timespec tv_now = { 0, 0 };
|
|
|
|
clock_gettime(GODOT_CLOCK, &tv_now);
|
|
|
|
uint64_t longtime = ((uint64_t)tv_now.tv_nsec / 1000L) + (uint64_t)tv_now.tv_sec * 1000000L;
|
|
|
|
#endif
|
|
|
|
longtime -= _clock_start;
|
2017-03-05 16:44:50 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
return longtime;
|
|
|
|
}
|
|
|
|
|
2019-04-07 20:46:52 +02:00
|
|
|
Error OS_Unix::execute(const String &p_path, const List<String> &p_arguments, bool p_blocking, ProcessID *r_child_id, String *r_pipe, int *r_exitcode, bool read_stderr, Mutex *p_pipe_mutex) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-10-29 21:15:15 +01:00
|
|
|
#ifdef __EMSCRIPTEN__
|
|
|
|
// Don't compile this code at all to avoid undefined references.
|
|
|
|
// Actual virtual call goes to OS_JavaScript.
|
|
|
|
ERR_FAIL_V(ERR_BUG);
|
|
|
|
#else
|
2014-02-10 02:10:30 +01:00
|
|
|
if (p_blocking && r_pipe) {
|
|
|
|
|
|
|
|
String argss;
|
2017-03-05 16:44:50 +01:00
|
|
|
argss = "\"" + p_path + "\"";
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < p_arguments.size(); i++) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
argss += String(" \"") + p_arguments[i] + "\"";
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2017-10-03 20:09:04 +02:00
|
|
|
if (read_stderr) {
|
|
|
|
argss += " 2>&1"; // Read stderr too
|
|
|
|
} else {
|
|
|
|
argss += " 2>/dev/null"; //silence stderr
|
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
FILE *f = popen(argss.utf8().get_data(), "r");
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2019-09-25 10:28:50 +02:00
|
|
|
ERR_FAIL_COND_V_MSG(!f, ERR_CANT_OPEN, "Cannot pipe stream from process running with following arguments '" + argss + "'.");
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
char buf[65535];
|
2019-04-07 20:46:52 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
while (fgets(buf, 65535, f)) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2019-04-07 20:46:52 +02:00
|
|
|
if (p_pipe_mutex) {
|
|
|
|
p_pipe_mutex->lock();
|
|
|
|
}
|
2020-02-19 19:59:37 +01:00
|
|
|
(*r_pipe) += String::utf8(buf);
|
2019-04-07 20:46:52 +02:00
|
|
|
if (p_pipe_mutex) {
|
|
|
|
p_pipe_mutex->unlock();
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
int rv = pclose(f);
|
|
|
|
if (r_exitcode)
|
2019-09-07 19:39:24 +02:00
|
|
|
*r_exitcode = WEXITSTATUS(rv);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
pid_t pid = fork();
|
2017-03-05 16:44:50 +01:00
|
|
|
ERR_FAIL_COND_V(pid < 0, ERR_CANT_FORK);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (pid == 0) {
|
2014-02-10 02:10:30 +01:00
|
|
|
// is child
|
2019-04-07 20:46:52 +02:00
|
|
|
|
|
|
|
if (!p_blocking) {
|
|
|
|
// For non blocking calls, create a new session-ID so parent won't wait for it.
|
|
|
|
// This ensures the process won't go zombie at end.
|
|
|
|
setsid();
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Vector<CharString> cs;
|
|
|
|
cs.push_back(p_path.utf8());
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < p_arguments.size(); i++)
|
2014-02-10 02:10:30 +01:00
|
|
|
cs.push_back(p_arguments[i].utf8());
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector<char *> args;
|
|
|
|
for (int i = 0; i < cs.size(); i++)
|
2018-02-17 14:00:39 +01:00
|
|
|
args.push_back((char *)cs[i].get_data());
|
2014-02-10 02:10:30 +01:00
|
|
|
args.push_back(0);
|
|
|
|
|
2017-10-11 01:03:05 +02:00
|
|
|
execvp(p_path.utf8().get_data(), &args[0]);
|
2014-02-10 02:10:30 +01:00
|
|
|
// still alive? something failed..
|
2017-03-05 16:44:50 +01:00
|
|
|
fprintf(stderr, "**ERROR** OS_Unix::execute - Could not create child process while executing: %s\n", p_path.utf8().get_data());
|
2020-08-11 16:45:09 +02:00
|
|
|
raise(SIGKILL);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (p_blocking) {
|
|
|
|
|
|
|
|
int status;
|
2017-03-05 16:44:50 +01:00
|
|
|
waitpid(pid, &status, 0);
|
2014-02-10 02:10:30 +01:00
|
|
|
if (r_exitcode)
|
2017-03-05 16:44:50 +01:00
|
|
|
*r_exitcode = WEXITSTATUS(status);
|
2019-04-07 20:46:52 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
} else {
|
|
|
|
|
|
|
|
if (r_child_id)
|
2017-03-05 16:44:50 +01:00
|
|
|
*r_child_id = pid;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return OK;
|
2018-10-29 21:15:15 +01:00
|
|
|
#endif
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2018-08-27 17:32:43 +02:00
|
|
|
Error OS_Unix::kill(const ProcessID &p_pid) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
int ret = ::kill(p_pid, SIGKILL);
|
2014-12-17 02:31:57 +01:00
|
|
|
if (!ret) {
|
|
|
|
//avoid zombie process
|
|
|
|
int st;
|
2017-03-05 16:44:50 +01:00
|
|
|
::waitpid(p_pid, &st, 0);
|
2014-12-17 02:31:57 +01:00
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
return ret ? ERR_INVALID_PARAMETER : OK;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2017-08-07 12:17:31 +02:00
|
|
|
int OS_Unix::get_process_id() const {
|
2014-04-05 17:39:30 +02:00
|
|
|
|
|
|
|
return getpid();
|
|
|
|
};
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool OS_Unix::has_environment(const String &p_var) const {
|
2014-04-05 17:39:30 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
return getenv(p_var.utf8().get_data()) != NULL;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
String OS_Unix::get_locale() const {
|
|
|
|
|
|
|
|
if (!has_environment("LANG"))
|
|
|
|
return "en";
|
|
|
|
|
|
|
|
String locale = get_environment("LANG");
|
|
|
|
int tp = locale.find(".");
|
2017-03-05 16:44:50 +01:00
|
|
|
if (tp != -1)
|
|
|
|
locale = locale.substr(0, tp);
|
2014-02-10 02:10:30 +01:00
|
|
|
return locale;
|
|
|
|
}
|
|
|
|
|
2017-12-06 19:54:22 +01:00
|
|
|
Error OS_Unix::open_dynamic_library(const String p_path, void *&p_library_handle, bool p_also_set_library_path) {
|
2018-01-04 19:42:29 +01:00
|
|
|
|
|
|
|
String path = p_path;
|
|
|
|
|
2018-04-28 14:36:35 +02:00
|
|
|
if (FileAccess::exists(path) && path.is_rel_path()) {
|
|
|
|
// dlopen expects a slash, in this case a leading ./ for it to be interpreted as a relative path,
|
|
|
|
// otherwise it will end up searching various system directories for the lib instead and finally failing.
|
|
|
|
path = "./" + path;
|
|
|
|
}
|
|
|
|
|
2018-01-04 19:42:29 +01:00
|
|
|
if (!FileAccess::exists(path)) {
|
|
|
|
//this code exists so gdnative can load .so files from within the executable path
|
|
|
|
path = get_executable_path().get_base_dir().plus_file(p_path.get_file());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!FileAccess::exists(path)) {
|
|
|
|
//this code exists so gdnative can load .so files from a standard unix location
|
|
|
|
path = get_executable_path().get_base_dir().plus_file("../lib").plus_file(p_path.get_file());
|
|
|
|
}
|
|
|
|
|
|
|
|
p_library_handle = dlopen(path.utf8().get_data(), RTLD_NOW);
|
2019-08-15 04:57:49 +02:00
|
|
|
ERR_FAIL_COND_V_MSG(!p_library_handle, ERR_CANT_OPEN, "Can't open dynamic library: " + p_path + ". Error: " + dlerror());
|
2017-03-08 02:50:13 +01:00
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
2017-03-08 03:59:12 +01:00
|
|
|
Error OS_Unix::close_dynamic_library(void *p_library_handle) {
|
|
|
|
if (dlclose(p_library_handle)) {
|
2017-03-08 02:50:13 +01:00
|
|
|
return FAILED;
|
|
|
|
}
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
2017-07-27 09:23:21 +02:00
|
|
|
Error OS_Unix::get_dynamic_library_symbol_handle(void *p_library_handle, const String p_name, void *&p_symbol_handle, bool p_optional) {
|
2017-04-06 14:00:54 +02:00
|
|
|
const char *error;
|
2017-03-08 02:50:13 +01:00
|
|
|
dlerror(); // Clear existing errors
|
|
|
|
|
|
|
|
p_symbol_handle = dlsym(p_library_handle, p_name.utf8().get_data());
|
|
|
|
|
2017-03-08 03:59:12 +01:00
|
|
|
error = dlerror();
|
|
|
|
if (error != NULL) {
|
2019-08-15 04:57:49 +02:00
|
|
|
ERR_FAIL_COND_V_MSG(!p_optional, ERR_CANT_RESOLVE, "Can't resolve symbol " + p_name + ". Error: " + error + ".");
|
|
|
|
|
|
|
|
return ERR_CANT_RESOLVE;
|
2017-03-08 02:50:13 +01:00
|
|
|
}
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Error OS_Unix::set_cwd(const String &p_cwd) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (chdir(p_cwd.utf8().get_data()) != 0)
|
2014-02-10 02:10:30 +01:00
|
|
|
return ERR_CANT_OPEN;
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
String OS_Unix::get_environment(const String &p_var) const {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
if (getenv(p_var.utf8().get_data()))
|
|
|
|
return getenv(p_var.utf8().get_data());
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2019-01-29 22:59:38 +01:00
|
|
|
bool OS_Unix::set_environment(const String &p_var, const String &p_value) const {
|
|
|
|
|
2019-02-04 00:44:37 +01:00
|
|
|
return setenv(p_var.utf8().get_data(), p_value.utf8().get_data(), /* overwrite: */ true) == 0;
|
2019-01-29 22:59:38 +01:00
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
int OS_Unix::get_processor_count() const {
|
|
|
|
|
|
|
|
return sysconf(_SC_NPROCESSORS_CONF);
|
|
|
|
}
|
|
|
|
|
2017-11-17 15:25:22 +01:00
|
|
|
String OS_Unix::get_user_data_dir() const {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-11-26 19:00:53 +01:00
|
|
|
String appname = get_safe_dir_name(ProjectSettings::get_singleton()->get("application/config/name"));
|
Add initial support for the XDG Base Directory spec
Spec version 0.7 from https://standards.freedesktop.org/basedir-spec/basedir-spec-0.7.html
(latest as of this commit).
Three virtual methods are added to OS for the various XDG paths we will use:
- OS::get_data_path gives XDG_DATA_HOME, or if missing:
~/.local/share on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_config_path gives XDG_CONFIG_HOME, or if missing:
~/.config on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_cache_path gives XDG_CACHE_HOME, or if missing:
~/.cache on X11, ~/Library/Caches on macOS and %APPDATA% on Windows
So for Windows there are no changes, for Linux we follow the full split spec
and for macOS stuff will move from ~/.godot to ~/Library/Application Support/Godot.
Support for system-wide installation of templates on Unix was removed for now,
as it's a bit hackish and I don't think anyone uses it.
user:// will still be OS::get_data_path() + "/godot/app_userdata/$name" by
default, but when using the application/config/use_shared_user_dir option
it will now use XDG_DATA_HOME/$name, e.g. ~/.local/share/MyGame.
For now everything still goes in EditorSettings::get_settings_dir(), but
this will be changed in a later commit to make use of the new splitting
where relevant.
Part of #3513.
2017-11-17 17:11:41 +01:00
|
|
|
if (appname != "") {
|
2017-11-26 19:00:53 +01:00
|
|
|
bool use_custom_dir = ProjectSettings::get_singleton()->get("application/config/use_custom_user_dir");
|
|
|
|
if (use_custom_dir) {
|
|
|
|
String custom_dir = get_safe_dir_name(ProjectSettings::get_singleton()->get("application/config/custom_user_dir_name"), true);
|
|
|
|
if (custom_dir == "") {
|
|
|
|
custom_dir = appname;
|
|
|
|
}
|
|
|
|
return get_data_path().plus_file(custom_dir);
|
Add initial support for the XDG Base Directory spec
Spec version 0.7 from https://standards.freedesktop.org/basedir-spec/basedir-spec-0.7.html
(latest as of this commit).
Three virtual methods are added to OS for the various XDG paths we will use:
- OS::get_data_path gives XDG_DATA_HOME, or if missing:
~/.local/share on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_config_path gives XDG_CONFIG_HOME, or if missing:
~/.config on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_cache_path gives XDG_CACHE_HOME, or if missing:
~/.cache on X11, ~/Library/Caches on macOS and %APPDATA% on Windows
So for Windows there are no changes, for Linux we follow the full split spec
and for macOS stuff will move from ~/.godot to ~/Library/Application Support/Godot.
Support for system-wide installation of templates on Unix was removed for now,
as it's a bit hackish and I don't think anyone uses it.
user:// will still be OS::get_data_path() + "/godot/app_userdata/$name" by
default, but when using the application/config/use_shared_user_dir option
it will now use XDG_DATA_HOME/$name, e.g. ~/.local/share/MyGame.
For now everything still goes in EditorSettings::get_settings_dir(), but
this will be changed in a later commit to make use of the new splitting
where relevant.
Part of #3513.
2017-11-17 17:11:41 +01:00
|
|
|
} else {
|
2017-11-26 19:00:53 +01:00
|
|
|
return get_data_path().plus_file(get_godot_dir_name()).plus_file("app_userdata").plus_file(appname);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-19 22:00:46 +02:00
|
|
|
return ProjectSettings::get_singleton()->get_resource_path();
|
2017-02-06 04:38:39 +01:00
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
String OS_Unix::get_executable_path() const {
|
|
|
|
|
|
|
|
#ifdef __linux__
|
|
|
|
//fix for running from a symlink
|
|
|
|
char buf[256];
|
2017-03-05 16:44:50 +01:00
|
|
|
memset(buf, 0, 256);
|
2018-10-02 20:42:57 +02:00
|
|
|
ssize_t len = readlink("/proc/self/exe", buf, sizeof(buf));
|
2014-02-15 06:01:39 +01:00
|
|
|
String b;
|
2018-10-02 20:42:57 +02:00
|
|
|
if (len > 0) {
|
|
|
|
b.parse_utf8(buf, len);
|
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
if (b == "") {
|
2014-02-10 02:10:30 +01:00
|
|
|
WARN_PRINT("Couldn't get executable path from /proc/self/exe, using argv[0]");
|
|
|
|
return OS::get_executable_path();
|
|
|
|
}
|
|
|
|
return b;
|
2020-09-18 11:54:18 +02:00
|
|
|
#elif defined(__OpenBSD__) || defined(__NetBSD__)
|
2015-01-27 10:01:37 +01:00
|
|
|
char resolved_path[MAXPATHLEN];
|
|
|
|
|
|
|
|
realpath(OS::get_executable_path().utf8().get_data(), resolved_path);
|
|
|
|
|
|
|
|
return String(resolved_path);
|
2018-01-08 01:52:24 +01:00
|
|
|
#elif defined(__FreeBSD__)
|
|
|
|
int mib[4] = { CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1 };
|
|
|
|
char buf[MAXPATHLEN];
|
|
|
|
size_t len = sizeof(buf);
|
|
|
|
if (sysctl(mib, 4, buf, &len, NULL, 0) != 0) {
|
|
|
|
WARN_PRINT("Couldn't get executable path from sysctl");
|
|
|
|
return OS::get_executable_path();
|
|
|
|
}
|
|
|
|
String b;
|
|
|
|
b.parse_utf8(buf);
|
|
|
|
return b;
|
2016-04-20 09:49:48 +02:00
|
|
|
#elif defined(__APPLE__)
|
|
|
|
char temp_path[1];
|
2017-03-05 16:44:50 +01:00
|
|
|
uint32_t buff_size = 1;
|
2016-04-20 09:49:48 +02:00
|
|
|
_NSGetExecutablePath(temp_path, &buff_size);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
char *resolved_path = new char[buff_size + 1];
|
2016-04-20 09:49:48 +02:00
|
|
|
|
|
|
|
if (_NSGetExecutablePath(resolved_path, &buff_size) == 1)
|
|
|
|
WARN_PRINT("MAXPATHLEN is too small");
|
|
|
|
|
|
|
|
String path(resolved_path);
|
|
|
|
delete[] resolved_path;
|
|
|
|
|
|
|
|
return path;
|
2014-02-10 02:10:30 +01:00
|
|
|
#else
|
|
|
|
ERR_PRINT("Warning, don't know how to obtain executable path on this OS! Please override this function properly.");
|
|
|
|
return OS::get_executable_path();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-09-22 07:56:02 +02:00
|
|
|
void UnixTerminalLogger::log_error(const char *p_function, const char *p_file, int p_line, const char *p_code, const char *p_rationale, ErrorType p_type) {
|
|
|
|
if (!should_log(true)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *err_details;
|
|
|
|
if (p_rationale && p_rationale[0])
|
|
|
|
err_details = p_rationale;
|
|
|
|
else
|
|
|
|
err_details = p_code;
|
|
|
|
|
2020-01-04 04:01:57 +01:00
|
|
|
// Disable color codes if stdout is not a TTY.
|
|
|
|
// This prevents Godot from writing ANSI escape codes when redirecting
|
|
|
|
// stdout and stderr to a file.
|
|
|
|
const bool tty = isatty(fileno(stdout));
|
|
|
|
const char *red = tty ? "\E[0;31m" : "";
|
|
|
|
const char *red_bold = tty ? "\E[1;31m" : "";
|
|
|
|
const char *yellow = tty ? "\E[0;33m" : "";
|
|
|
|
const char *yellow_bold = tty ? "\E[1;33m" : "";
|
|
|
|
const char *magenta = tty ? "\E[0;35m" : "";
|
|
|
|
const char *magenta_bold = tty ? "\E[1;35m" : "";
|
|
|
|
const char *cyan = tty ? "\E[0;36m" : "";
|
|
|
|
const char *cyan_bold = tty ? "\E[1;36m" : "";
|
|
|
|
const char *reset = tty ? "\E[0m" : "";
|
|
|
|
const char *bold = tty ? "\E[1m" : "";
|
|
|
|
|
2017-09-22 07:56:02 +02:00
|
|
|
switch (p_type) {
|
|
|
|
case ERR_WARNING:
|
2020-01-04 04:01:57 +01:00
|
|
|
logf_error("%sWARNING: %s: %s%s%s\n", yellow_bold, p_function, reset, bold, err_details);
|
|
|
|
logf_error("%s At: %s:%i.%s\n", yellow, p_file, p_line, reset);
|
2017-09-22 07:56:02 +02:00
|
|
|
break;
|
|
|
|
case ERR_SCRIPT:
|
2020-01-04 04:01:57 +01:00
|
|
|
logf_error("%sSCRIPT ERROR: %s: %s%s%s\n", magenta_bold, p_function, reset, bold, err_details);
|
|
|
|
logf_error("%s At: %s:%i.%s\n", magenta, p_file, p_line, reset);
|
2017-09-22 07:56:02 +02:00
|
|
|
break;
|
|
|
|
case ERR_SHADER:
|
2020-01-04 04:01:57 +01:00
|
|
|
logf_error("%sSHADER ERROR: %s: %s%s%s\n", cyan_bold, p_function, reset, bold, err_details);
|
|
|
|
logf_error("%s At: %s:%i.%s\n", cyan, p_file, p_line, reset);
|
2017-09-22 07:56:02 +02:00
|
|
|
break;
|
|
|
|
case ERR_ERROR:
|
|
|
|
default:
|
2020-01-04 04:01:57 +01:00
|
|
|
logf_error("%sERROR: %s: %s%s%s\n", red_bold, p_function, reset, bold, err_details);
|
|
|
|
logf_error("%s At: %s:%i.%s\n", red, p_file, p_line, reset);
|
2017-09-22 07:56:02 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
UnixTerminalLogger::~UnixTerminalLogger() {}
|
|
|
|
|
2017-11-21 10:35:01 +01:00
|
|
|
OS_Unix::OS_Unix() {
|
|
|
|
Vector<Logger *> loggers;
|
|
|
|
loggers.push_back(memnew(UnixTerminalLogger));
|
|
|
|
_set_logger(memnew(CompositeLogger(loggers)));
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#endif
|