Zephyr API Documentation 4.4.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
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
12
13#ifndef ZEPHYR_INCLUDE_LOGGING_LOG_OUTPUT_H_
14#define ZEPHYR_INCLUDE_LOGGING_LOG_OUTPUT_H_
15
16#include <errno.h>
18#include <zephyr/sys/util.h>
19#include <stdarg.h>
20#include <zephyr/sys/atomic.h>
21#include <zephyr/kernel.h>
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
33
37
41#define LOG_OUTPUT_FLAG_COLORS BIT(0)
42
44#define LOG_OUTPUT_FLAG_TIMESTAMP BIT(1)
45
47#define LOG_OUTPUT_FLAG_FORMAT_TIMESTAMP BIT(2)
48
50#define LOG_OUTPUT_FLAG_LEVEL BIT(3)
51
53#define LOG_OUTPUT_FLAG_CRLF_NONE BIT(4)
54
56#define LOG_OUTPUT_FLAG_CRLF_LFONLY BIT(5)
57
60#define LOG_OUTPUT_FLAG_FORMAT_SYSLOG BIT(6)
61
63#define LOG_OUTPUT_FLAG_THREAD BIT(7)
64
66#define LOG_OUTPUT_FLAG_SKIP_SOURCE BIT(8)
67
69#define LOG_OUTPUT_FLAG_CORE BIT(9)
70
72
80
82#define LOG_OUTPUT_TEXT 0
83
85#define LOG_OUTPUT_SYST 1
86
88#define LOG_OUTPUT_DICT 2
89
91#define LOG_OUTPUT_CUSTOM 3
92
94
108typedef int (*log_output_func_t)(uint8_t *buf, size_t size, void *ctx);
109
116typedef int (*log_output_get_available_t)(void *ctx);
117
121 atomic_t offset;
122 void *ctx;
123 const char *hostname;
124 struct k_spinlock lock;
126};
127
136
144typedef void (*log_format_func_t)(const struct log_output *output,
145 struct log_msg *msg, uint32_t flags);
146
151
159#define LOG_OUTPUT_DEFINE(_name, _func, _buf, _size) \
160 LOG_OUTPUT_EXT_DEFINE(_name, _func, NULL, _buf, _size)
161
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 = { \
173 .func = _func, \
174 .get_available = _get_available, \
175 .control_block = &_name##_control_block, \
176 .buf = _buf, \
177 .size = _size, \
178 }
179
190 struct log_msg *msg, uint32_t flags);
191
207 log_timestamp_t timestamp,
208 const char *domain,
209 const char *source,
210 k_tid_t tid,
211 uint8_t core_id,
212 uint8_t level,
213 const uint8_t *package,
214 const uint8_t *data,
215 size_t data_len,
217
228 struct log_msg *msg, uint32_t flags);
229
237void log_output_dropped_process(const struct log_output *output, uint32_t cnt);
238
246static inline void log_output_write(log_output_func_t outf, uint8_t *buf, size_t len, void *ctx)
247{
248 int processed;
249
250 while (len != 0) {
251 processed = outf(buf, len, ctx);
252 len -= processed;
253 buf += processed;
254 }
255}
256
261static inline void log_output_flush(const struct log_output *output)
262{
263 log_output_write(output->func, output->buf, output->control_block->offset,
264 output->control_block->ctx);
265 output->control_block->offset = 0;
266}
267
273static inline void log_output_ctx_set(const struct log_output *output,
274 void *ctx)
275{
276 output->control_block->ctx = ctx;
277}
278
284static inline void log_output_hostname_set(const struct log_output *output,
285 const char *hostname)
286{
287 output->control_block->hostname = hostname;
288}
289
296static inline int log_output_get_available(const struct log_output *output)
297{
298 if (output->get_available == NULL) {
299 return -ENOTSUP;
300 }
301
302 return output->get_available(output->control_block->ctx);
303}
304
310
318
322
323
324#ifdef __cplusplus
325}
326#endif
327
328#endif /* ZEPHYR_INCLUDE_LOGGING_LOG_OUTPUT_H_ */
Header file for the Atomic operations API.
System error numbers.
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
Public kernel APIs.
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
Misc utilities.
struct k_thread * k_tid_t
Definition thread.h:408