blob: 7875d149145b4763c4662f66816fa7bc96329f0a [file] [log] [blame]
Willy Tarreau4151c752019-08-08 18:21:26 +02001/*
2 * include/proto/trace.h
3 * This file provides functions for runtime tracing
4 *
5 * Copyright (C) 2000-2019 Willy Tarreau - w@1wt.eu
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#ifndef _PROTO_TRACE_H
23#define _PROTO_TRACE_H
24
25#include <common/buffer.h>
26#include <common/compat.h>
27#include <common/config.h>
28#include <common/ist.h>
29#include <common/mini-clist.h>
30#include <types/log.h>
31#include <types/sink.h>
32#include <types/trace.h>
33
34extern struct list trace_sources;
Willy Tarreau88ebd402019-08-19 15:55:34 +020035extern THREAD_LOCAL struct buffer trace_buf;
Willy Tarreau4151c752019-08-08 18:21:26 +020036
Willy Tarreau5da40882019-08-12 17:57:57 +020037void __trace(enum trace_level level, uint64_t mask, struct trace_source *src, const struct ist where, const struct ist msg);
Willy Tarreau4c2ae482019-08-12 15:51:58 +020038
Willy Tarreau864e8802019-08-08 18:48:12 +020039/* return a single char to describe a trace state */
40static inline char trace_state_char(enum trace_state st)
41{
42 return (st == TRACE_STATE_RUNNING) ? 'R' :
43 (st == TRACE_STATE_WAITING) ? 'w' :
44 '.';
45}
46
47/* return a single char to describe an event state */
48static inline char trace_event_char(uint64_t conf, uint64_t ev)
49{
50 return (conf & ev) ? '+' : '-';
51}
52
Willy Tarreau4151c752019-08-08 18:21:26 +020053/* registers trace source <source>. Modifies the list element!
54 * The {start,pause,stop,report} events are not changed so the source may
55 * preset them.
56 */
57static inline void trace_register_source(struct trace_source *source)
58{
59 source->lockon = TRACE_LOCKON_NOTHING;
60 source->level = TRACE_LEVEL_USER;
61 source->detail_level = LOG_NOTICE;
62 source->sink = NULL;
63 source->state = TRACE_STATE_STOPPED;
64 source->lockon_ptr = NULL;
65 LIST_ADDQ(&trace_sources, &source->source_link);
66}
67
Willy Tarreau4c2ae482019-08-12 15:51:58 +020068/* sends a trace for the given source */
Willy Tarreau5da40882019-08-12 17:57:57 +020069static inline void trace(enum trace_level level, uint64_t mask, struct trace_source *src, const struct ist where, const struct ist msg)
Willy Tarreau4c2ae482019-08-12 15:51:58 +020070{
71 if (unlikely(src->state != TRACE_STATE_STOPPED))
Willy Tarreau5da40882019-08-12 17:57:57 +020072 __trace(level, mask, src, where, msg);
Willy Tarreau4c2ae482019-08-12 15:51:58 +020073}
74
Willy Tarreau4151c752019-08-08 18:21:26 +020075#endif /* _PROTO_TRACE_H */
76
77/*
78 * Local variables:
79 * c-indent-level: 8
80 * c-basic-offset: 8
81 * End:
82 */