13#ifndef ZEPHYR_INCLUDE_LOGGING_LOG_OUTPUT_H_
14#define ZEPHYR_INCLUDE_LOGGING_LOG_OUTPUT_H_
41#define LOG_OUTPUT_FLAG_COLORS BIT(0)
44#define LOG_OUTPUT_FLAG_TIMESTAMP BIT(1)
47#define LOG_OUTPUT_FLAG_FORMAT_TIMESTAMP BIT(2)
50#define LOG_OUTPUT_FLAG_LEVEL BIT(3)
53#define LOG_OUTPUT_FLAG_CRLF_NONE BIT(4)
56#define LOG_OUTPUT_FLAG_CRLF_LFONLY BIT(5)
60#define LOG_OUTPUT_FLAG_FORMAT_SYSLOG BIT(6)
63#define LOG_OUTPUT_FLAG_THREAD BIT(7)
66#define LOG_OUTPUT_FLAG_SKIP_SOURCE BIT(8)
69#define LOG_OUTPUT_FLAG_CORE BIT(9)
82#define LOG_OUTPUT_TEXT 0
85#define LOG_OUTPUT_SYST 1
88#define LOG_OUTPUT_DICT 2
91#define LOG_OUTPUT_CUSTOM 3
123 const char *hostname;
159#define LOG_OUTPUT_DEFINE(_name, _func, _buf, _size) \
160 LOG_OUTPUT_EXT_DEFINE(_name, _func, NULL, _buf, _size)
170#define LOG_OUTPUT_EXT_DEFINE(_name, _func, _get_available, _buf, _size) \
171 static struct log_output_control_block _name##_control_block; \
172 static const struct log_output _name = { \
174 .get_available = _get_available, \
175 .control_block = &_name##_control_block, \
251 processed = outf(buf, len, ctx);
285 const char *hostname)
Header file for the Atomic operations API.
long atomic_t
Atomic integer variable.
Definition atomic_types.h:31
uint32_t log_timestamp_t
Timestamp value associated with a log message.
Definition log_msg.h:54
void log_output_dropped_process(const struct log_output *output, uint32_t cnt)
Process dropped messages indication.
void(* log_format_func_t)(const struct log_output *output, struct log_msg *msg, uint32_t flags)
Typedef of the function pointer table "format_table".
Definition log_output.h:144
static void log_output_write(log_output_func_t outf, uint8_t *buf, size_t len, void *ctx)
Write to the output buffer.
Definition log_output.h:246
static void log_output_hostname_set(const struct log_output *output, const char *hostname)
Function for setting hostname of this device.
Definition log_output.h:284
void log_output_timestamp_freq_set(uint32_t freq)
Set timestamp frequency.
void log_output_process(const struct log_output *log_output, log_timestamp_t timestamp, const char *domain, const char *source, k_tid_t tid, uint8_t core_id, uint8_t level, const uint8_t *package, const uint8_t *data, size_t data_len, uint32_t flags)
Process input data to a readable string.
void log_output_msg_process(const struct log_output *log_output, struct log_msg *msg, uint32_t flags)
Process log messages v2 to readable strings.
static int log_output_get_available(const struct log_output *output)
Get available space in the output backend.
Definition log_output.h:296
uint64_t log_output_timestamp_to_us(log_timestamp_t timestamp)
Convert timestamp of the message to us.
static void log_output_ctx_set(const struct log_output *output, void *ctx)
Function for setting user context passed to the output function.
Definition log_output.h:273
log_format_func_t log_format_func_t_get(uint32_t log_type)
Declaration of the get routine for function pointer table format_table.
int(* log_output_get_available_t)(void *ctx)
Function pointer type for getting available output space.
Definition log_output.h:116
void log_output_msg_syst_process(const struct log_output *log_output, struct log_msg *msg, uint32_t flags)
Process log messages v2 to SYS-T format.
static void log_output_flush(const struct log_output *output)
Flush output buffer.
Definition log_output.h:261
int(* log_output_func_t)(uint8_t *buf, size_t size, void *ctx)
Prototype of the function processing output data.
Definition log_output.h:108
#define ENOTSUP
Unsupported value.
Definition errno.h:115
Header file for log messages.
flags
Definition parser.h:97
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__UINT64_TYPE__ uint64_t
Definition stdint.h:91
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
Kernel Spin Lock.
Definition spinlock.h:45
Run-time control block for a Log output instance.
Definition log_output.h:119
Log output instance.
Definition log_output.h:129
struct log_output_control_block * control_block
Run-time control block.
Definition log_output.h:132
log_output_get_available_t get_available
Get available output space.
Definition log_output.h:131
log_output_func_t func
Function called to write formatted output.
Definition log_output.h:130
uint8_t * buf
Buffer holding formatted output before it is written.
Definition log_output.h:133
size_t size
Size of log_output::buf, in bytes.
Definition log_output.h:134
struct k_thread * k_tid_t
Definition thread.h:408