2 * GIT - The information manager from hell
4 * Copyright (C) 2000-2002 Michael R. Elkins <me@mutt.org>
5 * Copyright (C) 2002-2004 Oswald Buddenhagen <ossi@users.sf.net>
6 * Copyright (C) 2004 Theodore Y. Ts'o <tytso@mit.edu>
7 * Copyright (C) 2006 Mike McCormack
8 * Copyright (C) 2006 Christian Couder
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, see <https://www.gnu.org/licenses/>.
24 #include "git-compat-util.h"
26 #include "environment.h"
31 struct trace_key trace_default_key
= { "GIT_TRACE", 0, 0, 0 };
32 struct trace_key trace_perf_key
= TRACE_KEY_INIT(PERFORMANCE
);
33 struct trace_key trace_setup_key
= TRACE_KEY_INIT(SETUP
);
35 /* Get a trace file descriptor from "key" env variable. */
36 static int get_trace_fd(struct trace_key
*key
, const char *override_envvar
)
40 /* don't open twice */
44 trace
= override_envvar
? override_envvar
: getenv(key
->key
);
46 if (!trace
|| !strcmp(trace
, "") ||
47 !strcmp(trace
, "0") || !strcasecmp(trace
, "false"))
49 else if (!strcmp(trace
, "1") || !strcasecmp(trace
, "true"))
50 key
->fd
= STDERR_FILENO
;
51 else if (strlen(trace
) == 1 && isdigit(*trace
))
52 key
->fd
= atoi(trace
);
53 else if (is_absolute_path(trace
)) {
54 int fd
= open(trace
, O_WRONLY
| O_APPEND
| O_CREAT
, 0666);
56 warning("could not open '%s' for tracing: %s",
57 trace
, strerror(errno
));
64 warning("unknown trace value for '%s': %s\n"
65 " If you want to trace into a file, then please set %s\n"
66 " to an absolute pathname (starting with /)",
67 key
->key
, trace
, key
->key
);
75 void trace_override_envvar(struct trace_key
*key
, const char *value
)
81 * Invoke get_trace_fd() to initialize key using the given value
82 * instead of the value of the environment variable.
84 get_trace_fd(key
, value
);
87 void trace_disable(struct trace_key
*key
)
96 static int prepare_trace_line(const char *file
, int line
,
97 struct trace_key
*key
, struct strbuf
*buf
)
99 static struct trace_key trace_bare
= TRACE_KEY_INIT(BARE
);
104 if (!trace_want(key
))
107 /* unit tests may want to disable additional trace output */
108 if (trace_want(&trace_bare
))
111 /* print current timestamp */
112 gettimeofday(&tv
, NULL
);
114 localtime_r(&secs
, &tm
);
115 strbuf_addf(buf
, "%02d:%02d:%02d.%06ld %s:%d", tm
.tm_hour
, tm
.tm_min
,
116 tm
.tm_sec
, (long) tv
.tv_usec
, file
, line
);
117 /* align trace output (column 40 catches most files names in git) */
118 while (buf
->len
< 40)
119 strbuf_addch(buf
, ' ');
124 static void trace_write(struct trace_key
*key
, const void *buf
, unsigned len
)
126 if (write_in_full(get_trace_fd(key
, NULL
), buf
, len
) < 0) {
127 warning("unable to write trace for %s: %s",
128 key
->key
, strerror(errno
));
133 void trace_verbatim(struct trace_key
*key
, const void *buf
, unsigned len
)
135 if (!trace_want(key
))
137 trace_write(key
, buf
, len
);
140 static void print_trace_line(struct trace_key
*key
, struct strbuf
*buf
)
142 strbuf_complete_line(buf
);
143 trace_write(key
, buf
->buf
, buf
->len
);
146 static void trace_vprintf_fl(const char *file
, int line
, struct trace_key
*key
,
147 const char *format
, va_list ap
)
149 struct strbuf buf
= STRBUF_INIT
;
151 if (!prepare_trace_line(file
, line
, key
, &buf
))
154 strbuf_vaddf(&buf
, format
, ap
);
155 print_trace_line(key
, &buf
);
156 strbuf_release(&buf
);
159 static void trace_argv_vprintf_fl(const char *file
, int line
,
160 const char **argv
, const char *format
,
163 struct strbuf buf
= STRBUF_INIT
;
165 if (!prepare_trace_line(file
, line
, &trace_default_key
, &buf
))
168 strbuf_vaddf(&buf
, format
, ap
);
170 sq_quote_argv_pretty(&buf
, argv
);
171 print_trace_line(&trace_default_key
, &buf
);
172 strbuf_release(&buf
);
175 void trace_strbuf_fl(const char *file
, int line
, struct trace_key
*key
,
176 const struct strbuf
*data
)
178 struct strbuf buf
= STRBUF_INIT
;
180 if (!prepare_trace_line(file
, line
, key
, &buf
))
183 strbuf_addbuf(&buf
, data
);
184 print_trace_line(key
, &buf
);
185 strbuf_release(&buf
);
188 static uint64_t perf_start_times
[10];
189 static int perf_indent
;
191 uint64_t trace_performance_enter(void)
195 if (!trace_want(&trace_perf_key
))
199 perf_start_times
[perf_indent
] = now
;
200 if (perf_indent
+ 1 < ARRAY_SIZE(perf_start_times
))
203 BUG("Too deep indentation");
207 static void trace_performance_vprintf_fl(const char *file
, int line
,
208 uint64_t nanos
, const char *format
,
211 static const char space
[] = " ";
212 struct strbuf buf
= STRBUF_INIT
;
214 if (!prepare_trace_line(file
, line
, &trace_perf_key
, &buf
))
217 strbuf_addf(&buf
, "performance: %.9f s", (double) nanos
/ 1000000000);
219 if (format
&& *format
) {
220 if (perf_indent
>= strlen(space
))
221 BUG("Too deep indentation");
223 strbuf_addf(&buf
, ":%.*s ", perf_indent
, space
);
224 strbuf_vaddf(&buf
, format
, ap
);
227 print_trace_line(&trace_perf_key
, &buf
);
228 strbuf_release(&buf
);
231 void trace_printf_key_fl(const char *file
, int line
, struct trace_key
*key
,
232 const char *format
, ...)
235 va_start(ap
, format
);
236 trace_vprintf_fl(file
, line
, key
, format
, ap
);
240 void trace_argv_printf_fl(const char *file
, int line
, const char **argv
,
241 const char *format
, ...)
244 va_start(ap
, format
);
245 trace_argv_vprintf_fl(file
, line
, argv
, format
, ap
);
249 void trace_performance_fl(const char *file
, int line
, uint64_t nanos
,
250 const char *format
, ...)
253 va_start(ap
, format
);
254 trace_performance_vprintf_fl(file
, line
, nanos
, format
, ap
);
258 void trace_performance_leave_fl(const char *file
, int line
,
259 uint64_t nanos
, const char *format
, ...)
267 if (!format
) /* Allow callers to leave without tracing anything */
270 since
= perf_start_times
[perf_indent
];
271 va_start(ap
, format
);
272 trace_performance_vprintf_fl(file
, line
, nanos
- since
, format
, ap
);
276 static const char *quote_crnl(const char *path
)
278 static struct strbuf new_path
= STRBUF_INIT
;
283 strbuf_reset(&new_path
);
287 case '\\': strbuf_addstr(&new_path
, "\\\\"); break;
288 case '\n': strbuf_addstr(&new_path
, "\\n"); break;
289 case '\r': strbuf_addstr(&new_path
, "\\r"); break;
291 strbuf_addch(&new_path
, *path
);
298 void trace_repo_setup(void)
300 const char *git_work_tree
, *prefix
= startup_info
->prefix
;
303 if (!trace_want(&trace_setup_key
))
308 if (!(git_work_tree
= get_git_work_tree()))
309 git_work_tree
= "(null)";
311 if (!startup_info
->prefix
)
314 trace_printf_key(&trace_setup_key
, "setup: git_dir: %s\n", quote_crnl(get_git_dir()));
315 trace_printf_key(&trace_setup_key
, "setup: git_common_dir: %s\n", quote_crnl(get_git_common_dir()));
316 trace_printf_key(&trace_setup_key
, "setup: worktree: %s\n", quote_crnl(git_work_tree
));
317 trace_printf_key(&trace_setup_key
, "setup: cwd: %s\n", quote_crnl(cwd
));
318 trace_printf_key(&trace_setup_key
, "setup: prefix: %s\n", quote_crnl(prefix
));
323 int trace_want(struct trace_key
*key
)
325 return !!get_trace_fd(key
, NULL
);
328 #if defined(HAVE_CLOCK_GETTIME) && defined(HAVE_CLOCK_MONOTONIC)
330 static inline uint64_t highres_nanos(void)
333 if (clock_gettime(CLOCK_MONOTONIC
, &ts
))
335 return (uint64_t) ts
.tv_sec
* 1000000000 + ts
.tv_nsec
;
338 #elif defined (GIT_WINDOWS_NATIVE)
340 static inline uint64_t highres_nanos(void)
342 static uint64_t high_ns
, scaled_low_ns
;
347 if (!QueryPerformanceFrequency(&cnt
))
350 /* high_ns = number of ns per cnt.HighPart */
351 high_ns
= (1000000000LL << 32) / (uint64_t) cnt
.QuadPart
;
354 * Number of ns per cnt.LowPart is 10^9 / frequency (or
355 * high_ns >> 32). For maximum precision, we scale this factor
356 * so that it just fits within 32 bit (i.e. won't overflow if
357 * multiplied with cnt.LowPart).
359 scaled_low_ns
= high_ns
;
361 while (scaled_low_ns
>= 0x100000000LL
) {
367 /* if QPF worked on initialization, we expect QPC to work as well */
368 QueryPerformanceCounter(&cnt
);
370 return (high_ns
* cnt
.HighPart
) +
371 ((scaled_low_ns
* cnt
.LowPart
) >> scale
);
375 # define highres_nanos() 0
378 static inline uint64_t gettimeofday_nanos(void)
381 gettimeofday(&tv
, NULL
);
382 return (uint64_t) tv
.tv_sec
* 1000000000 + tv
.tv_usec
* 1000;
386 * Returns nanoseconds since the epoch (01/01/1970), for performance tracing
387 * (i.e. favoring high precision over wall clock time accuracy).
389 uint64_t getnanotime(void)
391 static uint64_t offset
;
393 /* initialization succeeded, return offset + high res time */
394 return offset
+ highres_nanos();
395 } else if (offset
== 1) {
396 /* initialization failed, fall back to gettimeofday */
397 return gettimeofday_nanos();
399 /* initialize offset if high resolution timer works */
400 uint64_t now
= gettimeofday_nanos();
401 uint64_t highres
= highres_nanos();
403 offset
= now
- highres
;
410 static struct strbuf command_line
= STRBUF_INIT
;
412 static void print_command_performance_atexit(void)
414 trace_performance_leave("git command:%s", command_line
.buf
);
417 void trace_command_performance(const char **argv
)
419 if (!trace_want(&trace_perf_key
))
422 if (!command_line
.len
)
423 atexit(print_command_performance_atexit
);
425 strbuf_reset(&command_line
);
426 sq_quote_argv_pretty(&command_line
, argv
);
427 trace_performance_enter();