Home | History | Annotate | Line # | Download | only in error
subr.c revision 1.18
      1  1.18  dholland /*	$NetBSD: subr.c,v 1.18 2009/08/13 05:53:58 dholland Exp $	*/
      2   1.3       jtc 
      3   1.1       cgd /*
      4   1.3       jtc  * Copyright (c) 1980, 1993
      5   1.3       jtc  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1       cgd  * modification, are permitted provided that the following conditions
      9   1.1       cgd  * are met:
     10   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15  1.14       agc  * 3. Neither the name of the University nor the names of its contributors
     16   1.1       cgd  *    may be used to endorse or promote products derived from this software
     17   1.1       cgd  *    without specific prior written permission.
     18   1.1       cgd  *
     19   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.1       cgd  * SUCH DAMAGE.
     30   1.1       cgd  */
     31   1.1       cgd 
     32   1.5     lukem #include <sys/cdefs.h>
     33   1.1       cgd #ifndef lint
     34   1.3       jtc #if 0
     35   1.3       jtc static char sccsid[] = "@(#)subr.c	8.1 (Berkeley) 6/6/93";
     36   1.3       jtc #endif
     37  1.18  dholland __RCSID("$NetBSD: subr.c,v 1.18 2009/08/13 05:53:58 dholland Exp $");
     38   1.1       cgd #endif /* not lint */
     39   1.1       cgd 
     40   1.5     lukem #include <ctype.h>
     41   1.5     lukem #include <err.h>
     42   1.1       cgd #include <stdio.h>
     43   1.1       cgd #include <stdlib.h>
     44   1.1       cgd #include <string.h>
     45   1.1       cgd #include "error.h"
     46  1.15  dholland 
     47   1.1       cgd /*
     48  1.16  dholland  * Arrayify a list of rules
     49   1.1       cgd  */
     50   1.5     lukem void
     51  1.11       wiz arrayify(int *e_length, Eptr **e_array, Eptr header)
     52   1.1       cgd {
     53  1.16  dholland 	Eptr errorp;
     54  1.16  dholland 	Eptr *array;
     55  1.16  dholland 	int listlength;
     56  1.16  dholland 	int listindex;
     57   1.1       cgd 
     58   1.1       cgd 	for (errorp = header, listlength = 0;
     59   1.1       cgd 	     errorp; errorp = errorp->error_next, listlength++)
     60   1.1       cgd 		continue;
     61  1.18  dholland 	array = Calloc(listlength+1, sizeof (Eptr));
     62  1.16  dholland 	for (listindex = 0, errorp = header;
     63   1.1       cgd 	    listindex < listlength;
     64  1.16  dholland 	    listindex++, errorp = errorp->error_next) {
     65   1.1       cgd 		array[listindex] = errorp;
     66   1.1       cgd 		errorp->error_position = listindex;
     67   1.1       cgd 	}
     68   1.8  christos 	array[listindex] = NULL;
     69   1.1       cgd 	*e_length = listlength;
     70   1.1       cgd 	*e_array = array;
     71   1.1       cgd }
     72   1.1       cgd 
     73  1.18  dholland void *
     74  1.18  dholland Calloc(size_t nelements, size_t size)
     75   1.1       cgd {
     76  1.18  dholland 	void *back;
     77  1.16  dholland 
     78  1.18  dholland 	back = calloc(nelements, size);
     79  1.18  dholland 	if (back == NULL)
     80   1.5     lukem 		errx(1, "Ran out of memory.");
     81  1.16  dholland 	return (back);
     82   1.1       cgd }
     83   1.1       cgd 
     84   1.1       cgd /*
     85  1.16  dholland  * find the position of a given character in a string
     86  1.16  dholland  * (one based)
     87   1.1       cgd  */
     88   1.5     lukem int
     89  1.17  dholland position(const char *string, char ch)
     90   1.1       cgd {
     91  1.16  dholland 	int i;
     92  1.16  dholland 
     93   1.1       cgd 	if (string)
     94  1.16  dholland 		for (i=1; *string; string++, i++) {
     95  1.16  dholland 			if (*string == ch)
     96  1.16  dholland 				return (i);
     97  1.16  dholland 		}
     98  1.16  dholland 	return (-1);
     99   1.1       cgd }
    100   1.5     lukem 
    101   1.1       cgd /*
    102  1.16  dholland  * clobber the first occurance of ch in string by the new character
    103   1.1       cgd  */
    104   1.5     lukem char *
    105  1.11       wiz substitute(char *string, char chold, char chnew)
    106   1.1       cgd {
    107  1.16  dholland 	char *cp = string;
    108   1.1       cgd 
    109   1.1       cgd 	if (cp)
    110  1.16  dholland 		while (*cp) {
    111  1.16  dholland 			if (*cp == chold) {
    112  1.16  dholland 				*cp = chnew;
    113  1.16  dholland 				break;
    114  1.16  dholland 			}
    115  1.16  dholland 			cp++;
    116   1.1       cgd 		}
    117  1.16  dholland 	return (string);
    118   1.1       cgd }
    119   1.1       cgd 
    120   1.5     lukem char
    121  1.17  dholland lastchar(const char *string)
    122   1.1       cgd {
    123  1.16  dholland 	int length;
    124  1.16  dholland 
    125  1.16  dholland 	if (string == NULL)
    126  1.16  dholland 		return ('\0');
    127   1.1       cgd 	length = strlen(string);
    128   1.1       cgd 	if (length >= 1)
    129  1.16  dholland 		return (string[length-1]);
    130   1.1       cgd 	else
    131  1.16  dholland 		return ('\0');
    132   1.1       cgd }
    133   1.1       cgd 
    134   1.5     lukem char
    135  1.17  dholland firstchar(const char *string)
    136   1.1       cgd {
    137   1.1       cgd 	if (string)
    138  1.16  dholland 		return (string[0]);
    139   1.1       cgd 	else
    140  1.16  dholland 		return ('\0');
    141   1.1       cgd }
    142   1.1       cgd 
    143   1.5     lukem char
    144  1.17  dholland next_lastchar(const char *string)
    145   1.1       cgd {
    146  1.16  dholland 	int length;
    147  1.16  dholland 
    148  1.16  dholland 	if (string == NULL)
    149  1.16  dholland 		return ('\0');
    150   1.1       cgd 	length = strlen(string);
    151   1.1       cgd 	if (length >= 2)
    152  1.16  dholland 		return (string[length - 2]);
    153   1.1       cgd 	else
    154  1.16  dholland 		return ('\0');
    155   1.1       cgd }
    156   1.1       cgd 
    157   1.5     lukem void
    158  1.11       wiz clob_last(char *string, char newstuff)
    159   1.1       cgd {
    160  1.16  dholland 	int length = 0;
    161  1.16  dholland 
    162   1.1       cgd 	if (string)
    163   1.1       cgd 		length = strlen(string);
    164   1.1       cgd 	if (length >= 1)
    165   1.1       cgd 		string[length - 1] = newstuff;
    166   1.1       cgd }
    167   1.1       cgd 
    168   1.1       cgd /*
    169  1.16  dholland  * parse a string that is the result of a format %s(%d)
    170  1.16  dholland  * return TRUE if this is of the proper format
    171   1.1       cgd  */
    172  1.18  dholland bool
    173  1.11       wiz persperdexplode(char *string, char **r_perd, char **r_pers)
    174   1.1       cgd {
    175  1.16  dholland 	char *cp;
    176  1.16  dholland 	int length = 0;
    177   1.1       cgd 
    178   1.1       cgd 	if (string)
    179   1.1       cgd 		length = strlen(string);
    180  1.18  dholland 	if (length >= 4 && string[length - 1] == ')') {
    181   1.1       cgd 		for (cp = &string[length - 2];
    182  1.18  dholland 		     isdigit((unsigned char)*cp) && *cp != '(';
    183   1.1       cgd 		     --cp)
    184   1.1       cgd 			continue;
    185  1.16  dholland 		if (*cp == '(') {
    186   1.1       cgd 			string[length - 1] = '\0';	/* clobber the ) */
    187  1.13    itojun 			*r_perd = strdup(cp+1);
    188   1.1       cgd 			string[length - 1] = ')';
    189   1.1       cgd 			*cp = '\0';			/* clobber the ( */
    190  1.13    itojun 			*r_pers = strdup(string);
    191   1.1       cgd 			*cp = '(';
    192  1.18  dholland 			return true;
    193  1.16  dholland 		}
    194   1.1       cgd 	}
    195  1.18  dholland 	return false;
    196   1.1       cgd }
    197   1.5     lukem 
    198  1.15  dholland #if 0 /* unused */
    199   1.1       cgd /*
    200  1.16  dholland  * parse a quoted string that is the result of a format \"%s\"(%d)
    201  1.16  dholland  * return TRUE if this is of the proper format
    202   1.1       cgd  */
    203  1.15  dholland static boolean
    204  1.11       wiz qpersperdexplode(char *string, char **r_perd, char **r_pers)
    205   1.1       cgd {
    206  1.16  dholland 	char *cp;
    207  1.16  dholland 	int length = 0;
    208   1.1       cgd 
    209   1.1       cgd 	if (string)
    210   1.1       cgd 		length = strlen(string);
    211  1.18  dholland 	if (length >= 4 && string[length - 1] == ')') {
    212   1.1       cgd 		for (cp = &string[length - 2];
    213  1.18  dholland 		     isdigit((unsigned char)*cp) && *cp != '(';
    214   1.1       cgd 		     --cp)
    215   1.1       cgd 			continue;
    216  1.16  dholland 		if (*cp == '(' && *(cp - 1) == '"') {
    217   1.1       cgd 			string[length - 1] = '\0';
    218  1.13    itojun 			*r_perd = strdup(cp+1);
    219   1.1       cgd 			string[length - 1] = ')';
    220   1.1       cgd 			*(cp - 1) = '\0';		/* clobber the " */
    221  1.13    itojun 			*r_pers = strdup(string + 1);
    222   1.1       cgd 			*(cp - 1) = '"';
    223  1.18  dholland 			return true;
    224  1.16  dholland 		}
    225   1.1       cgd 	}
    226  1.18  dholland 	return false;
    227   1.1       cgd }
    228  1.15  dholland #endif /* 0 - unused */
    229   1.1       cgd 
    230  1.16  dholland static char cincomment[] = CINCOMMENT;
    231  1.16  dholland static char coutcomment[] = COUTCOMMENT;
    232  1.16  dholland static char fincomment[] = FINCOMMENT;
    233  1.16  dholland static char foutcomment[] = FOUTCOMMENT;
    234  1.16  dholland static char newline[] = NEWLINE;
    235  1.16  dholland static char piincomment[] = PIINCOMMENT;
    236  1.16  dholland static char pioutcomment[] = PIOUTCOMMENT;
    237  1.16  dholland static char lispincomment[] = LISPINCOMMENT;
    238  1.16  dholland static char riincomment[] = RIINCOMMENT;
    239  1.16  dholland static char rioutcomment[] = RIOUTCOMMENT;
    240  1.16  dholland static char troffincomment[] = TROFFINCOMMENT;
    241  1.16  dholland static char troffoutcomment[] = TROFFOUTCOMMENT;
    242  1.16  dholland static char mod2incomment[] = MOD2INCOMMENT;
    243  1.16  dholland static char mod2outcomment[] = MOD2OUTCOMMENT;
    244  1.16  dholland 
    245  1.16  dholland struct lang_desc lang_table[] = {
    246  1.16  dholland 	{ /*INUNKNOWN	0*/	"unknown", cincomment,     coutcomment },
    247  1.16  dholland 	{ /*INCPP	1*/	"cpp",     cincomment,     coutcomment },
    248  1.16  dholland 	{ /*INCC	2*/	"cc",      cincomment,     coutcomment },
    249  1.16  dholland 	{ /*INAS	3*/	"as",      ASINCOMMENT,    newline },
    250  1.16  dholland 	{ /*INLD	4*/	"ld",      cincomment,     coutcomment },
    251  1.16  dholland 	{ /*INLINT	5*/	"lint",    cincomment,     coutcomment },
    252  1.16  dholland 	{ /*INF77	6*/	"f77",     fincomment,     foutcomment },
    253  1.16  dholland 	{ /*INPI	7*/	"pi",      piincomment,    pioutcomment },
    254  1.16  dholland 	{ /*INPC	8*/	"pc",      piincomment,    pioutcomment },
    255  1.16  dholland 	{ /*INFRANZ	9*/	"franz",   lispincomment,  newline },
    256  1.16  dholland 	{ /*INLISP	10*/	"lisp",    lispincomment,  newline },
    257  1.16  dholland 	{ /*INVAXIMA	11*/	"vaxima",  lispincomment,  newline },
    258  1.16  dholland 	{ /*INRATFOR	12*/	"ratfor",  fincomment,     foutcomment },
    259  1.16  dholland 	{ /*INLEX	13*/	"lex",     cincomment,     coutcomment },
    260  1.16  dholland 	{ /*INYACC	14*/	"yacc",    cincomment,     coutcomment },
    261  1.16  dholland 	{ /*INAPL	15*/	"apl",     ".lm",          newline },
    262  1.16  dholland 	{ /*INMAKE	16*/	"make",    ASINCOMMENT,    newline },
    263  1.16  dholland 	{ /*INRI	17*/	"ri",      riincomment,    rioutcomment },
    264  1.16  dholland 	{ /*INTROFF	18*/	"troff",   troffincomment, troffoutcomment },
    265  1.16  dholland 	{ /*INMOD2	19*/	"mod2",    mod2incomment,  mod2outcomment },
    266  1.16  dholland 	{			0,         0,              0 }
    267   1.1       cgd };
    268   1.1       cgd 
    269   1.5     lukem void
    270  1.18  dholland printerrors(bool look_at_subclass, int errorc, Eptr errorv[])
    271   1.1       cgd {
    272  1.16  dholland 	int i;
    273  1.16  dholland 	Eptr errorp;
    274   1.1       cgd 
    275  1.16  dholland 	for (errorp = errorv[i = 0]; i < errorc; errorp = errorv[++i]) {
    276   1.1       cgd 		if (errorp->error_e_class == C_IGNORE)
    277   1.1       cgd 			continue;
    278   1.1       cgd 		if (look_at_subclass && errorp->error_s_class == C_DUPL)
    279   1.1       cgd 			continue;
    280   1.1       cgd 		printf("Error %d, (%s error) [%s], text = \"",
    281   1.1       cgd 			i,
    282   1.1       cgd 			class_table[errorp->error_e_class],
    283   1.1       cgd 			lang_table[errorp->error_language].lang_name);
    284   1.1       cgd 		wordvprint(stdout,errorp->error_lgtext,errorp->error_text);
    285   1.1       cgd 		printf("\"\n");
    286   1.1       cgd 	}
    287   1.1       cgd }
    288   1.1       cgd 
    289   1.5     lukem void
    290  1.11       wiz wordvprint(FILE *fyle, int wordc, char **wordv)
    291   1.1       cgd {
    292  1.16  dholland 	int i;
    293  1.17  dholland 	const char *sep = "";
    294   1.1       cgd 
    295  1.16  dholland 	for (i = 0; i < wordc; i++)
    296   1.1       cgd 		if (wordv[i]) {
    297   1.1       cgd 			fprintf(fyle, "%s%s",sep,wordv[i]);
    298   1.1       cgd 			sep = " ";
    299   1.1       cgd 		}
    300   1.1       cgd }
    301   1.1       cgd 
    302   1.1       cgd /*
    303  1.16  dholland  * Given a string, parse it into a number of words, and build
    304  1.16  dholland  * a wordc wordv combination pointing into it.
    305   1.1       cgd  */
    306   1.5     lukem void
    307  1.11       wiz wordvbuild(char *string, int *r_wordc, char ***r_wordv)
    308   1.1       cgd {
    309  1.16  dholland 	char *cp;
    310  1.16  dholland 	char **wordv;
    311  1.16  dholland 	int wordcount;
    312  1.16  dholland 	int wordindex;
    313   1.1       cgd 
    314  1.16  dholland 	for (wordcount = 0, cp = string; *cp; wordcount++) {
    315  1.16  dholland 		while (*cp && isspace((unsigned char)*cp))
    316   1.1       cgd 			cp++;
    317   1.8  christos 		if (*cp == '\0')
    318   1.1       cgd 			break;
    319   1.7  sommerfe 		while (*cp && !isspace((unsigned char)*cp))
    320   1.1       cgd 			cp++;
    321   1.1       cgd 	}
    322  1.18  dholland 	wordv = Calloc(wordcount + 1, sizeof (char *));
    323  1.16  dholland 	for (cp=string, wordindex=0; wordcount; wordindex++, --wordcount) {
    324   1.6  christos 		while (*cp && isspace((unsigned char)*cp))
    325   1.1       cgd 			cp++;
    326   1.8  christos 		if (*cp == '\0')
    327   1.1       cgd 			break;
    328   1.1       cgd 		wordv[wordindex] = cp;
    329  1.16  dholland 		while (*cp && !isspace((unsigned char)*cp))
    330   1.1       cgd 			cp++;
    331   1.1       cgd 		*cp++ = '\0';
    332   1.1       cgd 	}
    333   1.1       cgd 	if (wordcount != 0)
    334   1.5     lukem 		errx(6, "Initial miscount of the number of words in a line");
    335   1.8  christos 	wordv[wordindex] = NULL;
    336   1.1       cgd #ifdef FULLDEBUG
    337   1.1       cgd 	for (wordcount = 0; wordcount < wordindex; wordcount++)
    338   1.1       cgd 		printf("Word %d = \"%s\"\n", wordcount, wordv[wordcount]);
    339   1.1       cgd 	printf("\n");
    340   1.1       cgd #endif
    341   1.1       cgd 	*r_wordc = wordindex;
    342   1.1       cgd 	*r_wordv = wordv;
    343   1.1       cgd }
    344   1.5     lukem 
    345   1.1       cgd /*
    346  1.16  dholland  * Compare two 0 based wordvectors
    347   1.1       cgd  */
    348   1.5     lukem int
    349  1.11       wiz wordvcmp(char **wordv1, int wordc, char **wordv2)
    350   1.1       cgd {
    351   1.5     lukem 	int i;
    352  1.16  dholland 	int back;
    353   1.5     lukem 
    354  1.16  dholland 	for (i = 0; i < wordc; i++) {
    355   1.8  christos 		if (wordv1[i] == NULL || wordv2[i] == NULL)
    356  1.16  dholland 			return (-1);
    357  1.10  christos 		if ((back = strcmp(wordv1[i], wordv2[i])) != 0)
    358  1.16  dholland 			return (back);
    359   1.1       cgd 	}
    360  1.16  dholland 	return (0);	/* they are equal */
    361   1.1       cgd }
    362  1.16  dholland 
    363   1.1       cgd /*
    364  1.16  dholland  * splice a 0 basedword vector onto the tail of a
    365  1.16  dholland  * new wordv, allowing the first emptyhead slots to be empty
    366   1.1       cgd  */
    367  1.16  dholland char **
    368  1.11       wiz wordvsplice(int emptyhead, int wordc, char **wordv)
    369   1.1       cgd {
    370  1.16  dholland 	char **nwordv;
    371  1.16  dholland 	int nwordc = emptyhead + wordc;
    372  1.16  dholland 	int i;
    373   1.1       cgd 
    374  1.18  dholland 	nwordv = Calloc(nwordc, sizeof (char *));
    375   1.1       cgd 	for (i = 0; i < emptyhead; i++)
    376   1.8  christos 		nwordv[i] = NULL;
    377  1.16  dholland 	for (i = emptyhead; i < nwordc; i++) {
    378   1.1       cgd 		nwordv[i] = wordv[i-emptyhead];
    379   1.1       cgd 	}
    380  1.16  dholland 	return (nwordv);
    381   1.1       cgd }
    382   1.5     lukem 
    383   1.1       cgd /*
    384  1.18  dholland  * plural and verb forms
    385   1.1       cgd  */
    386  1.17  dholland static const char *S = "s";
    387  1.17  dholland static const char *N = "";
    388   1.5     lukem 
    389  1.17  dholland const char *
    390  1.11       wiz plural(int n)
    391   1.1       cgd {
    392  1.16  dholland 	return (n > 1 ? S : N);
    393   1.1       cgd }
    394   1.5     lukem 
    395  1.17  dholland const char *
    396  1.11       wiz verbform(int n)
    397   1.1       cgd {
    398  1.16  dholland 	return (n > 1 ? N : S);
    399   1.1       cgd }
    400