/* * include/proto/trace.h * This file provides functions for runtime tracing * * Copyright (C) 2000-2019 Willy Tarreau - w@1wt.eu * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, version 2.1 * exclusively. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef _PROTO_TRACE_H #define _PROTO_TRACE_H #include #include #include #include #include #include #include #include extern struct list trace_sources; extern THREAD_LOCAL struct buffer trace_buf; void __trace(enum trace_level level, uint64_t mask, struct trace_source *src, const struct ist where, const void *a1, const void *a2, const void *a3, const void *a4, void (*cb)(enum trace_level level, uint64_t mask, const struct trace_source *src, const struct ist where, const void *a1, const void *a2, const void *a3, const void *a4), const struct ist msg); /* return a single char to describe a trace state */ static inline char trace_state_char(enum trace_state st) { return (st == TRACE_STATE_RUNNING) ? 'R' : (st == TRACE_STATE_WAITING) ? 'w' : '.'; } /* return a single char to describe an event state */ static inline char trace_event_char(uint64_t conf, uint64_t ev) { return (conf & ev) ? '+' : '-'; } /* registers trace source . Modifies the list element! * The {start,pause,stop,report} events are not changed so the source may * preset them. */ static inline void trace_register_source(struct trace_source *source) { source->lockon = TRACE_LOCKON_NOTHING; source->level = TRACE_LEVEL_USER; source->detail_level = LOG_NOTICE; source->sink = NULL; source->state = TRACE_STATE_STOPPED; source->lockon_ptr = NULL; LIST_ADDQ(&trace_sources, &source->source_link); } /* sends a trace for the given source */ static inline void trace(enum trace_level level, uint64_t mask, struct trace_source *src, const struct ist where, const void *a1, const void *a2, const void *a3, const void *a4, void (*cb)(enum trace_level level, uint64_t mask, const struct trace_source *src, const struct ist where, const void *a1, const void *a2, const void *a3, const void *a4), const struct ist msg) { if (unlikely(src->state != TRACE_STATE_STOPPED)) __trace(level, mask, src, where, a1, a2, a3, a4, cb, msg); } #endif /* _PROTO_TRACE_H */ /* * Local variables: * c-indent-level: 8 * c-basic-offset: 8 * End: */