#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)getpar.c 8.1 (Berkeley) 5/31/93";
#else
__RCSID("$NetBSD: getpar.c,v 1.18 2009/08/12 08:54:54 dholland Exp $");
#endif
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "getpar.h"
#include "trek.h"
static int testterm(void);
int
getintpar(const char *s)
{
int i;
int n;
while (1) {
if (testnl() && s)
printf("%s: ", s);
i = scanf("%d", &n);
if (i < 0)
exit(1);
if (i > 0 && testterm())
return (n);
printf("invalid input; please enter an integer\n");
skiptonl(0);
}
}
double
getfltpar(const char *s)
{
int i;
double d;
while (1) {
if (testnl() && s)
printf("%s: ", s);
i = scanf("%lf", &d);
if (i < 0)
exit(1);
if (i > 0 && testterm())
return (d);
printf("invalid input; please enter a double\n");
skiptonl(0);
}
}
static const struct cvntab Yntab[] = {
{ "y", "es", (cmdfun)1, 1 },
{ "n", "o", (cmdfun)0, 0 },
{ NULL, NULL, NULL, 0 }
};
int
getynpar(const char *s)
{
const struct cvntab *r;
r = getcodpar(s, Yntab);
return r->value2;
}
const struct cvntab *
getcodpar(const char *s, const struct cvntab tab[])
{
char input[100];
const struct cvntab *r;
int flag;
const char *p, *q;
int c;
int f;
flag = 0;
while (1) {
flag |= (f = testnl());
if (flag)
printf("%s: ", s);
if (f) {
getchar();
}
scanf("%*[ \t;]");
if ((c = scanf("%99[^ \t;\n]", input)) < 0)
exit(1);
if (c == 0)
continue;
flag = 1;
if (input[0] == '?' && input[1] == 0) {
c = 4;
for (r = tab; r->abbrev; r++) {
strcpy(input, r->abbrev);
strcat(input, r->full);
printf("%14.14s", input);
if (--c > 0)
continue;
c = 4;
printf("\n");
}
if (c != 4)
printf("\n");
continue;
}
for (r = tab; r->abbrev; r++) {
p = input;
for (q = r->abbrev; *q; q++)
if (*p++ != *q)
break;
if (!*q) {
for (q = r->full; *p && *q; q++, p++)
if (*p != *q)
break;
if (!*p || !*q)
break;
}
}
if (!r->abbrev) {
printf("invalid input; ? for valid inputs\n");
skiptonl(0);
} else
return (r);
}
}
void
getstrpar(const char *s, char *r, int l, const char *t)
{
int i;
char format[20];
int f;
if (t == 0)
t = " \t\n;";
(void)snprintf(format, sizeof(format), "%%%d[^%s]", l, t);
while (1) {
if ((f = testnl()) && s)
printf("%s: ", s);
if (f)
getchar();
scanf("%*[\t ;]");
i = scanf(format, r);
if (i < 0)
exit(1);
if (i != 0)
return;
}
}
int
testnl(void)
{
int c;
while ((c = getchar()) != '\n') {
if (c == EOF) {
exit(1);
}
if ((c >= '0' && c <= '9') || c == '.' || c == '!' ||
(c >= 'A' && c <= 'Z') ||
(c >= 'a' && c <= 'z') || c == '-') {
ungetc(c, stdin);
return(0);
}
}
ungetc(c, stdin);
return (1);
}
void
skiptonl(int c)
{
while (c != '\n') {
c = getchar();
if (c == EOF) {
exit(1);
}
}
ungetc('\n', stdin);
return;
}
static int
testterm(void)
{
int c;
c = getchar();
if (c == EOF) {
exit(1);
}
if (c == '.')
return (0);
if (c == '\n' || c == ';')
ungetc(c, stdin);
return (1);
}
int
readdelim(int d)
{
int c;
while ((c = getchar()) != EOF) {
if (c == d)
return (1);
if (c == ' ')
continue;
ungetc(c, stdin);
return 0;
}
exit(1);
}