]> git.ipfire.org Git - thirdparty/git.git/blame - trace.h
fast-import: disallow "feature export-marks" by default
[thirdparty/git.git] / trace.h
CommitLineData
5991a55c
KB
1#ifndef TRACE_H
2#define TRACE_H
3
4#include "git-compat-util.h"
5#include "strbuf.h"
6
6aa30857
KB
7struct trace_key {
8 const char * const key;
9 int fd;
10 unsigned int initialized : 1;
11 unsigned int need_close : 1;
12};
13
14#define TRACE_KEY_INIT(name) { "GIT_TRACE_" #name, 0, 0, 0 }
15
5991a55c 16extern void trace_repo_setup(const char *prefix);
6aa30857
KB
17extern int trace_want(struct trace_key *key);
18extern void trace_disable(struct trace_key *key);
148d6771 19extern uint64_t getnanotime(void);
578da039 20extern void trace_command_performance(const char **argv);
32359838 21extern void trace_verbatim(struct trace_key *key, const void *buf, unsigned len);
66f66c59 22
e05bed96
KB
23#ifndef HAVE_VARIADIC_MACROS
24
66f66c59
KB
25__attribute__((format (printf, 1, 2)))
26extern void trace_printf(const char *format, ...);
27
5991a55c 28__attribute__((format (printf, 2, 3)))
6aa30857 29extern void trace_printf_key(struct trace_key *key, const char *format, ...);
66f66c59
KB
30
31__attribute__((format (printf, 2, 3)))
32extern void trace_argv_printf(const char **argv, const char *format, ...);
33
c69dfd24 34extern void trace_strbuf(struct trace_key *key, const struct strbuf *data);
5991a55c 35
09b2c1c7
KB
36/* Prints elapsed time (in nanoseconds) if GIT_TRACE_PERFORMANCE is enabled. */
37__attribute__((format (printf, 2, 3)))
38extern void trace_performance(uint64_t nanos, const char *format, ...);
39
40/* Prints elapsed time since 'start' if GIT_TRACE_PERFORMANCE is enabled. */
41__attribute__((format (printf, 2, 3)))
42extern void trace_performance_since(uint64_t start, const char *format, ...);
43
e05bed96
KB
44#else
45
46/*
47 * Macros to add file:line - see above for C-style declarations of how these
48 * should be used.
49 */
50
51/*
52 * TRACE_CONTEXT may be set to __FUNCTION__ if the compiler supports it. The
53 * default is __FILE__, as it is consistent with assert(), and static function
54 * names are not necessarily unique.
55 *
56 * __FILE__ ":" __FUNCTION__ doesn't work with GNUC, as __FILE__ is supplied
57 * by the preprocessor as a string literal, and __FUNCTION__ is filled in by
58 * the compiler as a string constant.
59 */
60#ifndef TRACE_CONTEXT
61# define TRACE_CONTEXT __FILE__
62#endif
63
64/*
65 * Note: with C99 variadic macros, __VA_ARGS__ must include the last fixed
66 * parameter ('format' in this case). Otherwise, a call without variable
67 * arguments will have a surplus ','. E.g.:
68 *
69 * #define foo(format, ...) bar(format, __VA_ARGS__)
70 * foo("test");
71 *
72 * will expand to
73 *
74 * bar("test",);
75 *
76 * which is invalid (note the ',)'). With GNUC, '##__VA_ARGS__' drops the
77 * comma, but this is non-standard.
78 */
79
80#define trace_printf(...) \
81 trace_printf_key_fl(TRACE_CONTEXT, __LINE__, NULL, __VA_ARGS__)
82
83#define trace_printf_key(key, ...) \
84 trace_printf_key_fl(TRACE_CONTEXT, __LINE__, key, __VA_ARGS__)
85
86#define trace_argv_printf(argv, ...) \
87 trace_argv_printf_fl(TRACE_CONTEXT, __LINE__, argv, __VA_ARGS__)
88
89#define trace_strbuf(key, data) \
90 trace_strbuf_fl(TRACE_CONTEXT, __LINE__, key, data)
91
09b2c1c7
KB
92#define trace_performance(nanos, ...) \
93 trace_performance_fl(TRACE_CONTEXT, __LINE__, nanos, __VA_ARGS__)
94
95#define trace_performance_since(start, ...) \
96 trace_performance_fl(TRACE_CONTEXT, __LINE__, getnanotime() - (start), \
97 __VA_ARGS__)
98
e05bed96
KB
99/* backend functions, use non-*fl macros instead */
100__attribute__((format (printf, 4, 5)))
101extern void trace_printf_key_fl(const char *file, int line, struct trace_key *key,
102 const char *format, ...);
103__attribute__((format (printf, 4, 5)))
104extern void trace_argv_printf_fl(const char *file, int line, const char **argv,
105 const char *format, ...);
106extern void trace_strbuf_fl(const char *file, int line, struct trace_key *key,
107 const struct strbuf *data);
09b2c1c7
KB
108__attribute__((format (printf, 4, 5)))
109extern void trace_performance_fl(const char *file, int line,
110 uint64_t nanos, const char *fmt, ...);
e05bed96
KB
111
112#endif /* HAVE_VARIADIC_MACROS */
113
5991a55c 114#endif /* TRACE_H */