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

Comparing ray/src/hd/holofile.c (file contents):
Revision 3.29 by gwlarson, Wed Nov 11 10:56:07 1998 UTC vs.
Revision 3.40 by gwlarson, Fri Mar 12 09:37:48 1999 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1998 Silicon Graphics, Inc. */
1 > /* Copyright (c) 1999 Silicon Graphics, Inc. */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ SGI";
# Line 13 | Line 13 | static char SCCSid[] = "$SunId$ SGI";
13   #include "holo.h"
14  
15   #ifndef CACHESIZE
16 < #define CACHESIZE       16      /* default cache size (Mbytes, 0==inf) */
16 > #ifdef BIGMEM
17 > #define CACHESIZE       17      /* default cache size (Mbytes, 0==inf) */
18 > #else
19 > #define CACHESIZE       5
20   #endif
21 + #endif
22   #ifndef FREEBEAMS
23   #define FREEBEAMS       1500    /* maximum beams to free at a time */
24   #endif
25   #ifndef PCTFREE
26   #define PCTFREE         15      /* maximum fraction to free (%) */
27   #endif
28 < #ifndef MAXFRAG
29 < #define MAXFRAG         32767   /* maximum fragments/file to track (0==inf) */
28 > #ifndef MAXFRAGB
29 > #define MAXFRAGB        16      /* fragment blocks/file to track (0==inf) */
30   #endif
31 + #ifndef FF_DEFAULT
32 +                                /* when to free a beam fragment */
33 + #define FF_DEFAULT      (FF_WRITE|FF_KILL)
34 + #endif
35   #ifndef MINDIRSEL
36                                  /* minimum directory seek length */
37   #define MINDIRSEL       (4*BUFSIZ/sizeof(BEAMI))
# Line 34 | Line 42 | static char SCCSid[] = "$SunId$ SGI";
42   #define read    readbuf
43   #endif
44  
45 < #define FRAGBLK         256     /* number of fragments to allocate at a time */
45 > #define FRAGBLK         512     /* number of fragments to allocate at a time */
46  
47 + int     hdfragflags = FF_DEFAULT;       /* tells when to free fragments */
48   unsigned        hdcachesize = CACHESIZE*1024*1024;      /* target cache size */
49 < unsigned long   hdclock;        /* clock value */
49 > unsigned long   hdclock;                /* clock value */
50  
51   HOLO    *hdlist[HDMAX+1];       /* holodeck pointers (NULL term.) */
52  
# Line 52 | Line 61 | static struct fraglist {
61   static int      nhdfragls;      /* size of hdfragl array */
62  
63  
64 + HOLO *
65 + hdalloc(hproto)         /* allocate and set holodeck section based on grid */
66 + HDGRID  *hproto;
67 + {
68 +        HOLO    hdhead;
69 +        register HOLO   *hp;
70 +        int     n;
71 +                                /* copy grid to temporary header */
72 +        bcopy((char *)hproto, (char *)&hdhead, sizeof(HDGRID));
73 +                                /* compute grid vectors and sizes */
74 +        hdcompgrid(&hdhead);
75 +                                /* allocate header with directory */
76 +        n = sizeof(HOLO)+nbeams(&hdhead)*sizeof(BEAMI);
77 +        if ((hp = (HOLO *)malloc(n)) == NULL)
78 +                return(NULL);
79 +                                /* copy header information */
80 +        copystruct(hp, &hdhead);
81 +                                /* allocate and clear beam list */
82 +        hp->bl = (BEAM **)malloc((nbeams(hp)+1)*sizeof(BEAM *)+sizeof(BEAM));
83 +        if (hp->bl == NULL) {
84 +                free((char *)hp);
85 +                return(NULL);
86 +        }
87 +        bzero((char *)hp->bl, (nbeams(hp)+1)*sizeof(BEAM *)+sizeof(BEAM));
88 +        hp->bl[0] = (BEAM *)(hp->bl+nbeams(hp)+1);      /* set blglob(hp) */
89 +        hp->fd = -1;
90 +        hp->dirty = 0;
91 +        hp->priv = NULL;
92 +                                /* clear beam directory */
93 +        bzero((char *)hp->bi, (nbeams(hp)+1)*sizeof(BEAMI));
94 +        return(hp);             /* all is well */
95 + }
96 +
97 +
98   char *
99   hdrealloc(ptr, siz, rout)       /* (re)allocate memory, retry then error */
100   char    *ptr;
# Line 182 | Line 225 | memerr:
225   }
226  
227  
228 < markdirty(hp, i)                /* mark holodeck directory position dirty */
228 > hdmarkdirty(hp, i)              /* mark holodeck directory position dirty */
229   register HOLO   *hp;
230   int     i;
231   {
# Line 194 | Line 237 | int    i;
237                  if (lseek(hp->fd, biglob(hp)->fo+(i-1)*sizeof(BEAMI), 0) < 0
238                                  || write(hp->fd, (char *)&smudge,
239                                          sizeof(BEAMI)) != sizeof(BEAMI))
240 <                        error(SYSTEM, "seek/write error in markdirty");
240 >                        error(SYSTEM, "seek/write error in hdmarkdirty");
241                  hp->dirseg[0].s = i;
242                  hp->dirseg[0].n = 1;
243                  return;
# Line 349 | Line 392 | int    nr;                     /* number of new rays desired */
392          RAYVAL  *p;
393          int     n;
394  
395 <        if (nr <= 0)
396 <                return(NULL);
397 <        if (i < 1 | i > nbeams(hp))
355 <                error(CONSISTENCY, "bad beam index given to hdnewrays");
395 >        if (nr <= 0) return(NULL);
396 >        CHECK(i < 1 | i > nbeams(hp),
397 >                        CONSISTENCY, "bad beam index given to hdnewrays");
398          if (hp->bl[i] != NULL)
399                  hp->bl[i]->tick = hdclock;      /* preempt swap */
400          if (hdcachesize > 0 && hdmemuse(0) >= hdcachesize)
# Line 361 | Line 403 | int    nr;                     /* number of new rays desired */
403                  n = hp->bi[i].nrd + nr;
404                  hp->bl[i] = (BEAM *)hdrealloc(NULL, hdbsiz(n), "hdnewrays");
405                  blglob(hp)->nrm += n;
406 <                if (n = hp->bl[i]->nrm = hp->bi[i].nrd) {
406 >                if ((n = hp->bl[i]->nrm = hp->bi[i].nrd)) {
407                          errno = 0;
408                          if (lseek(hp->fd, hp->bi[i].fo, 0) < 0)
409                                  error(SYSTEM, "seek error on holodeck file");
# Line 375 | Line 417 | int    nr;                     /* number of new rays desired */
417                                  hdbsiz(hp->bl[i]->nrm + nr), "hdnewrays");
418                  blglob(hp)->nrm += nr;
419          }
420 +        if (hdfragflags&FF_ALLOC && hp->bi[i].nrd)
421 +                hdfreefrag(hp, i);              /* relinquish old fragment */
422          p = hdbray(hp->bl[i]) + hp->bl[i]->nrm;
423          hp->bl[i]->nrm += nr;                   /* update in-core structure */
424          bzero((char *)p, nr*sizeof(RAYVAL));
# Line 390 | Line 434 | register int   i;
434   {
435          register int    n;
436  
437 <        if (i < 1 | i > nbeams(hp))
438 <                error(CONSISTENCY, "bad beam index given to hdgetbeam");
437 >        CHECK(i < 1 | i > nbeams(hp),
438 >                        CONSISTENCY, "bad beam index given to hdgetbeam");
439          if (hp->bl[i] == NULL) {                /* load from disk */
440                  if (!(n = hp->bi[i].nrd))
441                          return(NULL);
# Line 405 | Line 449 | register int   i;
449                  n *= sizeof(RAYVAL);
450                  if (read(hp->fd, (char *)hdbray(hp->bl[i]), n) != n)
451                          error(SYSTEM, "error reading beam from holodeck file");
452 +                if (hdfragflags&FF_READ)
453 +                        hdfreefrag(hp, i);      /* relinquish old frag. */
454          }
455          blglob(hp)->tick = hp->bl[i]->tick = hdclock++; /* update LRU clock */
456          return(hp->bl[i]);
# Line 442 | Line 488 | int    (*bf)();                /* callback function (optional) */
488                                          /* precheck consistency */
489          if (n <= 0) return;
490          for (i = n; i--; )
491 <                if (hb[i].h == NULL || hb[i].b < 1 | hb[i].b > nbeams(hb[i].h))
491 >                if (hb[i].h==NULL || hb[i].b<1 | hb[i].b>nbeams(hb[i].h))
492                          error(CONSISTENCY, "bad beam in hdloadbeams");
493                                          /* sort list for optimal access */
494          qsort((char *)hb, n, sizeof(HDBEAMI), hdfilord);
# Line 475 | Line 521 | int    (*bf)();                /* callback function (optional) */
521   }
522  
523  
524 < hdfreefrag(fd, bi)                      /* free a file fragment */
525 < int     fd;
526 < register BEAMI  *bi;
524 > int
525 > hdfreefrag(hp, i)                       /* free a file fragment */
526 > HOLO    *hp;
527 > int     i;
528   {
529 +        register BEAMI  *bi = &hp->bi[i];
530          register struct fraglist        *f;
531          register int    j, k;
532  
533 <        if (bi->nrd == 0)
534 <                return;
535 < #ifdef DEBUG
536 <        if (fd < 0 | fd >= nhdfragls || !hdfragl[fd].nlinks)
537 <                error(CONSISTENCY, "bad file descriptor in hdfreefrag");
490 < #endif
491 <        f = &hdfragl[fd];
533 >        if (bi->nrd <= 0)
534 >                return(0);
535 >        DCHECK(hp->fd < 0 | hp->fd >= nhdfragls || !hdfragl[hp->fd].nlinks,
536 >                        CONSISTENCY, "bad file descriptor in hdfreefrag");
537 >        f = &hdfragl[hp->fd];
538          if (f->nfrags % FRAGBLK == 0) { /* delete empty remnants */
539                  for (j = k = 0; k < f->nfrags; j++, k++) {
540                          while (f->fi[k].nrd == 0)
# Line 501 | Line 547 | register BEAMI *bi;
547                  f->nfrags = j;
548          }
549          j = f->nfrags++;                /* allocate a slot in free list */
550 < #if MAXFRAG
551 <        if (j >= MAXFRAG-1)
552 <                f->nfrags--;
550 > #if MAXFRAGB
551 >        if (j >= MAXFRAGB*FRAGBLK) {
552 >                f->nfrags = j--;        /* stop list growth */
553 >                if (bi->nrd <= f->fi[j].nrd)
554 >                        return(0);      /* new one no better than discard */
555 >        }
556   #endif
557 <        if (j % FRAGBLK == 0) {         /* more free list space */
557 >        if (j % FRAGBLK == 0) {         /* more (or less) free list space */
558                  register BEAMI  *newp;
559                  if (f->fi == NULL)
560                          newp = (BEAMI *)malloc((j+FRAGBLK)*sizeof(BEAMI));
# Line 514 | Line 563 | register BEAMI *bi;
563                                          (j+FRAGBLK)*sizeof(BEAMI));
564                  if (newp == NULL) {
565                          f->nfrags--;    /* graceful failure */
566 <                        return;
566 >                        return(0);
567                  }
568                  f->fi = newp;
569          }
# Line 541 | Line 590 | register BEAMI *bi;
590                          }
591                          break;
592                  }
593 +        biglob(hp)->nrd -= bi->nrd;             /* tell fragment it's free */
594 +        bi->nrd = 0;
595 +        bi->fo = 0L;
596 +        hdmarkdirty(hp, i);                     /* assume we'll reallocate */
597 +        return(1);
598   }
599  
600  
601 + int
602 + hdfragOK(fd, listlen, listsiz)  /* get fragment list status for file */
603 + int     fd;
604 + int     *listlen;
605 + register int4   *listsiz;
606 + {
607 +        register struct fraglist        *f;
608 +        register int    i;
609 +
610 +        if (fd < 0 | fd >= nhdfragls || !(f = &hdfragl[fd])->nlinks)
611 +                return(0);              /* listless */
612 +        if (listlen != NULL)
613 +                *listlen = f->nfrags;
614 +        if (listsiz != NULL)
615 +                for (i = f->nfrags, *listsiz = 0; i--; )
616 +                        *listsiz += f->fi[i].nrd;
617 + #if MAXFRAGB
618 +        return(f->nfrags < MAXFRAGB*FRAGBLK);
619 + #else
620 +        return(1);                      /* list never fills up */
621 + #endif
622 + }
623 +
624 +
625   long
626   hdallocfrag(fd, nrays)          /* allocate a file fragment */
627   int     fd;
628   unsigned int4   nrays;
629   {
630          register struct fraglist        *f;
631 <        register int    j, k;
631 >        register int    j;
632          long    nfo;
633  
634          if (nrays == 0)
635                  return(-1L);
636 < #ifdef DEBUG
637 <        if (fd < 0 | fd >= nhdfragls || !hdfragl[fd].nlinks)
560 <                error(CONSISTENCY, "bad file descriptor in hdallocfrag");
561 < #endif
636 >        DCHECK(fd < 0 | fd >= nhdfragls || !hdfragl[fd].nlinks,
637 >                        CONSISTENCY, "bad file descriptor in hdallocfrag");
638          f = &hdfragl[fd];
639 <        k = -1;                         /* find closest-sized fragment */
640 <        for (j = f->nfrags; j-- > 0; )
641 <                if (f->fi[j].nrd >= nrays &&
642 <                                (k < 0 || f->fi[j].nrd < f->fi[k].nrd))
567 <                        if (f->fi[k=j].nrd == nrays)
568 <                                break;
569 <        if (k < 0) {                    /* no fragment -- extend file */
639 >        for (j = f->nfrags; j-- > 0; )  /* first fit algorithm */
640 >                if (f->fi[j].nrd >= nrays)
641 >                        break;
642 >        if (j < 0) {                    /* no fragment -- extend file */
643                  nfo = f->flen;
644                  f->flen += nrays*sizeof(RAYVAL);
645          } else {                        /* else use fragment */
646 <                nfo = f->fi[k].fo;
647 <                f->fi[k].fo += nrays*sizeof(RAYVAL);
648 <                f->fi[k].nrd -= nrays;
646 >                nfo = f->fi[j].fo;
647 >                f->fi[j].fo += nrays*sizeof(RAYVAL);
648 >                f->fi[j].nrd -= nrays;
649          }
650          return(nfo);
651   }
# Line 583 | Line 656 | hdsyncbeam(hp, i)              /* sync beam in memory with beam on
656   register HOLO   *hp;
657   register int    i;
658   {
659 +        int     fragfreed;
660          unsigned int4   nrays;
661          unsigned int    n;
662          long    nfo;
663                                          /* check file status */
664          if (hdfragl[hp->fd].writerr)
665                  return(-1);
666 < #ifdef DEBUG
667 <        if (i < 1 | i > nbeams(hp))
594 <                error(CONSISTENCY, "bad beam index in hdsyncbeam");
595 < #endif
666 >        DCHECK(i < 1 | i > nbeams(hp),
667 >                        CONSISTENCY, "bad beam index in hdsyncbeam");
668                                          /* is current fragment OK? */
669          if (hp->bl[i] == NULL || (nrays = hp->bl[i]->nrm) == hp->bi[i].nrd)
670                  return(0);
671 <        if (hp->bi[i].nrd)              /* relinquish old fragment */
672 <                hdfreefrag(hp->fd, &hp->bi[i]);
671 >                                        /* relinquish old fragment? */
672 >        fragfreed = hdfragflags&FF_WRITE && hp->bi[i].nrd && hdfreefrag(hp,i);
673          if (nrays) {                    /* get and write new fragment */
674                  nfo = hdallocfrag(hp->fd, nrays);
675                  errno = 0;
# Line 614 | Line 686 | register int   i;
686                  hp->bi[i].fo = 0L;
687          biglob(hp)->nrd += nrays - hp->bi[i].nrd;
688          hp->bi[i].nrd = nrays;
689 <        markdirty(hp, i);               /* section directory now out of date */
689 >        if (!fragfreed)
690 >                hdmarkdirty(hp, i);             /* need to flag dir. ent. */
691          return(1);
692   }
693  
# Line 635 | Line 708 | register int   i;
708          if (hdfragl[hp->fd].writerr)    /* check for file error */
709                  return(0);
710          if (i == 0) {                   /* clear entire holodeck */
711 +                if (blglob(hp)->nrm == 0)
712 +                        return(0);              /* already clear */
713                  nchanged = 0;
714                  for (i = nbeams(hp); i > 0; i--)
715                          if (hp->bl[i] != NULL)
716                                  nchanged += hdfreebeam(hp, i);
717 +                DCHECK(blglob(hp)->nrm != 0,
718 +                                CONSISTENCY, "bad beam count in hdfreebeam");
719                  return(nchanged);
720          }
721 < #ifdef DEBUG
722 <        if (i < 1 | i > nbeams(hp))
646 <                error(CONSISTENCY, "bad beam index to hdfreebeam");
647 < #endif
721 >        DCHECK(i < 1 | i > nbeams(hp),
722 >                        CONSISTENCY, "bad beam index to hdfreebeam");
723          if (hp->bl[i] == NULL)
724                  return(0);
725                                          /* check for additions */
# Line 663 | Line 738 | hdkillbeam(hp, i)              /* delete beam from holodeck */
738   register HOLO   *hp;
739   register int    i;
740   {
666        static BEAM     emptybeam;
741          int     nchanged;
742  
743          if (hp == NULL) {               /* clobber all holodecks */
# Line 673 | Line 747 | register int   i;
747                  return(nchanged);
748          }
749          if (i == 0) {                   /* clobber entire holodeck */
750 +                if (biglob(hp)->nrd == 0 & blglob(hp)->nrm == 0)
751 +                        return(0);              /* already empty */
752                  nchanged = 0;
753 +                nchanged = 0;
754                  for (i = nbeams(hp); i > 0; i--)
755                          if (hp->bi[i].nrd > 0 || hp->bl[i] != NULL)
756                                  nchanged += hdkillbeam(hp, i);
757 < #ifdef DEBUG
758 <                if (biglob(hp)->nrd != 0 | blglob(hp)->nrm != 0)
682 <                        error(CONSISTENCY, "bad beam count in hdkillbeam");
683 < #endif
757 >                DCHECK(biglob(hp)->nrd != 0 | blglob(hp)->nrm != 0,
758 >                                CONSISTENCY, "bad beam count in hdkillbeam");
759                  return(nchanged);
760          }
761 < #ifdef DEBUG
762 <        if (i < 1 | i > nbeams(hp))
688 <                error(CONSISTENCY, "bad beam index to hdkillbeam");
689 < #endif
761 >        DCHECK(i < 1 | i > nbeams(hp),
762 >                        CONSISTENCY, "bad beam index to hdkillbeam");
763          if (hp->bl[i] != NULL) {        /* free memory */
764                  blglob(hp)->nrm -= nchanged = hp->bl[i]->nrm;
765                  free((char *)hp->bl[i]);
766 +                hp->bl[i] = NULL;
767          } else
768                  nchanged = hp->bi[i].nrd;
769 <        if (hp->bi[i].nrd) {            /* free file fragment */
770 <                hp->bl[i] = &emptybeam;
771 <                hdsyncbeam(hp, i);
769 >        if (hp->bi[i].nrd && !(hdfragflags&FF_KILL && hdfreefrag(hp,i))) {
770 >                biglob(hp)->nrd -= hp->bi[i].nrd;       /* free failed */
771 >                hp->bi[i].nrd = 0;
772 >                hp->bi[i].fo = 0L;
773 >                hdmarkdirty(hp, i);
774          }
699        hp->bl[i] = NULL;
775          return(nchanged);
776   }
777  
# Line 790 | Line 865 | register HOLO  *hp;            /* NULL means clean up all */
865                  return;
866          }
867                                          /* flush all data and free memory */
868 <        hdfreebeam(hp, 0);
794 <        hdsync(hp, 0);
868 >        hdflush(hp);
869                                          /* release fragment resources */
870          hdrelease(hp->fd);
871                                          /* remove hp from active list */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines