|
|
|
@ -45,7 +45,6 @@
@@ -45,7 +45,6 @@
|
|
|
|
|
#include <px4_daemon/server_io.h> |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
#include <lib/mathlib/mathlib.h> |
|
|
|
|
#include <uORB/uORB.h> |
|
|
|
|
#include <uORB/topics/log_message.h> |
|
|
|
|
#include <drivers/drv_hrt.h> |
|
|
|
@ -53,119 +52,68 @@
@@ -53,119 +52,68 @@
|
|
|
|
|
static orb_advert_t orb_log_message_pub = nullptr; |
|
|
|
|
|
|
|
|
|
__EXPORT const char *__px4_log_level_str[_PX4_LOG_LEVEL_PANIC + 1] = { "DEBUG", "INFO", "WARN", "ERROR", "PANIC" }; |
|
|
|
|
__EXPORT const char *__px4_log_level_color[_PX4_LOG_LEVEL_PANIC + 1] = |
|
|
|
|
{ PX4_ANSI_COLOR_GREEN, PX4_ANSI_COLOR_RESET, PX4_ANSI_COLOR_YELLOW, PX4_ANSI_COLOR_RED, PX4_ANSI_COLOR_RED }; |
|
|
|
|
|
|
|
|
|
#define PX4_ANSI_COLOR_RED "\x1b[31m" |
|
|
|
|
#define PX4_ANSI_COLOR_GREEN "\x1b[32m" |
|
|
|
|
#define PX4_ANSI_COLOR_YELLOW "\x1b[33m" |
|
|
|
|
#define PX4_ANSI_COLOR_BLUE "\x1b[34m" |
|
|
|
|
#define PX4_ANSI_COLOR_MAGENTA "\x1b[35m" |
|
|
|
|
#define PX4_ANSI_COLOR_CYAN "\x1b[36m" |
|
|
|
|
#define PX4_ANSI_COLOR_GRAY "\x1B[37m" |
|
|
|
|
#define PX4_ANSI_COLOR_RESET "\x1b[0m" |
|
|
|
|
|
|
|
|
|
static constexpr const char *__px4_log_level_color[_PX4_LOG_LEVEL_PANIC + 1] { |
|
|
|
|
PX4_ANSI_COLOR_GREEN, // DEBUG
|
|
|
|
|
PX4_ANSI_COLOR_RESET, // INFO
|
|
|
|
|
PX4_ANSI_COLOR_YELLOW, // WARN
|
|
|
|
|
PX4_ANSI_COLOR_RED, // ERROR
|
|
|
|
|
PX4_ANSI_COLOR_RED // PANIC
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
void px4_log_initialize(void) |
|
|
|
|
{ |
|
|
|
|
// we need to advertise with a valid message
|
|
|
|
|
log_message_s log_message{}; |
|
|
|
|
log_message.severity = 6; // info
|
|
|
|
|
strcpy((char *)log_message.text, "initialized uORB logging"); |
|
|
|
|
assert(orb_log_message_pub == nullptr); |
|
|
|
|
|
|
|
|
|
/* we need to advertise with a valid message */ |
|
|
|
|
struct log_message_s log_message; |
|
|
|
|
log_message.timestamp = hrt_absolute_time(); |
|
|
|
|
log_message.severity = 6; //info
|
|
|
|
|
strcpy((char *)log_message.text, "initialized uORB logging"); |
|
|
|
|
|
|
|
|
|
orb_log_message_pub = orb_advertise_queue(ORB_ID(log_message), &log_message, log_message_s::ORB_QUEUE_LENGTH); |
|
|
|
|
|
|
|
|
|
if (!orb_log_message_pub) { |
|
|
|
|
PX4_ERR("failed to advertise log_message"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
__EXPORT void px4_log_modulename(int level, const char *module_name, const char *fmt, ...) |
|
|
|
|
{ |
|
|
|
|
static constexpr ssize_t max_length = sizeof(log_message_s::text); |
|
|
|
|
|
|
|
|
|
__EXPORT void px4_log_modulename(int level, const char *moduleName, const char *fmt, ...) |
|
|
|
|
{ |
|
|
|
|
FILE *out = stdout; |
|
|
|
|
|
|
|
|
|
#if defined(PX4_LOG_COLORIZED_OUTPUT) |
|
|
|
|
bool use_color = true; |
|
|
|
|
#endif // PX4_LOG_COLORIZED_OUTPUT
|
|
|
|
|
|
|
|
|
|
#if defined(__PX4_POSIX) |
|
|
|
|
bool isatty_ = false; |
|
|
|
|
out = get_stdout(&isatty_); |
|
|
|
|
#ifdef __PX4_POSIX |
|
|
|
|
out = get_stdout(&use_color); |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
#if defined(PX4_LOG_COLORIZED_OUTPUT) |
|
|
|
|
use_color = isatty_; |
|
|
|
|
#endif // PX4_LOG_COLORIZED_OUTPUT
|
|
|
|
|
#endif // PX4_POSIX
|
|
|
|
|
#ifndef PX4_LOG_COLORIZED_OUTPUT |
|
|
|
|
use_color = false; |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
if (level >= _PX4_LOG_LEVEL_INFO) { |
|
|
|
|
char buf[max_length + 1]; // same length as log_message_s::text, but add newline
|
|
|
|
|
ssize_t pos = 0; |
|
|
|
|
|
|
|
|
|
#if defined(PX4_LOG_COLORIZED_OUTPUT) |
|
|
|
|
|
|
|
|
|
if (use_color) { |
|
|
|
|
pos += sprintf(buf + pos, "%s", __px4_log_level_color[level]); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#endif // PX4_LOG_COLORIZED_OUTPUT
|
|
|
|
|
if (use_color) { fputs(__px4_log_level_color[level], out); } |
|
|
|
|
|
|
|
|
|
pos += snprintf(buf + pos, math::max(max_length - pos, (ssize_t)0), __px4__log_level_fmt, __px4_log_level_str[level]); |
|
|
|
|
fprintf(out, __px4__log_level_fmt __px4__log_level_arg(level)); |
|
|
|
|
|
|
|
|
|
#if defined(PX4_LOG_COLORIZED_OUTPUT) |
|
|
|
|
if (use_color) { fputs(PX4_ANSI_COLOR_GRAY, out); } |
|
|
|
|
|
|
|
|
|
if (use_color) { |
|
|
|
|
pos += snprintf(buf + pos, math::max(max_length - pos, (ssize_t)0), PX4_ANSI_COLOR_GRAY); |
|
|
|
|
} |
|
|
|
|
fprintf(out, __px4__log_modulename_pfmt, moduleName); |
|
|
|
|
|
|
|
|
|
#endif // PX4_LOG_COLORIZED_OUTPUT
|
|
|
|
|
|
|
|
|
|
pos += snprintf(buf + pos, math::max(max_length - pos, (ssize_t)0), __px4__log_modulename_pfmt, module_name); |
|
|
|
|
|
|
|
|
|
#if defined(PX4_LOG_COLORIZED_OUTPUT) |
|
|
|
|
|
|
|
|
|
if (use_color) { |
|
|
|
|
pos += snprintf(buf + pos, math::max(max_length - pos, (ssize_t)0), "%s", __px4_log_level_color[level]); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#endif // PX4_LOG_COLORIZED_OUTPUT
|
|
|
|
|
if (use_color) { fputs(__px4_log_level_color[level], out); } |
|
|
|
|
|
|
|
|
|
va_list argptr; |
|
|
|
|
va_start(argptr, fmt); |
|
|
|
|
pos += vsnprintf(buf + pos, math::max(max_length - pos, (ssize_t)0), fmt, argptr); |
|
|
|
|
vfprintf(out, fmt, argptr); |
|
|
|
|
va_end(argptr); |
|
|
|
|
|
|
|
|
|
#if defined(PX4_LOG_COLORIZED_OUTPUT) |
|
|
|
|
|
|
|
|
|
if (use_color) { |
|
|
|
|
// alway reset color
|
|
|
|
|
const ssize_t sz = math::min(pos, max_length - (ssize_t)strlen(PX4_ANSI_COLOR_RESET) - (ssize_t)1); |
|
|
|
|
pos += sprintf(buf + sz, "%s\n", PX4_ANSI_COLOR_RESET); |
|
|
|
|
if (use_color) { fputs(PX4_ANSI_COLOR_RESET, out); } |
|
|
|
|
|
|
|
|
|
} else |
|
|
|
|
#endif // PX4_LOG_COLORIZED_OUTPUT
|
|
|
|
|
{ |
|
|
|
|
pos += sprintf(buf + math::min(pos, max_length - (ssize_t)1), "\n"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// ensure NULL termination (buffer is max_length + 1)
|
|
|
|
|
buf[max_length] = 0; |
|
|
|
|
|
|
|
|
|
fputs(buf, out); |
|
|
|
|
|
|
|
|
|
#if defined(CONFIG_ARCH_BOARD_PX4_SITL) |
|
|
|
|
// Without flushing it's tricky to see stdout output when PX4 is started by
|
|
|
|
|
// a script like for the MAVSDK tests.
|
|
|
|
|
fflush(out); |
|
|
|
|
#endif // CONFIG_ARCH_BOARD_PX4_SITL
|
|
|
|
|
fputc('\n', out); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* publish an orb log message */ |
|
|
|
|
if (level >= _PX4_LOG_LEVEL_INFO && orb_log_message_pub) { //publish all messages
|
|
|
|
|
|
|
|
|
|
log_message_s log_message; |
|
|
|
|
struct log_message_s log_message; |
|
|
|
|
const unsigned max_length_pub = sizeof(log_message.text); |
|
|
|
|
log_message.timestamp = hrt_absolute_time(); |
|
|
|
|
|
|
|
|
|
const uint8_t log_level_table[] = { |
|
|
|
|
7, /* _PX4_LOG_LEVEL_DEBUG */ |
|
|
|
@ -176,65 +124,47 @@ __EXPORT void px4_log_modulename(int level, const char *module_name, const char
@@ -176,65 +124,47 @@ __EXPORT void px4_log_modulename(int level, const char *module_name, const char
|
|
|
|
|
}; |
|
|
|
|
log_message.severity = log_level_table[level]; |
|
|
|
|
|
|
|
|
|
ssize_t pos = snprintf((char *)log_message.text, max_length, __px4__log_modulename_pfmt, module_name); |
|
|
|
|
unsigned pos = 0; |
|
|
|
|
|
|
|
|
|
va_list argptr; |
|
|
|
|
|
|
|
|
|
pos += snprintf((char *)log_message.text + pos, max_length_pub - pos, __px4__log_modulename_pfmt, moduleName); |
|
|
|
|
va_start(argptr, fmt); |
|
|
|
|
pos += vsnprintf((char *)log_message.text + pos, math::max(max_length - pos, (ssize_t)0), fmt, argptr); |
|
|
|
|
pos += vsnprintf((char *)log_message.text + pos, max_length_pub - pos, fmt, argptr); |
|
|
|
|
va_end(argptr); |
|
|
|
|
log_message.text[max_length - 1] = 0; //ensure 0-termination
|
|
|
|
|
log_message.timestamp = hrt_absolute_time(); |
|
|
|
|
log_message.text[max_length_pub - 1] = 0; //ensure 0-termination
|
|
|
|
|
|
|
|
|
|
orb_publish(ORB_ID(log_message), orb_log_message_pub, &log_message); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_BOARD_PX4_SITL |
|
|
|
|
// Without flushing it's tricky to see stdout output when PX4 is started by
|
|
|
|
|
// a script like for the MAVSDK tests.
|
|
|
|
|
fflush(out); |
|
|
|
|
#endif |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
__EXPORT void px4_log_raw(int level, const char *fmt, ...) |
|
|
|
|
{ |
|
|
|
|
FILE *out = stdout; |
|
|
|
|
bool use_color = true; |
|
|
|
|
|
|
|
|
|
#ifdef __PX4_POSIX |
|
|
|
|
bool use_color = true; |
|
|
|
|
out = get_stdout(&use_color); |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
if (level >= _PX4_LOG_LEVEL_INFO) { |
|
|
|
|
static constexpr ssize_t max_length = sizeof(log_message_s::text); |
|
|
|
|
char buf[max_length + 1]; // same length as log_message_s::text, but add newline
|
|
|
|
|
ssize_t pos = 0; |
|
|
|
|
|
|
|
|
|
#if defined(PX4_LOG_COLORIZED_OUTPUT) |
|
|
|
|
|
|
|
|
|
if (use_color) { |
|
|
|
|
pos += sprintf(buf + pos, "%s", __px4_log_level_color[level]); |
|
|
|
|
} |
|
|
|
|
#ifndef PX4_LOG_COLORIZED_OUTPUT |
|
|
|
|
use_color = false; |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
#endif // PX4_LOG_COLORIZED_OUTPUT
|
|
|
|
|
if (level >= _PX4_LOG_LEVEL_INFO) { |
|
|
|
|
if (use_color) { fputs(__px4_log_level_color[level], out); } |
|
|
|
|
|
|
|
|
|
va_list argptr; |
|
|
|
|
va_start(argptr, fmt); |
|
|
|
|
pos += vsnprintf(buf + pos, math::max(max_length - pos, (ssize_t)0), fmt, argptr); |
|
|
|
|
vfprintf(out, fmt, argptr); |
|
|
|
|
va_end(argptr); |
|
|
|
|
|
|
|
|
|
#if defined(PX4_LOG_COLORIZED_OUTPUT) |
|
|
|
|
|
|
|
|
|
if (use_color) { |
|
|
|
|
// alway reset color
|
|
|
|
|
const ssize_t sz = math::min(pos, max_length - (ssize_t)strlen(PX4_ANSI_COLOR_RESET)); |
|
|
|
|
pos += sprintf(buf + sz, "%s", PX4_ANSI_COLOR_RESET); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#endif // PX4_LOG_COLORIZED_OUTPUT
|
|
|
|
|
|
|
|
|
|
if (pos > max_length) { |
|
|
|
|
// preserve newline if necessary
|
|
|
|
|
if (fmt[strlen(fmt) - 1] == '\n') { |
|
|
|
|
buf[max_length - 1] = '\n'; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// ensure NULL termination (buffer is max_length + 1)
|
|
|
|
|
buf[max_length] = 0; |
|
|
|
|
|
|
|
|
|
fputs(buf, out); |
|
|
|
|
if (use_color) { fputs(PX4_ANSI_COLOR_RESET, out); } |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|