| 1 |
< |
/* Copyright (c) 1986 Regents of the University of California */ |
| 1 |
> |
/* Copyright (c) 1994 Regents of the University of California */ |
| 2 |
|
|
| 3 |
|
#ifndef lint |
| 4 |
|
static char SCCSid[] = "$SunId$ LBL"; |
| 24 |
|
OBJECT nobjects = 0; /* # of objects */ |
| 25 |
|
|
| 26 |
|
|
| 27 |
< |
readobj(input) /* read in an object file or stream */ |
| 28 |
< |
char *input; |
| 27 |
> |
readobj(inpspec) /* read in an object file or stream */ |
| 28 |
> |
char *inpspec; |
| 29 |
|
{ |
| 30 |
|
FILE *popen(); |
| 31 |
< |
char *fgets(), *fgetline(); |
| 31 |
> |
char *fgetline(); |
| 32 |
> |
OBJECT lastobj; |
| 33 |
|
FILE *infp; |
| 34 |
|
char buf[512]; |
| 35 |
|
register int c; |
| 36 |
|
|
| 37 |
< |
if (input == NULL) { |
| 37 |
> |
lastobj = nobjects; |
| 38 |
> |
if (inpspec == NULL) { |
| 39 |
|
infp = stdin; |
| 40 |
< |
input = "standard input"; |
| 41 |
< |
} else if (input[0] == '!') { |
| 42 |
< |
if ((infp = popen(input+1, "r")) == NULL) { |
| 43 |
< |
sprintf(errmsg, "cannot execute \"%s\"", input); |
| 40 |
> |
inpspec = "standard input"; |
| 41 |
> |
} else if (inpspec[0] == '!') { |
| 42 |
> |
if ((infp = popen(inpspec+1, "r")) == NULL) { |
| 43 |
> |
sprintf(errmsg, "cannot execute \"%s\"", inpspec); |
| 44 |
|
error(SYSTEM, errmsg); |
| 45 |
|
} |
| 46 |
< |
} else if ((infp = fopen(input, "r")) == NULL) { |
| 47 |
< |
sprintf(errmsg, "cannot open scene file \"%s\"", input); |
| 46 |
> |
} else if ((infp = fopen(inpspec, "r")) == NULL) { |
| 47 |
> |
sprintf(errmsg, "cannot open scene file \"%s\"", inpspec); |
| 48 |
|
error(SYSTEM, errmsg); |
| 49 |
|
} |
| 50 |
|
while ((c = getc(infp)) != EOF) { |
| 58 |
|
readobj(buf); |
| 59 |
|
} else { /* object */ |
| 60 |
|
ungetc(c, infp); |
| 61 |
< |
getobject(input, infp); |
| 61 |
> |
getobject(inpspec, infp); |
| 62 |
|
} |
| 63 |
|
} |
| 64 |
< |
if (input[0] == '!') |
| 64 |
> |
if (inpspec[0] == '!') |
| 65 |
|
pclose(infp); |
| 66 |
|
else |
| 67 |
|
fclose(infp); |
| 68 |
+ |
if (nobjects == lastobj) { |
| 69 |
+ |
sprintf(errmsg, "(%s): empty file", inpspec); |
| 70 |
+ |
error(WARNING, errmsg); |
| 71 |
+ |
} |
| 72 |
|
} |
| 73 |
|
|
| 74 |
|
|
| 128 |
|
} |
| 129 |
|
/* initialize */ |
| 130 |
|
objp->os = NULL; |
| 125 |
– |
objp->lastrno = -1; |
| 131 |
|
|
| 132 |
|
insertobject(obj); /* add to global structure */ |
| 133 |
|
} |