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

Comparing ray/src/rt/rpict.c (file contents):
Revision 2.24 by greg, Tue May 25 10:30:08 1993 UTC vs.
Revision 2.38 by greg, Mon Aug 29 15:42:34 1994 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1992 Regents of the University of California */
1 > /* Copyright (c) 1993 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 12 | Line 12 | static char SCCSid[] = "$SunId$ LBL";
12  
13   #include  "ray.h"
14  
15 + #include  <sys/types.h>
16 +
17 + #ifndef NIX
18   #ifdef BSD
19   #include  <sys/time.h>
20   #include  <sys/resource.h>
21 + #else
22 + #include  <sys/times.h>
23 + #include  <sys/utsname.h>
24 + #include  <unistd.h>
25   #endif
26 + #endif
27  
28 + extern time_t   time();
29 +
30   #include  <signal.h>
31  
32   #include  "view.h"
# Line 77 | Line 87 | int  ralrm = 0;                                /* seconds between reports */
87  
88   double  pctdone = 0.0;                  /* percentage done */
89  
90 < long  tlastrept = 0L;                   /* time at last report */
90 > time_t  tlastrept = 0L;                 /* time at last report */
91  
92 < extern long  time();
83 < extern long  tstart;                    /* starting time */
92 > extern time_t  tstart;                  /* starting time */
93  
94   extern unsigned long  nrays;            /* number of rays traced */
95  
# Line 94 | Line 103 | extern char  *mktemp();
103  
104   double  pixvalue();
105  
106 + #ifdef NIX
107 + #define  file_exists(f) (access(f,F_OK)==0)
108 + #else
109 + #include  <sys/types.h>
110 + #include  <sys/stat.h>
111 + int
112 + file_exists(fname)                              /* ordinary file exists? */
113 + char  *fname;
114 + {
115 +        struct stat  sbuf;
116 +        if (stat(fname, &sbuf) < 0) return(0);
117 +        return((sbuf.st_mode & S_IFREG) != 0);
118 + }
119 + #endif
120  
121 +
122   quit(code)                      /* quit program */
123   int  code;
124   {
# Line 106 | Line 130 | int  code;
130   }
131  
132  
133 < #ifdef BSD
133 > #ifndef NIX
134   report()                /* report progress */
135   {
136 +        double  u, s;
137 + #ifdef BSD
138 +        char  hostname[257];
139          struct rusage  rubuf;
140 <        double  t;
140 > #else
141 >        struct tms  tbuf;
142 >        struct utsname  nambuf;
143 >        double  period;
144 > #define hostname  nambuf.nodename
145 > #endif
146  
147 +        tlastrept = time((time_t *)NULL);
148 + #ifdef BSD
149          getrusage(RUSAGE_SELF, &rubuf);
150 <        t = (rubuf.ru_utime.tv_usec + rubuf.ru_stime.tv_usec) / 1e6;
151 <        t += rubuf.ru_utime.tv_sec + rubuf.ru_stime.tv_sec;
150 >        u = rubuf.ru_utime.tv_sec + rubuf.ru_utime.tv_usec/1e6;
151 >        s = rubuf.ru_stime.tv_sec + rubuf.ru_stime.tv_usec/1e6;
152          getrusage(RUSAGE_CHILDREN, &rubuf);
153 <        t += (rubuf.ru_utime.tv_usec + rubuf.ru_stime.tv_usec) / 1e6;
154 <        t += rubuf.ru_utime.tv_sec + rubuf.ru_stime.tv_sec;
153 >        u += rubuf.ru_utime.tv_sec + rubuf.ru_utime.tv_usec/1e6;
154 >        s += rubuf.ru_stime.tv_sec + rubuf.ru_stime.tv_usec/1e6;
155 >        gethostname(hostname, sizeof(hostname));
156 > #else
157 >        times(&tbuf);
158 > #ifdef _SC_CLK_TCK
159 >        period = 1.0 / sysconf(_SC_CLK_TCK);
160 > #else
161 >        period = 1.0 / 60.0;
162 > #endif
163 >        u = ( tbuf.tms_utime + tbuf.tms_cutime ) * period;
164 >        s = ( tbuf.tms_stime + tbuf.tms_cstime ) * period;
165 >        uname(&nambuf);
166 > #endif
167  
168 <        sprintf(errmsg, "%lu rays, %4.2f%% done after %5.4f CPU hours\n",
169 <                        nrays, pctdone, t/3600.0);
168 >        sprintf(errmsg,
169 >                "%lu rays, %4.2f%% after %.3fu %.3fs %.3fr hours on %s\n",
170 >                        nrays, pctdone, u/3600., s/3600.,
171 >                        (tlastrept-tstart)/3600., hostname);
172          eputs(errmsg);
173 <        tlastrept = time((long *)0);
173 > #ifndef BSD
174 >        signal(SIGCONT, report);
175 > #undef hostname
176 > #endif
177   }
178   #else
179   report()                /* report progress */
180   {
181 <        tlastrept = time((long *)0);
182 <        sprintf(errmsg, "%lu rays, %4.2f%% done after %5.4f hours\n",
181 >        tlastrept = time((time_t *)NULL);
182 >        sprintf(errmsg, "%lu rays, %4.2f%% after %5.4f hours\n",
183                          nrays, pctdone, (tlastrept-tstart)/3600.0);
184          eputs(errmsg);
134        signal(SIGCONT, report);
185   }
186   #endif
187  
# Line 153 | Line 203 | char  *pout, *zout, *prvr;
203   {
204          extern char  *rindex(), *strncpy(), *strcat(), *strcpy();
205          char  fbuf[128], fbuf2[128];
206 +        int  npicts;
207          register char  *cp;
208          RESOLU  rs;
209          double  pa;
# Line 189 | Line 240 | char  *pout, *zout, *prvr;
240                                  cp--;
241                          strcpy(cp, RFTEMPLATE);
242                          prvr = mktemp(fbuf2);
243 <                        if (rename(fbuf, prvr) < 0 && errno != ENOENT) {
244 <                                sprintf(errmsg,
243 >                        if (rename(fbuf, prvr) < 0)
244 >                                if (errno == ENOENT) {  /* ghost file */
245 >                                        sprintf(errmsg,
246 >                                                "new output file \"%s\"",
247 >                                                fbuf);
248 >                                        error(WARNING, errmsg);
249 >                                        prvr = NULL;
250 >                                } else {                /* serious error */
251 >                                        sprintf(errmsg,
252                                          "cannot rename \"%s\" to \"%s\"",
253                                                  fbuf, prvr);
254 <                                error(SYSTEM, errmsg);
255 <                        }
254 >                                        error(SYSTEM, errmsg);
255 >                                }
256                  }
257          }
258 <                                        /* render sequence */
258 >        npicts = 0;                     /* render sequence */
259          do {
260                  if (seq && nextview(stdin) == EOF)
261                          break;
262 +                pctdone = 0.0;
263                  if (pout != NULL) {
264                          sprintf(fbuf, pout, seq);
265 +                        if (file_exists(fbuf)) {
266 +                                if (prvr != NULL || !strcmp(fbuf, pout)) {
267 +                                        sprintf(errmsg,
268 +                                                "output file \"%s\" exists",
269 +                                                fbuf);
270 +                                        error(USER, errmsg);
271 +                                }
272 +                                continue;               /* don't clobber */
273 +                        }
274                          if (freopen(fbuf, "w", stdout) == NULL) {
275                                  sprintf(errmsg,
276                                          "cannot open output file \"%s\"", fbuf);
# Line 250 | Line 318 | char  *pout, *zout, *prvr;
318                          cp = NULL;
319                  render(cp, prvr);
320                  prvr = NULL;
321 +                npicts++;
322          } while (seq++);
323 +                                        /* check that we did something */
324 +        if (npicts == 0)
325 +                error(WARNING, "no output produced");
326   }
327  
328  
# Line 296 | Line 368 | char  *zfile, *oldfile;
368                          sampdens[i] = hstep;
369          } else
370                  sampdens = NULL;
371 <                                        /* open z file */
371 >                                        /* open z-file */
372          if (zfile != NULL) {
373                  if ((zfd = open(zfile, O_WRONLY|O_CREAT, 0666)) == -1) {
374 <                        sprintf(errmsg, "cannot open z file \"%s\"", zfile);
374 >                        sprintf(errmsg, "cannot open z-file \"%s\"", zfile);
375                          error(SYSTEM, errmsg);
376                  }
377   #ifdef MSDOS
# Line 321 | Line 393 | char  *zfile, *oldfile;
393          i = salvage(oldfile);
394          if (zfd != -1 && i > 0 &&
395                          lseek(zfd, (long)i*hres*sizeof(float), 0) == -1)
396 <                error(SYSTEM, "z file seek error in render");
396 >                error(SYSTEM, "z-file seek error in render");
397          pctdone = 100.0*i/vres;
398          if (ralrm > 0)                  /* report init stats */
399                  report();
# Line 365 | Line 437 | char  *zfile, *oldfile;
437                          goto writerr;
438                                                          /* record progress */
439                  pctdone = 100.0*(vres-1-ypos)/vres;
440 <                if (ralrm > 0 && time((long *)0) >= tlastrept+ralrm)
440 >                if (ralrm > 0 && time((time_t *)NULL) >= tlastrept+ralrm)
441                          report();
442   #ifndef  BSD
443                  else
# Line 428 | Line 500 | int  xres, y, xstep;
500                          b = fillsample(scanline, zline, 0, y, i, 0, b/2);
501                  else
502                          b = fillsample(scanline+i-xstep,
503 <                                        zline ? zline+i-xstep : NULL,
503 >                                        zline ? zline+i-xstep : (float *)NULL,
504                                          i-xstep, y, xstep, 0, b/2);
505                  if (sd) *sd++ = nc & 1 ? bl : b;
506                  bl = b;
# Line 456 | Line 528 | int  xres, y, ysize;
528                          zline[ysize] = zbar[ysize][i];
529                  }
530                  
531 <                b = fillsample(vline, zbar[0] ? zline : NULL,
531 >                b = fillsample(vline, zbar[0] ? zline : (float *)NULL,
532                                  i, y, 0, ysize, b/2);
533                  
534                  for (j = 1; j < ysize; j++)
# Line 514 | Line 586 | int  b;
586                                                          /* recurse */
587          ncut += fillsample(colline, zline, x, y, xlen>>1, ylen>>1, (b-1)/2);
588          
589 <        ncut += fillsample(colline+(len>>1), zline ? zline+(len>>1) : NULL,
589 >        ncut += fillsample(colline+(len>>1),
590 >                        zline ? zline+(len>>1) : (float *)NULL,
591                          x+(xlen>>1), y+(ylen>>1),
592                          xlen-(xlen>>1), ylen-(ylen>>1), b/2);
593  
# Line 556 | Line 629 | char  *oldfile;
629          int  x, y;
630  
631          if (oldfile == NULL)
632 <                return(0);
633 <        
632 >                goto gotzip;
633 >
634          if ((fp = fopen(oldfile, "r")) == NULL) {
635                  sprintf(errmsg, "cannot open recover file \"%s\"", oldfile);
636                  error(WARNING, errmsg);
637 <                return(0);
637 >                goto gotzip;
638          }
639   #ifdef MSDOS
640          setmode(fileno(fp), O_BINARY);
# Line 570 | Line 643 | char  *oldfile;
643          getheader(fp, NULL, NULL);
644                                  /* get picture size */
645          if (!fscnresolu(&x, &y, fp)) {
646 <                sprintf(errmsg, "bad recover file \"%s\"", oldfile);
646 >                sprintf(errmsg, "bad recover file \"%s\" - not removed",
647 >                                oldfile);
648                  error(WARNING, errmsg);
649                  fclose(fp);
650 <                return(0);
650 >                goto gotzip;
651          }
652  
653          if (x != hres || y != vres) {
# Line 597 | Line 671 | char  *oldfile;
671          fclose(fp);
672          unlink(oldfile);
673          return(y);
674 + gotzip:
675 +        if (fflush(stdout) == EOF)
676 +                error(SYSTEM, "error writing picture header");
677 +        return(0);
678   writerr:
679          sprintf(errmsg, "write error during recovery of \"%s\"", oldfile);
680          error(SYSTEM, errmsg);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines