summaryrefslogtreecommitdiff
path: root/trace2/tr2_sid.c
blob: 984524a43ce44536e1dc825995ee4e0aa80734fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include "cache.h"
#include "trace2/tr2_sid.h"
 
#define TR2_ENVVAR_PARENT_SID "GIT_TR2_PARENT_SID"
 
static struct strbuf tr2sid_buf = STRBUF_INIT;
static int tr2sid_nr_git_parents;
 
/*
 * Compute a "unique" session id (SID) for the current process.  This allows
 * all events from this process to have a single label (much like a PID).
 *
 * Export this into our environment so that all child processes inherit it.
 *
 * If we were started by another git instance, use our parent's SID as a
 * prefix.  (This lets us track parent/child relationships even if there
 * is an intermediate shell process.)
 *
 * Additionally, count the number of nested git processes.
 */
static void tr2_sid_compute(void)
{
	uint64_t us_now;
	const char *parent_sid;
 
	if (tr2sid_buf.len)
		return;
 
	parent_sid = getenv(TR2_ENVVAR_PARENT_SID);
	if (parent_sid && *parent_sid) {
		const char *p;
		for (p = parent_sid; *p; p++)
			if (*p == '/')
				tr2sid_nr_git_parents++;
 
		strbuf_addstr(&tr2sid_buf, parent_sid);
		strbuf_addch(&tr2sid_buf, '/');
		tr2sid_nr_git_parents++;
	}
 
	us_now = getnanotime() / 1000;
	strbuf_addf(&tr2sid_buf, "%" PRIuMAX "-%" PRIdMAX, (uintmax_t)us_now,
		    (intmax_t)getpid());
 
	setenv(TR2_ENVVAR_PARENT_SID, tr2sid_buf.buf, 1);
}
 
const char *tr2_sid_get(void)
{
	if (!tr2sid_buf.len)
		tr2_sid_compute();
 
	return tr2sid_buf.buf;
}
 
int tr2_sid_depth(void)
{
	if (!tr2sid_buf.len)
		tr2_sid_compute();
 
	return tr2sid_nr_git_parents;
}
 
void tr2_sid_release(void)
{
	strbuf_release(&tr2sid_buf);
}