2010-06-23 23:03:09 -05:00
|
|
|
/*
|
|
|
|
* Logging infrastructure that aims to support multi-threading, indentation
|
|
|
|
* and ansi colors.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "rust_internal.h"
|
2010-07-19 16:05:18 -05:00
|
|
|
#include "util/array_list.h"
|
|
|
|
#include <stdarg.h>
|
2010-10-11 18:40:18 -05:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2010-06-23 23:03:09 -05:00
|
|
|
|
Make log the log level configurable per module
This overloads the meaning of RUST_LOG to also allow
'module.submodule' or 'module.somethingelse=2' forms. The first turn
on all logging for a module (loglevel 3), the second sets its loglevel
to 2. Log levels are:
0: Show only errors
1: Errors and warnings
2: Errors, warnings, and notes
3: Everything, including debug logging
Right now, since we only have one 'log' operation, everything happens
at level 1 (warning), so the only meaningful thing that can be done
with the new RUST_LOG support is disable logging (=0) for some
modules.
TODOS:
* Language support for logging at a specific level
* Also add a log level field to tasks, query the current task as well
as the current module before logging (log if one of them allows it)
* Revise the C logging API to conform to this set-up (globals for
per-module log level, query the task level before logging, stop
using a global mask)
Implementation notes:
Crates now contain two extra data structures. A 'module map' that
contains names and pointers to the module-log-level globals for each
module in the crate that logs, and a 'crate map' that points at the
crate's module map, as well as at the crate maps of all external
crates it depends on. These are walked by the runtime (in
rust_crate.cpp) to set the currect log levels based on RUST_LOG.
These module log globals are allocated as-needed whenever a log
expression is encountered, and their location is hard-coded into the
logging code, which compares the current level to the log statement's
level, and skips over all logging code when it is lower.
2011-04-17 09:29:18 -05:00
|
|
|
// FIXME somehow unify this with the parsing happening in rust_crate.cpp
|
2010-07-19 16:05:18 -05:00
|
|
|
static uint32_t
|
|
|
|
read_type_bit_mask() {
|
2010-07-20 20:38:06 -05:00
|
|
|
uint32_t bits = rust_log::ULOG | rust_log::ERR;
|
2010-06-23 23:03:09 -05:00
|
|
|
char *env_str = getenv("RUST_LOG");
|
|
|
|
if (env_str) {
|
2010-10-11 19:11:59 -05:00
|
|
|
char *str = new char[strlen(env_str) + 2];
|
2010-10-11 18:40:18 -05:00
|
|
|
str[0] = ',';
|
|
|
|
strcpy(str + 1, env_str);
|
|
|
|
|
Make log the log level configurable per module
This overloads the meaning of RUST_LOG to also allow
'module.submodule' or 'module.somethingelse=2' forms. The first turn
on all logging for a module (loglevel 3), the second sets its loglevel
to 2. Log levels are:
0: Show only errors
1: Errors and warnings
2: Errors, warnings, and notes
3: Everything, including debug logging
Right now, since we only have one 'log' operation, everything happens
at level 1 (warning), so the only meaningful thing that can be done
with the new RUST_LOG support is disable logging (=0) for some
modules.
TODOS:
* Language support for logging at a specific level
* Also add a log level field to tasks, query the current task as well
as the current module before logging (log if one of them allows it)
* Revise the C logging API to conform to this set-up (globals for
per-module log level, query the task level before logging, stop
using a global mask)
Implementation notes:
Crates now contain two extra data structures. A 'module map' that
contains names and pointers to the module-log-level globals for each
module in the crate that logs, and a 'crate map' that points at the
crate's module map, as well as at the crate maps of all external
crates it depends on. These are walked by the runtime (in
rust_crate.cpp) to set the currect log levels based on RUST_LOG.
These module log globals are allocated as-needed whenever a log
expression is encountered, and their location is hard-coded into the
logging code, which compares the current level to the log statement's
level, and skips over all logging code when it is lower.
2011-04-17 09:29:18 -05:00
|
|
|
bits = rust_log::ULOG;
|
2010-10-11 18:40:18 -05:00
|
|
|
bits |= strstr(str, ",err") ? rust_log::ERR : 0;
|
|
|
|
bits |= strstr(str, ",mem") ? rust_log::MEM : 0;
|
|
|
|
bits |= strstr(str, ",comm") ? rust_log::COMM : 0;
|
|
|
|
bits |= strstr(str, ",task") ? rust_log::TASK : 0;
|
|
|
|
bits |= strstr(str, ",up") ? rust_log::UPCALL : 0;
|
|
|
|
bits |= strstr(str, ",dom") ? rust_log::DOM : 0;
|
|
|
|
bits |= strstr(str, ",trace") ? rust_log::TRACE : 0;
|
|
|
|
bits |= strstr(str, ",dwarf") ? rust_log::DWARF : 0;
|
|
|
|
bits |= strstr(str, ",cache") ? rust_log::CACHE : 0;
|
|
|
|
bits |= strstr(str, ",timer") ? rust_log::TIMER : 0;
|
|
|
|
bits |= strstr(str, ",gc") ? rust_log::GC : 0;
|
|
|
|
bits |= strstr(str, ",stdlib") ? rust_log::STDLIB : 0;
|
|
|
|
bits |= strstr(str, ",special") ? rust_log::SPECIAL : 0;
|
|
|
|
bits |= strstr(str, ",kern") ? rust_log::KERN : 0;
|
|
|
|
bits |= strstr(str, ",bt") ? rust_log::BT : 0;
|
|
|
|
bits |= strstr(str, ",all") ? rust_log::ALL : 0;
|
|
|
|
bits = strstr(str, ",none") ? 0 : bits;
|
2010-10-11 19:11:59 -05:00
|
|
|
|
|
|
|
delete[] str;
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
|
|
|
return bits;
|
|
|
|
}
|
|
|
|
|
2010-07-19 16:05:18 -05:00
|
|
|
rust_log::ansi_color
|
|
|
|
get_type_color(rust_log::log_type type) {
|
|
|
|
rust_log::ansi_color color = rust_log::WHITE;
|
|
|
|
if (type & rust_log::ERR)
|
|
|
|
color = rust_log::RED;
|
|
|
|
if (type & rust_log::MEM)
|
|
|
|
color = rust_log::YELLOW;
|
|
|
|
if (type & rust_log::UPCALL)
|
|
|
|
color = rust_log::GREEN;
|
|
|
|
if (type & rust_log::COMM)
|
|
|
|
color = rust_log::MAGENTA;
|
|
|
|
if (type & rust_log::DOM)
|
|
|
|
color = rust_log::LIGHTTEAL;
|
|
|
|
if (type & rust_log::TASK)
|
|
|
|
color = rust_log::LIGHTTEAL;
|
|
|
|
return color;
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
|
|
|
|
2010-07-19 16:05:18 -05:00
|
|
|
static const char * _foreground_colors[] = { "[37m",
|
|
|
|
"[31m", "[1;31m",
|
|
|
|
"[32m", "[1;32m",
|
|
|
|
"[33m", "[1;33m",
|
|
|
|
"[31m", "[1;31m",
|
|
|
|
"[35m", "[1;35m",
|
|
|
|
"[36m", "[1;36m" };
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Synchronizes access to the underlying logging mechanism.
|
|
|
|
*/
|
2010-09-08 21:13:49 -05:00
|
|
|
static lock_and_signal _log_lock;
|
2010-07-28 01:07:27 -05:00
|
|
|
static uint32_t _last_thread_id;
|
2010-07-19 16:05:18 -05:00
|
|
|
|
2010-06-23 23:03:09 -05:00
|
|
|
rust_log::rust_log(rust_srv *srv, rust_dom *dom) :
|
2010-07-19 16:05:18 -05:00
|
|
|
_srv(srv),
|
|
|
|
_dom(dom),
|
|
|
|
_type_bit_mask(read_type_bit_mask()),
|
|
|
|
_use_colors(getenv("RUST_COLOR_LOG")),
|
|
|
|
_indent(0) {
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
rust_log::~rust_log() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-07-19 16:05:18 -05:00
|
|
|
const uint16_t
|
|
|
|
hash(uintptr_t ptr) {
|
|
|
|
// Robert Jenkins' 32 bit integer hash function
|
|
|
|
ptr = (ptr + 0x7ed55d16) + (ptr << 12);
|
|
|
|
ptr = (ptr ^ 0xc761c23c) ^ (ptr >> 19);
|
|
|
|
ptr = (ptr + 0x165667b1) + (ptr << 5);
|
|
|
|
ptr = (ptr + 0xd3a2646c) ^ (ptr << 9);
|
|
|
|
ptr = (ptr + 0xfd7046c5) + (ptr << 3);
|
|
|
|
ptr = (ptr ^ 0xb55a4f09) ^ (ptr >> 16);
|
|
|
|
return (uint16_t) ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
get_color(uintptr_t ptr) {
|
|
|
|
return _foreground_colors[hash(ptr) % rust_log::LIGHTTEAL];
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
copy_string(char *dst, const char *src, size_t length) {
|
|
|
|
return strncpy(dst, src, length) + length;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
append_string(char *buffer, const char *format, ...) {
|
|
|
|
if (buffer != NULL && format) {
|
|
|
|
va_list args;
|
|
|
|
va_start(args, format);
|
2011-01-14 18:01:43 -06:00
|
|
|
size_t off = strlen(buffer);
|
|
|
|
vsnprintf(buffer + off, BUF_BYTES - off, format, args);
|
2010-07-19 16:05:18 -05:00
|
|
|
va_end(args);
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
2010-07-19 16:05:18 -05:00
|
|
|
return buffer;
|
|
|
|
}
|
2010-06-23 23:03:09 -05:00
|
|
|
|
2010-07-19 16:05:18 -05:00
|
|
|
char *
|
|
|
|
append_string(char *buffer, rust_log::ansi_color color,
|
|
|
|
const char *format, ...) {
|
|
|
|
if (buffer != NULL && format) {
|
|
|
|
append_string(buffer, "\x1b%s", _foreground_colors[color]);
|
|
|
|
va_list args;
|
|
|
|
va_start(args, format);
|
2011-01-14 18:01:43 -06:00
|
|
|
size_t off = strlen(buffer);
|
|
|
|
vsnprintf(buffer + off, BUF_BYTES - off, format, args);
|
2010-07-19 16:05:18 -05:00
|
|
|
va_end(args);
|
|
|
|
append_string(buffer, "\x1b[0m");
|
|
|
|
}
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-07-28 01:07:27 -05:00
|
|
|
rust_log::trace_ln(uint32_t thread_id, char *prefix, char *message) {
|
2011-01-14 15:41:39 -06:00
|
|
|
char buffer[BUF_BYTES] = "";
|
2010-07-19 16:05:18 -05:00
|
|
|
_log_lock.lock();
|
|
|
|
append_string(buffer, "%-34s", prefix);
|
2010-06-23 23:03:09 -05:00
|
|
|
for (uint32_t i = 0; i < _indent; i++) {
|
2010-07-19 16:05:18 -05:00
|
|
|
append_string(buffer, " ");
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
2010-07-19 16:05:18 -05:00
|
|
|
append_string(buffer, "%s", message);
|
2010-07-28 01:07:27 -05:00
|
|
|
if (_last_thread_id != thread_id) {
|
|
|
|
_last_thread_id = thread_id;
|
|
|
|
_srv->log("---");
|
|
|
|
}
|
2010-06-23 23:03:09 -05:00
|
|
|
_srv->log(buffer);
|
2010-07-19 16:05:18 -05:00
|
|
|
_log_lock.unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rust_log::trace_ln(rust_task *task, char *message) {
|
|
|
|
#if defined(__WIN32__)
|
|
|
|
uint32_t thread_id = 0;
|
|
|
|
#else
|
2010-08-11 16:04:36 -05:00
|
|
|
uint32_t thread_id = hash((uint32_t) pthread_self());
|
2010-07-19 16:05:18 -05:00
|
|
|
#endif
|
2011-01-14 15:41:39 -06:00
|
|
|
char prefix[BUF_BYTES] = "";
|
2010-08-27 20:26:36 -05:00
|
|
|
if (_dom && _dom->name) {
|
2010-08-11 16:04:36 -05:00
|
|
|
append_string(prefix, "%04" PRIxPTR ":%.10s:",
|
|
|
|
thread_id, _dom->name);
|
|
|
|
} else {
|
|
|
|
append_string(prefix, "%04" PRIxPTR ":0x%08" PRIxPTR ":",
|
|
|
|
thread_id, (uintptr_t) _dom);
|
|
|
|
}
|
2010-07-19 16:05:18 -05:00
|
|
|
if (task) {
|
2010-08-11 16:04:36 -05:00
|
|
|
if (task->name) {
|
|
|
|
append_string(prefix, "%.10s:", task->name);
|
|
|
|
} else {
|
|
|
|
append_string(prefix, "0x%08" PRIxPTR ":", (uintptr_t) task);
|
|
|
|
}
|
2010-07-19 16:05:18 -05:00
|
|
|
}
|
2010-07-28 01:07:27 -05:00
|
|
|
trace_ln(thread_id, prefix, message);
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Traces a log message if the specified logging type is not filtered.
|
|
|
|
*/
|
2010-07-19 16:05:18 -05:00
|
|
|
void
|
|
|
|
rust_log::trace_ln(rust_task *task, uint32_t type_bits, char *message) {
|
|
|
|
trace_ln(task, get_type_color((rust_log::log_type) type_bits),
|
|
|
|
type_bits, message);
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Traces a log message using the specified ANSI color code.
|
|
|
|
*/
|
2010-07-19 16:05:18 -05:00
|
|
|
void
|
|
|
|
rust_log::trace_ln(rust_task *task, ansi_color color,
|
|
|
|
uint32_t type_bits, char *message) {
|
2010-06-23 23:03:09 -05:00
|
|
|
if (is_tracing(type_bits)) {
|
|
|
|
if (_use_colors) {
|
2011-01-14 18:01:43 -06:00
|
|
|
char buffer[BUF_BYTES] = "";
|
2010-07-19 16:05:18 -05:00
|
|
|
append_string(buffer, color, "%s", message);
|
|
|
|
trace_ln(task, buffer);
|
2010-06-23 23:03:09 -05:00
|
|
|
} else {
|
2010-07-19 16:05:18 -05:00
|
|
|
trace_ln(task, message);
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-19 16:05:18 -05:00
|
|
|
void
|
|
|
|
rust_log::indent() {
|
2010-06-23 23:03:09 -05:00
|
|
|
_indent++;
|
|
|
|
}
|
|
|
|
|
2010-07-19 16:05:18 -05:00
|
|
|
void
|
|
|
|
rust_log::outdent() {
|
2010-06-23 23:03:09 -05:00
|
|
|
_indent--;
|
|
|
|
}
|
|
|
|
|
2010-07-19 16:05:18 -05:00
|
|
|
void
|
|
|
|
rust_log::reset_indent(uint32_t indent) {
|
2010-06-23 23:03:09 -05:00
|
|
|
_indent = indent;
|
|
|
|
}
|