123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314 |
- /* $NetBSD: getpar.c,v 1.12 2004/01/27 20:30:31 jsm Exp $ */
- /*
- * Copyright (c) 1980, 1993
- * The Regents of the University of California. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. Neither the name of the University nor the names of its contributors
- * may be used to endorse or promote products derived from this software
- * without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
- * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- */
- #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.12 2004/01/27 20:30:31 jsm Exp $");
- #endif
- #endif /* not lint */
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include "getpar.h"
- #include "trek.h"
- static int testterm(void);
- /**
- ** get integer parameter
- **/
- int
- getintpar(s)
- 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);
- }
- }
- /**
- ** get floating parameter
- **/
- double getfltpar(s)
- 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);
- }
- }
- /**
- ** get yes/no parameter
- **/
- const struct cvntab Yntab[] =
- {
- { "y", "es", (cmdfun)1, 1 },
- { "n", "o", (cmdfun)0, 0 },
- { NULL, NULL, NULL, 0 }
- };
- int
- getynpar(s)
- const char *s;
- {
- const struct cvntab *r;
- r = getcodpar(s, Yntab);
- return r->value2;
- }
- /**
- ** get coded parameter
- **/
- const struct cvntab *getcodpar(s, tab)
- 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)
- cgetc(0); /* throw out the newline */
- scanf("%*[ \t;]");
- if ((c = scanf("%99[^ \t;\n]", input)) < 0)
- exit(1);
- if (c == 0)
- continue;
- flag = 1;
- /* if command list, print four per line */
- if (input[0] == '?' && input[1] == 0)
- {
- c = 4;
- for (r = tab; r->abrev; r++)
- {
- strcpy(input, r->abrev);
- strcat(input, r->full);
- printf("%14.14s", input);
- if (--c > 0)
- continue;
- c = 4;
- printf("\n");
- }
- if (c != 4)
- printf("\n");
- continue;
- }
- /* search for in table */
- for (r = tab; r->abrev; r++)
- {
- p = input;
- for (q = r->abrev; *q; q++)
- if (*p++ != *q)
- break;
- if (!*q)
- {
- for (q = r->full; *p && *q; q++, p++)
- if (*p != *q)
- break;
- if (!*p || !*q)
- break;
- }
- }
- /* check for not found */
- if (!r->abrev)
- {
- printf("invalid input; ? for valid inputs\n");
- skiptonl(0);
- }
- else
- return (r);
- }
- }
- /**
- ** get string parameter
- **/
- void
- getstrpar(s, r, l, t)
- const char *s;
- char *r;
- int l;
- const char *t;
- {
- int i;
- char format[20];
- int f;
- if (t == 0)
- t = " \t\n;";
- (void)sprintf(format, "%%%d[^%s]", l, t);
- while (1)
- {
- if ((f = testnl()) && s)
- printf("%s: ", s);
- if (f)
- cgetc(0);
- scanf("%*[\t ;]");
- i = scanf(format, r);
- if (i < 0)
- exit(1);
- if (i != 0)
- return;
- }
- }
- /**
- ** test if newline is next valid character
- **/
- int
- testnl()
- {
- char c;
- while ((c = cgetc(0)) != '\n')
- 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);
- }
- /**
- ** scan for newline
- **/
- void
- skiptonl(c)
- int c;
- {
- while (c != '\n')
- if (!(c = cgetc(0)))
- return;
- ungetc('\n', stdin);
- return;
- }
- /**
- ** test for valid terminator
- **/
- static int
- testterm()
- {
- char c;
- if (!(c = cgetc(0)))
- return (1);
- if (c == '.')
- return (0);
- if (c == '\n' || c == ';')
- ungetc(c, stdin);
- return (1);
- }
- /*
- ** TEST FOR SPECIFIED DELIMITER
- **
- ** The standard input is scanned for the parameter. If found,
- ** it is thrown away and non-zero is returned. If not found,
- ** zero is returned.
- */
- int
- readdelim(d)
- char d;
- {
- char c;
- while ((c = cgetc(0)) != '\0')
- {
- if (c == d)
- return (1);
- if (c == ' ')
- continue;
- ungetc(c, stdin);
- break;
- }
- return (0);
- }
|