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

Comparing ray/src/util/glareval.c (file contents):
Revision 1.14 by greg, Fri Apr 19 17:41:06 1991 UTC vs.
Revision 2.6 by greg, Sat Feb 22 02:07:30 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1991 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   * Compute pixels for glare calculation
6   */
7  
8   #include "glare.h"
9 < #include <sys/param.h>
10 <                                        /* compute rtrace buffer size */
14 < #ifndef PIPE_BUF
15 < #define PIPE_BUF        512             /* hyperconservative */
16 < #endif
17 < #define MAXPIX          (PIPE_BUF/(6*sizeof(float)) - 1)
9 >                                        /* maximum rtrace buffer size */
10 > #define MAXPIX          (4096/(6*sizeof(float)))
11  
12 < #ifndef BSD
20 < #define vfork           fork
21 < #endif
22 <
23 < #define MAXSBUF         524268  /* maximum total size of scanline buffer */
12 > #define MAXSBUF         786432  /* maximum total size of scanline buffer */
13   #define HSIZE           317     /* size of scanline hash table */
14   #define NRETIRE         16      /* number of scanlines to retire at once */
15  
16 < int     rt_pid = -1;            /* process id for rtrace */
28 < int     fd_tort, fd_fromrt;     /* pipe descriptors */
16 > int     rt_pd[3] = {-1,-1,-1};  /* process id & descriptors for rtrace */
17  
18   FILE    *pictfp = NULL;         /* picture file pointer */
19   double  exposure;               /* picture exposure */
# Line 44 | Line 32 | typedef struct scan {
32   #define scandata(sl)    ((COLR *)((sl)+1))
33   #define shash(y)        ((y)%HSIZE)
34  
35 + static int      maxpix;         /* maximum number of pixels to buffer */
36 +
37   static SCAN     *freelist;              /* scanline free list */
38   static SCAN     *hashtab[HSIZE];        /* scanline hash table */
39  
40 + static long     scanbufsiz;             /* size of allocated scanline buffer */
41 +
42   static long     ncall = 0L;     /* number of calls to getpictscan */
43   static long     nread = 0L;     /* number of scanlines read */
44 + static long     nrecl = 0L;     /* number of scanlines reclaimed */
45  
46   static int      wrongformat = 0;
47  
# Line 77 | Line 70 | int    y;
70                          if (sl->y == y) {               /* reclaim */
71                                  sl->next = hashtab[hi];
72                                  hashtab[hi] = sl;
73 < #ifdef DEBUG
81 <                                if (verbose)
82 <                                        fprintf(stderr,
83 <                                                "%s: scanline %d reclaimed\n",
84 <                                                        progname, y);
85 < #endif
73 >                                nrecl++;
74                          }
75                          return(sl);
76                  }
# Line 146 | Line 134 | pict_stats()                   /* print out picture read statistics */
134   {
135          static long     lastcall = 0L;  /* ncall at last report */
136          static long     lastread = 0L;  /* nread at last report */
137 +        static long     lastrecl = 0L;  /* nrecl at last report */
138  
139          if (ncall == lastcall)
140                  return;
141 <        fprintf(stderr, "%s: %ld scanlines read in %ld calls\n",
142 <                        progname, nread-lastread, ncall-lastcall);
141 >        fprintf(stderr, "%s: %ld scanlines read (%ld reclaimed) in %ld calls\n",
142 >                progname, nread-lastread, nrecl-lastrecl, ncall-lastcall);
143          lastcall = ncall;
144          lastread = nread;
145 +        lastrecl = nrecl;
146   }
147   #endif
148  
# Line 162 | Line 152 | pict_val(vd)                   /* find picture value for view directio
152   FVECT   vd;
153   {
154          FVECT   pp;
155 <        double  vpx, vpy, vpz;
155 >        FVECT   ip;
156          COLOR   res;
157  
158          if (pictfp == NULL)
# Line 170 | Line 160 | FVECT  vd;
160          pp[0] = pictview.vp[0] + vd[0];
161          pp[1] = pictview.vp[1] + vd[1];
162          pp[2] = pictview.vp[2] + vd[2];
163 <        viewpixel(&vpx, &vpy, &vpz, &pictview, pp);
164 <        if (vpz <= FTINY || vpx < 0. || vpx >= 1. || vpy < 0. || vpy >= 1.)
163 >        viewloc(ip, &pictview, pp);
164 >        if (ip[2] <= FTINY || ip[0] < 0. || ip[0] >= 1. ||
165 >                        ip[1] < 0. || ip[1] >= 1.)
166                  return(-1.0);
167 <        colr_color(res, getpictscan((int)(vpy*pysiz))[(int)(vpx*pxsiz)]);
167 >        colr_color(res, getpictscan((int)(ip[1]*pysiz))[(int)(ip[0]*pxsiz)]);
168          return(luminance(res)/exposure);
169   }
170  
# Line 183 | Line 174 | getviewpix(vh, vv)             /* compute single view pixel */
174   int     vh, vv;
175   {
176          FVECT   dir;
177 <        float   rt_buf[6];
177 >        float   rt_buf[12];
178          double  res;
179  
180          if (compdir(dir, vh, vv) < 0)
# Line 191 | Line 182 | int    vh, vv;
182          npixinvw++;
183          if ((res = pict_val(dir)) >= 0.0)
184                  return(res);
185 <        if (rt_pid == -1) {
185 >        if (rt_pd[0] == -1) {
186                  npixmiss++;
187                  return(-1.0);
188          }
# Line 230 | Line 221 | float  *vb;
221                  npixinvw++;
222                  if ((vb[vh+hsize] = pict_val(dir)) >= 0.0)
223                          continue;
224 <                if (rt_pid == -1) {             /* missing information */
224 >                if (rt_pd[0] == -1) {           /* missing information */
225                          npixmiss++;
226                          continue;
227                  }
228                                                  /* send to rtrace */
229 <                if (n >= MAXPIX) {                      /* flush */
229 >                if (n >= maxpix) {                      /* flush */
230                          rt_compute(rt_buf, n);
231                          while (n-- > 0)
232                                  vb[buf_vh[n]+hsize] = luminance(rt_buf+3*n);
# Line 264 | Line 255 | rt_compute(pb, np)             /* process buffer through rtrace *
255   float   *pb;
256   int     np;
257   {
267        static float    nbuf[6] = {0.,0.,0.,0.,0.,0.};
268
258   #ifdef DEBUG
259          if (verbose && np > 1)
260                  fprintf(stderr, "%s: sending %d samples to rtrace...\n",
261                                  progname, np);
262   #endif
263 <        if (writebuf(fd_tort,(char *)pb,6*sizeof(float)*np) < 6*sizeof(float)*np
264 <                || writebuf(fd_tort,(char *)nbuf,sizeof(nbuf)) < sizeof(nbuf)) {
265 <                fprintf(stderr, "%s: error writing to rtrace process\n",
263 >        bzero(pb+6*np, 6*sizeof(float));
264 >        if (process(rt_pd, (char *)pb, (char *)pb, 3*sizeof(float)*(np+1),
265 >                        6*sizeof(float)*(np+1)) < 3*sizeof(float)*(np+1)) {
266 >                fprintf(stderr, "%s: rtrace communication error\n",
267                                  progname);
268                  exit(1);
269          }
280        if (readbuf(fd_fromrt, (char *)pb, 3*sizeof(float)*np)
281                        < 3*sizeof(float)*np) {
282                fprintf(stderr, "%s: error reading from rtrace process\n",
283                                progname);
284                exit(1);
285        }
270   }
271  
272  
273 + int
274   getexpos(s)                     /* get exposure from header line */
275   char    *s;
276   {
# Line 297 | Line 282 | char   *s;
282                  formatval(fmt, s);
283                  wrongformat = strcmp(fmt, COLRFMT);
284          }
285 +        return(0);
286   }
287  
288  
# Line 304 | Line 290 | open_pict(fn)                  /* open picture file */
290   char    *fn;
291   {
292          if ((pictfp = fopen(fn, "r")) == NULL) {
293 <                fprintf("%s: cannot open\n", fn);
293 >                fprintf(stderr, "%s: cannot open\n", fn);
294                  exit(1);
295          }
296          exposure = 1.0;
297          getheader(pictfp, getexpos, NULL);
298 <        if (wrongformat ||
299 <                        fgetresolu(&pxsiz, &pysiz, pictfp) != (YMAJOR|YDECR)) {
314 <                fprintf("%s: bad picture format\n", fn);
298 >        if (wrongformat || !fscnresolu(&pxsiz, &pysiz, pictfp)) {
299 >                fprintf(stderr, "%s: incompatible picture format\n", fn);
300                  exit(1);
301          }
302          initscans();
# Line 331 | Line 316 | close_pict()                   /* done with picture */
316   fork_rtrace(av)                 /* open pipe and start rtrace */
317   char    *av[];
318   {
319 <        int     p0[2], p1[2];
319 >        int     rval;
320  
321 <        if (pipe(p0) < 0 || pipe(p1) < 0) {
321 >        rval = open_process(rt_pd, av);
322 >        if (rval < 0) {
323                  perror(progname);
324                  exit(1);
325          }
326 <        if ((rt_pid = vfork()) == 0) {          /* if child */
327 <                close(p0[1]);
342 <                close(p1[0]);
343 <                if (p0[0] != 0) {       /* connect p0 to stdin */
344 <                        dup2(p0[0], 0);
345 <                        close(p0[0]);
346 <                }
347 <                if (p1[1] != 0) {       /* connect p1 to stdout */
348 <                        dup2(p1[1], 1);
349 <                        close(p1[1]);
350 <                }
351 <                execvp(av[0], av);
352 <                perror(av[0]);
353 <                _exit(127);
354 <        }
355 <        if (rt_pid == -1) {
356 <                perror(progname);
326 >        if (rval == 0) {
327 >                fprintf(stderr, "%s: command not found\n", av[0]);
328                  exit(1);
329          }
330 <        close(p0[0]);
331 <        close(p1[1]);
332 <        fd_tort = p0[1];
333 <        fd_fromrt = p1[0];
330 >        maxpix = rval/(6*sizeof(float));
331 >        if (maxpix > MAXPIX)
332 >                maxpix = MAXPIX;
333 >        maxpix--;
334   }
335  
336  
337   done_rtrace()                   /* wait for rtrace to finish */
338   {
339 <        int     pid, status;
339 >        int     status;
340  
341 <        if (rt_pid == -1)
342 <                return;
372 <        close(fd_tort);
373 <        close(fd_fromrt);
374 <        while ((pid = wait(&status)) != -1 && pid != rt_pid)
375 <                ;
376 <        if (pid == rt_pid && status != 0) {
341 >        status = close_process(rt_pd);
342 >        if (status > 0) {
343                  fprintf(stderr, "%s: bad status (%d) from rtrace\n",
344                                  progname, status);
345                  exit(1);
346          }
347 <        rt_pid = -1;
347 >        rt_pd[0] = -1;
348   }
349  
350  
385 int
386 readbuf(fd, bpos, siz)
387 int     fd;
388 char    *bpos;
389 int     siz;
390 {
391        register int    cc, nrem = siz;
392
393        while (nrem > 0 && (cc = read(fd, bpos, nrem)) > 0) {
394                bpos += cc;
395                nrem -= cc;
396        }
397        if (cc < 0)
398                return(cc);
399        return(siz-nrem);
400 }
401
402
403 int
404 writebuf(fd, bpos, siz)
405 char    *bpos;
406 int     siz;
407 {
408        register int    cc, nrem = siz;
409
410        while (nrem > 0 && (cc = write(fd, bpos, nrem)) > 0) {
411                bpos += cc;
412                nrem -= cc;
413        }
414        if (cc < 0)
415                return(cc);
416        return(siz-nrem);
417 }
418
419
351   SCAN *
352   scanretire()                    /* retire old scanlines to free list */
353   {
# Line 467 | Line 398 | initscans()                            /* initialize scanline buffers */
398          register SCAN   *ptr;
399          register int    i;
400                                          /* initialize positions */
401 <        scanpos = (long *)malloc(pysiz*sizeof(long));
401 >        scanpos = (long *)bmalloc(pysiz*sizeof(long));
402          if (scanpos == NULL)
403                  memerr("scanline positions");
404          for (i = pysiz-1; i >= 0; i--)
# Line 479 | Line 410 | initscans()                            /* initialize scanline buffers */
410                                          /* allocate scanline buffers */
411          scansize = sizeof(SCAN) + pxsiz*sizeof(COLR);
412   #ifdef ALIGN
413 <        scansize = scansize+(sizeof(ALIGN)-1)) & ~(sizeof(ALIGN)-1);
413 >        scansize = scansize+(sizeof(ALIGN)-1) & ~(sizeof(ALIGN)-1);
414   #endif
415          i = MAXSBUF / scansize;         /* compute number to allocate */
416          if (i > HSIZE)
417                  i = HSIZE;
418 <        scan_buf = malloc(i*scansize);  /* get in one big chunk */
418 >        scanbufsiz = i*scansize;
419 >        scan_buf = bmalloc(scanbufsiz); /* get in one big chunk */
420          if (scan_buf == NULL)
421                  memerr("scanline buffers");
422          ptr = (SCAN *)scan_buf;
# Line 501 | Line 433 | initscans()                            /* initialize scanline buffers */
433  
434   donescans()                             /* free up scanlines */
435   {
436 <        free(scan_buf);
437 <        free((char *)scanpos);
436 >        bfree(scan_buf, scanbufsiz);
437 >        bfree((char *)scanpos, pysiz*sizeof(long));
438   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines