Skip to content

Commit

Permalink
timestamp: Support buffered modes
Browse files Browse the repository at this point in the history
- Use unbuffered for combining with tee so that 'echo -n' works on
  terminal.  If this -u is removed then 'stdbuf -o L' should be used
  instead since timestamp's stdout is not the TTY; it is tee.  So
  the default ends up being block buffering.
- Now supports default block buffering for non-tee mode in bulk.  This
  may surprise people using 'tail' but is more efficient.  It can be
  changed to line buffered mode, from block, with 'stdbuf -o B' before
  the timestamp call in non-tee mode.
  • Loading branch information
bdrewery committed Jan 9, 2018
1 parent 863ec55 commit bbd5741
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 12 deletions.
41 changes: 30 additions & 11 deletions src/libexec/poudriere/timestamp/timestamp.c
Expand Up @@ -58,7 +58,7 @@ calculate_duration(char *timestamp, size_t tlen, time_t elapsed)
}

static int
prefix_output(int fd_in, int fd_out, size_t pending_len, time_t start)
prefix_output(int fd_in, FILE *fp_out, size_t pending_len, time_t start)
{
char timestamp[8 + 3 + 1]; /* '[HH:MM:SS] ' + 1 */
char buf[1024];
Expand All @@ -81,13 +81,18 @@ prefix_output(int fd_in, int fd_out, size_t pending_len, time_t start)
elapsed = now - start;
calculate_duration((char *)&timestamp,
tlen, elapsed);
write(fd_out, timestamp, tlen - 1);
fwrite(timestamp, tlen - 1, 1, fp_out);
if (ferror(fp_out))
return (-1);
}
if (*p == '\n' || *p == '\r')
newline = true;
write(fd_out, p, 1);
if (putc(*p, fp_out) == EOF)
return (-1);
}
}
if (ferror(fp_out))
return (-1);
return (0);
}

Expand All @@ -97,12 +102,13 @@ prefix_output(int fd_in, int fd_out, size_t pending_len, time_t start)
int
main(int argc, char **argv)
{
FILE *fp_out;
struct kevent *ev;
time_t start;
size_t pending_len;
pid_t child_pid;
int child_stdout[2], child_stderr[2];
int kq, fd_in, fd_out, nevents, nev, kn, i, status, ret, done;
int ch, kq, fd_in, nevents, nev, kn, i, status, ret, done, uflag;

ev = NULL;
nev = nevents = 0;
Expand All @@ -111,8 +117,19 @@ main(int argc, char **argv)
ret = 0;
done = 0;
newline = true;
uflag = 0;

if (argc > 1) {
while ((ch = getopt(argc, argv, "u")) != -1) {
switch (ch) {
case 'u':
uflag = 1;
break;
}
}
argc -= optind;
argv += optind;

if (argc > 0) {
if (pipe(child_stdout) != 0)
err(EXIT_FAILURE, "pipe");
if (pipe(child_stderr) != 0)
Expand All @@ -130,7 +147,7 @@ main(int argc, char **argv)
dup2(child_stderr[1], STDERR_FILENO);
close(child_stderr[1]);

execvp(argv[1], &argv[1]);
execvp(argv[0], &argv[0]);
_exit(127);
}
close(STDIN_FILENO);
Expand All @@ -150,12 +167,14 @@ main(int argc, char **argv)
EV_SET(ev + nevents++, child_pid, EVFILT_PROC, EV_ADD,
NOTE_EXIT, 0, NULL);
EV_SET(ev + nevents++, child_stdout[0], EVFILT_READ, EV_ADD,
0, 0, (void*)STDOUT_FILENO);
0, 0, (void*)stdout);
EV_SET(ev + nevents++, child_stderr[0], EVFILT_READ, EV_ADD,
0, 0, (void*)STDERR_FILENO);
0, 0, (void*)stderr);
} else
EV_SET(ev + nevents++, STDIN_FILENO, EVFILT_READ, EV_ADD, 0, 0,
(void*)STDOUT_FILENO);
(void*)stdout);
if (uflag)
setbuf(stdout, NULL);

kevent(kq, ev, nevents, NULL, 0, NULL);

Expand All @@ -168,9 +187,9 @@ main(int argc, char **argv)
for (i = 0; i < kn; i++) {
if (ev[i].filter == EVFILT_READ) {
fd_in = (int)ev[i].ident;
fd_out = (int)(intptr_t)ev[i].udata;
fp_out = (FILE *)(intptr_t)ev[i].udata;
pending_len = (size_t)ev[i].data;
if (prefix_output(fd_in, fd_out, pending_len,
if (prefix_output(fd_in, fp_out, pending_len,
start) == -1 &&
child_pid == -1 &&
ev[i].ident == STDIN_FILENO)
Expand Down
5 changes: 4 additions & 1 deletion src/share/poudriere/common.sh
Expand Up @@ -723,7 +723,10 @@ log_start() {
[ ! -e ${logfile}.pipe ] && mkfifo ${logfile}.pipe
if [ ${need_tee} -eq 1 ]; then
if [ "${TIMESTAMP_LOGS}" = "yes" ]; then
timestamp < ${logfile}.pipe | tee ${logfile} &
# Unbuffered for 'echo -n' support.
# Otherwise need setbuf -o L here due to
# stdout not writing to terminal but to tee.
timestamp -u < ${logfile}.pipe | tee ${logfile} &
else
tee ${logfile} < ${logfile}.pipe &
fi
Expand Down

0 comments on commit bbd5741

Please sign in to comment.