os_unix.cpp 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636
  1. /*************************************************************************/
  2. /* os_unix.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #include "os_unix.h"
  31. #ifdef UNIX_ENABLED
  32. #include "core/config/project_settings.h"
  33. #include "core/debugger/engine_debugger.h"
  34. #include "core/debugger/script_debugger.h"
  35. #include "drivers/unix/dir_access_unix.h"
  36. #include "drivers/unix/file_access_unix.h"
  37. #include "drivers/unix/net_socket_posix.h"
  38. #include "drivers/unix/thread_posix.h"
  39. #include "servers/rendering_server.h"
  40. #ifdef __APPLE__
  41. #include <mach-o/dyld.h>
  42. #include <mach/mach_time.h>
  43. #endif
  44. #if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
  45. #include <sys/param.h>
  46. #include <sys/sysctl.h>
  47. #endif
  48. #include <dlfcn.h>
  49. #include <errno.h>
  50. #include <poll.h>
  51. #include <signal.h>
  52. #include <stdarg.h>
  53. #include <stdio.h>
  54. #include <stdlib.h>
  55. #include <string.h>
  56. #include <sys/time.h>
  57. #include <sys/wait.h>
  58. #include <time.h>
  59. #include <unistd.h>
  60. #if defined(MACOS_ENABLED) || (defined(__ANDROID_API__) && __ANDROID_API__ >= 28)
  61. // Random location for getentropy. Fitting.
  62. #include <sys/random.h>
  63. #define UNIX_GET_ENTROPY
  64. #elif defined(__FreeBSD__) || defined(__OpenBSD__) || (defined(__GLIBC_MINOR__) && (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 26))
  65. // In <unistd.h>.
  66. // One day... (defined(_XOPEN_SOURCE) && _XOPEN_SOURCE >= 700)
  67. // https://publications.opengroup.org/standards/unix/c211
  68. #define UNIX_GET_ENTROPY
  69. #endif
  70. #if !defined(UNIX_GET_ENTROPY) && !defined(NO_URANDOM)
  71. #include <fcntl.h>
  72. #endif
  73. /// Clock Setup function (used by get_ticks_usec)
  74. static uint64_t _clock_start = 0;
  75. #if defined(__APPLE__)
  76. static double _clock_scale = 0;
  77. static void _setup_clock() {
  78. mach_timebase_info_data_t info;
  79. kern_return_t ret = mach_timebase_info(&info);
  80. ERR_FAIL_COND_MSG(ret != 0, "OS CLOCK IS NOT WORKING!");
  81. _clock_scale = ((double)info.numer / (double)info.denom) / 1000.0;
  82. _clock_start = mach_absolute_time() * _clock_scale;
  83. }
  84. #else
  85. #if defined(CLOCK_MONOTONIC_RAW) && !defined(WEB_ENABLED) // This is a better clock on Linux.
  86. #define GODOT_CLOCK CLOCK_MONOTONIC_RAW
  87. #else
  88. #define GODOT_CLOCK CLOCK_MONOTONIC
  89. #endif
  90. static void _setup_clock() {
  91. struct timespec tv_now = { 0, 0 };
  92. ERR_FAIL_COND_MSG(clock_gettime(GODOT_CLOCK, &tv_now) != 0, "OS CLOCK IS NOT WORKING!");
  93. _clock_start = ((uint64_t)tv_now.tv_nsec / 1000L) + (uint64_t)tv_now.tv_sec * 1000000L;
  94. }
  95. #endif
  96. static void handle_interrupt(int sig) {
  97. if (!EngineDebugger::is_active()) {
  98. return;
  99. }
  100. EngineDebugger::get_script_debugger()->set_depth(-1);
  101. EngineDebugger::get_script_debugger()->set_lines_left(1);
  102. }
  103. void OS_Unix::initialize_debugging() {
  104. if (EngineDebugger::is_active()) {
  105. struct sigaction action;
  106. memset(&action, 0, sizeof(action));
  107. action.sa_handler = handle_interrupt;
  108. sigaction(SIGINT, &action, nullptr);
  109. }
  110. }
  111. int OS_Unix::unix_initialize_audio(int p_audio_driver) {
  112. return 0;
  113. }
  114. void OS_Unix::initialize_core() {
  115. #if !defined(NO_THREADS)
  116. init_thread_posix();
  117. #endif
  118. FileAccess::make_default<FileAccessUnix>(FileAccess::ACCESS_RESOURCES);
  119. FileAccess::make_default<FileAccessUnix>(FileAccess::ACCESS_USERDATA);
  120. FileAccess::make_default<FileAccessUnix>(FileAccess::ACCESS_FILESYSTEM);
  121. DirAccess::make_default<DirAccessUnix>(DirAccess::ACCESS_RESOURCES);
  122. DirAccess::make_default<DirAccessUnix>(DirAccess::ACCESS_USERDATA);
  123. DirAccess::make_default<DirAccessUnix>(DirAccess::ACCESS_FILESYSTEM);
  124. NetSocketPosix::make_default();
  125. IPUnix::make_default();
  126. _setup_clock();
  127. }
  128. void OS_Unix::finalize_core() {
  129. NetSocketPosix::cleanup();
  130. }
  131. String OS_Unix::get_stdin_string(bool p_block) {
  132. if (p_block) {
  133. char buff[1024];
  134. String ret = stdin_buf + fgets(buff, 1024, stdin);
  135. stdin_buf = "";
  136. return ret;
  137. }
  138. return "";
  139. }
  140. Error OS_Unix::get_entropy(uint8_t *r_buffer, int p_bytes) {
  141. #if defined(UNIX_GET_ENTROPY)
  142. int left = p_bytes;
  143. int ofs = 0;
  144. do {
  145. int chunk = MIN(left, 256);
  146. ERR_FAIL_COND_V(getentropy(r_buffer + ofs, chunk), FAILED);
  147. left -= chunk;
  148. ofs += chunk;
  149. } while (left > 0);
  150. // Define this yourself if you don't want to fall back to /dev/urandom.
  151. #elif !defined(NO_URANDOM)
  152. int r = open("/dev/urandom", O_RDONLY);
  153. ERR_FAIL_COND_V(r < 0, FAILED);
  154. int left = p_bytes;
  155. do {
  156. ssize_t ret = read(r, r_buffer, p_bytes);
  157. ERR_FAIL_COND_V(ret <= 0, FAILED);
  158. left -= ret;
  159. } while (left > 0);
  160. #else
  161. return ERR_UNAVAILABLE;
  162. #endif
  163. return OK;
  164. }
  165. String OS_Unix::get_name() const {
  166. return "Unix";
  167. }
  168. String OS_Unix::get_distribution_name() const {
  169. return "";
  170. }
  171. String OS_Unix::get_version() const {
  172. return "";
  173. }
  174. double OS_Unix::get_unix_time() const {
  175. struct timeval tv_now;
  176. gettimeofday(&tv_now, nullptr);
  177. return (double)tv_now.tv_sec + double(tv_now.tv_usec) / 1000000;
  178. }
  179. OS::DateTime OS_Unix::get_datetime(bool p_utc) const {
  180. time_t t = time(nullptr);
  181. struct tm lt;
  182. if (p_utc) {
  183. gmtime_r(&t, &lt);
  184. } else {
  185. localtime_r(&t, &lt);
  186. }
  187. DateTime ret;
  188. ret.year = 1900 + lt.tm_year;
  189. // Index starting at 1 to match OS_Unix::get_date
  190. // and Windows SYSTEMTIME and tm_mon follows the typical structure
  191. // of 0-11, noted here: http://www.cplusplus.com/reference/ctime/tm/
  192. ret.month = (Month)(lt.tm_mon + 1);
  193. ret.day = lt.tm_mday;
  194. ret.weekday = (Weekday)lt.tm_wday;
  195. ret.hour = lt.tm_hour;
  196. ret.minute = lt.tm_min;
  197. ret.second = lt.tm_sec;
  198. ret.dst = lt.tm_isdst;
  199. return ret;
  200. }
  201. OS::TimeZoneInfo OS_Unix::get_time_zone_info() const {
  202. time_t t = time(nullptr);
  203. struct tm lt;
  204. localtime_r(&t, &lt);
  205. char name[16];
  206. strftime(name, 16, "%Z", &lt);
  207. name[15] = 0;
  208. TimeZoneInfo ret;
  209. ret.name = name;
  210. char bias_buf[16];
  211. strftime(bias_buf, 16, "%z", &lt);
  212. int bias;
  213. bias_buf[15] = 0;
  214. sscanf(bias_buf, "%d", &bias);
  215. // convert from ISO 8601 (1 minute=1, 1 hour=100) to minutes
  216. int hour = (int)bias / 100;
  217. int minutes = bias % 100;
  218. if (bias < 0) {
  219. ret.bias = hour * 60 - minutes;
  220. } else {
  221. ret.bias = hour * 60 + minutes;
  222. }
  223. return ret;
  224. }
  225. void OS_Unix::delay_usec(uint32_t p_usec) const {
  226. struct timespec requested = { static_cast<time_t>(p_usec / 1000000), (static_cast<long>(p_usec) % 1000000) * 1000 };
  227. struct timespec remaining;
  228. while (nanosleep(&requested, &remaining) == -1 && errno == EINTR) {
  229. requested.tv_sec = remaining.tv_sec;
  230. requested.tv_nsec = remaining.tv_nsec;
  231. }
  232. }
  233. uint64_t OS_Unix::get_ticks_usec() const {
  234. #if defined(__APPLE__)
  235. uint64_t longtime = mach_absolute_time() * _clock_scale;
  236. #else
  237. // Unchecked return. Static analyzers might complain.
  238. // If _setup_clock() succeeded, we assume clock_gettime() works.
  239. struct timespec tv_now = { 0, 0 };
  240. clock_gettime(GODOT_CLOCK, &tv_now);
  241. uint64_t longtime = ((uint64_t)tv_now.tv_nsec / 1000L) + (uint64_t)tv_now.tv_sec * 1000000L;
  242. #endif
  243. longtime -= _clock_start;
  244. return longtime;
  245. }
  246. Error OS_Unix::execute(const String &p_path, const List<String> &p_arguments, String *r_pipe, int *r_exitcode, bool read_stderr, Mutex *p_pipe_mutex, bool p_open_console) {
  247. #ifdef __EMSCRIPTEN__
  248. // Don't compile this code at all to avoid undefined references.
  249. // Actual virtual call goes to OS_Web.
  250. ERR_FAIL_V(ERR_BUG);
  251. #else
  252. if (r_pipe) {
  253. String command = "\"" + p_path + "\"";
  254. for (int i = 0; i < p_arguments.size(); i++) {
  255. command += String(" \"") + p_arguments[i] + "\"";
  256. }
  257. if (read_stderr) {
  258. command += " 2>&1"; // Include stderr
  259. } else {
  260. command += " 2>/dev/null"; // Silence stderr
  261. }
  262. FILE *f = popen(command.utf8().get_data(), "r");
  263. ERR_FAIL_COND_V_MSG(!f, ERR_CANT_OPEN, "Cannot create pipe from command: " + command);
  264. char buf[65535];
  265. while (fgets(buf, 65535, f)) {
  266. if (p_pipe_mutex) {
  267. p_pipe_mutex->lock();
  268. }
  269. String pipe_out;
  270. if (pipe_out.parse_utf8(buf) == OK) {
  271. (*r_pipe) += pipe_out;
  272. } else {
  273. (*r_pipe) += String(buf); // If not valid UTF-8 try decode as Latin-1
  274. }
  275. if (p_pipe_mutex) {
  276. p_pipe_mutex->unlock();
  277. }
  278. }
  279. int rv = pclose(f);
  280. if (r_exitcode) {
  281. *r_exitcode = WEXITSTATUS(rv);
  282. }
  283. return OK;
  284. }
  285. pid_t pid = fork();
  286. ERR_FAIL_COND_V(pid < 0, ERR_CANT_FORK);
  287. if (pid == 0) {
  288. // The child process
  289. Vector<CharString> cs;
  290. cs.push_back(p_path.utf8());
  291. for (int i = 0; i < p_arguments.size(); i++) {
  292. cs.push_back(p_arguments[i].utf8());
  293. }
  294. Vector<char *> args;
  295. for (int i = 0; i < cs.size(); i++) {
  296. args.push_back((char *)cs[i].get_data());
  297. }
  298. args.push_back(0);
  299. execvp(p_path.utf8().get_data(), &args[0]);
  300. // The execvp() function only returns if an error occurs.
  301. ERR_PRINT("Could not create child process: " + p_path);
  302. raise(SIGKILL);
  303. }
  304. int status;
  305. waitpid(pid, &status, 0);
  306. if (r_exitcode) {
  307. *r_exitcode = WIFEXITED(status) ? WEXITSTATUS(status) : status;
  308. }
  309. return OK;
  310. #endif
  311. }
  312. Error OS_Unix::create_process(const String &p_path, const List<String> &p_arguments, ProcessID *r_child_id, bool p_open_console) {
  313. #ifdef __EMSCRIPTEN__
  314. // Don't compile this code at all to avoid undefined references.
  315. // Actual virtual call goes to OS_Web.
  316. ERR_FAIL_V(ERR_BUG);
  317. #else
  318. pid_t pid = fork();
  319. ERR_FAIL_COND_V(pid < 0, ERR_CANT_FORK);
  320. if (pid == 0) {
  321. // The new process
  322. // Create a new session-ID so parent won't wait for it.
  323. // This ensures the process won't go zombie at the end.
  324. setsid();
  325. Vector<CharString> cs;
  326. cs.push_back(p_path.utf8());
  327. for (int i = 0; i < p_arguments.size(); i++) {
  328. cs.push_back(p_arguments[i].utf8());
  329. }
  330. Vector<char *> args;
  331. for (int i = 0; i < cs.size(); i++) {
  332. args.push_back((char *)cs[i].get_data());
  333. }
  334. args.push_back(0);
  335. execvp(p_path.utf8().get_data(), &args[0]);
  336. // The execvp() function only returns if an error occurs.
  337. ERR_PRINT("Could not create child process: " + p_path);
  338. raise(SIGKILL);
  339. }
  340. if (r_child_id) {
  341. *r_child_id = pid;
  342. }
  343. return OK;
  344. #endif
  345. }
  346. Error OS_Unix::kill(const ProcessID &p_pid) {
  347. int ret = ::kill(p_pid, SIGKILL);
  348. if (!ret) {
  349. //avoid zombie process
  350. int st;
  351. ::waitpid(p_pid, &st, 0);
  352. }
  353. return ret ? ERR_INVALID_PARAMETER : OK;
  354. }
  355. int OS_Unix::get_process_id() const {
  356. return getpid();
  357. }
  358. bool OS_Unix::is_process_running(const ProcessID &p_pid) const {
  359. int status = 0;
  360. if (waitpid(p_pid, &status, WNOHANG) != 0) {
  361. return false;
  362. }
  363. return true;
  364. }
  365. bool OS_Unix::has_environment(const String &p_var) const {
  366. return getenv(p_var.utf8().get_data()) != nullptr;
  367. }
  368. String OS_Unix::get_locale() const {
  369. if (!has_environment("LANG")) {
  370. return "en";
  371. }
  372. String locale = get_environment("LANG");
  373. int tp = locale.find(".");
  374. if (tp != -1) {
  375. locale = locale.substr(0, tp);
  376. }
  377. return locale;
  378. }
  379. Error OS_Unix::open_dynamic_library(const String p_path, void *&p_library_handle, bool p_also_set_library_path, String *r_resolved_path) {
  380. String path = p_path;
  381. if (FileAccess::exists(path) && path.is_relative_path()) {
  382. // dlopen expects a slash, in this case a leading ./ for it to be interpreted as a relative path,
  383. // otherwise it will end up searching various system directories for the lib instead and finally failing.
  384. path = "./" + path;
  385. }
  386. if (!FileAccess::exists(path)) {
  387. // This code exists so GDExtension can load .so files from within the executable path.
  388. path = get_executable_path().get_base_dir().path_join(p_path.get_file());
  389. }
  390. if (!FileAccess::exists(path)) {
  391. // This code exists so GDExtension can load .so files from a standard unix location.
  392. path = get_executable_path().get_base_dir().path_join("../lib").path_join(p_path.get_file());
  393. }
  394. p_library_handle = dlopen(path.utf8().get_data(), RTLD_NOW);
  395. ERR_FAIL_COND_V_MSG(!p_library_handle, ERR_CANT_OPEN, "Can't open dynamic library: " + p_path + ". Error: " + dlerror());
  396. if (r_resolved_path != nullptr) {
  397. *r_resolved_path = path;
  398. }
  399. return OK;
  400. }
  401. Error OS_Unix::close_dynamic_library(void *p_library_handle) {
  402. if (dlclose(p_library_handle)) {
  403. return FAILED;
  404. }
  405. return OK;
  406. }
  407. Error OS_Unix::get_dynamic_library_symbol_handle(void *p_library_handle, const String p_name, void *&p_symbol_handle, bool p_optional) {
  408. const char *error;
  409. dlerror(); // Clear existing errors
  410. p_symbol_handle = dlsym(p_library_handle, p_name.utf8().get_data());
  411. error = dlerror();
  412. if (error != nullptr) {
  413. ERR_FAIL_COND_V_MSG(!p_optional, ERR_CANT_RESOLVE, "Can't resolve symbol " + p_name + ". Error: " + error + ".");
  414. return ERR_CANT_RESOLVE;
  415. }
  416. return OK;
  417. }
  418. Error OS_Unix::set_cwd(const String &p_cwd) {
  419. if (chdir(p_cwd.utf8().get_data()) != 0) {
  420. return ERR_CANT_OPEN;
  421. }
  422. return OK;
  423. }
  424. String OS_Unix::get_environment(const String &p_var) const {
  425. if (getenv(p_var.utf8().get_data())) {
  426. return getenv(p_var.utf8().get_data());
  427. }
  428. return "";
  429. }
  430. bool OS_Unix::set_environment(const String &p_var, const String &p_value) const {
  431. return setenv(p_var.utf8().get_data(), p_value.utf8().get_data(), /* overwrite: */ true) == 0;
  432. }
  433. int OS_Unix::get_processor_count() const {
  434. return sysconf(_SC_NPROCESSORS_CONF);
  435. }
  436. String OS_Unix::get_user_data_dir() const {
  437. String appname = get_safe_dir_name(ProjectSettings::get_singleton()->get("application/config/name"));
  438. if (!appname.is_empty()) {
  439. bool use_custom_dir = ProjectSettings::get_singleton()->get("application/config/use_custom_user_dir");
  440. if (use_custom_dir) {
  441. String custom_dir = get_safe_dir_name(ProjectSettings::get_singleton()->get("application/config/custom_user_dir_name"), true);
  442. if (custom_dir.is_empty()) {
  443. custom_dir = appname;
  444. }
  445. return get_data_path().path_join(custom_dir);
  446. } else {
  447. return get_data_path().path_join(get_godot_dir_name()).path_join("app_userdata").path_join(appname);
  448. }
  449. }
  450. return get_data_path().path_join(get_godot_dir_name()).path_join("app_userdata").path_join("[unnamed project]");
  451. }
  452. String OS_Unix::get_executable_path() const {
  453. #ifdef __linux__
  454. //fix for running from a symlink
  455. char buf[256];
  456. memset(buf, 0, 256);
  457. ssize_t len = readlink("/proc/self/exe", buf, sizeof(buf));
  458. String b;
  459. if (len > 0) {
  460. b.parse_utf8(buf, len);
  461. }
  462. if (b.is_empty()) {
  463. WARN_PRINT("Couldn't get executable path from /proc/self/exe, using argv[0]");
  464. return OS::get_executable_path();
  465. }
  466. return b;
  467. #elif defined(__OpenBSD__) || defined(__NetBSD__)
  468. char resolved_path[MAXPATHLEN];
  469. realpath(OS::get_executable_path().utf8().get_data(), resolved_path);
  470. return String(resolved_path);
  471. #elif defined(__FreeBSD__)
  472. int mib[4] = { CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1 };
  473. char buf[MAXPATHLEN];
  474. size_t len = sizeof(buf);
  475. if (sysctl(mib, 4, buf, &len, nullptr, 0) != 0) {
  476. WARN_PRINT("Couldn't get executable path from sysctl");
  477. return OS::get_executable_path();
  478. }
  479. String b;
  480. b.parse_utf8(buf);
  481. return b;
  482. #elif defined(__APPLE__)
  483. char temp_path[1];
  484. uint32_t buff_size = 1;
  485. _NSGetExecutablePath(temp_path, &buff_size);
  486. char *resolved_path = new char[buff_size + 1];
  487. if (_NSGetExecutablePath(resolved_path, &buff_size) == 1) {
  488. WARN_PRINT("MAXPATHLEN is too small");
  489. }
  490. String path(resolved_path);
  491. delete[] resolved_path;
  492. return path;
  493. #else
  494. ERR_PRINT("Warning, don't know how to obtain executable path on this OS! Please override this function properly.");
  495. return OS::get_executable_path();
  496. #endif
  497. }
  498. void UnixTerminalLogger::log_error(const char *p_function, const char *p_file, int p_line, const char *p_code, const char *p_rationale, bool p_editor_notify, ErrorType p_type) {
  499. if (!should_log(true)) {
  500. return;
  501. }
  502. const char *err_details;
  503. if (p_rationale && p_rationale[0]) {
  504. err_details = p_rationale;
  505. } else {
  506. err_details = p_code;
  507. }
  508. // Disable color codes if stdout is not a TTY.
  509. // This prevents Godot from writing ANSI escape codes when redirecting
  510. // stdout and stderr to a file.
  511. const bool tty = isatty(fileno(stdout));
  512. const char *gray = tty ? "\E[0;90m" : "";
  513. const char *red = tty ? "\E[0;91m" : "";
  514. const char *red_bold = tty ? "\E[1;31m" : "";
  515. const char *yellow = tty ? "\E[0;93m" : "";
  516. const char *yellow_bold = tty ? "\E[1;33m" : "";
  517. const char *magenta = tty ? "\E[0;95m" : "";
  518. const char *magenta_bold = tty ? "\E[1;35m" : "";
  519. const char *cyan = tty ? "\E[0;96m" : "";
  520. const char *cyan_bold = tty ? "\E[1;36m" : "";
  521. const char *reset = tty ? "\E[0m" : "";
  522. switch (p_type) {
  523. case ERR_WARNING:
  524. logf_error("%sWARNING:%s %s\n", yellow_bold, yellow, err_details);
  525. logf_error("%s at: %s (%s:%i)%s\n", gray, p_function, p_file, p_line, reset);
  526. break;
  527. case ERR_SCRIPT:
  528. logf_error("%sSCRIPT ERROR:%s %s\n", magenta_bold, magenta, err_details);
  529. logf_error("%s at: %s (%s:%i)%s\n", gray, p_function, p_file, p_line, reset);
  530. break;
  531. case ERR_SHADER:
  532. logf_error("%sSHADER ERROR:%s %s\n", cyan_bold, cyan, err_details);
  533. logf_error("%s at: %s (%s:%i)%s\n", gray, p_function, p_file, p_line, reset);
  534. break;
  535. case ERR_ERROR:
  536. default:
  537. logf_error("%sERROR:%s %s\n", red_bold, red, err_details);
  538. logf_error("%s at: %s (%s:%i)%s\n", gray, p_function, p_file, p_line, reset);
  539. break;
  540. }
  541. }
  542. UnixTerminalLogger::~UnixTerminalLogger() {}
  543. OS_Unix::OS_Unix() {
  544. Vector<Logger *> loggers;
  545. loggers.push_back(memnew(UnixTerminalLogger));
  546. _set_logger(memnew(CompositeLogger(loggers)));
  547. }
  548. #endif