[286] | 1 | // This file is a part of Framsticks SDK. http://www.framsticks.com/ |
---|
| 2 | // Copyright (C) 1999-2015 Maciej Komosinski and Szymon Ulatowski. |
---|
| 3 | // See LICENSE.txt for details. |
---|
[109] | 4 | |
---|
[375] | 5 | #include "loggers.h" |
---|
[180] | 6 | #include <common/stl-util.h> |
---|
[511] | 7 | #include <string.h> |
---|
[109] | 8 | |
---|
[511] | 9 | void logMessage(const char *obj, const char *method, int level, const char *msg) |
---|
[109] | 10 | { |
---|
[378] | 11 | tlsGetRef(message_handler_manager_instance).send(obj, method, level, msg); |
---|
[109] | 12 | } |
---|
| 13 | |
---|
[375] | 14 | THREAD_LOCAL_DEF(LoggerManager, message_handler_manager_instance); |
---|
[109] | 15 | |
---|
[378] | 16 | void LoggerManager::send(int position, const char *obj, const char *method, int level, const char *msg) |
---|
[109] | 17 | { |
---|
[378] | 18 | if (position >= (int)loggers.size()) position = loggers.size() - 1; |
---|
| 19 | bool blocked = false; |
---|
| 20 | for (int i = position; i >= 0; i--) |
---|
[109] | 21 | { |
---|
[378] | 22 | LoggerBase *logger = loggers[i]; |
---|
| 23 | if ((!(logger->options & LoggerBase::Paused)) && |
---|
| 24 | ((!blocked) || (logger->options & LoggerBase::CannotBeBlocked))) |
---|
[336] | 25 | { |
---|
[378] | 26 | logger->handle(obj, method, level, msg); |
---|
| 27 | if (!(logger->options & LoggerBase::DontBlock)) blocked = true; |
---|
[336] | 28 | } |
---|
[109] | 29 | } |
---|
| 30 | } |
---|
| 31 | |
---|
[378] | 32 | int LoggerManager::add(LoggerBase *logger) |
---|
[109] | 33 | { |
---|
[378] | 34 | logger->manager = this; |
---|
| 35 | loggers.push_back(logger); |
---|
| 36 | return loggers.size() - 1; |
---|
[109] | 37 | } |
---|
| 38 | |
---|
[375] | 39 | void LoggerManager::remove(int i) |
---|
[109] | 40 | { |
---|
[378] | 41 | LoggerBase *h = loggers[i]; |
---|
[373] | 42 | h->manager = NULL; |
---|
[378] | 43 | loggers.erase(loggers.begin() + i); |
---|
[109] | 44 | } |
---|
| 45 | |
---|
[378] | 46 | void LoggerManager::remove(LoggerBase *logger) |
---|
[109] | 47 | { |
---|
[378] | 48 | int index = find(logger); |
---|
| 49 | if (index >= 0) |
---|
| 50 | remove(index); |
---|
[109] | 51 | } |
---|
| 52 | |
---|
[375] | 53 | void LoggerManager::removeAll() |
---|
[109] | 54 | { |
---|
[378] | 55 | while (loggers.size() > 0) |
---|
| 56 | remove(loggers.size() - 1); |
---|
[109] | 57 | } |
---|
| 58 | |
---|
| 59 | ////////////////////////////////// |
---|
| 60 | |
---|
[378] | 61 | void LoggerBase::send(const char *obj, const char *method, int level, const char *msg) |
---|
[109] | 62 | { |
---|
[336] | 63 | if (!isEnabled()) return; |
---|
[378] | 64 | int position = manager->find(this); |
---|
| 65 | if (position >= 0) manager->send(position - 1, obj, method, level, msg); |
---|
[109] | 66 | } |
---|
| 67 | |
---|
[378] | 68 | void LoggerBase::logPrintf(const char *obj, const char *method, int level, const char *msg, ...) |
---|
[109] | 69 | { |
---|
[336] | 70 | if (!isEnabled()) return; |
---|
| 71 | string buf; |
---|
| 72 | va_list argptr; |
---|
[378] | 73 | va_start(argptr, msg); |
---|
| 74 | buf = ssprintf_va(msg, argptr); |
---|
[336] | 75 | va_end(argptr); |
---|
[378] | 76 | send(obj, method, level, buf.c_str()); |
---|
[109] | 77 | } |
---|
| 78 | |
---|
| 79 | |
---|
[375] | 80 | void LoggerBase::enable() |
---|
[109] | 81 | { |
---|
[336] | 82 | if (isEnabled()) return; |
---|
[372] | 83 | tlsGetRef(message_handler_manager_instance).add(this); |
---|
[109] | 84 | } |
---|
| 85 | |
---|
[375] | 86 | void LoggerBase::disable() |
---|
[109] | 87 | { |
---|
[336] | 88 | if (!isEnabled()) return; |
---|
[372] | 89 | tlsGetRef(message_handler_manager_instance).remove(this); |
---|
[109] | 90 | } |
---|
| 91 | |
---|
[375] | 92 | void LoggerBase::pause() |
---|
[336] | 93 | { |
---|
| 94 | if (isPaused()) return; |
---|
| 95 | options |= Paused; |
---|
| 96 | } |
---|
| 97 | |
---|
[375] | 98 | void LoggerBase::resume() |
---|
[336] | 99 | { |
---|
| 100 | if (!isPaused()) return; |
---|
| 101 | options &= ~Paused; |
---|
| 102 | } |
---|
| 103 | |
---|
[511] | 104 | void LoggerBase::handle(const char *obj, const char *method, int level, const char *msg) |
---|
| 105 | { |
---|
| 106 | int line = 0; //all lines except the first one get the "..." prefix |
---|
| 107 | const char* nextsep; |
---|
| 108 | do |
---|
| 109 | { |
---|
| 110 | nextsep = strchr(msg, '\n'); |
---|
| 111 | if (nextsep == NULL) //last chunk, until the end |
---|
| 112 | nextsep = strchr(msg, '\0'); |
---|
| 113 | if ((nextsep > msg) && (nextsep[-1] == '\r')) |
---|
| 114 | nextsep--; |
---|
| 115 | if (line == 0) |
---|
| 116 | { |
---|
| 117 | if (*nextsep == 0) //there was only one line! no need to modify it in any way. |
---|
| 118 | handleSingleLine(obj, method, level, msg); |
---|
| 119 | else //first line from multi-line |
---|
| 120 | handleSingleLine(obj, method, level, string(msg, nextsep - msg).c_str()); |
---|
| 121 | } |
---|
| 122 | else //consecutive lines from multi-line |
---|
| 123 | handleSingleLine(obj, method, level, (LOG_MULTILINE_CONTINUATION + string(msg, nextsep - msg)).c_str()); //could also add line numbers like ...(3)... but let's keep the prefix short and simple |
---|
| 124 | line++; |
---|
| 125 | if ((nextsep[0] == '\r') && (nextsep[1] == '\n')) |
---|
| 126 | msg = nextsep + 2; |
---|
| 127 | else if (*nextsep) |
---|
| 128 | msg = nextsep + 1; |
---|
| 129 | } while (*nextsep); |
---|
| 130 | } |
---|
| 131 | |
---|
[109] | 132 | ///////////////////////////////// |
---|
| 133 | |
---|
[378] | 134 | void LoggerToMemory::handle(const char *obj, const char *method, int level, const char *msg) |
---|
[109] | 135 | { |
---|
[378] | 136 | if (level > maxlevel) maxlevel = level; |
---|
| 137 | if (level >= LOG_INFO) infocount++; |
---|
| 138 | if (level >= LOG_WARN) warncount++; |
---|
| 139 | if (level >= LOG_ERROR) errcount++; |
---|
[109] | 140 | |
---|
[378] | 141 | if (level >= minleveltostore) |
---|
[109] | 142 | { |
---|
[373] | 143 | storedcount++; |
---|
[336] | 144 | if (options & (StoreFirstMessage | StoreAllMessages)) |
---|
[109] | 145 | { |
---|
[378] | 146 | if (!((options&StoreFirstMessage) && (msgs.length() > 0))) |
---|
[109] | 147 | { |
---|
[378] | 148 | if (msgs.length() > 0) msgs += '\n'; |
---|
| 149 | msgs += ssprintf(LOG_FORMAT, LOG_LEVEL[level + 1], obj, method, msg); |
---|
[109] | 150 | } |
---|
| 151 | } |
---|
| 152 | } |
---|
| 153 | } |
---|
[452] | 154 | |
---|
| 155 | string LoggerToMemory::getCountSummary() const |
---|
| 156 | { |
---|
[522] | 157 | if (getInfoCount()) |
---|
[452] | 158 | { |
---|
[522] | 159 | string msg; |
---|
| 160 | if (getErrorCount()) |
---|
| 161 | msg = ssprintf("%d error(s)", getErrorCount()); |
---|
| 162 | int w; |
---|
| 163 | if (w = getWarningCount() - getErrorCount()) |
---|
| 164 | msg += ssprintf("%s%d warning(s)", (getErrorCount() ? ", " : ""), w); |
---|
| 165 | if (w = getInfoCount() - getWarningCount()) |
---|
| 166 | msg += ssprintf("%s%d message(s)", (getWarningCount() ? ", " : ""), w); |
---|
| 167 | return msg; |
---|
[452] | 168 | } |
---|
[522] | 169 | return string(""); |
---|
[452] | 170 | } |
---|
| 171 | |
---|