3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
30 std::list<ILogOutput*> log_outputs[LMT_NUM_VALUES];
31 std::map<threadid_t, std::string> log_threadnames;
33 void log_add_output(ILogOutput *out, enum LogMessageLevel lev)
35 log_outputs[lev].push_back(out);
38 void log_add_output_maxlev(ILogOutput *out, enum LogMessageLevel lev)
40 for(int i=0; i<=lev; i++)
41 log_outputs[i].push_back(out);
44 void log_add_output_all_levs(ILogOutput *out)
46 for(int i=0; i<LMT_NUM_VALUES; i++)
47 log_outputs[i].push_back(out);
50 void log_remove_output(ILogOutput *out)
52 for(int i=0; i<LMT_NUM_VALUES; i++){
53 std::list<ILogOutput*>::iterator it =
54 std::find(log_outputs[i].begin(), log_outputs[i].end(), out);
55 if(it != log_outputs[i].end())
56 log_outputs[i].erase(it);
60 void log_register_thread(const std::string &name)
62 threadid_t id = get_current_thread_id();
63 log_threadnames[id] = name;
66 void log_deregister_thread()
68 threadid_t id = get_current_thread_id();
69 log_threadnames.erase(id);
72 static std::string get_lev_string(enum LogMessageLevel lev)
86 return "(unknown level)";
89 void log_printline(enum LogMessageLevel lev, const std::string &text)
91 std::string threadname = "(unknown thread)";
92 std::map<threadid_t, std::string>::const_iterator i;
93 i = log_threadnames.find(get_current_thread_id());
94 if(i != log_threadnames.end())
95 threadname = i->second;
96 std::string levelname = get_lev_string(lev);
97 std::ostringstream os(std::ios_base::binary);
98 os<<getTimestamp()<<": "<<levelname<<"["<<threadname<<"]: "<<text;
99 for(std::list<ILogOutput*>::iterator i = log_outputs[lev].begin();
100 i != log_outputs[lev].end(); i++){
101 ILogOutput *out = *i;
102 out->printLog(os.str());
103 out->printLog(os.str(), lev);
104 out->printLog(lev, text);
108 class Logbuf : public std::streambuf
111 Logbuf(enum LogMessageLevel lev):
125 std::streamsize xsputn(const char *s, std::streamsize n)
127 for(int i=0; i<n; i++)
134 log_printline(m_lev, m_buf);
139 if(c == '\n' || c == '\r'){
149 enum LogMessageLevel m_lev;
153 Logbuf errorbuf(LMT_ERROR);
154 Logbuf actionbuf(LMT_ACTION);
155 Logbuf infobuf(LMT_INFO);
156 Logbuf verbosebuf(LMT_VERBOSE);
157 std::ostream errorstream(&errorbuf);
158 std::ostream actionstream(&actionbuf);
159 std::ostream infostream(&infobuf);
160 std::ostream verbosestream(&verbosebuf);
162 bool log_trace_level_enabled = false;