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.63 by greg, Thu Sep 13 20:13:16 2007 UTC vs.
Revision 2.68 by greg, Thu Oct 14 05:54:44 2010 UTC

# Line 25 | Line 25 | static const char      RCSid[] = "$Id$";
25   extern char  *shm_boundary;     /* memory sharing boundary */
26  
27   #ifndef  MAXASET
28 < #define  MAXASET        2047    /* maximum number of elements in ambient set */
28 > #define  MAXASET        4095    /* maximum number of elements in ambient set */
29   #endif
30   OBJECT  ambset[MAXASET+1]={0};  /* ambient include/exclude set */
31  
# Line 140 | Line 140 | extern void
140   setambient(void)                                /* initialize calculation */
141   {
142          int     readonly = 0;
143 <        long  pos, flen;
143 >        long    flen;
144          AMBVAL  amb;
145                                                  /* make sure we're fresh */
146          ambdone();
# Line 160 | Line 160 | setambient(void)                               /* initialize calculation */
160                  readonly = (ambfp = fopen(ambfile, "r")) != NULL;
161          if (ambfp != NULL) {
162                  initambfile(0);                 /* file exists */
163 <                pos = ftell(ambfp);
163 >                lastpos = ftell(ambfp);
164                  while (readambval(&amb, ambfp))
165                          avinsert(avstore(&amb));
166                  nambshare = nambvals;           /* share loaded values */
# Line 174 | Line 174 | setambient(void)                               /* initialize calculation */
174                          return;                 /* avoid ambsync() */
175                  }
176                                                  /* align file pointer */
177 <                pos += (long)nambvals*AMBVALSIZ;
177 >                lastpos += (long)nambvals*AMBVALSIZ;
178                  flen = lseek(fileno(ambfp), (off_t)0, SEEK_END);
179 <                if (flen != pos) {
179 >                if (flen != lastpos) {
180                          sprintf(errmsg,
181                          "ignoring last %ld values in ambient file (corrupted)",
182 <                                        (flen - pos)/AMBVALSIZ);
182 >                                        (flen - lastpos)/AMBVALSIZ);
183                          error(WARNING, errmsg);
184 <                        fseek(ambfp, pos, 0);
184 >                        fseek(ambfp, lastpos, SEEK_SET);
185   #ifndef _WIN32 /* XXX we need a replacement for that one */
186 <                        ftruncate(fileno(ambfp), (off_t)pos);
186 >                        ftruncate(fileno(ambfp), (off_t)lastpos);
187   #endif
188                  }
189          } else if ((ambfp = fopen(ambfile, "w+")) != NULL) {
190                  initambfile(1);                 /* else create new file */
191 +                fflush(ambfp);
192 +                lastpos = ftell(ambfp);
193          } else {
194                  sprintf(errmsg, "cannot open ambient file \"%s\"", ambfile);
195                  error(SYSTEM, errmsg);
196          }
197 <        ambsync();                      /* load previous values */
197 > #ifdef  F_SETLKW
198 >        aflock(F_UNLCK);                        /* release file */
199 > #endif
200   }
201  
202  
# Line 507 | Line 511 | extambient(            /* extrapolate value at pv, nv */
511  
512   static void
513   initambfile(            /* initialize ambient file */
514 <        int  creat
514 >        int  cre8
515   )
516   {
517          extern char  *progname, *octname;
# Line 520 | Line 524 | initambfile(           /* initialize ambient file */
524          if (mybuf == NULL)
525                  mybuf = (char *)bmalloc(BUFSIZ+8);
526          setbuf(ambfp, mybuf);
527 <        if (creat) {                    /* new file */
527 >        if (cre8) {                     /* new file */
528                  newheader("RADIANCE", ambfp);
529                  fprintf(ambfp, "%s -av %g %g %g -aw %d -ab %d -aa %g ",
530                                  progname, colval(ambval,RED),
# Line 529 | Line 533 | initambfile(           /* initialize ambient file */
533                  fprintf(ambfp, "-ad %d -as %d -ar %d ",
534                                  ambdiv, ambssamp, ambres);
535                  if (octname != NULL)
536 <                        printargs(1, &octname, ambfp);
537 <                else
534 <                        fputc('\n', ambfp);
536 >                        fputs(octname, ambfp);
537 >                fputc('\n', ambfp);
538                  fprintf(ambfp, "SOFTWARE= %s\n", VersionID);
539                  fputnow(ambfp);
540                  fputformat(AMBFMT, ambfp);
541 <                putc('\n', ambfp);
541 >                fputc('\n', ambfp);
542                  putambmagic(ambfp);
543          } else if (checkheader(ambfp, AMBFMT, NULL) < 0 || !hasambmagic(ambfp))
544                  error(USER, "bad ambient file");
# Line 863 | Line 866 | aflock(                        /* lock/unlock ambient file */
866   {
867          static struct flock  fls;       /* static so initialized to zeroes */
868  
869 +        if (typ == fls.l_type)          /* already called? */
870 +                return;
871          fls.l_type = typ;
872          if (fcntl(fileno(ambfp), F_SETLKW, &fls) < 0)
873                  error(SYSTEM, "cannot (un)lock ambient file");
# Line 876 | Line 881 | ambsync(void)                  /* synchronize ambient file */
881          AMBVAL  avs;
882          register int  n;
883  
884 <        if (lastpos < 0)        /* initializing (locked in initambfile) */
885 <                goto syncend;
884 >        if (ambfp == NULL)      /* no ambient file? */
885 >                return(0);
886                                  /* gain appropriate access */
887          aflock(nunflshed ? F_WRLCK : F_RDLCK);
888                                  /* see if file has grown */
889          if ((flen = lseek(fileno(ambfp), (off_t)0, SEEK_END)) < 0)
890                  goto seekerr;
891 <        if ( (n = flen - lastpos) ) {           /* file has grown */
891 >        if ((n = flen - lastpos) > 0) {         /* file has grown */
892                  if (ambinp == NULL) {           /* use duplicate filedes */
893                          ambinp = fdopen(dup(fileno(ambfp)), "r");
894                          if (ambinp == NULL)
895                                  error(SYSTEM, "fdopen failed in ambsync");
896                  }
897 <                if (fseek(ambinp, lastpos, 0) < 0)
897 >                if (fseek(ambinp, lastpos, SEEK_SET) < 0)
898                          goto seekerr;
899                  while (n >= AMBVALSIZ) {        /* load contributed values */
900                          if (!readambval(&avs, ambinp)) {
# Line 902 | Line 907 | ambsync(void)                  /* synchronize ambient file */
907                          avinsert(avstore(&avs));
908                          n -= AMBVALSIZ;
909                  }
910 +                lastpos = flen - n;
911                  /*** seek always as safety measure
912                  if (n) ***/                     /* alignment */
913 <                        if (lseek(fileno(ambfp), (off_t)(flen-n), SEEK_SET) < 0)
913 >                        if (lseek(fileno(ambfp), (off_t)lastpos, SEEK_SET) < 0)
914                                  goto seekerr;
915          }
910 #ifdef  DEBUG
911        if (ambfp->_ptr - ambfp->_base != nunflshed*AMBVALSIZ) {
912                sprintf(errmsg, "ambient file buffer at %d rather than %d",
913                                ambfp->_ptr - ambfp->_base,
914                                nunflshed*AMBVALSIZ);
915                error(CONSISTENCY, errmsg);
916        }
917 #endif
918 syncend:
916          n = fflush(ambfp);                      /* calls write() at last */
917 <        if ((lastpos = lseek(fileno(ambfp), (off_t)0, SEEK_CUR)) < 0)
917 >        if (n != EOF)
918 >                lastpos += (long)nunflshed*AMBVALSIZ;
919 >        else if ((lastpos = lseek(fileno(ambfp), (off_t)0, SEEK_CUR)) < 0)
920                  goto seekerr;
921 +                
922          aflock(F_UNLCK);                        /* release file */
923          nunflshed = 0;
924          return(n);
# Line 932 | Line 932 | seekerr:
932   extern int
933   ambsync(void)                   /* flush ambient file */
934   {
935 +        if (ambfp == NULL)
936 +                return(0);
937          nunflshed = 0;
938          return(fflush(ambfp));
939   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines