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.24 by gwlarson, Tue Sep 15 14:26:23 1998 UTC vs.
Revision 3.52 by schorsch, Sun Jul 27 22:12:02 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1998 Silicon Graphics, Inc. */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ SGI";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   * Routines for managing holodeck files
6   *
7   *      9/30/97 GWLarson
8   */
9  
10 + #include "copyright.h"
11 +
12 + #include <string.h>
13 +
14   #include "holo.h"
15  
16   #ifndef CACHESIZE
17 < #define CACHESIZE       16      /* default cache size (Mbytes, 0==inf) */
17 > #ifdef SMLMEM
18 > #define CACHESIZE       5
19 > #else
20 > #define CACHESIZE       17      /* default cache size (Mbytes, 0==inf) */
21   #endif
22 + #endif
23   #ifndef FREEBEAMS
24 < #define FREEBEAMS       1024    /* maximum beams to free at a time */
24 > #define FREEBEAMS       1500    /* maximum beams to free at a time */
25   #endif
26   #ifndef PCTFREE
27   #define PCTFREE         15      /* maximum fraction to free (%) */
28   #endif
29 < #ifndef MAXFRAG
30 < #define MAXFRAG         32767   /* maximum fragments/file to track (0==inf) */
29 > #ifndef MAXFRAGB
30 > #define MAXFRAGB        16      /* fragment blocks/file to track (0==inf) */
31   #endif
32 + #ifndef FF_DEFAULT
33 +                                /* when to free a beam fragment */
34 + #define FF_DEFAULT      (FF_WRITE|FF_KILL)
35 + #endif
36 + #ifndef MINDIRSEL
37 +                                /* minimum directory seek length */
38 + #define MINDIRSEL       (4*BUFSIZ/sizeof(BEAMI))
39 + #endif
40  
41   #ifndef BSD
42   #define write   writebuf        /* safe i/o routines */
43   #define read    readbuf
44   #endif
45  
46 < #define FRAGBLK         256     /* number of fragments to allocate at a time */
46 > #define FRAGBLK         512     /* number of fragments to allocate at a time */
47  
48 + int     hdfragflags = FF_DEFAULT;       /* tells when to free fragments */
49   unsigned        hdcachesize = CACHESIZE*1024*1024;      /* target cache size */
50 < unsigned long   hdclock;        /* clock value */
50 > unsigned long   hdclock;                /* clock value */
51  
52   HOLO    *hdlist[HDMAX+1];       /* holodeck pointers (NULL term.) */
53  
54   static struct fraglist {
55          short   nlinks;         /* number of holodeck sections using us */
56 <        short   writerr;        /* write error encountered */
56 >        short   writable;       /* 0 read-only, <0 write error encountered */
57          int     nfrags;         /* number of known fragments */
58          BEAMI   *fi;            /* fragments, descending file position */
59 <        long    flen;           /* last known file length */
59 >        off_t   flen;           /* last known file length */
60   } *hdfragl;             /* fragment lists, indexed by file descriptor */
61  
62   static int      nhdfragls;      /* size of hdfragl array */
63  
64  
65 < hdattach(fd)            /* start tracking file fragments for some section */
65 > HOLO *
66 > hdalloc(hproto)         /* allocate and set holodeck section based on grid */
67 > HDGRID  *hproto;
68 > {
69 >        HOLO    hdhead;
70 >        register HOLO   *hp;
71 >        int     n;
72 >                                /* copy grid to temporary header */
73 >        memcpy((void *)&hdhead, (void *)hproto, sizeof(HDGRID));
74 >                                /* compute grid vectors and sizes */
75 >        hdcompgrid(&hdhead);
76 >                                /* allocate header with directory */
77 >        n = sizeof(HOLO)+nbeams(&hdhead)*sizeof(BEAMI);
78 >        if ((hp = (HOLO *)malloc(n)) == NULL)
79 >                return(NULL);
80 >                                /* copy header information */
81 >        *hp = hdhead;
82 >                                /* allocate and clear beam list */
83 >        hp->bl = (BEAM **)malloc((nbeams(hp)+1)*sizeof(BEAM *)+sizeof(BEAM));
84 >        if (hp->bl == NULL) {
85 >                free((void *)hp);
86 >                return(NULL);
87 >        }
88 >        memset((void *)hp->bl, '\0', (nbeams(hp)+1)*sizeof(BEAM *)+sizeof(BEAM));
89 >        hp->bl[0] = (BEAM *)(hp->bl+nbeams(hp)+1);      /* set blglob(hp) */
90 >        hp->fd = -1;
91 >        hp->dirty = 0;
92 >        hp->priv = NULL;
93 >                                /* clear beam directory */
94 >        memset((void *)hp->bi, '\0', (nbeams(hp)+1)*sizeof(BEAMI));
95 >        return(hp);             /* all is well */
96 > }
97 >
98 >
99 > char *
100 > hdrealloc(ptr, siz, rout)       /* (re)allocate memory, retry then error */
101 > char    *ptr;
102 > unsigned        siz;
103 > char    *rout;
104 > {
105 >        register char   *newp;
106 >                                        /* call malloc/realloc */
107 >        if (ptr == NULL) newp = (char *)malloc(siz);
108 >        else newp = (char *)realloc((void *)ptr, siz);
109 >                                        /* check success */
110 >        if (newp == NULL && rout != NULL) {
111 >                hdfreecache(25, NULL);  /* free some memory */
112 >                errno = 0;              /* retry */
113 >                newp = hdrealloc(ptr, siz, NULL);
114 >                if (newp == NULL) {     /* give up and report error */
115 >                        sprintf(errmsg, "out of memory in %s", rout);
116 >                        error(SYSTEM, errmsg);
117 >                }
118 >        }
119 >        return(newp);
120 > }
121 >
122 >
123 > hdattach(fd, wr)        /* start tracking file fragments for some section */
124   register int    fd;
125 + int     wr;
126   {
127          if (fd >= nhdfragls) {
128 <                if (nhdfragls)
129 <                        hdfragl = (struct fraglist *)realloc((char *)hdfragl,
130 <                                        (fd+1)*sizeof(struct fraglist));
131 <                else
59 <                        hdfragl = (struct fraglist *)malloc(
60 <                                        (fd+1)*sizeof(struct fraglist));
61 <                if (hdfragl == NULL)
62 <                        error(SYSTEM, "out of memory in hdattach");
63 <                bzero((char *)(hdfragl+nhdfragls),
64 <                                (fd+1-nhdfragls)*sizeof(struct fraglist));
128 >                hdfragl = (struct fraglist *)hdrealloc((char *)hdfragl,
129 >                                (fd+1)*sizeof(struct fraglist), "hdattach");
130 >                memset((void *)(hdfragl+nhdfragls),
131 >                                '\0', (fd+1-nhdfragls)*sizeof(struct fraglist));
132                  nhdfragls = fd+1;
133          }
134          hdfragl[fd].nlinks++;
135 <        hdfragl[fd].flen = lseek(fd, 0L, 2);    /* get file length */
135 >        hdfragl[fd].writable = wr;              /* set writable flag */
136 >        hdfragl[fd].flen = lseek(fd, (off_t)0, 2);      /* get file length */
137   }
138  
139  
# Line 75 | Line 143 | register int   fd;
143   hdrelease(fd)           /* stop tracking file fragments for some section */
144   register int    fd;
145   {
146 <        if (fd < 0 | fd >= nhdfragls || !hdfragl[fd].nlinks)
146 >        if ((fd < 0) | (fd >= nhdfragls) || !hdfragl[fd].nlinks)
147                  return;
148          if (!--hdfragl[fd].nlinks && hdfragl[fd].nfrags) {
149 <                free((char *)hdfragl[fd].fi);
149 >                free((void *)hdfragl[fd].fi);
150                  hdfragl[fd].fi = NULL;
151                  hdfragl[fd].nfrags = 0;
152          }
153   }
154  
155  
88 markdirty(hp)                   /* mark holodeck section directory dirty */
89 register HOLO   *hp;
90 {
91        static BEAMI    smudge = {0, -1};
92
93        if (hp->dirty)          /* already marked? */
94                return;
95        hp->dirty = 1;
96        if (lseek(hp->fd, biglob(hp)->fo+(nbeams(hp)-1)*sizeof(BEAMI), 0) < 0
97                        || write(hp->fd, (char *)&smudge,
98                                        sizeof(BEAMI)) != sizeof(BEAMI))
99                error(SYSTEM, "seek/write error in markdirty");
100 }
101
102
156   HOLO *
157   hdinit(fd, hproto)      /* initialize a holodeck section in a file */
158   int     fd;                     /* corresponding file descriptor */
159   HDGRID  *hproto;                /* holodeck section grid */
160   {
161 <        long    rtrunc;
162 <        long    fpos;
161 >        off_t   rtrunc;
162 >        off_t   fpos;
163 >        int     writable;
164          register HOLO   *hp;
165          register int    n;
166                                          /* prepare for system errors */
167          errno = 0;
168 <        if ((fpos = lseek(fd, 0L, 1)) < 0)
168 >        if ((fpos = lseek(fd, (off_t)0, 1)) < 0)
169                  error(SYSTEM, "cannot determine holodeck file position");
170          if (hproto == NULL) {           /* assume we're loading it */
171                  HDGRID  hpr;
# Line 126 | Line 180 | HDGRID *hproto;                /* holodeck section grid */
180                  if (read(fd, (char *)(hp->bi+1), n) != n)
181                          error(SYSTEM, "failure loading holodeck directory");
182                                                  /* check that it's clean */
183 <                if (hp->bi[nbeams(hp)].fo < 0)
184 <                        error(WARNING, "dirty holodeck section");
185 <        } else {                        /* assume we're creating it */
183 >                for (n = nbeams(hp); n > 0; n--)
184 >                        if (hp->bi[n].fo < 0) {
185 >                                hp->bi[n].fo = 0;
186 >                                error(WARNING, "dirty holodeck section");
187 >                                break;
188 >                        }
189 >                                                /* check writability */
190 >                if (fd < nhdfragls && hdfragl[fd].nlinks)
191 >                        writable = hdfragl[fd].writable;
192 >                else
193 >                        writable = lseek(fd, fpos, 0) == fpos &&
194 >                                write(fd, (char *)hp, sizeof(HDGRID)) ==
195 >                                                        sizeof(HDGRID);
196 >        } else {                        /* else assume we're creating it */
197                  if ((hp = hdalloc(hproto)) == NULL)
198                          goto memerr;
199                                                  /* write header and skeleton */
# Line 137 | Line 202 | HDGRID *hproto;                /* holodeck section grid */
202                                          sizeof(HDGRID) ||
203                                  write(fd, (char *)(hp->bi+1), n) != n)
204                          error(SYSTEM, "cannot write header to holodeck file");
205 +                writable = 1;
206          }
207          hp->fd = fd;    
208          hp->dirty = 0;
209          biglob(hp)->fo = fpos + sizeof(HDGRID);
210                                          /* start tracking fragments */
211 <        hdattach(fd);
211 >        hdattach(fd, writable);
212                                          /* check rays on disk */
213          fpos = hdfilen(fd);
214          biglob(hp)->nrd = rtrunc = 0;
215          for (n = hproto == NULL ? nbeams(hp) : 0; n > 0; n--)
216 <                if (hp->bi[n].nrd)
217 <                        if (hp->bi[n].fo + hp->bi[n].nrd > fpos) {
216 >                if (hp->bi[n].nrd) {
217 >                        if (hp->bi[n].fo+hp->bi[n].nrd*sizeof(RAYVAL) > fpos) {
218                                  rtrunc += hp->bi[n].nrd;
219                                  hp->bi[n].nrd = 0;
220                          } else
221                                  biglob(hp)->nrd += hp->bi[n].nrd;
222 +                }
223          if (rtrunc) {
224                  sprintf(errmsg, "truncated section, %ld rays lost (%.1f%%)",
225                                  rtrunc, 100.*rtrunc/(rtrunc+biglob(hp)->nrd));
# Line 171 | Line 238 | memerr:
238   }
239  
240  
241 + hdmarkdirty(hp, i)              /* mark holodeck directory position dirty */
242 + register HOLO   *hp;
243 + int     i;
244 + {
245 +        static BEAMI    smudge = {0, -1};
246 +        int     mindist, minpos;
247 +        register int    j;
248 +
249 +        if (!hp->dirty++) {                     /* write smudge first time */
250 +                if (lseek(hp->fd, biglob(hp)->fo+(i-1)*sizeof(BEAMI), 0) < 0
251 +                                || write(hp->fd, (char *)&smudge,
252 +                                        sizeof(BEAMI)) != sizeof(BEAMI))
253 +                        error(SYSTEM, "seek/write error in hdmarkdirty");
254 +                hp->dirseg[0].s = i;
255 +                hp->dirseg[0].n = 1;
256 +                return;
257 +        }
258 +                                                /* insert into segment list */
259 +        for (j = hp->dirty; j--; ) {
260 +                if (!j || hp->dirseg[j-1].s < i) {
261 +                        hp->dirseg[j].s = i;
262 +                        hp->dirseg[j].n = 1;
263 +                        break;
264 +                }
265 +                *(hp->dirseg+j) = *(hp->dirseg+(j-1));
266 +        }
267 +        do {                            /* check neighbors */
268 +                mindist = nbeams(hp);           /* find closest */
269 +                for (j = hp->dirty; --j; )
270 +                        if (hp->dirseg[j].s -
271 +                                        (hp->dirseg[j-1].s + hp->dirseg[j-1].n)
272 +                                        < mindist) {
273 +                                minpos = j;
274 +                                mindist = hp->dirseg[j].s -
275 +                                        (hp->dirseg[j-1].s + hp->dirseg[j-1].n);
276 +                        }
277 +                                                /* good enough? */
278 +                if (hp->dirty <= MAXDIRSE && mindist > MINDIRSEL)
279 +                        break;
280 +                j = minpos - 1;                 /* coalesce neighbors */
281 +                if (hp->dirseg[j].s + hp->dirseg[j].n <
282 +                                hp->dirseg[minpos].s + hp->dirseg[minpos].n)
283 +                        hp->dirseg[j].n = hp->dirseg[minpos].s +
284 +                                        hp->dirseg[minpos].n - hp->dirseg[j].s;
285 +                hp->dirty--;
286 +                while (++j < hp->dirty)         /* close the gap */
287 +                        *(hp->dirseg+j) = *(hp->dirseg+(j+1));
288 +        } while (mindist <= MINDIRSEL);
289 + }
290 +
291 +
292   int
293   hdsync(hp, all)                 /* update beams and directory on disk */
294   register HOLO   *hp;
# Line 190 | Line 308 | int    all;
308                          hdsyncbeam(hp, j);
309          if (!hp->dirty)                 /* directory clean? */
310                  return(0);
311 <        errno = 0;
312 <        if (lseek(hp->fd, biglob(hp)->fo, 0) < 0)
313 <                error(SYSTEM, "cannot seek on holodeck file");
314 <        n = nbeams(hp)*sizeof(BEAMI);
315 <        if (write(hp->fd, (char *)(hp->bi+1), n) != n)
316 <                error(SYSTEM, "cannot update holodeck section directory");
317 <        hp->dirty = 0;
311 >        errno = 0;                      /* write dirty segments */
312 >        for (j = 0; j < hp->dirty; j++) {
313 >                if (lseek(hp->fd, biglob(hp)->fo +
314 >                                (hp->dirseg[j].s-1)*sizeof(BEAMI), 0) < 0)
315 >                        error(SYSTEM, "cannot seek on holodeck file");
316 >                n = hp->dirseg[j].n * sizeof(BEAMI);
317 >                if (write(hp->fd, (char *)(hp->bi+hp->dirseg[j].s), n) != n)
318 >                        error(SYSTEM, "cannot update section directory");
319 >        }
320 >        hp->dirty = 0;                  /* all clean */
321          return(1);
322   }
323  
# Line 230 | Line 351 | int    all;                    /* include overhead (painful) */
351   }
352  
353  
354 < long
354 > off_t
355   hdfilen(fd)             /* return file length for fd */
356   int     fd;
357   {
358 <        long    fpos, flen;
358 >        off_t   fpos, flen;
359  
360          if (fd < 0)
361                  return(-1);
362          if (fd >= nhdfragls || !hdfragl[fd].nlinks) {
363 <                if ((fpos = lseek(fd, 0L, 1)) < 0)
363 >                if ((fpos = lseek(fd, (off_t)0, 1)) < 0)
364                          return(-1);
365 <                flen = lseek(fd, 0L, 2);
365 >                flen = lseek(fd, (off_t)0, 2);
366                  lseek(fd, fpos, 0);
367                  return(flen);
368          }
# Line 249 | Line 370 | int    fd;
370   }
371  
372  
373 < long
373 > off_t
374   hdfiluse(fd, all)       /* compute file usage (in bytes) */
375   int     fd;                     /* open file descriptor to check */
376   int     all;                    /* include overhead and unflushed data */
377   {
378 <        long    total = 0;
378 >        off_t   total = 0;
379          register int    i, j;
380  
381          for (j = 0; hdlist[j] != NULL; j++) {
# Line 284 | Line 405 | int    nr;                     /* number of new rays desired */
405          RAYVAL  *p;
406          int     n;
407  
408 <        if (nr <= 0)
409 <                return(NULL);
410 <        if (i < 1 | i > nbeams(hp))
290 <                error(CONSISTENCY, "bad beam index given to hdnewrays");
408 >        if (nr <= 0) return(NULL);
409 >        CHECK((i < 1) | (i > nbeams(hp)),
410 >                        CONSISTENCY, "bad beam index given to hdnewrays");
411          if (hp->bl[i] != NULL)
412                  hp->bl[i]->tick = hdclock;      /* preempt swap */
413          if (hdcachesize > 0 && hdmemuse(0) >= hdcachesize)
414                  hdfreecache(PCTFREE, NULL);     /* free some space */
295        errno = 0;
415          if (hp->bl[i] == NULL) {                /* allocate (and load) */
416                  n = hp->bi[i].nrd + nr;
417 <                if ((hp->bl[i] = (BEAM *)malloc(hdbsiz(n))) == NULL)
299 <                        goto memerr;
417 >                hp->bl[i] = (BEAM *)hdrealloc(NULL, hdbsiz(n), "hdnewrays");
418                  blglob(hp)->nrm += n;
419 <                if (n = hp->bl[i]->nrm = hp->bi[i].nrd) {
419 >                if ((n = hp->bl[i]->nrm = hp->bi[i].nrd)) {
420 >                        errno = 0;
421                          if (lseek(hp->fd, hp->bi[i].fo, 0) < 0)
422                                  error(SYSTEM, "seek error on holodeck file");
423                          n *= sizeof(RAYVAL);
# Line 307 | Line 426 | int    nr;                     /* number of new rays desired */
426                                  "error reading beam from holodeck file");
427                  }
428          } else {                                /* just grow in memory */
429 <                hp->bl[i] = (BEAM *)realloc( (char *)hp->bl[i],
430 <                                hdbsiz(hp->bl[i]->nrm + nr) );
312 <                if (hp->bl[i] == NULL)
313 <                        goto memerr;
429 >                hp->bl[i] = (BEAM *)hdrealloc((char *)hp->bl[i],
430 >                                hdbsiz(hp->bl[i]->nrm + nr), "hdnewrays");
431                  blglob(hp)->nrm += nr;
432          }
433 +        if (hdfragflags&FF_ALLOC && hp->bi[i].nrd)
434 +                hdfreefrag(hp, i);              /* relinquish old fragment */
435          p = hdbray(hp->bl[i]) + hp->bl[i]->nrm;
436          hp->bl[i]->nrm += nr;                   /* update in-core structure */
437 <        bzero((char *)p, nr*sizeof(RAYVAL));
438 <        hp->bl[i]->tick = hdclock;              /* update LRU clock */
320 <        blglob(hp)->tick = hdclock++;
437 >        memset((void *)p, '\0', nr*sizeof(RAYVAL));
438 >        blglob(hp)->tick = hp->bl[i]->tick = hdclock++; /* update LRU clock */
439          return(p);                              /* point to new rays */
322 memerr:
323        error(SYSTEM, "out of memory in hdnewrays");
440   }
441  
442  
# Line 331 | Line 447 | register int   i;
447   {
448          register int    n;
449  
450 <        if (i < 1 | i > nbeams(hp))
451 <                error(CONSISTENCY, "bad beam index given to hdgetbeam");
450 >        CHECK((i < 1) | (i > nbeams(hp)),
451 >                        CONSISTENCY, "bad beam index given to hdgetbeam");
452          if (hp->bl[i] == NULL) {                /* load from disk */
453                  if (!(n = hp->bi[i].nrd))
454                          return(NULL);
455                  if (hdcachesize > 0 && hdmemuse(0) >= hdcachesize)
456                          hdfreecache(PCTFREE, NULL);     /* get free space */
457 <                errno = 0;
342 <                if ((hp->bl[i] = (BEAM *)malloc(hdbsiz(n))) == NULL)
343 <                        error(SYSTEM, "cannot allocate memory for beam");
457 >                hp->bl[i] = (BEAM *)hdrealloc(NULL, hdbsiz(n), "hdgetbeam");
458                  blglob(hp)->nrm += hp->bl[i]->nrm = n;
459 +                errno = 0;
460                  if (lseek(hp->fd, hp->bi[i].fo, 0) < 0)
461                          error(SYSTEM, "seek error on holodeck file");
462                  n *= sizeof(RAYVAL);
463                  if (read(hp->fd, (char *)hdbray(hp->bl[i]), n) != n)
464                          error(SYSTEM, "error reading beam from holodeck file");
465 +                if (hdfragflags&FF_READ)
466 +                        hdfreefrag(hp, i);      /* relinquish old frag. */
467          }
468 <        hp->bl[i]->tick = hdclock;      /* update LRU clock */
352 <        blglob(hp)->tick = hdclock++;
468 >        blglob(hp)->tick = hp->bl[i]->tick = hdclock++; /* update LRU clock */
469          return(hp->bl[i]);
470   }
471  
# Line 358 | Line 474 | int
474   hdfilord(hb1, hb2)      /* order beams for quick loading */
475   register HDBEAMI        *hb1, *hb2;
476   {
477 <        register long   c;
477 >        register off_t  c;
478                                  /* residents go first */
479          if (hb2->h->bl[hb2->b] != NULL)
480                  return(hb1->h->bl[hb1->b] == NULL);
481          if (hb1->h->bl[hb1->b] != NULL)
482                  return(-1);
483                                  /* otherwise sort by file descriptor */
484 <        if ((c = hb1->h->fd - hb2->h->fd))
485 <                return(c);
484 >        if (hb1->h->fd != hb2->h->fd)
485 >                return(hb1->h->fd - hb2->h->fd);
486                                  /* then by position in file */
487          c = hb1->h->bi[hb1->b].fo - hb2->h->bi[hb2->b].fo;
488          return(c > 0 ? 1 : c < 0 ? -1 : 0);
# Line 376 | Line 492 | register HDBEAMI       *hb1, *hb2;
492   hdloadbeams(hb, n, bf)  /* load a list of beams in optimal order */
493   register HDBEAMI        *hb;    /* list gets sorted by hdfilord() */
494   int     n;                      /* list length */
495 < int     (*bf)();                /* callback function (optional) */
495 > void    (*bf)();                /* callback function (optional) */
496   {
497          unsigned        origcachesize, memuse;
498          int     bytesloaded, needbytes, bytes2free;
499          register BEAM   *bp;
500          register int    i;
501                                          /* precheck consistency */
502 +        if (n <= 0) return;
503          for (i = n; i--; )
504 <                if (hb[i].h == NULL || hb[i].b < 1 | hb[i].b > nbeams(hb[i].h))
504 >                if (hb[i].h==NULL || (hb[i].b<1) | (hb[i].b>nbeams(hb[i].h)))
505                          error(CONSISTENCY, "bad beam in hdloadbeams");
506                                          /* sort list for optimal access */
507 <        qsort((char *)hb, n, sizeof(HDBEAMI), hdfilord);
507 >        qsort((void *)hb, n, sizeof(HDBEAMI), hdfilord);
508          bytesloaded = 0;                /* run through loaded beams */
509          for ( ; n && (bp = hb->h->bl[hb->b]) != NULL; n--, hb++) {
510                  bp->tick = hdclock;     /* preempt swap */
# Line 417 | Line 534 | int    (*bf)();                /* callback function (optional) */
534   }
535  
536  
537 < hdfreefrag(fd, bi)                      /* free a file fragment */
538 < int     fd;
539 < register BEAMI  *bi;
537 > int
538 > hdfreefrag(hp, i)                       /* free a file fragment */
539 > HOLO    *hp;
540 > int     i;
541   {
542 +        register BEAMI  *bi = &hp->bi[i];
543          register struct fraglist        *f;
544          register int    j, k;
545  
546 <        if (bi->nrd == 0)
547 <                return;
548 < #ifdef DEBUG
549 <        if (fd < 0 | fd >= nhdfragls || !hdfragl[fd].nlinks)
550 <                error(CONSISTENCY, "bad file descriptor in hdfreefrag");
551 < #endif
552 <        f = &hdfragl[fd];
546 >        if (bi->nrd <= 0)
547 >                return(0);
548 >        DCHECK(hp->fd < 0 | hp->fd >= nhdfragls || !hdfragl[hp->fd].nlinks,
549 >                        CONSISTENCY, "bad file descriptor in hdfreefrag");
550 >        f = &hdfragl[hp->fd];
551 >        if (!f->writable)
552 >                return(0);
553          if (f->nfrags % FRAGBLK == 0) { /* delete empty remnants */
554                  for (j = k = 0; k < f->nfrags; j++, k++) {
555                          while (f->fi[k].nrd == 0)
556                                  if (++k >= f->nfrags)
557                                          goto endloop;
558                          if (k > j)
559 <                                copystruct(f->fi+j, f->fi+k);
559 >                                *(f->fi+j) = *(f->fi+k);
560                  }
561          endloop:
562                  f->nfrags = j;
563          }
564          j = f->nfrags++;                /* allocate a slot in free list */
565 < #if MAXFRAG
566 <        if (j >= MAXFRAG-1)
567 <                f->nfrags--;
565 > #if MAXFRAGB
566 >        if (j >= MAXFRAGB*FRAGBLK) {
567 >                f->nfrags = j--;        /* stop list growth */
568 >                if (bi->nrd <= f->fi[j].nrd)
569 >                        return(0);      /* new one no better than discard */
570 >        }
571   #endif
572 <        if (j % FRAGBLK == 0) {         /* more free list space */
572 >        if (j % FRAGBLK == 0) {         /* more (or less) free list space */
573 >                register BEAMI  *newp;
574                  if (f->fi == NULL)
575 <                        f->fi = (BEAMI *)malloc(FRAGBLK*sizeof(BEAMI));
575 >                        newp = (BEAMI *)malloc((j+FRAGBLK)*sizeof(BEAMI));
576                  else
577 <                        f->fi = (BEAMI *)realloc((char *)f->fi,
577 >                        newp = (BEAMI *)realloc((void *)f->fi,
578                                          (j+FRAGBLK)*sizeof(BEAMI));
579 <                if (f->fi == NULL)
580 <                        error(SYSTEM, "out of memory in hdfreefrag");
579 >                if (newp == NULL) {
580 >                        f->nfrags--;    /* graceful failure */
581 >                        return(0);
582 >                }
583 >                f->fi = newp;
584          }
585          for ( ; ; j--) {                /* insert in descending list */
586                  if (!j || bi->fo < f->fi[j-1].fo) {
# Line 462 | Line 588 | register BEAMI *bi;
588                          f->fi[j].nrd = bi->nrd;
589                          break;
590                  }
591 <                copystruct(f->fi+j, f->fi+(j-1));
591 >                *(f->fi+j) = *(f->fi+(j-1));
592          }
593                                          /* coalesce adjacent fragments */
594                                                  /* successors never empty */
# Line 479 | Line 605 | register BEAMI *bi;
605                          }
606                          break;
607                  }
608 +        biglob(hp)->nrd -= bi->nrd;             /* tell fragment it's free */
609 +        bi->nrd = 0;
610 +        bi->fo = 0;
611 +        hdmarkdirty(hp, i);                     /* assume we'll reallocate */
612 +        return(1);
613   }
614  
615  
616 < long
616 > int
617 > hdfragOK(fd, listlen, listsiz)  /* get fragment list status for file */
618 > int     fd;
619 > int     *listlen;
620 > register int32  *listsiz;
621 > {
622 >        register struct fraglist        *f;
623 >        register int    i;
624 >
625 >        if ((fd < 0) | (fd >= nhdfragls) || !(f = &hdfragl[fd])->nlinks)
626 >                return(0);              /* listless */
627 >        if (listlen != NULL)
628 >                *listlen = f->nfrags;
629 >        if (listsiz != NULL)
630 >                for (i = f->nfrags, *listsiz = 0; i--; )
631 >                        *listsiz += f->fi[i].nrd;
632 > #if MAXFRAGB
633 >        return(f->nfrags < MAXFRAGB*FRAGBLK);
634 > #else
635 >        return(1);                      /* list never fills up */
636 > #endif
637 > }
638 >
639 >
640 > off_t
641   hdallocfrag(fd, nrays)          /* allocate a file fragment */
642   int     fd;
643 < unsigned int4   nrays;
643 > uint32  nrays;
644   {
645          register struct fraglist        *f;
646 <        register int    j, k;
647 <        long    nfo;
646 >        register int    j;
647 >        off_t   nfo;
648  
649          if (nrays == 0)
650                  return(-1L);
651 < #ifdef DEBUG
652 <        if (fd < 0 | fd >= nhdfragls || !hdfragl[fd].nlinks)
498 <                error(CONSISTENCY, "bad file descriptor in hdallocfrag");
499 < #endif
651 >        DCHECK(fd < 0 | fd >= nhdfragls || !hdfragl[fd].nlinks,
652 >                        CONSISTENCY, "bad file descriptor in hdallocfrag");
653          f = &hdfragl[fd];
654 <        k = -1;                         /* find closest-sized fragment */
655 <        for (j = f->nfrags; j-- > 0; )
656 <                if (f->fi[j].nrd >= nrays &&
657 <                                (k < 0 || f->fi[j].nrd < f->fi[k].nrd))
505 <                        if (f->fi[k=j].nrd == nrays)
506 <                                break;
507 <        if (k < 0) {                    /* no fragment -- extend file */
654 >        for (j = f->nfrags; j-- > 0; )  /* first fit algorithm */
655 >                if (f->fi[j].nrd >= nrays)
656 >                        break;
657 >        if (j < 0) {                    /* no fragment -- extend file */
658                  nfo = f->flen;
659                  f->flen += nrays*sizeof(RAYVAL);
660          } else {                        /* else use fragment */
661 <                nfo = f->fi[k].fo;
662 <                f->fi[k].fo += nrays*sizeof(RAYVAL);
663 <                f->fi[k].nrd -= nrays;
661 >                nfo = f->fi[j].fo;
662 >                f->fi[j].fo += nrays*sizeof(RAYVAL);
663 >                f->fi[j].nrd -= nrays;
664          }
665          return(nfo);
666   }
# Line 521 | Line 671 | hdsyncbeam(hp, i)              /* sync beam in memory with beam on
671   register HOLO   *hp;
672   register int    i;
673   {
674 <        unsigned int4   nrays;
674 >        int     fragfreed;
675 >        uint32  nrays;
676          unsigned int    n;
677 <        long    nfo;
677 >        off_t   nfo;
678                                          /* check file status */
679 <        if (hdfragl[hp->fd].writerr)
680 <                return(-1);
681 < #ifdef DEBUG
682 <        if (i < 1 | i > nbeams(hp))
532 <                error(CONSISTENCY, "bad beam index in hdsyncbeam");
533 < #endif
679 >        if (hdfragl[hp->fd].writable <= 0)
680 >                return(hdfragl[hp->fd].writable);
681 >        DCHECK(i < 1 | i > nbeams(hp),
682 >                        CONSISTENCY, "bad beam index in hdsyncbeam");
683                                          /* is current fragment OK? */
684          if (hp->bl[i] == NULL || (nrays = hp->bl[i]->nrm) == hp->bi[i].nrd)
685                  return(0);
686 <        if (hp->bi[i].nrd)              /* relinquish old fragment */
687 <                hdfreefrag(hp->fd, &hp->bi[i]);
686 >                                        /* relinquish old fragment? */
687 >        fragfreed = hdfragflags&FF_WRITE && hp->bi[i].nrd && hdfreefrag(hp,i);
688          if (nrays) {                    /* get and write new fragment */
689                  nfo = hdallocfrag(hp->fd, nrays);
690                  errno = 0;
# Line 543 | Line 692 | register int   i;
692                          error(SYSTEM, "cannot seek on holodeck file");
693                  n = hp->bl[i]->nrm * sizeof(RAYVAL);
694                  if (write(hp->fd, (char *)hdbray(hp->bl[i]), n) != n) {
695 <                        hdfragl[hp->fd].writerr++;
695 >                        hdfragl[hp->fd].writable = -1;
696                          hdsync(NULL, 0);        /* sync directories */
697                          error(SYSTEM, "write error in hdsyncbeam");
698                  }
699                  hp->bi[i].fo = nfo;
700          } else
701 <                hp->bi[i].fo = 0L;
701 >                hp->bi[i].fo = 0;
702          biglob(hp)->nrd += nrays - hp->bi[i].nrd;
703          hp->bi[i].nrd = nrays;
704 <        markdirty(hp);                  /* section directory now out of date */
704 >        if (!fragfreed)
705 >                hdmarkdirty(hp, i);             /* need to flag dir. ent. */
706          return(1);
707   }
708  
# Line 570 | Line 720 | register int   i;
720                          nchanged += hdfreebeam(hdlist[i], 0);
721                  return(nchanged);
722          }
723 <        if (hdfragl[hp->fd].writerr)    /* check for file error */
723 >        if (hdfragl[hp->fd].writable < 0)       /* check for file error */
724                  return(0);
725          if (i == 0) {                   /* clear entire holodeck */
726 +                if (blglob(hp)->nrm == 0)
727 +                        return(0);              /* already clear */
728                  nchanged = 0;
729                  for (i = nbeams(hp); i > 0; i--)
730                          if (hp->bl[i] != NULL)
731                                  nchanged += hdfreebeam(hp, i);
732 +                DCHECK(blglob(hp)->nrm != 0,
733 +                                CONSISTENCY, "bad beam count in hdfreebeam");
734                  return(nchanged);
735          }
736 < #ifdef DEBUG
737 <        if (i < 1 | i > nbeams(hp))
584 <                error(CONSISTENCY, "bad beam index to hdfreebeam");
585 < #endif
736 >        DCHECK(i < 1 | i > nbeams(hp),
737 >                        CONSISTENCY, "bad beam index to hdfreebeam");
738          if (hp->bl[i] == NULL)
739                  return(0);
740                                          /* check for additions */
# Line 590 | Line 742 | register int   i;
742          if (nchanged)
743                  hdsyncbeam(hp, i);              /* write new fragment */
744          blglob(hp)->nrm -= hp->bl[i]->nrm;
745 <        free((char *)hp->bl[i]);                /* free memory */
745 >        free((void *)hp->bl[i]);                /* free memory */
746          hp->bl[i] = NULL;
747          return(nchanged);
748   }
# Line 601 | Line 753 | hdkillbeam(hp, i)              /* delete beam from holodeck */
753   register HOLO   *hp;
754   register int    i;
755   {
604        static BEAM     emptybeam;
756          int     nchanged;
757  
758          if (hp == NULL) {               /* clobber all holodecks */
# Line 611 | Line 762 | register int   i;
762                  return(nchanged);
763          }
764          if (i == 0) {                   /* clobber entire holodeck */
765 +                if ((biglob(hp)->nrd == 0) & (blglob(hp)->nrm == 0))
766 +                        return(0);              /* already empty */
767                  nchanged = 0;
768 +                nchanged = 0;
769                  for (i = nbeams(hp); i > 0; i--)
770                          if (hp->bi[i].nrd > 0 || hp->bl[i] != NULL)
771                                  nchanged += hdkillbeam(hp, i);
772 < #ifdef DEBUG
773 <                if (biglob(hp)->nrd != 0 | blglob(hp)->nrm != 0)
620 <                        error(CONSISTENCY, "bad beam count in hdkillbeam");
621 < #endif
772 >                DCHECK(biglob(hp)->nrd != 0 | blglob(hp)->nrm != 0,
773 >                                CONSISTENCY, "bad beam count in hdkillbeam");
774                  return(nchanged);
775          }
776 < #ifdef DEBUG
777 <        if (i < 1 | i > nbeams(hp))
778 <                error(CONSISTENCY, "bad beam index to hdkillbeam");
779 < #endif
776 >        DCHECK(i < 1 | i > nbeams(hp), CONSISTENCY,
777 >                        "bad beam index to hdkillbeam");
778 >        DCHECK(!hdfragl[hp->fd].writable, CONSISTENCY,
779 >                        "hdkillbeam called on read-only holodeck");
780          if (hp->bl[i] != NULL) {        /* free memory */
781                  blglob(hp)->nrm -= nchanged = hp->bl[i]->nrm;
782 <                free((char *)hp->bl[i]);
782 >                free((void *)hp->bl[i]);
783 >                hp->bl[i] = NULL;
784          } else
785                  nchanged = hp->bi[i].nrd;
786 <        if (hp->bi[i].nrd) {            /* free file fragment */
787 <                hp->bl[i] = &emptybeam;
788 <                hdsyncbeam(hp, i);
786 >        if (hp->bi[i].nrd && !(hdfragflags&FF_KILL && hdfreefrag(hp,i))) {
787 >                biglob(hp)->nrd -= hp->bi[i].nrd;       /* free failed */
788 >                hp->bi[i].nrd = 0;
789 >                hp->bi[i].fo = 0;
790 >                hdmarkdirty(hp, i);
791          }
637        hp->bl[i] = NULL;
792          return(nchanged);
793   }
794  
# Line 664 | Line 818 | register HOLO  *hp;                    /* section we're adding from */
818                                  hb[j].b = i;
819                                  break;
820                          }
821 <                        copystruct(hb+j, hb+(j-1));
821 >                        *(hb+j) = *(hb+(j-1));
822                  }
823          }
824          return(nents);                  /* return new list length */
# Line 680 | Line 834 | register HOLO  *honly;                 /* NULL means check all */
834          int     freetarget;
835          int     n;
836          register int    i;
837 + #ifdef DEBUG
838 +        unsigned        membefore;
839 +
840 +        membefore = hdmemuse(0);
841 + #endif
842                                                  /* compute free target */
843          freetarget = (honly != NULL) ? blglob(honly)->nrm :
844                          hdmemuse(0)/sizeof(RAYVAL) ;
# Line 700 | Line 859 | register HOLO  *honly;                 /* NULL means check all */
859                          break;
860          }
861          hdsync(honly, 0);       /* synchronize directories as necessary */
862 + #ifdef DEBUG
863 +        sprintf(errmsg,
864 +        "%dK before, %dK after hdfreecache (%dK total), %d rays short\n",
865 +                membefore>>10, hdmemuse(0)>>10, hdmemuse(1)>>10, freetarget);
866 +        wputs(errmsg);
867 + #endif
868          return(-freetarget);    /* return how far past goal we went */
869   }
870  
# Line 712 | Line 877 | register HOLO  *hp;            /* NULL means clean up all */
877          if (hp == NULL) {               /* NULL means clean up everything */
878                  while (hdlist[0] != NULL)
879                          hddone(hdlist[0]);
880 <                free((char *)hdfragl);
880 >                free((void *)hdfragl);
881                  hdfragl = NULL; nhdfragls = 0;
882                  return;
883          }
# Line 727 | Line 892 | register HOLO  *hp;            /* NULL means clean up all */
892                                  i++;
893                          break;
894                  }
895 <        free((char *)hp->bl);           /* free beam list */
896 <        free((char *)hp);               /* free holodeck struct */
895 >        free((void *)hp->bl);           /* free beam list */
896 >        free((void *)hp);               /* free holodeck struct */
897   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines