/*
* 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.
*
* @(#)error.h 8.1 (Berkeley) 6/6/93
*/
#include <stdbool.h>
/*
* Descriptors for the various languages we know about.
* If you touch these, also touch lang_table
*/
#define INUNKNOWN 0
#define INCPP 1
#define INCC 2
#define INAS 3
#define INLD 4
#define INLINT 5
#define INF77 6
#define INPI 7
#define INPC 8
#define INFRANZ 9
#define INLISP 10
#define INVAXIMA 11
#define INRATFOR 12
#define INLEX 13
#define INYACC 14
#define INAPL 15
#define INMAKE 16
#define INRI 17
#define INTROFF 18
#define INMOD2 19
/*
* We analyze each line in the error message file, and
* attempt to categorize it by type, as well as language.
* Here are the type descriptors.
*/
typedef int Errorclass;
#define C_FIRST 0 /* first error category */
#define C_UNKNOWN 0 /* must be zero */
#define C_IGNORE 1 /* ignore the message; used for pi */
#define C_SYNC 2 /* synchronization errors */
#define C_DISCARD 3 /* touches dangerous files, so discard */
#define C_NONSPEC 4 /* not specific to any file */
#define C_THISFILE 5 /* specific to this file, but at no line */
#define C_NULLED 6 /* refers to special func; so null */
#define C_TRUE 7 /* fits into true error format */
#define C_DUPL 8 /* sub class only; duplicated error message */
#define C_LAST 9 /* last error category */
/*
* Describes attributes about a language
*/
struct lang_desc {
const char *lang_name;
const char *lang_incomment; /* one of the following defines */
const char *lang_outcomment; /* one of the following defines */
};
extern struct lang_desc lang_table[];
/*
* Defines and resources for determing if a given line
* is to be discarded because it refers to a file not to
* be touched, or if the function reference is to a
* function the user doesn't want recorded.
*/
#define ERRORNAME "/.errorrc"
extern int nignored;
extern char **names_ignored;
/*
* Structure definition for a full error
*/
typedef struct edesc Edesc;
typedef Edesc *Eptr;
struct edesc {
Eptr error_next; /* linked together */
int error_lgtext; /* how many on the right hand side */
char **error_text; /* the right hand side proper */
Errorclass error_e_class; /* error category of this error */
Errorclass error_s_class; /* sub descriptor of error_e_class */
int error_language; /* the language for this error */
int error_position; /* oridinal position */
int error_line; /* discovered line number */
int error_no; /* sequence number on input */
};
/*
* Resources for the true errors
*/
extern int nerrors;
extern Eptr er_head;
extern int cur_wordc;
extern char **cur_wordv;
/*
* Resources for each of the files mentioned
*/
extern int nfiles;
extern Eptr **files; /* array of pointers into errors */
extern bool *touchedfiles; /* which files we touched */
/*
* The language the compilation is in, as intuited from
* the flavor of error messages analyzed.
*/
extern int language;
extern char *currentfilename;
extern char default_currentfilename[];
/*
* Macros for initializing arrays of string constants.
* This is a fairly gross set of preprocessor hacks; the idea is
* that instead of
* static char *foo[4] = { "alpha", "beta", "gamma", "delta" };
* you do
* DECL_STRINGS_4(static, foo, "alpha", "beta", "gamma", "delta");
*
* and it comes out as
* static char foo_0[] = "delta";
* static char foo_1[] = "gamma";
* static char foo_2[] = "beta";
* static char foo_3[] = "alpha";
* static char *foo[4] = { foo_3, foo_2, foo_1, foo_0 };
*
* none of which is const.
*
* Unfortunately, the string arrays this program slings around freely
* can't be all const (because it munges some of them) and can't be
* all non-const without something like this to initialize the ones
* that need to contain string constants. Unfortunately you can't
* mix (const char *const *) and (char **) in C, only in C++.
*/