1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
/*
* getans.c -- get an answer from the user and return a string array
*
* This code is Copyright (c) 2002, by the authors of nmh. See the
* COPYRIGHT file in the root directory of the nmh distribution for
* complete copyright information.
*/
#include <h/mh.h>
#include <h/signals.h>
#include <setjmp.h>
static char ansbuf[BUFSIZ];
static sigjmp_buf sigenv;
/*
* static prototypes
*/
static void intrser (int);
char **
getans (char *prompt, struct swit *ansp)
{
int i;
SIGNAL_HANDLER istat = NULL;
char *cp, **cpp;
if (!(sigsetjmp(sigenv, 1))) {
istat = SIGNAL (SIGINT, intrser);
} else {
SIGNAL (SIGINT, istat);
return NULL;
}
for (;;) {
printf ("%s", prompt);
fflush (stdout);
cp = ansbuf;
while ((i = getchar ()) != '\n') {
if (i == EOF) {
/*
* If we get an EOF, return
*/
if (feof(stdin))
siglongjmp (sigenv, 1);
/*
* For errors, if we get an EINTR that means that we got
* a signal and we should retry. If we get another error,
* then just return.
*/
else if (ferror(stdin)) {
if (errno == EINTR) {
clearerr(stdin);
continue;
}
fprintf(stderr, "\nError %s during read\n",
strerror(errno));
siglongjmp (sigenv, 1);
} else {
/*
* Just for completeness's sake ...
*/
fprintf(stderr, "\nUnknown problem in getchar()\n");
siglongjmp (sigenv, 1);
}
}
if (cp < &ansbuf[sizeof ansbuf - 1])
*cp++ = i;
}
*cp = '\0';
if (ansbuf[0] == '?' || cp == ansbuf) {
printf ("Options are:\n");
print_sw (ALL, ansp, "", stdout);
continue;
}
cpp = brkstring (ansbuf, " ", NULL);
switch (smatch (*cpp, ansp)) {
case AMBIGSW:
ambigsw (*cpp, ansp);
continue;
case UNKWNSW:
printf (" -%s unknown. Hit <CR> for help.\n", *cpp);
continue;
default:
SIGNAL (SIGINT, istat);
return cpp;
}
}
}
static void
intrser (int i)
{
NMH_UNUSED (i);
/*
* should this be siglongjmp?
*/
siglongjmp (sigenv, 1);
}
|