2022-02-18 17:27:51 -05:00
|
|
|
/*********************/
|
|
|
|
/* par.c */
|
|
|
|
/* for Par 3.20 */
|
|
|
|
/* Copyright 1993 by */
|
|
|
|
/* Adam M. Costello */
|
|
|
|
/*********************/
|
|
|
|
|
|
|
|
/* This is ANSI C code. */
|
|
|
|
|
|
|
|
#include "errmsg.h"
|
2022-03-04 21:29:50 -05:00
|
|
|
#include "buffer.h" /* Also includes <stddef.h>. */
|
2022-02-18 17:27:51 -05:00
|
|
|
#include "reformat.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ctype.h>
|
2022-03-04 21:29:50 -05:00
|
|
|
#include <getopt.h>
|
2022-02-18 17:27:51 -05:00
|
|
|
|
|
|
|
#undef NULL
|
2022-03-04 21:29:50 -05:00
|
|
|
#define NULL ((void *)0)
|
2022-02-18 17:27:51 -05:00
|
|
|
|
2022-03-04 21:29:50 -05:00
|
|
|
const char *const progname = "par";
|
|
|
|
const char *const version = "3.20";
|
2022-02-18 17:27:51 -05:00
|
|
|
|
|
|
|
static int digtoint(char c)
|
|
|
|
|
|
|
|
/* Returns the value represented by the digit c, */
|
|
|
|
/* or -1 if c is not a digit. Does not use errmsg. */
|
|
|
|
{
|
2022-03-04 21:29:50 -05:00
|
|
|
return c == '0' ? 0 : c == '1' ? 1
|
|
|
|
: c == '2' ? 2
|
|
|
|
: c == '3' ? 3
|
|
|
|
: c == '4' ? 4
|
|
|
|
: c == '5' ? 5
|
|
|
|
: c == '6' ? 6
|
|
|
|
: c == '7' ? 7
|
|
|
|
: c == '8' ? 8
|
|
|
|
: c == '9' ? 9
|
|
|
|
: -1;
|
2022-02-18 17:27:51 -05:00
|
|
|
|
|
|
|
/* We can't simply return c - '0' because this is ANSI */
|
|
|
|
/* C code, so it has to work for any character set, not */
|
|
|
|
/* just ones which put the digits together in order. */
|
|
|
|
}
|
|
|
|
|
|
|
|
static int strtoudec(const char *s, int *pn)
|
|
|
|
|
|
|
|
/* Puts the decimal value of the string s into *pn, returning */
|
|
|
|
/* 1 on success. If s is empty, or contains non-digits, */
|
|
|
|
/* or represents an integer greater than 9999, then *pn */
|
|
|
|
/* is not changed and 0 is returned. Does not use errmsg. */
|
|
|
|
{
|
|
|
|
int n = 0;
|
|
|
|
|
2022-03-04 21:29:50 -05:00
|
|
|
if (!*s)
|
|
|
|
return 0;
|
2022-02-18 17:27:51 -05:00
|
|
|
|
2022-03-04 21:29:50 -05:00
|
|
|
do
|
|
|
|
{
|
|
|
|
if (n >= 1000 || !isdigit(*s))
|
|
|
|
return 0;
|
2022-02-18 17:27:51 -05:00
|
|
|
n = 10 * n + digtoint(*s);
|
|
|
|
} while (*++s);
|
|
|
|
|
|
|
|
*pn = n;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void parseopt(
|
2022-03-04 21:29:50 -05:00
|
|
|
const char *opt, int *pwidth, int *pprefix,
|
|
|
|
int *psuffix, int *phang, int *plast, int *pmin)
|
2022-02-18 17:27:51 -05:00
|
|
|
/* Parses the single option in opt, setting *pwidth, *pprefix, */
|
|
|
|
/* *psuffix, *phang, *plast, or *pmin as appropriate. Uses errmsg. */
|
|
|
|
{
|
|
|
|
const char *saveopt = opt;
|
|
|
|
char oc;
|
|
|
|
int n, r;
|
2022-03-04 12:15:43 -05:00
|
|
|
FILE *stream;
|
|
|
|
char *buf;
|
|
|
|
size_t len;
|
2022-02-18 17:27:51 -05:00
|
|
|
|
2022-03-04 21:29:50 -05:00
|
|
|
if (*opt == '-')
|
|
|
|
++opt;
|
2022-02-18 17:27:51 -05:00
|
|
|
|
2022-03-04 21:29:50 -05:00
|
|
|
if (!strcmp(opt, "version"))
|
|
|
|
{
|
2022-03-04 12:15:43 -05:00
|
|
|
stream = open_memstream(&buf, &len);
|
|
|
|
fprintf(stream, "%s %s\n", progname, version);
|
2022-03-04 21:29:50 -05:00
|
|
|
fflush(stream);
|
2022-03-04 12:15:43 -05:00
|
|
|
set_error(buf);
|
2022-03-04 21:29:50 -05:00
|
|
|
fclose(stream);
|
|
|
|
free(buf);
|
2022-02-18 17:27:51 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
oc = *opt;
|
|
|
|
|
2022-03-04 21:29:50 -05:00
|
|
|
if (isdigit(oc))
|
|
|
|
{
|
|
|
|
if (!strtoudec(opt, &n))
|
|
|
|
goto badopt;
|
|
|
|
if (n <= 8)
|
|
|
|
*pprefix = n;
|
|
|
|
else
|
|
|
|
*pwidth = n;
|
2022-02-18 17:27:51 -05:00
|
|
|
}
|
2022-03-04 21:29:50 -05:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!oc)
|
|
|
|
goto badopt;
|
2022-02-18 17:27:51 -05:00
|
|
|
n = 1;
|
|
|
|
r = strtoudec(opt + 1, &n);
|
2022-03-04 21:29:50 -05:00
|
|
|
if (opt[1] && !r)
|
|
|
|
goto badopt;
|
|
|
|
|
|
|
|
if (oc == 'w' || oc == 'p' || oc == 's')
|
|
|
|
{
|
|
|
|
if (!r)
|
|
|
|
goto badopt;
|
|
|
|
if (oc == 'w')
|
|
|
|
*pwidth = n;
|
|
|
|
else if (oc == 'p')
|
|
|
|
*pprefix = n;
|
|
|
|
else
|
|
|
|
*psuffix = n;
|
2022-02-18 17:27:51 -05:00
|
|
|
}
|
2022-03-04 21:29:50 -05:00
|
|
|
else if (oc == 'h')
|
|
|
|
*phang = n;
|
|
|
|
else if (n <= 1)
|
|
|
|
{
|
|
|
|
if (oc == 'l')
|
|
|
|
*plast = n;
|
|
|
|
else if (oc == 'm')
|
|
|
|
*pmin = n;
|
2022-02-18 17:27:51 -05:00
|
|
|
}
|
2022-03-04 21:29:50 -05:00
|
|
|
else
|
|
|
|
goto badopt;
|
2022-02-18 17:27:51 -05:00
|
|
|
}
|
|
|
|
|
2022-03-04 12:15:43 -05:00
|
|
|
clear_error();
|
2022-02-18 17:27:51 -05:00
|
|
|
return;
|
|
|
|
|
|
|
|
badopt:
|
2022-03-04 12:15:43 -05:00
|
|
|
stream = open_memstream(&buf, &len);
|
2022-03-04 21:29:50 -05:00
|
|
|
fprintf(stream, "Bad option: %.149s\n", saveopt);
|
|
|
|
fflush(stream);
|
2022-03-04 12:15:43 -05:00
|
|
|
set_error(buf);
|
2022-03-04 21:29:50 -05:00
|
|
|
fclose(stream);
|
|
|
|
free(buf);
|
2022-02-18 17:27:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static char **readlines(void)
|
|
|
|
|
|
|
|
/* Reads lines from stdin until EOF, or until a blank line is encountered, */
|
|
|
|
/* in which case the newline is pushed back onto the input stream. Returns */
|
|
|
|
/* a NULL-terminated array of pointers to individual lines, stripped of */
|
|
|
|
/* their newline characters. Uses errmsg, and returns NULL on failure. */
|
|
|
|
{
|
|
|
|
struct buffer *cbuf = NULL, *pbuf = NULL;
|
|
|
|
int c, blank;
|
|
|
|
char ch, *ln, *nullline = NULL, nullchar = '\0', **lines = NULL;
|
|
|
|
|
2022-03-04 21:29:50 -05:00
|
|
|
cbuf = newbuffer(sizeof(char));
|
|
|
|
if (is_error())
|
|
|
|
goto rlcleanup;
|
|
|
|
pbuf = newbuffer(sizeof(char *));
|
|
|
|
if (is_error())
|
|
|
|
goto rlcleanup;
|
2022-02-18 17:27:51 -05:00
|
|
|
|
2022-03-04 21:29:50 -05:00
|
|
|
for (blank = 1;;)
|
|
|
|
{
|
2022-02-18 17:27:51 -05:00
|
|
|
c = getchar();
|
2022-03-04 21:29:50 -05:00
|
|
|
if (c == EOF)
|
|
|
|
break;
|
|
|
|
if (c == '\n')
|
|
|
|
{
|
|
|
|
if (blank)
|
|
|
|
{
|
|
|
|
ungetc(c, stdin);
|
2022-02-18 17:27:51 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
additem(cbuf, &nullchar);
|
2022-03-04 21:29:50 -05:00
|
|
|
if (is_error())
|
|
|
|
goto rlcleanup;
|
2022-02-18 17:27:51 -05:00
|
|
|
ln = copyitems(cbuf);
|
2022-03-04 21:29:50 -05:00
|
|
|
if (is_error())
|
|
|
|
goto rlcleanup;
|
2022-02-18 17:27:51 -05:00
|
|
|
additem(pbuf, &ln);
|
2022-03-04 21:29:50 -05:00
|
|
|
if (is_error())
|
|
|
|
goto rlcleanup;
|
2022-02-18 17:27:51 -05:00
|
|
|
clearbuffer(cbuf);
|
|
|
|
blank = 1;
|
|
|
|
}
|
2022-03-04 21:29:50 -05:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!isspace(c))
|
|
|
|
blank = 0;
|
2022-02-18 17:27:51 -05:00
|
|
|
ch = c;
|
|
|
|
additem(cbuf, &ch);
|
2022-03-04 21:29:50 -05:00
|
|
|
if (is_error())
|
|
|
|
goto rlcleanup;
|
2022-02-18 17:27:51 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-04 21:29:50 -05:00
|
|
|
if (!blank)
|
|
|
|
{
|
2022-02-18 17:27:51 -05:00
|
|
|
additem(cbuf, &nullchar);
|
2022-03-04 21:29:50 -05:00
|
|
|
if (is_error())
|
|
|
|
goto rlcleanup;
|
2022-02-18 17:27:51 -05:00
|
|
|
ln = copyitems(cbuf);
|
2022-03-04 21:29:50 -05:00
|
|
|
if (is_error())
|
|
|
|
goto rlcleanup;
|
2022-02-18 17:27:51 -05:00
|
|
|
additem(pbuf, &ln);
|
2022-03-04 21:29:50 -05:00
|
|
|
if (is_error())
|
|
|
|
goto rlcleanup;
|
2022-02-18 17:27:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
additem(pbuf, &nullline);
|
2022-03-04 21:29:50 -05:00
|
|
|
if (is_error())
|
|
|
|
goto rlcleanup;
|
2022-02-18 17:27:51 -05:00
|
|
|
lines = copyitems(pbuf);
|
|
|
|
|
|
|
|
rlcleanup:
|
|
|
|
|
2022-03-04 21:29:50 -05:00
|
|
|
if (cbuf)
|
|
|
|
freebuffer(cbuf);
|
|
|
|
if (pbuf)
|
|
|
|
{
|
|
|
|
if (!lines)
|
|
|
|
{
|
|
|
|
for (;;)
|
|
|
|
{
|
2022-02-18 17:27:51 -05:00
|
|
|
lines = nextitem(pbuf);
|
2022-03-04 21:29:50 -05:00
|
|
|
if (!lines)
|
|
|
|
break;
|
2022-02-18 17:27:51 -05:00
|
|
|
free(*lines);
|
|
|
|
}
|
2022-03-04 10:39:56 -05:00
|
|
|
}
|
|
|
|
freebuffer(pbuf);
|
2022-02-18 17:27:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return lines;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void setdefaults(
|
2022-03-04 21:29:50 -05:00
|
|
|
const char *const *inlines, int *pwidth, int *pprefix,
|
|
|
|
int *psuffix, int *phang, int *plast, int *pmin)
|
2022-02-18 17:27:51 -05:00
|
|
|
/* If any of *pwidth, *pprefix, *psuffix, *phang, *plast, *pmin are */
|
|
|
|
/* less than 0, sets them to default values based on inlines, according */
|
|
|
|
/* to "par.doc". Does not use errmsg because it always succeeds. */
|
|
|
|
{
|
|
|
|
int numlines;
|
2022-03-04 21:29:50 -05:00
|
|
|
const char *start, *end, *const *line, *p1, *p2;
|
|
|
|
|
|
|
|
if (*pwidth < 0)
|
|
|
|
*pwidth = 72;
|
|
|
|
if (*phang < 0)
|
|
|
|
*phang = 0;
|
|
|
|
if (*plast < 0)
|
|
|
|
*plast = 0;
|
|
|
|
if (*pmin < 0)
|
|
|
|
*pmin = *plast;
|
|
|
|
|
|
|
|
for (line = inlines; *line; ++line)
|
|
|
|
;
|
2022-02-18 17:27:51 -05:00
|
|
|
numlines = line - inlines;
|
|
|
|
|
|
|
|
if (*pprefix < 0)
|
2022-03-02 18:26:02 -05:00
|
|
|
{
|
2022-02-18 17:27:51 -05:00
|
|
|
if (numlines <= *phang + 1)
|
|
|
|
*pprefix = 0;
|
2022-03-04 21:29:50 -05:00
|
|
|
else
|
|
|
|
{
|
2022-02-18 17:27:51 -05:00
|
|
|
start = inlines[*phang];
|
2022-03-04 21:29:50 -05:00
|
|
|
for (end = start; *end; ++end)
|
|
|
|
;
|
|
|
|
for (line = inlines + *phang + 1; *line; ++line)
|
|
|
|
{
|
|
|
|
for (p1 = start, p2 = *line; p1 < end && *p1 == *p2; ++p1, ++p2)
|
|
|
|
;
|
2022-02-18 17:27:51 -05:00
|
|
|
end = p1;
|
|
|
|
}
|
|
|
|
*pprefix = end - start;
|
|
|
|
}
|
2022-03-02 18:26:02 -05:00
|
|
|
}
|
2022-02-18 17:27:51 -05:00
|
|
|
|
|
|
|
if (*psuffix < 0)
|
2022-03-02 18:26:02 -05:00
|
|
|
{
|
2022-02-18 17:27:51 -05:00
|
|
|
if (numlines <= 1)
|
|
|
|
*psuffix = 0;
|
2022-03-04 21:29:50 -05:00
|
|
|
else
|
|
|
|
{
|
2022-02-18 17:27:51 -05:00
|
|
|
start = *inlines;
|
2022-03-04 21:29:50 -05:00
|
|
|
for (end = start; *end; ++end)
|
|
|
|
;
|
|
|
|
for (line = inlines + 1; *line; ++line)
|
|
|
|
{
|
|
|
|
for (p2 = *line; *p2; ++p2)
|
|
|
|
;
|
2022-02-18 17:27:51 -05:00
|
|
|
for (p1 = end;
|
|
|
|
p1 > start && p2 > *line && p1[-1] == p2[-1];
|
2022-03-04 21:29:50 -05:00
|
|
|
--p1, --p2)
|
|
|
|
;
|
2022-02-18 17:27:51 -05:00
|
|
|
start = p1;
|
|
|
|
}
|
2022-03-04 21:29:50 -05:00
|
|
|
while (end - start >= 2 && isspace(*start) && isspace(start[1]))
|
|
|
|
++start;
|
2022-02-18 17:27:51 -05:00
|
|
|
*psuffix = end - start;
|
|
|
|
}
|
2022-03-02 18:26:02 -05:00
|
|
|
}
|
2022-02-18 17:27:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void freelines(char **lines)
|
|
|
|
/* Frees the strings pointed to in the NULL-terminated array lines, then */
|
|
|
|
/* frees the array. Does not use errmsg because it always succeeds. */
|
|
|
|
{
|
2022-03-03 22:03:41 -05:00
|
|
|
char **line;
|
2022-02-18 17:27:51 -05:00
|
|
|
|
2022-03-04 21:29:50 -05:00
|
|
|
for (line = lines; *line; ++line)
|
2022-03-03 22:03:41 -05:00
|
|
|
free(*line);
|
2022-02-18 17:27:51 -05:00
|
|
|
|
|
|
|
free(lines);
|
|
|
|
}
|
|
|
|
|
2022-03-04 21:29:50 -05:00
|
|
|
static int setValue(int *val, char *arg, char *name)
|
|
|
|
{
|
|
|
|
FILE *stream;
|
|
|
|
char *buf;
|
|
|
|
size_t len;
|
|
|
|
if (!arg)
|
|
|
|
{
|
|
|
|
stream = open_memstream(&buf, &len);
|
|
|
|
fprintf(stream, "Require value for argument %s", name);
|
|
|
|
fflush(stream);
|
|
|
|
set_error(buf);
|
|
|
|
fclose(stream);
|
|
|
|
free(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
// if (*val != -1)
|
|
|
|
// {
|
|
|
|
// stream = open_memstream(&buf, &len);
|
|
|
|
// fprintf(stream, "Multiple input for argument %s", name);
|
|
|
|
// fflush(stream);
|
|
|
|
// set_error(buf);
|
|
|
|
// fclose(stream);
|
|
|
|
// free(buf);
|
|
|
|
// return 0;
|
|
|
|
// }
|
|
|
|
if (!strtoudec(arg, val))
|
|
|
|
{
|
|
|
|
stream = open_memstream(&buf, &len);
|
|
|
|
fprintf(stream, "Invalid Input %s\n", arg);
|
|
|
|
fflush(stream);
|
|
|
|
set_error(buf);
|
|
|
|
fclose(stream);
|
|
|
|
free(buf);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2022-03-04 22:22:08 -05:00
|
|
|
static int setOptions(int argc, char **argv, int *widthbak, int *prefixbak, int *suffixbak, int *hangbak, int *lastbak, int *minbak)
|
2022-03-04 21:29:50 -05:00
|
|
|
{
|
|
|
|
FILE *stream;
|
|
|
|
char *buf;
|
|
|
|
size_t len;
|
|
|
|
int option_index = 0;
|
|
|
|
static struct option long_options[] = {
|
|
|
|
{"version", no_argument, 0, 'v'},
|
|
|
|
{"width", required_argument, 0, 'w'},
|
|
|
|
{"prefix", required_argument, 0, 'p'},
|
|
|
|
{"suffix", required_argument, 0, 's'},
|
|
|
|
{"hang", optional_argument, 0, 'h'},
|
|
|
|
{"last", no_argument, 0, 'L'},
|
|
|
|
{"no-last", no_argument, 0, 'n'},
|
|
|
|
{"min", no_argument, 0, 'M'},
|
|
|
|
{"no-min", no_argument, 0, 'N'},
|
|
|
|
{0, 0, 0, 0}};
|
|
|
|
|
|
|
|
for (char ch = getopt_long(argc, argv, "w:p:s:h::l:m:", long_options, &option_index); ch != -1; ch = getopt_long(argc, argv, "w:p:s:h::l:m:", long_options, &option_index))
|
|
|
|
{
|
|
|
|
|
|
|
|
switch (ch)
|
|
|
|
{
|
|
|
|
case 'v':
|
|
|
|
stream = open_memstream(&buf, &len);
|
|
|
|
fprintf(stream, "%s %s\n", progname, version);
|
|
|
|
fflush(stream);
|
|
|
|
set_error(buf);
|
|
|
|
fclose(stream);
|
|
|
|
free(buf);
|
2022-03-04 21:46:14 -05:00
|
|
|
return 2;
|
2022-03-04 21:29:50 -05:00
|
|
|
break;
|
|
|
|
case 'W':
|
|
|
|
if (!setValue(widthbak, optarg, "width"))
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
case 'w':
|
|
|
|
if (!setValue(widthbak, optarg, "width"))
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
if (!setValue(prefixbak, optarg, "prefix"))
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
if (!setValue(suffixbak, optarg, "suffix"))
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
if (!optarg)
|
|
|
|
{
|
|
|
|
optarg = "1";
|
|
|
|
}
|
|
|
|
if (!setValue(hangbak, optarg, "hang"))
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
case 'l':
|
|
|
|
if (!setValue(lastbak, optarg, "last"))
|
|
|
|
return 0;
|
|
|
|
if (*lastbak != 0 && *lastbak != 1)
|
|
|
|
{
|
|
|
|
stream = open_memstream(&buf, &len);
|
|
|
|
fprintf(stream, "Value for -l must be 0 or 1");
|
|
|
|
fflush(stream);
|
|
|
|
set_error(buf);
|
|
|
|
fclose(stream);
|
|
|
|
free(buf);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'm':
|
|
|
|
if (!setValue(minbak, optarg, "last"))
|
|
|
|
return 0;
|
|
|
|
if (*minbak != 0 && *minbak != 1)
|
|
|
|
{
|
|
|
|
stream = open_memstream(&buf, &len);
|
|
|
|
fprintf(stream, "Value for -m must be 0 or 1");
|
|
|
|
fflush(stream);
|
|
|
|
set_error(buf);
|
|
|
|
fclose(stream);
|
|
|
|
free(buf);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'L':
|
|
|
|
if (!setValue(lastbak, "1", "last"))
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
if (!setValue(lastbak, "0", "last"))
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
case 'M':
|
|
|
|
if (!setValue(minbak, "1", "min"))
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
case 'N':
|
|
|
|
if (!setValue(minbak, "0", "last"))
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
2022-02-18 17:27:51 -05:00
|
|
|
|
2022-03-04 21:29:50 -05:00
|
|
|
int original_main(int argc, const char *const *argv)
|
2022-02-18 17:27:51 -05:00
|
|
|
{
|
|
|
|
int width, widthbak = -1, prefix, prefixbak = -1, suffix, suffixbak = -1,
|
2022-03-04 22:22:08 -05:00
|
|
|
hang, hangbak = -1, last, lastbak = -1, min, minbak = -1, c, argc_env, option_code;
|
2022-02-18 17:27:51 -05:00
|
|
|
char *parinit, *picopy = NULL, *opt, **inlines = NULL, **outlines = NULL,
|
2022-03-04 22:22:08 -05:00
|
|
|
**line, **argv_env = NULL, *tmp;
|
2022-03-04 21:29:50 -05:00
|
|
|
const char *const whitechars = " \f\n\r\t\v";
|
|
|
|
|
|
|
|
// parinit = getenv("PARINIT");
|
2022-03-04 22:22:08 -05:00
|
|
|
// if (parinit)
|
|
|
|
// {
|
|
|
|
// picopy = malloc((strlen(parinit) + 1) * sizeof(char));
|
|
|
|
// if (!picopy)
|
|
|
|
// {
|
2022-03-04 21:29:50 -05:00
|
|
|
// set_error(outofmem);
|
|
|
|
// goto parcleanup;
|
|
|
|
// }
|
2022-03-04 22:22:08 -05:00
|
|
|
// strcpy(picopy, parinit);
|
|
|
|
// opt = strtok(picopy, whitechars);
|
|
|
|
// while (opt)
|
|
|
|
// {
|
2022-03-04 21:29:50 -05:00
|
|
|
// parseopt(opt, &widthbak, &prefixbak,
|
|
|
|
// &suffixbak, &hangbak, &lastbak, &minbak);
|
2022-03-04 22:22:08 -05:00
|
|
|
// if (is_error())
|
|
|
|
// goto parcleanup;
|
|
|
|
// opt = strtok(NULL, whitechars);
|
2022-03-04 21:29:50 -05:00
|
|
|
// }
|
|
|
|
// free(picopy);
|
|
|
|
// picopy = NULL;
|
|
|
|
// }
|
|
|
|
|
2022-03-04 22:22:08 -05:00
|
|
|
// while (*++argv)
|
|
|
|
// {
|
2022-03-04 21:29:50 -05:00
|
|
|
// parseopt(*argv, &widthbak, &prefixbak,
|
|
|
|
// &suffixbak, &hangbak, &lastbak, &minbak);
|
2022-03-04 22:22:08 -05:00
|
|
|
// if (is_error())
|
|
|
|
// goto parcleanup;
|
2022-03-04 21:29:50 -05:00
|
|
|
// }
|
2022-02-18 17:27:51 -05:00
|
|
|
|
2022-03-04 22:22:08 -05:00
|
|
|
parinit = getenv("PARINIT");
|
|
|
|
if (parinit)
|
|
|
|
{
|
|
|
|
picopy = malloc((strlen(parinit) + 1) * sizeof(char));
|
|
|
|
if (!picopy)
|
|
|
|
{
|
|
|
|
set_error(outofmem);
|
|
|
|
goto parcleanup;
|
|
|
|
}
|
|
|
|
argc_env = 1;
|
|
|
|
argv_env = malloc((argc_env) * sizeof(char *));
|
|
|
|
argv_env[0] = malloc((strlen(argv[0]) + 1) * sizeof(char));
|
|
|
|
tmp = argv_env[0];
|
|
|
|
strcpy(tmp, argv[0]);
|
|
|
|
strcpy(picopy, parinit);
|
|
|
|
opt = strtok(picopy, whitechars);
|
|
|
|
while (opt)
|
|
|
|
{
|
|
|
|
argc_env++;
|
|
|
|
argv_env = realloc(argv_env, (argc_env + 1) * sizeof(char *));
|
|
|
|
argv_env[argc_env - 1] = malloc((strlen(opt) + 1) * sizeof(char));
|
|
|
|
tmp = argv_env[argc_env - 1];
|
|
|
|
strcpy(tmp, opt);
|
|
|
|
opt = strtok(NULL, whitechars);
|
|
|
|
}
|
2022-03-04 21:29:50 -05:00
|
|
|
|
2022-03-04 22:22:08 -05:00
|
|
|
for (size_t i = 1; i < argc; i++)
|
|
|
|
{
|
|
|
|
argc_env++;
|
|
|
|
argv_env = realloc(argv_env, (argc_env + 1) * sizeof(char *));
|
|
|
|
argv_env[argc_env - 1] = malloc((strlen(argv[i]) + 1) * sizeof(char));
|
|
|
|
tmp = argv_env[argc_env - 1];
|
|
|
|
strcpy(tmp, argv[i]);
|
|
|
|
}
|
|
|
|
argv_env = realloc(argv_env, (argc_env + 1) * sizeof(char *));
|
|
|
|
argv_env[argc_env] = NULL;
|
2022-03-04 21:29:50 -05:00
|
|
|
|
2022-03-04 22:22:08 -05:00
|
|
|
option_code = setOptions(argc_env, (char **)argv_env, &widthbak, &prefixbak, &suffixbak, &hangbak, &lastbak, &minbak);
|
|
|
|
if (option_code == 0 || option_code == 2)
|
|
|
|
goto parcleanup;
|
|
|
|
freelines(argv_env);
|
|
|
|
argv_env = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
option_code = setOptions(argc, (char **)argv, &widthbak, &prefixbak, &suffixbak, &hangbak, &lastbak, &minbak);
|
|
|
|
if (option_code == 0 || option_code == 2)
|
|
|
|
goto parcleanup;
|
|
|
|
}
|
2022-02-18 17:27:51 -05:00
|
|
|
|
2022-03-04 21:33:36 -05:00
|
|
|
// printf("width: %d, prefix: %d, suffix: %d, hang: %d, last: %d, min: %d", widthbak, prefixbak, suffixbak, hangbak, lastbak, minbak);
|
2022-03-04 21:29:50 -05:00
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
for (;;)
|
|
|
|
{
|
2022-02-18 17:27:51 -05:00
|
|
|
c = getchar();
|
2022-03-04 21:29:50 -05:00
|
|
|
if (c == EOF)
|
|
|
|
goto parcleanup;
|
|
|
|
if (c != '\n')
|
|
|
|
break;
|
2022-02-18 17:27:51 -05:00
|
|
|
putchar(c);
|
|
|
|
}
|
2022-03-04 21:29:50 -05:00
|
|
|
ungetc(c, stdin);
|
2022-02-18 17:27:51 -05:00
|
|
|
|
|
|
|
inlines = readlines();
|
2022-03-04 21:29:50 -05:00
|
|
|
if (is_error())
|
|
|
|
goto parcleanup;
|
|
|
|
if (!*inlines)
|
|
|
|
{
|
2022-02-18 17:27:51 -05:00
|
|
|
free(inlines);
|
|
|
|
inlines = NULL;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2022-03-04 21:29:50 -05:00
|
|
|
width = widthbak;
|
|
|
|
prefix = prefixbak;
|
|
|
|
suffix = suffixbak;
|
|
|
|
hang = hangbak;
|
|
|
|
last = lastbak;
|
|
|
|
min = minbak;
|
|
|
|
setdefaults((const char *const *)inlines,
|
2022-02-18 17:27:51 -05:00
|
|
|
&width, &prefix, &suffix, &hang, &last, &min);
|
|
|
|
|
2022-03-04 21:29:50 -05:00
|
|
|
outlines = reformat((const char *const *)inlines,
|
2022-02-18 17:27:51 -05:00
|
|
|
width, prefix, suffix, hang, last, min);
|
2022-03-04 21:29:50 -05:00
|
|
|
if (is_error())
|
|
|
|
goto parcleanup;
|
2022-02-18 17:27:51 -05:00
|
|
|
|
|
|
|
freelines(inlines);
|
|
|
|
inlines = NULL;
|
|
|
|
|
2022-03-04 21:29:50 -05:00
|
|
|
for (line = outlines; *line; ++line)
|
2022-02-18 17:27:51 -05:00
|
|
|
puts(*line);
|
|
|
|
|
|
|
|
freelines(outlines);
|
|
|
|
outlines = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
parcleanup:
|
|
|
|
|
2022-03-04 21:29:50 -05:00
|
|
|
if (picopy)
|
|
|
|
free(picopy);
|
|
|
|
if (inlines)
|
|
|
|
freelines(inlines);
|
|
|
|
if (outlines)
|
|
|
|
freelines(outlines);
|
2022-03-04 22:22:08 -05:00
|
|
|
if (argv_env)
|
|
|
|
freelines(argv_env);
|
2022-02-18 17:27:51 -05:00
|
|
|
|
2022-03-04 21:29:50 -05:00
|
|
|
if (is_error())
|
|
|
|
{
|
2022-03-04 12:15:43 -05:00
|
|
|
report_error(stderr);
|
|
|
|
clear_error();
|
2022-03-04 21:46:14 -05:00
|
|
|
if (option_code == 2)
|
|
|
|
{
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
2022-03-04 22:22:08 -05:00
|
|
|
|
2022-03-04 21:29:50 -05:00
|
|
|
return (EXIT_FAILURE);
|
2022-02-18 17:27:51 -05:00
|
|
|
}
|
|
|
|
|
2022-03-04 21:29:50 -05:00
|
|
|
return (EXIT_SUCCESS);
|
2022-02-18 17:27:51 -05:00
|
|
|
}
|