ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/readobj.c
(Generate patch)

Comparing ray/src/common/readobj.c (file contents):
Revision 2.3 by greg, Fri Jun 4 15:08:20 1993 UTC vs.
Revision 2.4 by greg, Sat Jan 1 09:18:47 1994 UTC

# Line 1 | Line 1
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";
# Line 24 | Line 24 | OBJREC  *objblock[MAXOBJBLK];          /* our objects */
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  *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) {
# Line 56 | Line 58 | char  *input;
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  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines