aboutsummaryrefslogtreecommitdiffstats
path: root/timeprefix.c
blob: 9cc9585496b97d989e13129bd1bbe945c794000d (plain) (blame)
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
/* See LICENSE file for copyright and license details. */
#include <sys/timex.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <unistd.h>


static void
printline(const char *line)
{
	static struct timex timex; /* static to zero initialise it */
	struct timespec boottime;
	struct tm *utctime;
	int r;

	clock_gettime(CLOCK_BOOTTIME, &boottime);
	r = adjtimex(&timex);
	if (timex.time.tv_sec % (24 * 60 * 60) == 0) {
		if (r == TIME_INS) {
			timex.time.tv_sec -= 1;
			utctime = gmtime(&timex.time.tv_sec);
			utctime->tm_sec += 1;
		} else if (r == TIME_DEL) {
			timex.time.tv_sec += 1;
			utctime = gmtime(&timex.time.tv_sec);
		} else {
			utctime = gmtime(&timex.time.tv_sec);
		}
	} else if (r == TIME_OOP) {
		utctime = gmtime(&timex.time.tv_sec);
		utctime->tm_sec += 1;
	} else {
		utctime = gmtime(&timex.time.tv_sec);
	}

	printf("[%010lu.%04lu %i-%02i-%02i %02i:%02i:%02i UTC] %s",
	       boottime.tv_sec, boottime.tv_nsec / 100000,
	       utctime->tm_year + 1900, utctime->tm_mon + 1, utctime->tm_mday,
	       utctime->tm_hour, utctime->tm_min, utctime->tm_sec,
	       line);

	fflush(stdout);
}

int
main(int argc, char *argv[])
{
	char *buf = NULL;
	size_t siz = 0;

	if (argc > 1 && argv[1][0] == '-' && argv[1][1] == '-' && !argv[1][2])
		argc -= 1;
	if (argc > 1) {
		fprintf(stderr, "usage: %s\n", argv[0]);
		return 1;
	}

	printline("--- Program started ---\n");
	while (getline(&buf, &siz, stdin) != -1)
		printline(buf);
	printline("--- Program exited ---\n");

	free(buf);
	return 0;
}