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.42 by greg, Sat Feb 22 02:07:24 2003 UTC vs.
Revision 3.48 by greg, Fri Jun 20 00:25:49 2003 UTC

# Line 10 | Line 10 | static const char      RCSid[] = "$Id$";
10   #include "holo.h"
11  
12   #ifndef CACHESIZE
13 < #ifdef BIGMEM
14 < #define CACHESIZE       17      /* default cache size (Mbytes, 0==inf) */
15 < #else
13 > #ifdef SMLMEM
14   #define CACHESIZE       5
15 + #else
16 + #define CACHESIZE       17      /* default cache size (Mbytes, 0==inf) */
17   #endif
18   #endif
19   #ifndef FREEBEAMS
# Line 52 | Line 52 | static struct fraglist {
52          short   writable;       /* 0 read-only, <0 write error encountered */
53          int     nfrags;         /* number of known fragments */
54          BEAMI   *fi;            /* fragments, descending file position */
55 <        long    flen;           /* last known file length */
55 >        off_t   flen;           /* last known file length */
56   } *hdfragl;             /* fragment lists, indexed by file descriptor */
57  
58   static int      nhdfragls;      /* size of hdfragl array */
# Line 66 | Line 66 | HDGRID *hproto;
66          register HOLO   *hp;
67          int     n;
68                                  /* copy grid to temporary header */
69 <        bcopy((char *)hproto, (char *)&hdhead, sizeof(HDGRID));
69 >        bcopy((void *)hproto, (void *)&hdhead, sizeof(HDGRID));
70                                  /* compute grid vectors and sizes */
71          hdcompgrid(&hdhead);
72                                  /* allocate header with directory */
# Line 81 | Line 81 | HDGRID *hproto;
81                  free((void *)hp);
82                  return(NULL);
83          }
84 <        bzero((char *)hp->bl, (nbeams(hp)+1)*sizeof(BEAM *)+sizeof(BEAM));
84 >        bzero((void *)hp->bl, (nbeams(hp)+1)*sizeof(BEAM *)+sizeof(BEAM));
85          hp->bl[0] = (BEAM *)(hp->bl+nbeams(hp)+1);      /* set blglob(hp) */
86          hp->fd = -1;
87          hp->dirty = 0;
88          hp->priv = NULL;
89                                  /* clear beam directory */
90 <        bzero((char *)hp->bi, (nbeams(hp)+1)*sizeof(BEAMI));
90 >        bzero((void *)hp->bi, (nbeams(hp)+1)*sizeof(BEAMI));
91          return(hp);             /* all is well */
92   }
93  
# Line 101 | Line 101 | char   *rout;
101          register char   *newp;
102                                          /* call malloc/realloc */
103          if (ptr == NULL) newp = (char *)malloc(siz);
104 <        else newp = (char *)realloc(ptr, siz);
104 >        else newp = (char *)realloc((void *)ptr, siz);
105                                          /* check success */
106          if (newp == NULL && rout != NULL) {
107                  hdfreecache(25, NULL);  /* free some memory */
# Line 123 | Line 123 | int    wr;
123          if (fd >= nhdfragls) {
124                  hdfragl = (struct fraglist *)hdrealloc((char *)hdfragl,
125                                  (fd+1)*sizeof(struct fraglist), "hdattach");
126 <                bzero((char *)(hdfragl+nhdfragls),
126 >                bzero((void *)(hdfragl+nhdfragls),
127                                  (fd+1-nhdfragls)*sizeof(struct fraglist));
128                  nhdfragls = fd+1;
129          }
130          hdfragl[fd].nlinks++;
131          hdfragl[fd].writable = wr;              /* set writable flag */
132 <        hdfragl[fd].flen = lseek(fd, (off_t)0L, 2);     /* get file length */
132 >        hdfragl[fd].flen = lseek(fd, (off_t)0, 2);      /* get file length */
133   }
134  
135  
# Line 154 | Line 154 | hdinit(fd, hproto)     /* initialize a holodeck section in
154   int     fd;                     /* corresponding file descriptor */
155   HDGRID  *hproto;                /* holodeck section grid */
156   {
157 <        long    rtrunc;
158 <        long    fpos;
157 >        off_t   rtrunc;
158 >        off_t   fpos;
159          int     writable;
160          register HOLO   *hp;
161          register int    n;
162                                          /* prepare for system errors */
163          errno = 0;
164 <        if ((fpos = lseek(fd, (off_t)0L, 1)) < 0)
164 >        if ((fpos = lseek(fd, (off_t)0, 1)) < 0)
165                  error(SYSTEM, "cannot determine holodeck file position");
166          if (hproto == NULL) {           /* assume we're loading it */
167                  HDGRID  hpr;
# Line 186 | Line 186 | HDGRID *hproto;                /* holodeck section grid */
186                  if (fd < nhdfragls && hdfragl[fd].nlinks)
187                          writable = hdfragl[fd].writable;
188                  else
189 <                        writable = lseek(fd, (off_t)fpos, 0) == fpos &&
189 >                        writable = lseek(fd, fpos, 0) == fpos &&
190                                  write(fd, (char *)hp, sizeof(HDGRID)) ==
191                                                          sizeof(HDGRID);
192          } else {                        /* else assume we're creating it */
# Line 242 | Line 242 | int    i;
242          register int    j;
243  
244          if (!hp->dirty++) {                     /* write smudge first time */
245 <                if (lseek(hp->fd, (off_t)(biglob(hp)->fo+(i-1)*sizeof(BEAMI)), 0) < 0
245 >                if (lseek(hp->fd, biglob(hp)->fo+(i-1)*sizeof(BEAMI), 0) < 0
246                                  || write(hp->fd, (char *)&smudge,
247                                          sizeof(BEAMI)) != sizeof(BEAMI))
248                          error(SYSTEM, "seek/write error in hdmarkdirty");
# Line 305 | Line 305 | int    all;
305                  return(0);
306          errno = 0;                      /* write dirty segments */
307          for (j = 0; j < hp->dirty; j++) {
308 <                if (lseek(hp->fd, (off_t)(biglob(hp)->fo +
309 <                                (hp->dirseg[j].s-1)*sizeof(BEAMI)), 0) < 0)
308 >                if (lseek(hp->fd, biglob(hp)->fo +
309 >                                (hp->dirseg[j].s-1)*sizeof(BEAMI), 0) < 0)
310                          error(SYSTEM, "cannot seek on holodeck file");
311                  n = hp->dirseg[j].n * sizeof(BEAMI);
312                  if (write(hp->fd, (char *)(hp->bi+hp->dirseg[j].s), n) != n)
# Line 346 | Line 346 | int    all;                    /* include overhead (painful) */
346   }
347  
348  
349 < long
349 > off_t
350   hdfilen(fd)             /* return file length for fd */
351   int     fd;
352   {
353 <        long    fpos, flen;
353 >        off_t   fpos, flen;
354  
355          if (fd < 0)
356                  return(-1);
357          if (fd >= nhdfragls || !hdfragl[fd].nlinks) {
358 <                if ((fpos = lseek(fd, (off_t)0L, 1)) < 0)
358 >                if ((fpos = lseek(fd, (off_t)0, 1)) < 0)
359                          return(-1);
360 <                flen = lseek(fd, (off_t)0L, 2);
361 <                lseek(fd, (off_t)fpos, 0);
360 >                flen = lseek(fd, (off_t)0, 2);
361 >                lseek(fd, fpos, 0);
362                  return(flen);
363          }
364          return(hdfragl[fd].flen);
365   }
366  
367  
368 < long
368 > off_t
369   hdfiluse(fd, all)       /* compute file usage (in bytes) */
370   int     fd;                     /* open file descriptor to check */
371   int     all;                    /* include overhead and unflushed data */
372   {
373 <        long    total = 0;
373 >        off_t   total = 0;
374          register int    i, j;
375  
376          for (j = 0; hdlist[j] != NULL; j++) {
# Line 413 | Line 413 | int    nr;                     /* number of new rays desired */
413                  blglob(hp)->nrm += n;
414                  if ((n = hp->bl[i]->nrm = hp->bi[i].nrd)) {
415                          errno = 0;
416 <                        if (lseek(hp->fd, (off_t)hp->bi[i].fo, 0) < 0)
416 >                        if (lseek(hp->fd, hp->bi[i].fo, 0) < 0)
417                                  error(SYSTEM, "seek error on holodeck file");
418                          n *= sizeof(RAYVAL);
419                          if (read(hp->fd, (char *)hdbray(hp->bl[i]), n) != n)
# Line 429 | Line 429 | int    nr;                     /* number of new rays desired */
429                  hdfreefrag(hp, i);              /* relinquish old fragment */
430          p = hdbray(hp->bl[i]) + hp->bl[i]->nrm;
431          hp->bl[i]->nrm += nr;                   /* update in-core structure */
432 <        bzero((char *)p, nr*sizeof(RAYVAL));
432 >        bzero((void *)p, nr*sizeof(RAYVAL));
433          blglob(hp)->tick = hp->bl[i]->tick = hdclock++; /* update LRU clock */
434          return(p);                              /* point to new rays */
435   }
# Line 452 | Line 452 | register int   i;
452                  hp->bl[i] = (BEAM *)hdrealloc(NULL, hdbsiz(n), "hdgetbeam");
453                  blglob(hp)->nrm += hp->bl[i]->nrm = n;
454                  errno = 0;
455 <                if (lseek(hp->fd, (off_t)hp->bi[i].fo, 0) < 0)
455 >                if (lseek(hp->fd, hp->bi[i].fo, 0) < 0)
456                          error(SYSTEM, "seek error on holodeck file");
457                  n *= sizeof(RAYVAL);
458                  if (read(hp->fd, (char *)hdbray(hp->bl[i]), n) != n)
# Line 469 | Line 469 | int
469   hdfilord(hb1, hb2)      /* order beams for quick loading */
470   register HDBEAMI        *hb1, *hb2;
471   {
472 <        register long   c;
472 >        register off_t  c;
473                                  /* residents go first */
474          if (hb2->h->bl[hb2->b] != NULL)
475                  return(hb1->h->bl[hb1->b] == NULL);
476          if (hb1->h->bl[hb1->b] != NULL)
477                  return(-1);
478                                  /* otherwise sort by file descriptor */
479 <        if ((c = hb1->h->fd - hb2->h->fd))
480 <                return(c);
479 >        if (hb1->h->fd != hb2->h->fd)
480 >                return(hb1->h->fd - hb2->h->fd);
481                                  /* then by position in file */
482          c = hb1->h->bi[hb1->b].fo - hb2->h->bi[hb2->b].fo;
483          return(c > 0 ? 1 : c < 0 ? -1 : 0);
# Line 499 | Line 499 | int    (*bf)();                /* callback function (optional) */
499                  if (hb[i].h==NULL || hb[i].b<1 | hb[i].b>nbeams(hb[i].h))
500                          error(CONSISTENCY, "bad beam in hdloadbeams");
501                                          /* sort list for optimal access */
502 <        qsort((char *)hb, n, sizeof(HDBEAMI), hdfilord);
502 >        qsort((void *)hb, n, sizeof(HDBEAMI), hdfilord);
503          bytesloaded = 0;                /* run through loaded beams */
504          for ( ; n && (bp = hb->h->bl[hb->b]) != NULL; n--, hb++) {
505                  bp->tick = hdclock;     /* preempt swap */
# Line 569 | Line 569 | int    i;
569                  if (f->fi == NULL)
570                          newp = (BEAMI *)malloc((j+FRAGBLK)*sizeof(BEAMI));
571                  else
572 <                        newp = (BEAMI *)realloc((char *)f->fi,
572 >                        newp = (BEAMI *)realloc((void *)f->fi,
573                                          (j+FRAGBLK)*sizeof(BEAMI));
574                  if (newp == NULL) {
575                          f->nfrags--;    /* graceful failure */
# Line 602 | Line 602 | int    i;
602                  }
603          biglob(hp)->nrd -= bi->nrd;             /* tell fragment it's free */
604          bi->nrd = 0;
605 <        bi->fo = 0L;
605 >        bi->fo = 0;
606          hdmarkdirty(hp, i);                     /* assume we'll reallocate */
607          return(1);
608   }
# Line 612 | Line 612 | int
612   hdfragOK(fd, listlen, listsiz)  /* get fragment list status for file */
613   int     fd;
614   int     *listlen;
615 < register int4   *listsiz;
615 > register int32  *listsiz;
616   {
617          register struct fraglist        *f;
618          register int    i;
# Line 632 | Line 632 | register int4  *listsiz;
632   }
633  
634  
635 < long
635 > off_t
636   hdallocfrag(fd, nrays)          /* allocate a file fragment */
637   int     fd;
638 < unsigned int4   nrays;
638 > uint32  nrays;
639   {
640          register struct fraglist        *f;
641          register int    j;
642 <        long    nfo;
642 >        off_t   nfo;
643  
644          if (nrays == 0)
645                  return(-1L);
# Line 667 | Line 667 | register HOLO  *hp;
667   register int    i;
668   {
669          int     fragfreed;
670 <        unsigned int4   nrays;
670 >        uint32  nrays;
671          unsigned int    n;
672 <        long    nfo;
672 >        off_t   nfo;
673                                          /* check file status */
674          if (hdfragl[hp->fd].writable <= 0)
675                  return(hdfragl[hp->fd].writable);
# Line 683 | Line 683 | register int   i;
683          if (nrays) {                    /* get and write new fragment */
684                  nfo = hdallocfrag(hp->fd, nrays);
685                  errno = 0;
686 <                if (lseek(hp->fd, (off_t)nfo, 0) < 0)
686 >                if (lseek(hp->fd, nfo, 0) < 0)
687                          error(SYSTEM, "cannot seek on holodeck file");
688                  n = hp->bl[i]->nrm * sizeof(RAYVAL);
689                  if (write(hp->fd, (char *)hdbray(hp->bl[i]), n) != n) {
# Line 693 | Line 693 | register int   i;
693                  }
694                  hp->bi[i].fo = nfo;
695          } else
696 <                hp->bi[i].fo = 0L;
696 >                hp->bi[i].fo = 0;
697          biglob(hp)->nrd += nrays - hp->bi[i].nrd;
698          hp->bi[i].nrd = nrays;
699          if (!fragfreed)
# Line 781 | Line 781 | register int   i;
781          if (hp->bi[i].nrd && !(hdfragflags&FF_KILL && hdfreefrag(hp,i))) {
782                  biglob(hp)->nrd -= hp->bi[i].nrd;       /* free failed */
783                  hp->bi[i].nrd = 0;
784 <                hp->bi[i].fo = 0L;
784 >                hp->bi[i].fo = 0;
785                  hdmarkdirty(hp, i);
786          }
787          return(nchanged);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines