X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Flog.cpp;h=e6d80db34e2a0a9747a3e34dc684f9b96a999fdf;hb=c6766b275f25368e78eeffc68719b0ca1979c819;hp=a963f4c27832b1179cf0842157ada44f29ef1f7c;hpb=1f670fc68844d0a8503d8da04f59c8b662614907;p=oweals%2Fminetest.git diff --git a/src/log.cpp b/src/log.cpp index a963f4c27..e6d80db34 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -1,18 +1,18 @@ /* -Minetest-c55 -Copyright (C) 2011 celeron55, Perttu Ahola +Minetest +Copyright (C) 2013 celeron55, Perttu Ahola This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or +it under the terms of the GNU Lesser General Public License as published by +the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +GNU Lesser General Public License for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ @@ -24,11 +24,38 @@ with this program; if not, write to the Free Software Foundation, Inc., #include #include #include "threads.h" +#include "jthread/jmutexautolock.h" #include "debug.h" #include "gettime.h" - -std::list log_outputs[LMT_NUM_VALUES]; +#include "porting.h" +#include "config.h" + +// Connection +std::ostream *dout_con_ptr = &dummyout; +std::ostream *derr_con_ptr = &verbosestream; + +// Server +std::ostream *dout_server_ptr = &infostream; +std::ostream *derr_server_ptr = &errorstream; + +#ifndef SERVER +// Client +std::ostream *dout_client_ptr = &infostream; +std::ostream *derr_client_ptr = &errorstream; +#endif + +#ifdef __ANDROID__ +unsigned int android_log_level_mapping[] = { + /* LMT_ERROR */ ANDROID_LOG_ERROR, + /* LMT_ACTION */ ANDROID_LOG_WARN, + /* LMT_INFO */ ANDROID_LOG_INFO, + /* LMT_VERBOSE */ ANDROID_LOG_VERBOSE + }; +#endif + +std::vector log_outputs[LMT_NUM_VALUES]; std::map log_threadnames; +JMutex log_threadnamemutex; void log_add_output(ILogOutput *out, enum LogMessageLevel lev) { @@ -50,22 +77,37 @@ void log_add_output_all_levs(ILogOutput *out) void log_remove_output(ILogOutput *out) { for(int i=0; i::iterator it = + std::vector::iterator it = std::find(log_outputs[i].begin(), log_outputs[i].end(), out); if(it != log_outputs[i].end()) log_outputs[i].erase(it); } } +void log_set_lev_silence(enum LogMessageLevel lev, bool silence) +{ + JMutexAutoLock lock(log_threadnamemutex); + + for (std::vector::iterator it = log_outputs[lev].begin(); + it != log_outputs[lev].end(); ++it) { + ILogOutput *out = *it; + out->silence = silence; + } +} + void log_register_thread(const std::string &name) { threadid_t id = get_current_thread_id(); + JMutexAutoLock lock(log_threadnamemutex); + log_threadnames[id] = name; } void log_deregister_thread() { threadid_t id = get_current_thread_id(); + JMutexAutoLock lock(log_threadnamemutex); + log_threadnames.erase(id); } @@ -88,6 +130,7 @@ static std::string get_lev_string(enum LogMessageLevel lev) void log_printline(enum LogMessageLevel lev, const std::string &text) { + JMutexAutoLock lock(log_threadnamemutex); std::string threadname = "(unknown thread)"; std::map::const_iterator i; i = log_threadnames.find(get_current_thread_id()); @@ -95,10 +138,14 @@ void log_printline(enum LogMessageLevel lev, const std::string &text) threadname = i->second; std::string levelname = get_lev_string(lev); std::ostringstream os(std::ios_base::binary); - os<::iterator i = log_outputs[lev].begin(); - i != log_outputs[lev].end(); i++){ + os << getTimestamp() << ": " << levelname << "["<::iterator i = log_outputs[lev].begin(); + i != log_outputs[lev].end(); i++) { ILogOutput *out = *i; + if (out->silence) + continue; + out->printLog(os.str()); out->printLog(os.str(), lev); out->printLog(lev, text); @@ -132,6 +179,9 @@ public: void printbuf() { log_printline(m_lev, m_buf); +#ifdef __ANDROID__ + __android_log_print(android_log_level_mapping[m_lev], PROJECT_NAME, "%s", m_buf.c_str()); +#endif } void bufchar(char c) @@ -144,7 +194,7 @@ public: } m_buf += c; } - + private: enum LogMessageLevel m_lev; std::string m_buf;