ack/util/int/io.c
George Koehler 36f16b0cb8 Cut down some clang warnings
Edit C code to reduce warnings from clang.  Most warnings are for
implicit declarations of functions, but some warnings want me to add
parentheses or curly braces, or to cast arguments for printf().

Make a few other changes, like declaring float_cst() in h/con_float to
be static, and using C99 bool in ego/ra/makeitems.c and
ego/share/makecldef.c.  Such changes don't silence warnings; I make
such changes while I silence warnings in the same file.  In
float_cst(), rename parameter `str` to `float_str`, so it doesn't
share a name with the global variable `str`.

Remove `const` from `newmodule(const char *)` in mach/proto/as to
silence a warning.  I wrongly added the `const` in d347207.

For warnings about implicit declarations of functions, the fix is to
declare the function before calling it.  For example, my OpenBSD
system needs <sys/wait.h> to declare wait().

In util/int, add "whatever.h" to declare more functions.  Remove old
declarations from "mem.h", to prefer the newer declarations of the
same functions in "data.h" and "stack.h".
2019-10-30 18:36:38 -04:00

200 lines
3.5 KiB
C

/** @file
In and output, error messages, etc.
*/
/* $Id$ */
#include <fcntl.h>
#include <stdio.h>
#include <stdarg.h>
#include <unistd.h>
#include "logging.h"
#include "global.h"
#include "mem.h"
#include "io.h"
#include "warn.h"
#include "log.h"
#include "linfil.h"
#include "whatever.h"
extern int running; /* from main.c */
extern char *prog_name; /* from main.c */
extern char *load_name; /* from init.c */
extern void core_dump(void);
/******** The message file ********/
extern char mess_file[64]; /* from main.c */
long mess_id; /* Id, to determine unique mess file */
FILE *mess_fp; /* Filepointer of message file */
PRIVATE void do_fatal(FILE *, char *, va_list);
void incr_mess_id(void)
{ /* for a new child */
mess_id++;
}
#ifdef LOGGING
extern long inr; /* from log.c */
#endif /* LOGGING */
/******** General file handling ********/
PRIVATE int highestfd();
int fd_limit = 100; /* first non-available file descriptor */
/** Creates an unbuffered FILE with name "fn" on the highest
* possible file descriptor.
*/
FILE *fcreat_high(char *fn)
{
register int fd;
register FILE *fp;
if ((fd = creat(fn, 0644)) == -1)
return NULL;
fd = highestfd(fd);
if ((fp = fdopen(fd, "w")) == NULL)
return NULL;
setbuf(fp, (char *) 0); /* unbuffered! */
fd_limit = fd;
return fp;
}
/** Moves the (open) file descriptor "fd" to the highest available
* position and returns the new "fd". Does this without knowing
* how many fd-s are available.
*/
PRIVATE int highestfd(int fd)
{
register int newfd, higherfd;
/* try to get a better fd */
newfd = dup(fd);
if (newfd < 0) {
return fd;
}
if (newfd > 99) {
/* for systems with an unlimited supply of file descriptors */
close(newfd);
return fd;
}
/* occupying the new fd, try to do even better */
higherfd = highestfd(newfd);
close(fd);
return higherfd; /* this is a deep one */
}
void init_ofiles(int firsttime)
{
if (!firsttime) {
fclose(mess_fp); /* old message file */
mess_fp = 0;
sprintf(mess_file, "%s_%ld", mess_file, mess_id);
}
/* Create messagefile */
if ((mess_fp = fcreat_high(mess_file)) == NULL)
fatal("Cannot create messagefile '%s'", mess_file);
init_wmsg();
mess_id = 1; /* ID of next child */
#ifdef LOGGING
open_log(firsttime);
#endif /* LOGGING */
}
/*VARARGS0*/
void fatal(char *fmt, ...)
{
va_list ap;
fprintf(stderr, "%s: ", prog_name);
va_start(ap, fmt);
{
do_fatal(stderr, fmt, ap);
}
va_end(ap);
if (mess_fp) {
va_start(ap, fmt);
{
do_fatal(mess_fp, fmt, ap);
}
va_end(ap);
}
if (running)
core_dump();
close_down(1);
}
void close_down(int rc)
{
/* all exits should go through here */
if (mess_fp) {
fclose(mess_fp);
mess_fp = 0;
}
#ifdef LOGGING
close_log();
#endif /* LOGGING */
exit(rc);
}
PRIVATE void do_fatal(FILE *fp, char *fmt, va_list ap)
{
fprintf(fp, "(Fatal error) ");
if (load_name)
fprintf(fp, "%s: ", load_name);
vfprintf(fp, fmt, ap);
fputc('\n', fp);
}
/*VARARGS0*/
void message(char *fmt, ...)
{
va_list ap;
fprintf(mess_fp, "(Message): ");
va_start(ap, fmt);
{
vfprintf(mess_fp, fmt, ap);
}
va_end(ap);
fprintf(mess_fp, " at %s\n", position());
}
char *position(void) /* transient */
{
static char buff[300];
register char *fn = dt_fname(getFIL());
#ifdef LOGGING
sprintf(buff, "\"%s\", line %ld, INR = %ld", fn, getLIN(), inr);
#else /* LOGGING */
sprintf(buff, "\"%s\", line %ld", fn, getLIN());
#endif /* LOGGING */
return buff;
}
char *dt_fname(p)
ptr p;
{
return (p ? &data_loc(p) : "<unknown>");
}