| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  gd_mono_log.cpp                                                      */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							|  |  |  | /*                      https://godotengine.org                          */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2019-01-01 12:53:14 +01:00
										 |  |  | /* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md)    */ | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02: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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | #include "gd_mono_log.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdlib.h> // abort
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-11 18:13:45 +02:00
										 |  |  | #include "core/os/dir_access.h"
 | 
					
						
							|  |  |  | #include "core/os/os.h"
 | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "../godotsharp_dirs.h"
 | 
					
						
							| 
									
										
										
										
											2019-04-25 15:45:12 +02:00
										 |  |  | #include "../utils/string_utils.h"
 | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-10 17:10:38 +01:00
										 |  |  | static CharString get_default_log_level() { | 
					
						
							|  |  |  | #ifdef DEBUG_ENABLED
 | 
					
						
							|  |  |  | 	return String("info").utf8(); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	return String("warning").utf8(); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | GDMonoLog *GDMonoLog::singleton = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(JAVASCRIPT_ENABLED)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int get_log_level_id(const char *p_log_level) { | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	const char *valid_log_levels[] = { "error", "critical", "warning", "message", "info", "debug", NULL }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int i = 0; | 
					
						
							|  |  |  | 	while (valid_log_levels[i]) { | 
					
						
							|  |  |  | 		if (!strcmp(valid_log_levels[i], p_log_level)) | 
					
						
							|  |  |  | 			return i; | 
					
						
							|  |  |  | 		i++; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-10 17:10:38 +01:00
										 |  |  | void GDMonoLog::mono_log_callback(const char *log_domain, const char *log_level, const char *message, mono_bool fatal, void *) { | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-10 17:10:38 +01:00
										 |  |  | 	FileAccess *f = GDMonoLog::get_singleton()->log_file; | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-10 17:10:38 +01:00
										 |  |  | 	if (GDMonoLog::get_singleton()->log_level_id >= get_log_level_id(log_level)) { | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 		String text(message); | 
					
						
							|  |  |  | 		text += " (in domain "; | 
					
						
							|  |  |  | 		text += log_domain; | 
					
						
							|  |  |  | 		if (log_level) { | 
					
						
							|  |  |  | 			text += ", "; | 
					
						
							|  |  |  | 			text += log_level; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		text += ")\n"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		f->seek_end(); | 
					
						
							|  |  |  | 		f->store_string(text); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (fatal) { | 
					
						
							| 
									
										
										
										
											2019-11-10 17:10:38 +01:00
										 |  |  | 		ERR_PRINTS("Mono: FATAL ERROR, ABORTING! Logfile: '" + GDMonoLog::get_singleton()->log_file_path + "'."); | 
					
						
							| 
									
										
										
										
											2019-04-17 22:46:18 +02:00
										 |  |  | 		// Make sure to flush before aborting
 | 
					
						
							| 
									
										
										
										
											2017-12-19 17:36:33 +01:00
										 |  |  | 		f->flush(); | 
					
						
							| 
									
										
										
										
											2019-04-17 22:46:18 +02:00
										 |  |  | 		f->close(); | 
					
						
							|  |  |  | 		memdelete(f); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 		abort(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool GDMonoLog::_try_create_logs_dir(const String &p_logs_dir) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!DirAccess::exists(p_logs_dir)) { | 
					
						
							|  |  |  | 		DirAccessRef diraccess = DirAccess::create(DirAccess::ACCESS_FILESYSTEM); | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(!diraccess, false); | 
					
						
							|  |  |  | 		Error logs_mkdir_err = diraccess->make_dir_recursive(p_logs_dir); | 
					
						
							| 
									
										
										
										
											2019-08-09 03:39:45 +02:00
										 |  |  | 		ERR_FAIL_COND_V_MSG(logs_mkdir_err != OK, false, "Failed to create mono logs directory."); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void GDMonoLog::_delete_old_log_files(const String &p_logs_dir) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-17 22:46:18 +02:00
										 |  |  | 	static const uint64_t MAX_SECS = 5 * 86400; // 5 days
 | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	DirAccessRef da = DirAccess::create(DirAccess::ACCESS_FILESYSTEM); | 
					
						
							|  |  |  | 	ERR_FAIL_COND(!da); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Error err = da->change_dir(p_logs_dir); | 
					
						
							| 
									
										
										
										
											2019-09-25 10:28:50 +02:00
										 |  |  | 	ERR_FAIL_COND_MSG(err != OK, "Cannot change directory to '" + p_logs_dir + "'."); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ERR_FAIL_COND(da->list_dir_begin() != OK); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String current; | 
					
						
							|  |  |  | 	while ((current = da->get_next()).length()) { | 
					
						
							|  |  |  | 		if (da->current_is_dir()) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		if (!current.ends_with(".txt")) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-17 22:46:18 +02:00
										 |  |  | 		uint64_t modified_time = FileAccess::get_modified_time(da->get_current_dir().plus_file(current)); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-17 22:46:18 +02:00
										 |  |  | 		if (OS::get_singleton()->get_unix_time() - modified_time > MAX_SECS) { | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 			da->remove(current); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	da->list_dir_end(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void GDMonoLog::initialize() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-17 22:46:18 +02:00
										 |  |  | 	CharString log_level = OS::get_singleton()->get_environment("GODOT_MONO_LOG_LEVEL").utf8(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-10 17:10:38 +01:00
										 |  |  | 	if (log_level.length() != 0 && get_log_level_id(log_level.get_data()) == -1) { | 
					
						
							| 
									
										
										
										
											2019-08-09 03:39:45 +02:00
										 |  |  | 		ERR_PRINTS(String() + "Mono: Ignoring invalid log level (GODOT_MONO_LOG_LEVEL): '" + log_level.get_data() + "'."); | 
					
						
							| 
									
										
										
										
											2019-04-17 22:46:18 +02:00
										 |  |  | 		log_level = CharString(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (log_level.length() == 0) { | 
					
						
							| 
									
										
										
										
											2019-11-10 17:10:38 +01:00
										 |  |  | 		log_level = get_default_log_level(); | 
					
						
							| 
									
										
										
										
											2019-04-17 22:46:18 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	String logs_dir = GodotSharpDirs::get_mono_logs_dir(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (_try_create_logs_dir(logs_dir)) { | 
					
						
							|  |  |  | 		_delete_old_log_files(logs_dir); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-17 22:46:18 +02:00
										 |  |  | 		OS::Date date_now = OS::get_singleton()->get_date(); | 
					
						
							|  |  |  | 		OS::Time time_now = OS::get_singleton()->get_time(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-10 17:10:38 +01:00
										 |  |  | 		String log_file_name = str_format("%d_%02d_%02d %02d.%02d.%02d", | 
					
						
							| 
									
										
										
										
											2019-04-17 22:46:18 +02:00
										 |  |  | 				date_now.year, date_now.month, date_now.day, | 
					
						
							| 
									
										
										
										
											2019-11-10 17:10:38 +01:00
										 |  |  | 				time_now.hour, time_now.min, time_now.sec); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		log_file_name += str_format(" (%d)", OS::get_singleton()->get_process_id()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		log_file_name += ".txt"; | 
					
						
							| 
									
										
										
										
											2019-04-17 22:46:18 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		log_file_path = logs_dir.plus_file(log_file_name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		log_file = FileAccess::open(log_file_path, FileAccess::WRITE); | 
					
						
							|  |  |  | 		if (!log_file) { | 
					
						
							| 
									
										
										
										
											2019-09-08 19:40:17 +02:00
										 |  |  | 			ERR_PRINTS("Mono: Cannot create log file at: " + log_file_path); | 
					
						
							| 
									
										
										
										
											2019-04-17 22:46:18 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-17 22:46:18 +02:00
										 |  |  | 	mono_trace_set_level_string(log_level.get_data()); | 
					
						
							| 
									
										
										
										
											2019-11-10 17:10:38 +01:00
										 |  |  | 	log_level_id = get_log_level_id(log_level.get_data()); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (log_file) { | 
					
						
							| 
									
										
										
										
											2019-04-17 22:46:18 +02:00
										 |  |  | 		OS::get_singleton()->print("Mono: Logfile is: %s\n", log_file_path.utf8().get_data()); | 
					
						
							| 
									
										
										
										
											2019-01-29 00:02:35 +01:00
										 |  |  | 		mono_trace_set_log_handler(mono_log_callback, this); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		OS::get_singleton()->printerr("Mono: No log file, using default log handler\n"); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | GDMonoLog::GDMonoLog() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	singleton = this; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	log_level_id = -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | GDMonoLog::~GDMonoLog() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	singleton = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (log_file) { | 
					
						
							|  |  |  | 		log_file->close(); | 
					
						
							|  |  |  | 		memdelete(log_file); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-11-10 17:10:38 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void GDMonoLog::initialize() { | 
					
						
							|  |  |  | 	CharString log_level = get_default_log_level(); | 
					
						
							|  |  |  | 	mono_trace_set_level_string(log_level.get_data()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | GDMonoLog::GDMonoLog() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	singleton = this; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | GDMonoLog::~GDMonoLog() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	singleton = NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif // !defined(JAVASCRIPT_ENABLED)
 |