Zephyr API Documentation  3.5.0
A Scalable Open Source RTOS
3.5.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
log_output.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2018 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6#ifndef ZEPHYR_INCLUDE_LOGGING_LOG_OUTPUT_H_
7#define ZEPHYR_INCLUDE_LOGGING_LOG_OUTPUT_H_
8
10#include <zephyr/sys/util.h>
11#include <stdarg.h>
12#include <zephyr/sys/atomic.h>
13#include <zephyr/kernel.h>
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
33#define LOG_OUTPUT_FLAG_COLORS BIT(0)
34
36#define LOG_OUTPUT_FLAG_TIMESTAMP BIT(1)
37
39#define LOG_OUTPUT_FLAG_FORMAT_TIMESTAMP BIT(2)
40
42#define LOG_OUTPUT_FLAG_LEVEL BIT(3)
43
45#define LOG_OUTPUT_FLAG_CRLF_NONE BIT(4)
46
48#define LOG_OUTPUT_FLAG_CRLF_LFONLY BIT(5)
49
52#define LOG_OUTPUT_FLAG_FORMAT_SYSLOG BIT(6)
53
55#define LOG_OUTPUT_FLAG_THREAD BIT(7)
56
62#define LOG_OUTPUT_TEXT 0
63
64#define LOG_OUTPUT_SYST 1
65
66#define LOG_OUTPUT_DICT 2
67
68#define LOG_OUTPUT_CUSTOM 3
69
83typedef int (*log_output_func_t)(uint8_t *buf, size_t size, void *ctx);
84
85/* @brief Control block structure for log_output instance. */
88 void *ctx;
89 const char *hostname;
90};
91
93struct log_output {
97 size_t size;
98};
99
109typedef void (*log_format_func_t)(const struct log_output *output,
110 struct log_msg *msg, uint32_t flags);
111
116
124#define LOG_OUTPUT_DEFINE(_name, _func, _buf, _size) \
125 static struct log_output_control_block _name##_control_block; \
126 static const struct log_output _name = { \
127 .func = _func, \
128 .control_block = &_name##_control_block, \
129 .buf = _buf, \
130 .size = _size, \
131 }
132
143 struct log_msg *msg, uint32_t flags);
144
159 log_timestamp_t timestamp,
160 const char *domain,
161 const char *source,
162 const k_tid_t tid,
163 uint8_t level,
164 const uint8_t *package,
165 const uint8_t *data,
166 size_t data_len,
168
179 struct log_msg *msg, uint32_t flags);
180
188void log_output_dropped_process(const struct log_output *output, uint32_t cnt);
189
194void log_output_flush(const struct log_output *output);
195
201static inline void log_output_ctx_set(const struct log_output *output,
202 void *ctx)
203{
204 output->control_block->ctx = ctx;
205}
206
212static inline void log_output_hostname_set(const struct log_output *output,
213 const char *hostname)
214{
215 output->control_block->hostname = hostname;
216}
217
223
231
237#ifdef __cplusplus
238}
239#endif
240
241#endif /* ZEPHYR_INCLUDE_LOGGING_LOG_OUTPUT_H_ */
long atomic_t
Definition: atomic.h:22
void log_output_process(const struct log_output *log_output, log_timestamp_t timestamp, const char *domain, const char *source, const k_tid_t tid, 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_dropped_process(const struct log_output *output, uint32_t cnt)
Process dropped messages indication.
void log_output_flush(const struct log_output *output)
Flush output buffer.
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:109
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:212
void log_output_timestamp_freq_set(uint32_t freq)
Set timestamp frequency.
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.
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:201
log_format_func_t log_format_func_t_get(uint32_t log_type)
Declaration of the get routine for function pointer table format_table.
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.
int(* log_output_func_t)(uint8_t *buf, size_t size, void *ctx)
Prototype of the function processing output data.
Definition: log_output.h:83
Public kernel APIs.
uint32_t log_timestamp_t
Definition: log_msg.h:36
flags
Definition: parser.h:96
__UINT32_TYPE__ uint32_t
Definition: stdint.h:90
__UINT64_TYPE__ uint64_t
Definition: stdint.h:91
__UINT8_TYPE__ uint8_t
Definition: stdint.h:88
Thread Structure.
Definition: thread.h:250
Definition: log_msg.h:95
uint8_t data[]
Definition: log_msg.h:101
Definition: log_output.h:86
atomic_t offset
Definition: log_output.h:87
const char * hostname
Definition: log_output.h:89
void * ctx
Definition: log_output.h:88
Log_output instance structure.
Definition: log_output.h:93
struct log_output_control_block * control_block
Definition: log_output.h:95
log_output_func_t func
Definition: log_output.h:94
uint8_t * buf
Definition: log_output.h:96
size_t size
Definition: log_output.h:97
Misc utilities.