2011-05-27 06:13:38 -04:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2011-05-26 13:18:42 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2014-11-13 12:29:30 -05:00
|
|
|
|
2011-05-26 13:18:42 -04:00
|
|
|
#include "text.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
static void dropinit(FILE *, const char *, long);
|
|
|
|
static void taketail(FILE *, const char *, long);
|
|
|
|
|
2013-06-14 14:20:47 -04:00
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
|
|
|
eprintf("usage: %s [-n lines] [file]\n", argv0);
|
|
|
|
}
|
|
|
|
|
2011-05-26 13:18:42 -04:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
long n = 10;
|
|
|
|
FILE *fp;
|
2011-05-26 13:29:22 -04:00
|
|
|
void (*tail)(FILE *, const char *, long) = taketail;
|
2013-08-31 16:53:11 -04:00
|
|
|
char *lines;
|
2014-11-20 17:51:34 -05:00
|
|
|
int ret = 0;
|
2014-11-20 18:09:14 -05:00
|
|
|
int newline, many;
|
2011-05-26 13:18:42 -04:00
|
|
|
|
2013-06-14 14:20:47 -04:00
|
|
|
ARGBEGIN {
|
|
|
|
case 'n':
|
2013-08-31 16:53:11 -04:00
|
|
|
lines = EARGF(usage());
|
|
|
|
n = abs(estrtol(lines, 0));
|
2014-11-13 12:29:30 -05:00
|
|
|
if (lines[0] == '+')
|
2013-06-14 14:20:47 -04:00
|
|
|
tail = dropinit;
|
|
|
|
break;
|
2013-11-11 14:53:01 -05:00
|
|
|
ARGNUM:
|
|
|
|
n = ARGNUMF(0);
|
|
|
|
break;
|
2013-06-14 14:20:47 -04:00
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
} ARGEND;
|
2014-11-13 12:29:30 -05:00
|
|
|
if (argc == 0) {
|
2011-05-26 13:18:42 -04:00
|
|
|
tail(stdin, "<stdin>", n);
|
2013-11-12 05:45:18 -05:00
|
|
|
} else {
|
2014-11-20 18:09:14 -05:00
|
|
|
many = argc > 1;
|
|
|
|
for (newline = 0; argc > 0; argc--, argv++) {
|
2014-11-13 12:29:30 -05:00
|
|
|
if (!(fp = fopen(argv[0], "r"))) {
|
2013-11-13 06:39:24 -05:00
|
|
|
weprintf("fopen %s:", argv[0]);
|
2014-11-20 17:51:34 -05:00
|
|
|
ret = 1;
|
2013-11-12 05:45:18 -05:00
|
|
|
continue;
|
|
|
|
}
|
2014-11-20 18:09:14 -05:00
|
|
|
if (many)
|
|
|
|
printf("%s==> %s <==\n",
|
|
|
|
newline ? "\n" : "", argv[0]);
|
|
|
|
newline = 1;
|
2013-11-12 05:45:18 -05:00
|
|
|
tail(fp, argv[0], n);
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
}
|
2014-11-20 17:51:34 -05:00
|
|
|
return ret;
|
2011-05-26 13:18:42 -04:00
|
|
|
}
|
|
|
|
|
2014-06-01 08:59:47 -04:00
|
|
|
static void
|
2011-05-26 13:18:42 -04:00
|
|
|
dropinit(FILE *fp, const char *str, long n)
|
|
|
|
{
|
2014-06-01 09:04:32 -04:00
|
|
|
char *buf = NULL;
|
|
|
|
size_t size = 0;
|
|
|
|
ssize_t len;
|
|
|
|
unsigned long i = 0;
|
2011-05-26 13:18:42 -04:00
|
|
|
|
2014-11-18 15:49:30 -05:00
|
|
|
while (i < n && ((len = getline(&buf, &size, fp)) != -1))
|
2014-11-13 12:29:30 -05:00
|
|
|
if (len && buf[len - 1] == '\n')
|
2011-05-26 13:18:42 -04:00
|
|
|
i++;
|
2014-06-01 09:04:32 -04:00
|
|
|
free(buf);
|
2011-05-26 13:18:42 -04:00
|
|
|
concat(fp, str, stdout, "<stdout>");
|
|
|
|
}
|
|
|
|
|
2014-06-01 08:59:47 -04:00
|
|
|
static void
|
2011-05-26 13:18:42 -04:00
|
|
|
taketail(FILE *fp, const char *str, long n)
|
|
|
|
{
|
2014-06-01 09:04:32 -04:00
|
|
|
char **ring = NULL;
|
2011-05-26 13:18:42 -04:00
|
|
|
long i, j;
|
2011-06-10 09:51:53 -04:00
|
|
|
size_t *size = NULL;
|
2011-05-26 13:18:42 -04:00
|
|
|
|
2014-11-16 05:07:26 -05:00
|
|
|
ring = ecalloc(n, sizeof *ring);
|
|
|
|
size = ecalloc(n, sizeof *size);
|
|
|
|
|
2014-11-18 15:49:30 -05:00
|
|
|
for (i = j = 0; getline(&ring[i], &size[i], fp) != -1; i = j = (i + 1) % n)
|
2011-05-26 13:18:42 -04:00
|
|
|
;
|
2014-11-13 12:29:30 -05:00
|
|
|
if (ferror(fp))
|
2011-05-26 13:29:22 -04:00
|
|
|
eprintf("%s: read error:", str);
|
2011-05-26 13:18:42 -04:00
|
|
|
|
|
|
|
do {
|
2014-11-13 12:29:30 -05:00
|
|
|
if (ring[j]) {
|
2011-05-26 13:18:42 -04:00
|
|
|
fputs(ring[j], stdout);
|
2011-05-26 13:24:56 -04:00
|
|
|
free(ring[j]);
|
|
|
|
}
|
2014-11-13 12:29:30 -05:00
|
|
|
} while ((j = (j+1)%n) != i);
|
2011-05-26 13:18:42 -04:00
|
|
|
free(ring);
|
|
|
|
free(size);
|
|
|
|
}
|