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

Comparing ray/src/rt/ambient.c (file contents):
Revision 2.12 by greg, Mon Sep 21 12:07:31 1992 UTC vs.
Revision 2.16 by greg, Fri Jan 22 09:51:13 1993 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 6 | Line 6 | static char SCCSid[] = "$SunId$ LBL";
6  
7   /*
8   *  ambient.c - routines dealing with ambient (inter-reflected) component.
9 *
10 *     5/9/86
9   */
10  
11   #include  "ray.h"
# Line 37 | Line 35 | double minarad;                /* minimum ambient radius */
35  
36   static AMBTREE  atrunk;         /* our ambient trunk node */
37  
38 + static char  *ambfname = NULL;  /* ambient file name */
39   static FILE  *ambfp = NULL;     /* ambient file pointer */
40 + static int  nunflshed = 0;      /* number of unflushed ambient values */
41  
42   #define  AMBFLUSH       (BUFSIZ/AMBVALSIZ)
43  
# Line 46 | Line 46 | static FILE  *ambfp = NULL;    /* ambient file pointer */
46   #define  newambtree()   (AMBTREE *)calloc(8, sizeof(AMBTREE))
47  
48   extern long  ftell(), lseek();
49 < static int  initambfile(), avsave(), avinsert(), ambsync();
49 > static int  initambfile(), avsave(), avinsert();
50  
51  
52   setambres(ar)                           /* set ambient resolution */
# Line 75 | Line 75 | char  *afile;
75                                                  /* init ambient limits */
76          setambres(ambres);
77                                                  /* open ambient file */
78 <        if (afile != NULL)
78 >        if ((ambfname = afile) != NULL) {
79                  if ((ambfp = fopen(afile, "r+")) != NULL) {
80                          initambfile(0);
81                          headlen = ftell(ambfp);
# Line 91 | Line 91 | char  *afile;
91                                          afile);
92                          error(SYSTEM, errmsg);
93                  }
94 +                nunflshed++;    /* lie */
95 +                ambsync();
96 +        }
97   }
98  
99  
# Line 167 | Line 170 | AMBTREE         *at;
170   FVECT  c0;
171   double  s;
172   {
170        extern double  sqrt();
173          double  d, e1, e2, wt, wsum;
174          COLOR  ct;
175          FVECT  ck0;
# Line 323 | Line 325 | int  creat;
325                  fputformat(AMBFMT, ambfp);
326                  putc('\n', ambfp);
327                  putambmagic(ambfp);
328 <                fflush(ambfp);
329 < #ifndef  NIX
330 <                sync();                 /* protect against NFS buffering */
331 < #endif
330 <        } else if (checkheader(ambfp, AMBFMT, NULL) < 0 || !hasambmagic(ambfp))
331 <                error(USER, "bad ambient file");
328 >        } else if (checkheader(ambfp, AMBFMT, NULL) < 0 || !hasambmagic(ambfp)) {
329 >                sprintf(errmsg, "bad ambient file \"%s\"", ambfname);
330 >                error(USER, errmsg);
331 >        }
332   }
333  
334  
# Line 336 | Line 336 | static
336   avsave(av)                              /* insert and save an ambient value */
337   AMBVAL  *av;
338   {
339        static int  nunflshed = 0;
340
339          avinsert(av, &atrunk, thescene.cuorg, thescene.cusize);
340          if (ambfp == NULL)
341                  return;
342          if (writambval(av, ambfp) < 0)
343                  goto writerr;
344 <        if (++nunflshed >= AMBFLUSH) {
344 >        if (++nunflshed >= AMBFLUSH)
345                  if (ambsync() == EOF)
346                          goto writerr;
349                nunflshed = 0;
350        }
347          return;
348   writerr:
349 <        error(SYSTEM, "error writing ambient file");
349 >        sprintf(errmsg, "error writing ambient file \"%s\"", ambfname);
350 >        error(SYSTEM, errmsg);
351   }
352  
353  
# Line 393 | Line 390 | memerr:
390  
391   #ifdef  NIX
392  
393 < static
393 > int
394   ambsync()                       /* flush ambient file */
395   {
396 +        if (nunflshed == 0)
397 +                return(0);
398 +        nunflshed = 0;
399          return(fflush(ambfp));
400   }
401  
402   #else
403  
404 < #include  <fcntl.h>
405 < #include  <sys/types.h>
406 < #include  <sys/stat.h>
407 <
408 < static
404 > int
405   ambsync()                       /* synchronize ambient file */
406   {
407          static FILE  *ambinp = NULL;
408 +        static long  lastpos = -1;
409          struct flock  fls;
410 <        struct stat  sts;
410 >        long  flen;
411          AMBVAL  avs;
415        long  lastpos, flen;
412          register int  n;
413 +
414 +        if (nunflshed == 0)
415 +                return(0);
416                                  /* gain exclusive access */
417          fls.l_type = F_WRLCK;
418          fls.l_whence = 0;
# Line 421 | Line 420 | ambsync()                      /* synchronize ambient file */
420          fls.l_len = 0L;
421          if (fcntl(fileno(ambfp), F_SETLKW, &fls) < 0)
422                  error(SYSTEM, "cannot lock ambient file");
423 +        if (lastpos < 0)        /* initializing */
424 +                goto syncend;
425                                  /* see if file has grown */
426 <        lastpos = lseek(fileno(ambfp), 0L, 1);  /* get previous position */
427 <        if (fstat(fileno(ambfp), &sts) < 0)     /* get current length */
428 <                error(SYSTEM, "cannot stat ambient file");
429 <        flen = sts.st_size;
430 <        if (n = (flen - lastpos)/AMBVALSIZ) {   /* file has grown */
431 <                if (ambinp == NULL)             /* use duplicate file */
432 <                        ambinp = fdopen(dup(fileno(ambfp)), "r");
433 <                while (n--) {                   /* load contributed values */
426 >        if ((flen = lseek(fileno(ambfp), 0L, 2)) < 0)
427 >                error(SYSTEM, "cannot seek on ambient file");
428 >        if (n = flen - lastpos) {               /* file has grown */
429 >                if (ambinp == NULL) {
430 >                        ambinp = fopen(ambfname, "r");
431 >                        if (ambinp == NULL)
432 >                                error(SYSTEM, "fopen failed in ambsync");
433 >                }
434 >                if (fseek(ambinp, lastpos, 0) < 0)
435 >                        error(SYSTEM, "fseek failed in ambsync");
436 >                while (n >= AMBVALSIZ) {        /* load contributed values */
437                          readambval(&avs, ambinp);
438                          avinsert(&avs,&atrunk,thescene.cuorg,thescene.cusize);
439 <                }                               /* moves shared file pointer */
440 <                if (n = (flen - lastpos)%AMBVALSIZ)     /* alignment */
439 >                        n -= AMBVALSIZ;
440 >                }
441 >                if (n)                          /* alignment */
442                          lseek(fileno(ambfp), flen-n, 0);
443          }
444 + syncend:
445          n = fflush(ambfp);                      /* calls write() at last */
446 +        lastpos = lseek(fileno(ambfp), 0L, 1);
447          fls.l_type = F_UNLCK;                   /* release file */
448          fcntl(fileno(ambfp), F_SETLKW, &fls);
449 +        nunflshed = 0;
450          return(n);
451   }
452  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines