3 #include "json-writer.h"
4 #include "run-command.h"
6 #include "trace2/tr2_dst.h"
7 #include "trace2/tr2_tbuf.h"
8 #include "trace2/tr2_sid.h"
9 #include "trace2/tr2_sysenv.h"
10 #include "trace2/tr2_tgt.h"
11 #include "trace2/tr2_tls.h"
13 static struct tr2_dst tr2dst_event
= { TR2_SYSENV_EVENT
, 0, 0, 0, 0 };
16 * The version number of the JSON data generated by the EVENT target in this
17 * source file. The version should be incremented if new event types are added,
18 * if existing fields are removed, or if there are significant changes in
19 * interpretation of existing events or fields. Smaller changes, such as adding
20 * a new field to an existing event, do not require an increment to the EVENT
23 #define TR2_EVENT_VERSION "2"
26 * Region nesting limit for messages written to the event target.
28 * The "region_enter" and "region_leave" messages (especially recursive
29 * messages such as those produced while diving the worktree or index)
30 * are primarily intended for the performance target during debugging.
32 * Some of the outer-most messages, however, may be of interest to the
33 * event target. Use the TR2_SYSENV_EVENT_NESTING setting to increase
34 * region details in the event target.
36 static int tr2env_event_max_nesting_levels
= 2;
39 * Use the TR2_SYSENV_EVENT_BRIEF to omit the <time>, <file>, and
40 * <line> fields from most events.
42 static int tr2env_event_be_brief
;
44 static int fn_init(void)
46 int want
= tr2_dst_trace_want(&tr2dst_event
);
55 nesting
= tr2_sysenv_get(TR2_SYSENV_EVENT_NESTING
);
56 if (nesting
&& *nesting
&& ((max_nesting
= atoi(nesting
)) > 0))
57 tr2env_event_max_nesting_levels
= max_nesting
;
59 brief
= tr2_sysenv_get(TR2_SYSENV_EVENT_BRIEF
);
60 if (brief
&& *brief
&&
61 ((want_brief
= git_parse_maybe_bool(brief
)) != -1))
62 tr2env_event_be_brief
= want_brief
;
67 static void fn_term(void)
69 tr2_dst_trace_disable(&tr2dst_event
);
73 * Append common key-value pairs to the currently open JSON object.
74 * "event:"<event_name>"
76 * "thread":"<thread_name>"
79 * "line":<line_number>
82 static void event_fmt_prepare(const char *event_name
, const char *file
,
83 int line
, const struct repository
*repo
,
84 struct json_writer
*jw
)
86 struct tr2tls_thread_ctx
*ctx
= tr2tls_get_self();
87 struct tr2_tbuf tb_now
;
89 jw_object_string(jw
, "event", event_name
);
90 jw_object_string(jw
, "sid", tr2_sid_get());
91 jw_object_string(jw
, "thread", ctx
->thread_name
.buf
);
94 * In brief mode, only emit <time> on these 2 event types.
96 if (!tr2env_event_be_brief
|| !strcmp(event_name
, "version") ||
97 !strcmp(event_name
, "atexit")) {
98 tr2_tbuf_utc_datetime_extended(&tb_now
);
99 jw_object_string(jw
, "time", tb_now
.buf
);
102 if (!tr2env_event_be_brief
&& file
&& *file
) {
103 jw_object_string(jw
, "file", file
);
104 jw_object_intmax(jw
, "line", line
);
108 jw_object_intmax(jw
, "repo", repo
->trace2_repo_id
);
111 static void fn_too_many_files_fl(const char *file
, int line
)
113 const char *event_name
= "too_many_files";
114 struct json_writer jw
= JSON_WRITER_INIT
;
116 jw_object_begin(&jw
, 0);
117 event_fmt_prepare(event_name
, file
, line
, NULL
, &jw
);
120 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
124 static void fn_version_fl(const char *file
, int line
)
126 const char *event_name
= "version";
127 struct json_writer jw
= JSON_WRITER_INIT
;
129 jw_object_begin(&jw
, 0);
130 event_fmt_prepare(event_name
, file
, line
, NULL
, &jw
);
131 jw_object_string(&jw
, "evt", TR2_EVENT_VERSION
);
132 jw_object_string(&jw
, "exe", git_version_string
);
135 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
138 if (tr2dst_event
.too_many_files
)
139 fn_too_many_files_fl(file
, line
);
142 static void fn_start_fl(const char *file
, int line
,
143 uint64_t us_elapsed_absolute
, const char **argv
)
145 const char *event_name
= "start";
146 struct json_writer jw
= JSON_WRITER_INIT
;
147 double t_abs
= (double)us_elapsed_absolute
/ 1000000.0;
149 jw_object_begin(&jw
, 0);
150 event_fmt_prepare(event_name
, file
, line
, NULL
, &jw
);
151 jw_object_double(&jw
, "t_abs", 6, t_abs
);
152 jw_object_inline_begin_array(&jw
, "argv");
153 jw_array_argv(&jw
, argv
);
157 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
161 static void fn_exit_fl(const char *file
, int line
, uint64_t us_elapsed_absolute
,
164 const char *event_name
= "exit";
165 struct json_writer jw
= JSON_WRITER_INIT
;
166 double t_abs
= (double)us_elapsed_absolute
/ 1000000.0;
168 jw_object_begin(&jw
, 0);
169 event_fmt_prepare(event_name
, file
, line
, NULL
, &jw
);
170 jw_object_double(&jw
, "t_abs", 6, t_abs
);
171 jw_object_intmax(&jw
, "code", code
);
174 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
178 static void fn_signal(uint64_t us_elapsed_absolute
, int signo
)
180 const char *event_name
= "signal";
181 struct json_writer jw
= JSON_WRITER_INIT
;
182 double t_abs
= (double)us_elapsed_absolute
/ 1000000.0;
184 jw_object_begin(&jw
, 0);
185 event_fmt_prepare(event_name
, __FILE__
, __LINE__
, NULL
, &jw
);
186 jw_object_double(&jw
, "t_abs", 6, t_abs
);
187 jw_object_intmax(&jw
, "signo", signo
);
190 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
194 static void fn_atexit(uint64_t us_elapsed_absolute
, int code
)
196 const char *event_name
= "atexit";
197 struct json_writer jw
= JSON_WRITER_INIT
;
198 double t_abs
= (double)us_elapsed_absolute
/ 1000000.0;
200 jw_object_begin(&jw
, 0);
201 event_fmt_prepare(event_name
, __FILE__
, __LINE__
, NULL
, &jw
);
202 jw_object_double(&jw
, "t_abs", 6, t_abs
);
203 jw_object_intmax(&jw
, "code", code
);
206 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
210 static void maybe_add_string_va(struct json_writer
*jw
, const char *field_name
,
211 const char *fmt
, va_list ap
)
215 struct strbuf buf
= STRBUF_INIT
;
217 va_copy(copy_ap
, ap
);
218 strbuf_vaddf(&buf
, fmt
, copy_ap
);
221 jw_object_string(jw
, field_name
, buf
.buf
);
222 strbuf_release(&buf
);
227 static void fn_error_va_fl(const char *file
, int line
, const char *fmt
,
230 const char *event_name
= "error";
231 struct json_writer jw
= JSON_WRITER_INIT
;
233 jw_object_begin(&jw
, 0);
234 event_fmt_prepare(event_name
, file
, line
, NULL
, &jw
);
235 maybe_add_string_va(&jw
, "msg", fmt
, ap
);
237 * Also emit the format string as a field in case
238 * post-processors want to aggregate common error
239 * messages by type without argument fields (such
240 * as pathnames or branch names) cluttering it up.
243 jw_object_string(&jw
, "fmt", fmt
);
246 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
250 static void fn_command_path_fl(const char *file
, int line
, const char *pathname
)
252 const char *event_name
= "cmd_path";
253 struct json_writer jw
= JSON_WRITER_INIT
;
255 jw_object_begin(&jw
, 0);
256 event_fmt_prepare(event_name
, file
, line
, NULL
, &jw
);
257 jw_object_string(&jw
, "path", pathname
);
260 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
264 static void fn_command_name_fl(const char *file
, int line
, const char *name
,
265 const char *hierarchy
)
267 const char *event_name
= "cmd_name";
268 struct json_writer jw
= JSON_WRITER_INIT
;
270 jw_object_begin(&jw
, 0);
271 event_fmt_prepare(event_name
, file
, line
, NULL
, &jw
);
272 jw_object_string(&jw
, "name", name
);
273 if (hierarchy
&& *hierarchy
)
274 jw_object_string(&jw
, "hierarchy", hierarchy
);
277 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
281 static void fn_command_mode_fl(const char *file
, int line
, const char *mode
)
283 const char *event_name
= "cmd_mode";
284 struct json_writer jw
= JSON_WRITER_INIT
;
286 jw_object_begin(&jw
, 0);
287 event_fmt_prepare(event_name
, file
, line
, NULL
, &jw
);
288 jw_object_string(&jw
, "name", mode
);
291 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
295 static void fn_alias_fl(const char *file
, int line
, const char *alias
,
298 const char *event_name
= "alias";
299 struct json_writer jw
= JSON_WRITER_INIT
;
301 jw_object_begin(&jw
, 0);
302 event_fmt_prepare(event_name
, file
, line
, NULL
, &jw
);
303 jw_object_string(&jw
, "alias", alias
);
304 jw_object_inline_begin_array(&jw
, "argv");
305 jw_array_argv(&jw
, argv
);
309 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
313 static void fn_child_start_fl(const char *file
, int line
,
314 uint64_t us_elapsed_absolute
,
315 const struct child_process
*cmd
)
317 const char *event_name
= "child_start";
318 struct json_writer jw
= JSON_WRITER_INIT
;
320 jw_object_begin(&jw
, 0);
321 event_fmt_prepare(event_name
, file
, line
, NULL
, &jw
);
322 jw_object_intmax(&jw
, "child_id", cmd
->trace2_child_id
);
323 if (cmd
->trace2_hook_name
) {
324 jw_object_string(&jw
, "child_class", "hook");
325 jw_object_string(&jw
, "hook_name", cmd
->trace2_hook_name
);
327 const char *child_class
=
328 cmd
->trace2_child_class
? cmd
->trace2_child_class
: "?";
329 jw_object_string(&jw
, "child_class", child_class
);
332 jw_object_string(&jw
, "cd", cmd
->dir
);
333 jw_object_bool(&jw
, "use_shell", cmd
->use_shell
);
334 jw_object_inline_begin_array(&jw
, "argv");
336 jw_array_string(&jw
, "git");
337 jw_array_argv(&jw
, cmd
->argv
);
341 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
345 static void fn_child_exit_fl(const char *file
, int line
,
346 uint64_t us_elapsed_absolute
, int cid
, int pid
,
347 int code
, uint64_t us_elapsed_child
)
349 const char *event_name
= "child_exit";
350 struct json_writer jw
= JSON_WRITER_INIT
;
351 double t_rel
= (double)us_elapsed_child
/ 1000000.0;
353 jw_object_begin(&jw
, 0);
354 event_fmt_prepare(event_name
, file
, line
, NULL
, &jw
);
355 jw_object_intmax(&jw
, "child_id", cid
);
356 jw_object_intmax(&jw
, "pid", pid
);
357 jw_object_intmax(&jw
, "code", code
);
358 jw_object_double(&jw
, "t_rel", 6, t_rel
);
361 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
366 static void fn_thread_start_fl(const char *file
, int line
,
367 uint64_t us_elapsed_absolute
)
369 const char *event_name
= "thread_start";
370 struct json_writer jw
= JSON_WRITER_INIT
;
372 jw_object_begin(&jw
, 0);
373 event_fmt_prepare(event_name
, file
, line
, NULL
, &jw
);
376 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
380 static void fn_thread_exit_fl(const char *file
, int line
,
381 uint64_t us_elapsed_absolute
,
382 uint64_t us_elapsed_thread
)
384 const char *event_name
= "thread_exit";
385 struct json_writer jw
= JSON_WRITER_INIT
;
386 double t_rel
= (double)us_elapsed_thread
/ 1000000.0;
388 jw_object_begin(&jw
, 0);
389 event_fmt_prepare(event_name
, file
, line
, NULL
, &jw
);
390 jw_object_double(&jw
, "t_rel", 6, t_rel
);
393 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
397 static void fn_exec_fl(const char *file
, int line
, uint64_t us_elapsed_absolute
,
398 int exec_id
, const char *exe
, const char **argv
)
400 const char *event_name
= "exec";
401 struct json_writer jw
= JSON_WRITER_INIT
;
403 jw_object_begin(&jw
, 0);
404 event_fmt_prepare(event_name
, file
, line
, NULL
, &jw
);
405 jw_object_intmax(&jw
, "exec_id", exec_id
);
407 jw_object_string(&jw
, "exe", exe
);
408 jw_object_inline_begin_array(&jw
, "argv");
409 jw_array_argv(&jw
, argv
);
413 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
417 static void fn_exec_result_fl(const char *file
, int line
,
418 uint64_t us_elapsed_absolute
, int exec_id
,
421 const char *event_name
= "exec_result";
422 struct json_writer jw
= JSON_WRITER_INIT
;
424 jw_object_begin(&jw
, 0);
425 event_fmt_prepare(event_name
, file
, line
, NULL
, &jw
);
426 jw_object_intmax(&jw
, "exec_id", exec_id
);
427 jw_object_intmax(&jw
, "code", code
);
430 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
434 static void fn_param_fl(const char *file
, int line
, const char *param
,
437 const char *event_name
= "def_param";
438 struct json_writer jw
= JSON_WRITER_INIT
;
440 jw_object_begin(&jw
, 0);
441 event_fmt_prepare(event_name
, file
, line
, NULL
, &jw
);
442 jw_object_string(&jw
, "param", param
);
443 jw_object_string(&jw
, "value", value
);
446 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
450 static void fn_repo_fl(const char *file
, int line
,
451 const struct repository
*repo
)
453 const char *event_name
= "def_repo";
454 struct json_writer jw
= JSON_WRITER_INIT
;
456 jw_object_begin(&jw
, 0);
457 event_fmt_prepare(event_name
, file
, line
, repo
, &jw
);
458 jw_object_string(&jw
, "worktree", repo
->worktree
);
461 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
465 static void fn_region_enter_printf_va_fl(const char *file
, int line
,
466 uint64_t us_elapsed_absolute
,
467 const char *category
,
469 const struct repository
*repo
,
470 const char *fmt
, va_list ap
)
472 const char *event_name
= "region_enter";
473 struct tr2tls_thread_ctx
*ctx
= tr2tls_get_self();
474 if (ctx
->nr_open_regions
<= tr2env_event_max_nesting_levels
) {
475 struct json_writer jw
= JSON_WRITER_INIT
;
477 jw_object_begin(&jw
, 0);
478 event_fmt_prepare(event_name
, file
, line
, repo
, &jw
);
479 jw_object_intmax(&jw
, "nesting", ctx
->nr_open_regions
);
481 jw_object_string(&jw
, "category", category
);
483 jw_object_string(&jw
, "label", label
);
484 maybe_add_string_va(&jw
, "msg", fmt
, ap
);
487 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
492 static void fn_region_leave_printf_va_fl(
493 const char *file
, int line
, uint64_t us_elapsed_absolute
,
494 uint64_t us_elapsed_region
, const char *category
, const char *label
,
495 const struct repository
*repo
, const char *fmt
, va_list ap
)
497 const char *event_name
= "region_leave";
498 struct tr2tls_thread_ctx
*ctx
= tr2tls_get_self();
499 if (ctx
->nr_open_regions
<= tr2env_event_max_nesting_levels
) {
500 struct json_writer jw
= JSON_WRITER_INIT
;
501 double t_rel
= (double)us_elapsed_region
/ 1000000.0;
503 jw_object_begin(&jw
, 0);
504 event_fmt_prepare(event_name
, file
, line
, repo
, &jw
);
505 jw_object_double(&jw
, "t_rel", 6, t_rel
);
506 jw_object_intmax(&jw
, "nesting", ctx
->nr_open_regions
);
508 jw_object_string(&jw
, "category", category
);
510 jw_object_string(&jw
, "label", label
);
511 maybe_add_string_va(&jw
, "msg", fmt
, ap
);
514 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
519 static void fn_data_fl(const char *file
, int line
, uint64_t us_elapsed_absolute
,
520 uint64_t us_elapsed_region
, const char *category
,
521 const struct repository
*repo
, const char *key
,
524 const char *event_name
= "data";
525 struct tr2tls_thread_ctx
*ctx
= tr2tls_get_self();
526 if (ctx
->nr_open_regions
<= tr2env_event_max_nesting_levels
) {
527 struct json_writer jw
= JSON_WRITER_INIT
;
528 double t_abs
= (double)us_elapsed_absolute
/ 1000000.0;
529 double t_rel
= (double)us_elapsed_region
/ 1000000.0;
531 jw_object_begin(&jw
, 0);
532 event_fmt_prepare(event_name
, file
, line
, repo
, &jw
);
533 jw_object_double(&jw
, "t_abs", 6, t_abs
);
534 jw_object_double(&jw
, "t_rel", 6, t_rel
);
535 jw_object_intmax(&jw
, "nesting", ctx
->nr_open_regions
);
536 jw_object_string(&jw
, "category", category
);
537 jw_object_string(&jw
, "key", key
);
538 jw_object_string(&jw
, "value", value
);
541 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
546 static void fn_data_json_fl(const char *file
, int line
,
547 uint64_t us_elapsed_absolute
,
548 uint64_t us_elapsed_region
, const char *category
,
549 const struct repository
*repo
, const char *key
,
550 const struct json_writer
*value
)
552 const char *event_name
= "data_json";
553 struct tr2tls_thread_ctx
*ctx
= tr2tls_get_self();
554 if (ctx
->nr_open_regions
<= tr2env_event_max_nesting_levels
) {
555 struct json_writer jw
= JSON_WRITER_INIT
;
556 double t_abs
= (double)us_elapsed_absolute
/ 1000000.0;
557 double t_rel
= (double)us_elapsed_region
/ 1000000.0;
559 jw_object_begin(&jw
, 0);
560 event_fmt_prepare(event_name
, file
, line
, repo
, &jw
);
561 jw_object_double(&jw
, "t_abs", 6, t_abs
);
562 jw_object_double(&jw
, "t_rel", 6, t_rel
);
563 jw_object_intmax(&jw
, "nesting", ctx
->nr_open_regions
);
564 jw_object_string(&jw
, "category", category
);
565 jw_object_string(&jw
, "key", key
);
566 jw_object_sub_jw(&jw
, "value", value
);
569 tr2_dst_write_line(&tr2dst_event
, &jw
.json
);
574 struct tr2_tgt tr2_tgt_event
= {
598 fn_region_enter_printf_va_fl
,
599 fn_region_leave_printf_va_fl
,