2013-10-08 15:39:08 -04:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2014-11-13 12:29:30 -05:00
|
|
|
|
2015-01-22 06:32:50 -05:00
|
|
|
#include "utf.h"
|
2013-10-08 15:39:08 -04:00
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
typedef struct Range {
|
|
|
|
size_t min, max;
|
|
|
|
struct Range *next;
|
|
|
|
} Range;
|
|
|
|
|
2015-01-22 06:32:50 -05:00
|
|
|
static Range *list = NULL;
|
|
|
|
static char mode = 0;
|
2015-01-22 14:19:48 -05:00
|
|
|
static char *delim = "\t";
|
2015-01-22 06:32:50 -05:00
|
|
|
static size_t delimlen = 1;
|
|
|
|
static int nflag = 0;
|
|
|
|
static int sflag = 0;
|
2013-10-08 15:39:08 -04:00
|
|
|
|
|
|
|
static void
|
|
|
|
insert(Range *r)
|
|
|
|
{
|
|
|
|
Range *l, *p, *t;
|
|
|
|
|
2014-11-13 12:29:30 -05:00
|
|
|
for (p = NULL, l = list; l; p = l, l = l->next) {
|
|
|
|
if (r->max && r->max + 1 < l->min) {
|
2013-10-08 15:39:08 -04:00
|
|
|
r->next = l;
|
|
|
|
break;
|
2014-11-13 12:29:30 -05:00
|
|
|
} else if (!l->max || r->min < l->max + 2) {
|
2013-10-08 15:39:08 -04:00
|
|
|
l->min = MIN(r->min, l->min);
|
2014-11-13 12:29:30 -05:00
|
|
|
for (p = l, t = l->next; t; p = t, t = t->next)
|
|
|
|
if (r->max && r->max + 1 < t->min)
|
2014-06-01 08:39:34 -04:00
|
|
|
break;
|
2013-10-08 15:39:08 -04:00
|
|
|
l->max = (p->max && r->max) ? MAX(p->max, r->max) : 0;
|
|
|
|
l->next = t;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2014-11-13 12:29:30 -05:00
|
|
|
if (p)
|
2014-06-01 08:39:34 -04:00
|
|
|
p->next = r;
|
|
|
|
else
|
|
|
|
list = r;
|
2013-10-08 15:39:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
parselist(char *str)
|
|
|
|
{
|
|
|
|
char *s;
|
|
|
|
size_t n = 1;
|
|
|
|
Range *r;
|
|
|
|
|
2015-03-11 12:29:18 -04:00
|
|
|
if (!*str)
|
|
|
|
eprintf("empty list\n");
|
2014-11-13 12:29:30 -05:00
|
|
|
for (s = str; *s; s++) {
|
|
|
|
if (*s == ' ')
|
2014-06-01 08:39:34 -04:00
|
|
|
*s = ',';
|
2014-11-13 12:29:30 -05:00
|
|
|
if (*s == ',')
|
2014-06-01 08:39:34 -04:00
|
|
|
n++;
|
2013-10-08 15:39:08 -04:00
|
|
|
}
|
2015-03-11 05:50:18 -04:00
|
|
|
r = ereallocarray(NULL, n, sizeof(*r));
|
2014-11-13 12:29:30 -05:00
|
|
|
for (s = str; n; n--, s++) {
|
2013-10-10 18:03:15 -04:00
|
|
|
r->min = (*s == '-') ? 1 : strtoul(s, &s, 10);
|
|
|
|
r->max = (*s == '-') ? strtoul(s + 1, &s, 10) : r->min;
|
2013-10-08 15:39:08 -04:00
|
|
|
r->next = NULL;
|
2014-11-13 12:29:30 -05:00
|
|
|
if (!r->min || (r->max && r->max < r->min) || (*s && *s != ','))
|
2015-03-11 12:29:18 -04:00
|
|
|
eprintf("bad list value\n");
|
2013-10-08 15:39:08 -04:00
|
|
|
insert(r++);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t
|
|
|
|
seek(const char *s, size_t pos, size_t *prev, size_t count)
|
|
|
|
{
|
|
|
|
const char *t;
|
2015-01-22 06:32:50 -05:00
|
|
|
size_t n = pos - *prev, i;
|
2013-10-08 15:39:08 -04:00
|
|
|
|
2014-11-13 12:29:30 -05:00
|
|
|
if (mode == 'b') {
|
2015-01-22 06:32:50 -05:00
|
|
|
if ((t = memchr(s, '\0', n)))
|
2013-10-08 15:39:08 -04:00
|
|
|
return t - s;
|
2014-11-13 12:29:30 -05:00
|
|
|
if (nflag)
|
|
|
|
while (n && !UTF8_POINT(s[n]))
|
2014-06-01 08:39:34 -04:00
|
|
|
n--;
|
2013-10-08 15:39:08 -04:00
|
|
|
*prev += n;
|
|
|
|
return n;
|
2014-11-13 12:29:30 -05:00
|
|
|
} else if (mode == 'c') {
|
|
|
|
for (n++, t = s; *t; t++)
|
|
|
|
if (UTF8_POINT(*t) && !--n)
|
2014-06-01 08:39:34 -04:00
|
|
|
break;
|
2013-10-08 15:39:08 -04:00
|
|
|
} else {
|
2015-01-22 06:32:50 -05:00
|
|
|
for (t = (count < delimlen + 1) ? s : s + delimlen; n && *t; ) {
|
2015-01-22 14:19:48 -05:00
|
|
|
if (!strncmp(t, delim, delimlen)) {
|
|
|
|
if (!--n && count)
|
2015-01-22 06:32:50 -05:00
|
|
|
break;
|
2015-01-22 14:19:48 -05:00
|
|
|
t += delimlen;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
for (i = 1; !fullrune(t, i); i++);
|
2015-01-22 06:32:50 -05:00
|
|
|
t += i;
|
|
|
|
}
|
2013-10-08 15:39:08 -04:00
|
|
|
}
|
|
|
|
*prev = pos;
|
2015-01-22 06:32:50 -05:00
|
|
|
|
2013-10-08 15:39:08 -04:00
|
|
|
return t - s;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-03-11 12:29:18 -04:00
|
|
|
cut(FILE *fp, char *fname)
|
2013-10-08 15:39:08 -04:00
|
|
|
{
|
2014-12-16 14:46:59 -05:00
|
|
|
static char *buf = NULL;
|
|
|
|
static size_t size = 0;
|
|
|
|
char *s;
|
|
|
|
size_t i, n, p;
|
2014-06-01 08:39:34 -04:00
|
|
|
ssize_t len;
|
2013-10-08 15:39:08 -04:00
|
|
|
Range *r;
|
|
|
|
|
2015-03-11 12:29:18 -04:00
|
|
|
while ((len = getline(&buf, &size, fp)) >= 0) {
|
2014-11-13 12:29:30 -05:00
|
|
|
if (len && buf[len - 1] == '\n')
|
2014-06-01 08:39:34 -04:00
|
|
|
buf[len - 1] = '\0';
|
2015-01-22 14:19:48 -05:00
|
|
|
if (mode == 'f' && !utfutf(buf, delim)) {
|
2014-11-13 12:29:30 -05:00
|
|
|
if (!sflag)
|
2013-10-08 15:39:08 -04:00
|
|
|
puts(buf);
|
|
|
|
continue;
|
|
|
|
}
|
2014-11-13 12:29:30 -05:00
|
|
|
for (i = 0, p = 1, s = buf, r = list; r; r = r->next, s += n) {
|
2015-01-22 06:32:50 -05:00
|
|
|
s += seek(s, r->min, &p, i);
|
|
|
|
i += (mode == 'f') ? delimlen : 1;
|
2014-11-13 12:29:30 -05:00
|
|
|
if (!*s)
|
2014-06-01 08:39:34 -04:00
|
|
|
break;
|
2014-11-13 12:29:30 -05:00
|
|
|
if (!r->max) {
|
2013-10-08 15:39:08 -04:00
|
|
|
fputs(s, stdout);
|
|
|
|
break;
|
|
|
|
}
|
2015-01-22 06:32:50 -05:00
|
|
|
n = seek(s, r->max + 1, &p, i);
|
|
|
|
i += (mode == 'f') ? delimlen : 1;
|
2014-11-13 12:29:30 -05:00
|
|
|
if (fwrite(s, 1, n, stdout) != n)
|
2015-03-11 12:29:18 -04:00
|
|
|
eprintf("fwrite <stdout>:");
|
2013-10-08 15:39:08 -04:00
|
|
|
}
|
|
|
|
putchar('\n');
|
|
|
|
}
|
2015-03-11 12:29:18 -04:00
|
|
|
if (ferror(fp))
|
|
|
|
eprintf("getline %s:", fname);
|
2013-10-08 15:39:08 -04:00
|
|
|
}
|
|
|
|
|
2015-01-18 05:30:31 -05:00
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
2015-03-11 12:29:18 -04:00
|
|
|
eprintf("usage: %s -b list [-n] [file ...]\n"
|
|
|
|
" %s -c list [file ...]\n"
|
|
|
|
" %s -f list [-d delim] [-s] [file ...]\n",
|
|
|
|
argv0, argv0, argv0);
|
2015-01-18 05:30:31 -05:00
|
|
|
}
|
|
|
|
|
2013-10-08 15:39:08 -04:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
FILE *fp;
|
2015-03-11 12:29:18 -04:00
|
|
|
int ret = 0;
|
2013-10-08 15:39:08 -04:00
|
|
|
|
|
|
|
ARGBEGIN {
|
|
|
|
case 'b':
|
|
|
|
case 'c':
|
|
|
|
case 'f':
|
|
|
|
mode = ARGC();
|
2015-01-22 14:19:48 -05:00
|
|
|
parselist(EARGF(usage()));
|
2013-10-08 15:39:08 -04:00
|
|
|
break;
|
|
|
|
case 'd':
|
2015-01-22 14:19:48 -05:00
|
|
|
delim = EARGF(usage());
|
2015-01-24 15:25:40 -05:00
|
|
|
if (!*delim)
|
2015-03-11 12:29:18 -04:00
|
|
|
eprintf("empty delimiter\n");
|
2015-01-29 15:52:44 -05:00
|
|
|
delimlen = unescape(delim);
|
2013-10-08 15:39:08 -04:00
|
|
|
break;
|
|
|
|
case 'n':
|
2014-11-13 15:24:47 -05:00
|
|
|
nflag = 1;
|
2013-10-08 15:39:08 -04:00
|
|
|
break;
|
|
|
|
case 's':
|
2014-11-13 15:24:47 -05:00
|
|
|
sflag = 1;
|
2013-10-08 15:39:08 -04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
} ARGEND;
|
|
|
|
|
2014-11-13 12:29:30 -05:00
|
|
|
if (!mode)
|
2013-10-08 15:39:08 -04:00
|
|
|
usage();
|
2015-03-11 12:29:18 -04:00
|
|
|
|
2015-01-18 05:30:31 -05:00
|
|
|
if (!argc)
|
2015-03-11 12:29:18 -04:00
|
|
|
cut(stdin, "<stdin>");
|
|
|
|
else {
|
|
|
|
for (; *argv; argc--, argv++) {
|
|
|
|
if (*argv[0] == '-' && !*argv[1]) {
|
|
|
|
cut(stdin, "<stdin>");
|
|
|
|
} else {
|
|
|
|
if (!(fp = fopen(*argv, "r"))) {
|
|
|
|
weprintf("fopen %s:", *argv);
|
|
|
|
ret = 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
cut(fp, *argv);
|
|
|
|
fclose(fp);
|
2014-06-01 08:39:34 -04:00
|
|
|
}
|
2013-11-13 06:39:24 -05:00
|
|
|
}
|
2013-10-08 15:39:08 -04:00
|
|
|
}
|
2015-03-11 12:29:18 -04:00
|
|
|
|
|
|
|
return ret;
|
2013-10-08 15:39:08 -04:00
|
|
|
}
|