ack/lang/pc/libpc/catch.c

156 lines
3.3 KiB
C
Raw Normal View History

1984-07-20 11:03:31 +00:00
/* $Header$ */
1984-07-20 10:44:57 +00:00
/*
* (c) copyright 1983 by the Vrije Universiteit, Amsterdam, The Netherlands.
*
* This product is part of the Amsterdam Compiler Kit.
*
* Permission to use, sell, duplicate or disclose this software must be
* obtained in writing. Requests for such permissions may be sent to
*
* Dr. Andrew S. Tanenbaum
* Wiskundig Seminarium
* Vrije Universiteit
* Postbox 7161
* 1007 MC Amsterdam
* The Netherlands
*
*/
#include <em_abs.h>
1989-05-03 09:53:25 +00:00
#include <pc_err.h>
1984-07-20 10:44:57 +00:00
#include <pc_file.h>
#define MESLEN 30
#define PATHLEN 100
1984-07-20 10:44:57 +00:00
1988-08-19 13:26:27 +00:00
/* to make it easier to patch ... */
1984-07-20 10:44:57 +00:00
extern struct file *_curfil;
1989-05-03 09:53:25 +00:00
static struct errm {
int errno;
char *errmes;
} errors[] = {
{ EARRAY, "array bound error"},
{ ERANGE, "range bound error"},
{ ESET, "set bound error"},
{ EIOVFL, "integer overflow"},
{ EFOVFL, "real overflow"},
{ EFUNFL, "real underflow"},
{ EIDIVZ, "divide by 0"},
{ EFDIVZ, "divide by 0.0"},
{ EIUND, "undefined integer"},
{ EFUND, "undefined real"},
{ ECONV, "conversion error"},
{ ESTACK, "stack overflow"},
{ EHEAP, "heap overflow"},
{ EILLINS, "illegal instruction"},
{ EODDZ, "illegal size argument"},
{ ECASE, "case error"},
{ EMEMFLT, "addressing non existent memory"},
{ EBADPTR, "bad pointer used"},
{ EBADPC, "program counter out of range"},
{ EBADLAE, "bad argument of lae"},
{ EBADMON, "bad monitor call"},
{ EBADLIN, "argument if LIN too high"},
{ EBADGTO, "GTO descriptor error"},
{ EARGC, "more args expected" },
{ EEXP, "error in exp" },
{ ELOG, "error in ln" },
{ ESQT, "error in sqrt" },
{ EASS, "assertion failed" },
{ EPACK, "array bound error in pack" },
{ EUNPACK, "array bound error in unpack" },
{ EMOD, "only positive j in 'i mod j'" },
{ EBADF, "file not yet open" },
{ EFREE, "dispose error" },
{ EFUNASS, "function not assigned" },
{ EWIDTH, "illegal field width" },
{ EWRITEF, "not writable" },
{ EREADF, "not readable" },
{ EEOF, "end of file" },
{ EFTRUNC, "truncated" },
{ ERESET, "reset error" },
{ EREWR, "rewrite error" },
{ ECLOSE, "close error" },
{ EREAD, "read error" },
{ EWRITE, "write error" },
{ EDIGIT, "digit expected" },
{ EASCII, "non-ASCII char read" },
{ -1, 0}
};
1984-07-20 10:44:57 +00:00
extern int _pargc;
extern char **_pargv;
extern char **_penvp;
extern char *_hol0();
extern _trp();
extern exit();
extern int open();
extern int read();
extern int write();
_catch(erno) unsigned erno; {
1989-05-03 09:53:25 +00:00
register struct errm *ep = &errors[0];
char *p,*q,*s,**qq;
char buf[20];
unsigned i;
int j = erno;
char *pp[10];
char mes[MESLEN];
1984-07-20 10:44:57 +00:00
qq = pp;
if (p = FILN)
*qq++ = p;
else
*qq++ = _pargv[0];
1989-05-03 09:53:25 +00:00
while (ep->errno != erno && ep->errmes != 0) ep++;
1984-07-20 10:44:57 +00:00
p = &("xxxxx: "[5]);
if (i = LINO) {
*qq++ = ", ";
do
*--p = i % 10 + '0';
while (i /= 10);
}
*qq++ = p;
if ((erno & ~037) == 0140 && (_curfil->flags&0377)==MAGIC) {
/* file error */
*qq++ = "file ";
*qq++ = _curfil->fname;
*qq++ = ": ";
}
1989-05-03 09:53:25 +00:00
if (ep->errmes) *qq++ = ep->errmes;
else {
q = "error number xxxxxxxxxxxxx";
p = &q[13];
s = buf;
if (j < 0) {
j = -j;
*p++ = '-';
}
do
*s++ = j % 10 + '0';
while (j /= 10);
while (s > buf) *p++ = *--s;
*p = 0;
*qq++ = q;
}
*qq++ = "\n";
1984-07-20 10:44:57 +00:00
*qq = 0;
qq = pp;
while (q = *qq++) {
p = q;
while (*p)
p++;
if (write(2,q,p-q) < 0)
;
}
exit(erno);
error:
_trp(erno);
}