Files
sbase/fold.c
T

117 lines
2.0 KiB
C
Raw Normal View History

2011-06-08 21:30:33 +01:00
/* See LICENSE file for copyright and license details. */
#include <ctype.h>
#include <stdint.h>
2011-06-08 21:30:33 +01:00
#include <stdio.h>
#include <stdlib.h>
2015-03-16 19:26:42 +01:00
#include <string.h>
2014-11-13 18:29:30 +01:00
2011-06-08 21:30:33 +01:00
#include "util.h"
2015-03-13 23:47:41 +01:00
static int bflag = 0;
static int sflag = 0;
static size_t width = 80;
2011-06-08 21:30:33 +01:00
static void
2015-03-16 19:26:42 +01:00
foldline(const char *str) {
const char *p, *spacesect = NULL;
size_t col, off;
2015-03-16 19:26:42 +01:00
for (p = str, col = 0; *p && *p != '\n'; p++) {
if (!UTF8_POINT(*p) && !bflag)
continue;
if (col >= width) {
off = (sflag && spacesect) ? spacesect - str : p - str;
if (fwrite(str, 1, off, stdout) != off)
eprintf("fwrite <stdout>:");
putchar('\n');
spacesect = NULL;
col = 0;
p = str += off;
}
if (sflag && isspace(*p))
spacesect = p + 1;
if (!bflag && iscntrl(*p)) {
switch(*p) {
case '\b':
col -= (col > 0);
break;
case '\r':
col = 0;
break;
case '\t':
col += (col + 1) % 8;
break;
2015-03-13 23:47:41 +01:00
}
2015-03-16 19:26:42 +01:00
} else {
col++;
}
2015-03-16 19:26:42 +01:00
}
fputs(str, stdout);
}
static void
2015-03-13 23:47:41 +01:00
fold(FILE *fp, const char *fname)
{
char *buf = NULL;
size_t size = 0;
2015-03-27 14:49:48 +01:00
while (getline(&buf, &size, fp) > 0)
2015-03-13 23:47:41 +01:00
foldline(buf);
if (ferror(fp))
eprintf("getline %s:", fname);
free(buf);
}
2013-06-14 20:20:47 +02:00
static void
usage(void)
{
2015-03-16 19:26:42 +01:00
eprintf("usage: %s [-bs] [-w num | -num] [FILE ...]\n", argv0);
2013-06-14 20:20:47 +02:00
}
2011-06-08 21:30:33 +01:00
int
main(int argc, char *argv[])
{
FILE *fp;
2015-03-13 23:47:41 +01:00
int ret = 0;
2011-06-08 21:30:33 +01:00
2013-06-14 20:20:47 +02:00
ARGBEGIN {
case 'b':
2014-11-13 21:24:47 +01:00
bflag = 1;
2013-06-14 20:20:47 +02:00
break;
case 's':
2014-11-13 21:24:47 +01:00
sflag = 1;
2013-06-14 20:20:47 +02:00
break;
case 'w':
width = estrtonum(EARGF(usage()), 1, MIN(LLONG_MAX, SIZE_MAX));
2013-06-14 20:20:47 +02:00
break;
2013-11-11 19:53:01 +00:00
ARGNUM:
2015-05-19 23:43:58 +02:00
if (!(width = ARGNUMF()))
eprintf("illegal width value, too small\n");
2013-11-11 19:53:01 +00:00
break;
2013-06-14 20:20:47 +02:00
default:
usage();
} ARGEND;
2015-03-13 23:47:41 +01:00
if (!argc) {
fold(stdin, "<stdin>");
} else {
2015-03-13 23:47:41 +01:00
for (; *argv; argc--, argv++) {
2015-05-19 17:44:15 +02:00
if (!strcmp(*argv, "-")) {
2015-05-15 13:28:39 +02:00
*argv = "<stdin>";
fp = stdin;
} else if (!(fp = fopen(*argv, "r"))) {
2015-03-13 23:47:41 +01:00
weprintf("fopen %s:", *argv);
ret = 1;
2015-05-15 13:28:39 +02:00
continue;
2014-04-22 13:43:01 +03:00
}
2015-05-15 13:28:39 +02:00
fold(fp, *argv);
if (fp != stdin && fshut(fp, *argv))
ret = 1;
}
2011-06-08 21:30:33 +01:00
}
2013-06-14 20:20:47 +02:00
2015-05-25 01:33:19 +02:00
ret |= fshut(stdin, "<stdin>") | fshut(stdout, "<stdout>");
return ret;
2011-06-08 21:30:33 +01:00
}