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.15 by gregl, Mon Dec 29 15:17:45 1997 UTC vs.
Revision 3.28 by gwlarson, Mon Nov 9 17:10:53 1998 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1997 Silicon Graphics, Inc. */
1 > /* Copyright (c) 1998 Silicon Graphics, Inc. */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ SGI";
# Line 16 | Line 16 | static char SCCSid[] = "$SunId$ SGI";
16   #define CACHESIZE       16      /* default cache size (Mbytes, 0==inf) */
17   #endif
18   #ifndef FREEBEAMS
19 < #define FREEBEAMS       512     /* maximum beams to free at a time */
19 > #define FREEBEAMS       1500    /* maximum beams to free at a time */
20   #endif
21   #ifndef PCTFREE
22 < #define PCTFREE         20      /* maximum fraction to free (%) */
22 > #define PCTFREE         15      /* maximum fraction to free (%) */
23   #endif
24   #ifndef MAXFRAG
25 < #define MAXFRAG         131000  /* maximum fragments/file to track (0==inf) */
25 > #define MAXFRAG         32767   /* maximum fragments/file to track (0==inf) */
26   #endif
27  
28   #ifndef BSD
# Line 30 | Line 30 | static char SCCSid[] = "$SunId$ SGI";
30   #define read    readbuf
31   #endif
32  
33 < #define FRAGBLK         64      /* number of fragments to allocate at a time */
33 > #define FRAGBLK         256     /* number of fragments to allocate at a time */
34  
35   unsigned        hdcachesize = CACHESIZE*1024*1024;      /* target cache size */
36   unsigned long   hdclock;        /* clock value */
37  
38   HOLO    *hdlist[HDMAX+1];       /* holodeck pointers (NULL term.) */
39  
40 < static struct fragment {
40 > static struct fraglist {
41          short   nlinks;         /* number of holodeck sections using us */
42          short   writerr;        /* write error encountered */
43          int     nfrags;         /* number of known fragments */
44          BEAMI   *fi;            /* fragments, descending file position */
45          long    flen;           /* last known file length */
46 < } *hdfrag;              /* fragment lists, indexed by file descriptor */
46 > } *hdfragl;             /* fragment lists, indexed by file descriptor */
47  
48 < static int      nhdfrags;       /* size of hdfrag array */
48 > static int      nhdfragls;      /* size of hdfragl array */
49  
50  
51 + char *
52 + hdrealloc(ptr, siz, rout)       /* (re)allocate memory, retry then error */
53 + char    *ptr;
54 + unsigned        siz;
55 + char    *rout;
56 + {
57 +        register char   *newp;
58 +                                        /* call malloc/realloc */
59 +        if (ptr == NULL) newp = (char *)malloc(siz);
60 +        else newp = (char *)realloc(ptr, siz);
61 +                                        /* check success */
62 +        if (newp == NULL && rout != NULL) {
63 +                hdfreecache(25, NULL);  /* free some memory */
64 +                errno = 0;              /* retry */
65 +                newp = hdrealloc(ptr, siz, NULL);
66 +                if (newp == NULL) {     /* give up and report error */
67 +                        sprintf(errmsg, "out of memory in %s", rout);
68 +                        error(SYSTEM, errmsg);
69 +                }
70 +        }
71 +        return(newp);
72 + }
73 +
74 +
75   hdattach(fd)            /* start tracking file fragments for some section */
76   register int    fd;
77   {
78 <        if (fd >= nhdfrags) {
79 <                if (nhdfrags)
80 <                        hdfrag = (struct fragment *)realloc((char *)hdfrag,
81 <                                        (fd+1)*sizeof(struct fragment));
82 <                else
83 <                        hdfrag = (struct fragment *)malloc(
60 <                                        (fd+1)*sizeof(struct fragment));
61 <                if (hdfrag == NULL)
62 <                        error(SYSTEM, "out of memory in hdattach");
63 <                bzero((char *)(hdfrag+nhdfrags),
64 <                                (fd+1-nhdfrags)*sizeof(struct fragment));
65 <                nhdfrags = fd+1;
78 >        if (fd >= nhdfragls) {
79 >                hdfragl = (struct fraglist *)hdrealloc((char *)hdfragl,
80 >                                (fd+1)*sizeof(struct fraglist), "hdattach");
81 >                bzero((char *)(hdfragl+nhdfragls),
82 >                                (fd+1-nhdfragls)*sizeof(struct fraglist));
83 >                nhdfragls = fd+1;
84          }
85 <        hdfrag[fd].nlinks++;
86 <        hdfrag[fd].flen = lseek(fd, 0L, 2);     /* get file length */
85 >        hdfragl[fd].nlinks++;
86 >        hdfragl[fd].flen = lseek(fd, 0L, 2);    /* get file length */
87   }
88  
89  
# Line 75 | Line 93 | register int   fd;
93   hdrelease(fd)           /* stop tracking file fragments for some section */
94   register int    fd;
95   {
96 <        if (fd < 0 | fd >= nhdfrags || !hdfrag[fd].nlinks)
96 >        if (fd < 0 | fd >= nhdfragls || !hdfragl[fd].nlinks)
97                  return;
98 <        if (!--hdfrag[fd].nlinks && hdfrag[fd].nfrags) {
99 <                free((char *)hdfrag[fd].fi);
100 <                hdfrag[fd].fi = NULL;
101 <                hdfrag[fd].nfrags = 0;
98 >        if (!--hdfragl[fd].nlinks && hdfragl[fd].nfrags) {
99 >                free((char *)hdfragl[fd].fi);
100 >                hdfragl[fd].fi = NULL;
101 >                hdfragl[fd].nfrags = 0;
102          }
103   }
104  
105  
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
106   HOLO *
107   hdinit(fd, hproto)      /* initialize a holodeck section in a file */
108   int     fd;                     /* corresponding file descriptor */
109   HDGRID  *hproto;                /* holodeck section grid */
110   {
111 +        long    rtrunc;
112          long    fpos;
113          register HOLO   *hp;
114          register int    n;
# Line 125 | Line 129 | HDGRID *hproto;                /* holodeck section grid */
129                  if (read(fd, (char *)(hp->bi+1), n) != n)
130                          error(SYSTEM, "failure loading holodeck directory");
131                                                  /* check that it's clean */
132 <                if (hp->bi[nbeams(hp)].fo < 0)
133 <                        error(USER, "dirty holodeck section");
132 >                for (n = nbeams(hp); n > 0; n--)
133 >                        if (hp->bi[n].fo < 0) {
134 >                                hp->bi[n].fo = 0;
135 >                                error(WARNING, "dirty holodeck section");
136 >                                break;
137 >                        }
138          } else {                        /* assume we're creating it */
139                  if ((hp = hdalloc(hproto)) == NULL)
140                          goto memerr;
# Line 144 | Line 152 | HDGRID *hproto;                /* holodeck section grid */
152          hdattach(fd);
153                                          /* check rays on disk */
154          fpos = hdfilen(fd);
155 <        biglob(hp)->nrd = 0;
155 >        biglob(hp)->nrd = rtrunc = 0;
156          for (n = hproto == NULL ? nbeams(hp) : 0; n > 0; n--)
157                  if (hp->bi[n].nrd)
158 <                        if (hp->bi[n].fo + hp->bi[n].nrd > fpos)
159 <                                hp->bi[n].nrd = 0;      /* off end */
160 <                        else
158 >                        if (hp->bi[n].fo+hp->bi[n].nrd*sizeof(RAYVAL) > fpos) {
159 >                                rtrunc += hp->bi[n].nrd;
160 >                                hp->bi[n].nrd = 0;
161 >                        } else
162                                  biglob(hp)->nrd += hp->bi[n].nrd;
163 +        if (rtrunc) {
164 +                sprintf(errmsg, "truncated section, %ld rays lost (%.1f%%)",
165 +                                rtrunc, 100.*rtrunc/(rtrunc+biglob(hp)->nrd));
166 +                error(WARNING, errmsg);
167 +        }
168                                          /* add to holodeck list */
169          for (n = 0; n < HDMAX; n++)
170                  if (hdlist[n] == NULL) {
# Line 164 | Line 178 | memerr:
178   }
179  
180  
181 + markdirty(hp, i)                /* mark holodeck directory position dirty */
182 + register HOLO   *hp;
183 + int     i;
184 + {
185 +        static BEAMI    smudge = {0, -1};
186 +        int     mindist, minpos;
187 +        register int    j;
188 +
189 +        if (!hp->dirty++) {                     /* write smudge first time */
190 +                if (lseek(hp->fd, biglob(hp)->fo+(i-1)*sizeof(BEAMI), 0) < 0
191 +                                || write(hp->fd, (char *)&smudge,
192 +                                        sizeof(BEAMI)) != sizeof(BEAMI))
193 +                        error(SYSTEM, "seek/write error in markdirty");
194 +                hp->dirseg[0].s = i;
195 +                hp->dirseg[0].n = 1;
196 +                return;
197 +        }
198 +                                                /* insert into segment list */
199 +        for (j = hp->dirty; j--; ) {
200 +                if (!j || hp->dirseg[j-1].s < i) {
201 +                        hp->dirseg[j].s = i;
202 +                        hp->dirseg[j].n = 1;
203 +                        break;
204 +                }
205 +                copystruct(hp->dirseg+j, hp->dirseg+(j-1));
206 +        }
207 +        mindist = nbeams(hp);                   /* find closest neighbors */
208 +        for (j = hp->dirty; --j; )
209 +                if (hp->dirseg[j].s - (hp->dirseg[j-1].s + hp->dirseg[j-1].n)
210 +                                < mindist) {
211 +                        mindist = hp->dirseg[j].s -
212 +                                        (hp->dirseg[j-1].s + hp->dirseg[j-1].n);
213 +                        minpos = j;
214 +                }
215 +        if (hp->dirty > MAXDIRSE || mindist <= BUFSIZ/sizeof(BEAMI)) {
216 +                j = minpos - 1;                 /* coalesce neighbors */
217 +                if (hp->dirseg[j].s + hp->dirseg[j].n <
218 +                                hp->dirseg[minpos].s + hp->dirseg[minpos].n) {
219 +                        hp->dirseg[j].n = hp->dirseg[minpos].s +
220 +                                        hp->dirseg[minpos].n - hp->dirseg[j].s;
221 +                }
222 +                hp->dirty--;                    /* close the gap */
223 +                for (j = minpos; j < hp->dirty; j++)
224 +                        copystruct(hp->dirseg+j, hp->dirseg+(j+1));
225 +        }
226 + }
227 +
228 +
229   int
230   hdsync(hp, all)                 /* update beams and directory on disk */
231   register HOLO   *hp;
# Line 183 | Line 245 | int    all;
245                          hdsyncbeam(hp, j);
246          if (!hp->dirty)                 /* directory clean? */
247                  return(0);
248 <        errno = 0;
249 <        if (lseek(hp->fd, biglob(hp)->fo, 0) < 0)
250 <                error(SYSTEM, "cannot seek on holodeck file");
251 <        n = nbeams(hp)*sizeof(BEAMI);
252 <        if (write(hp->fd, (char *)(hp->bi+1), n) != n)
253 <                error(SYSTEM, "cannot update holodeck section directory");
254 <        hp->dirty = 0;
248 >        errno = 0;                      /* write dirty segments */
249 >        for (j = 0; j < hp->dirty; j++) {
250 >                if (lseek(hp->fd, biglob(hp)->fo +
251 >                                (hp->dirseg[j].s-1)*sizeof(BEAMI), 0) < 0)
252 >                        error(SYSTEM, "cannot seek on holodeck file");
253 >                n = hp->dirseg[j].n * sizeof(BEAMI);
254 >                if (write(hp->fd, (char *)(hp->bi+hp->dirseg[j].s), n) != n)
255 >                        error(SYSTEM, "cannot update section directory");
256 >        }
257 >        hp->dirty = 0;                  /* all clean */
258          return(1);
259   }
260  
# Line 213 | Line 278 | int    all;                    /* include overhead (painful) */
278                  }
279          }
280          if (all)
281 <                for (j = 0; j < nhdfrags; j++) {
282 <                        total += sizeof(struct fragment);
283 <                        if (hdfrag[j].nfrags)
281 >                for (j = 0; j < nhdfragls; j++) {
282 >                        total += sizeof(struct fraglist);
283 >                        if (hdfragl[j].nfrags)
284                                  total += FRAGBLK*sizeof(BEAMI) *
285 <                                        ((hdfrag[j].nfrags-1)/FRAGBLK + 1) ;
285 >                                        ((hdfragl[j].nfrags-1)/FRAGBLK + 1) ;
286                  }
287          return(total);
288   }
# Line 231 | Line 296 | int    fd;
296  
297          if (fd < 0)
298                  return(-1);
299 <        if (fd >= nhdfrags || !hdfrag[fd].nlinks) {
299 >        if (fd >= nhdfragls || !hdfragl[fd].nlinks) {
300                  if ((fpos = lseek(fd, 0L, 1)) < 0)
301                          return(-1);
302                  flen = lseek(fd, 0L, 2);
303                  lseek(fd, fpos, 0);
304                  return(flen);
305          }
306 <        return(hdfrag[fd].flen);
306 >        return(hdfragl[fd].flen);
307   }
308  
309  
# Line 285 | Line 350 | int    nr;                     /* number of new rays desired */
350                  hp->bl[i]->tick = hdclock;      /* preempt swap */
351          if (hdcachesize > 0 && hdmemuse(0) >= hdcachesize)
352                  hdfreecache(PCTFREE, NULL);     /* free some space */
288        errno = 0;
353          if (hp->bl[i] == NULL) {                /* allocate (and load) */
354                  n = hp->bi[i].nrd + nr;
355 <                if ((hp->bl[i] = (BEAM *)malloc(hdbsiz(n))) == NULL)
292 <                        goto memerr;
355 >                hp->bl[i] = (BEAM *)hdrealloc(NULL, hdbsiz(n), "hdnewrays");
356                  blglob(hp)->nrm += n;
357                  if (n = hp->bl[i]->nrm = hp->bi[i].nrd) {
358 +                        errno = 0;
359                          if (lseek(hp->fd, hp->bi[i].fo, 0) < 0)
360                                  error(SYSTEM, "seek error on holodeck file");
361                          n *= sizeof(RAYVAL);
# Line 300 | Line 364 | int    nr;                     /* number of new rays desired */
364                                  "error reading beam from holodeck file");
365                  }
366          } else {                                /* just grow in memory */
367 <                hp->bl[i] = (BEAM *)realloc( (char *)hp->bl[i],
368 <                                hdbsiz(hp->bl[i]->nrm + nr) );
305 <                if (hp->bl[i] == NULL)
306 <                        goto memerr;
367 >                hp->bl[i] = (BEAM *)hdrealloc((char *)hp->bl[i],
368 >                                hdbsiz(hp->bl[i]->nrm + nr), "hdnewrays");
369                  blglob(hp)->nrm += nr;
370          }
371          p = hdbray(hp->bl[i]) + hp->bl[i]->nrm;
372          hp->bl[i]->nrm += nr;                   /* update in-core structure */
373          bzero((char *)p, nr*sizeof(RAYVAL));
374 <        hp->bl[i]->tick = hdclock;              /* update LRU clock */
313 <        blglob(hp)->tick = hdclock++;
374 >        blglob(hp)->tick = hp->bl[i]->tick = hdclock++; /* update LRU clock */
375          return(p);                              /* point to new rays */
315 memerr:
316        error(SYSTEM, "out of memory in hdnewrays");
376   }
377  
378  
# Line 331 | Line 390 | register int   i;
390                          return(NULL);
391                  if (hdcachesize > 0 && hdmemuse(0) >= hdcachesize)
392                          hdfreecache(PCTFREE, NULL);     /* get free space */
393 <                errno = 0;
335 <                if ((hp->bl[i] = (BEAM *)malloc(hdbsiz(n))) == NULL)
336 <                        error(SYSTEM, "cannot allocate memory for beam");
393 >                hp->bl[i] = (BEAM *)hdrealloc(NULL, hdbsiz(n), "hdgetbeam");
394                  blglob(hp)->nrm += hp->bl[i]->nrm = n;
395 +                errno = 0;
396                  if (lseek(hp->fd, hp->bi[i].fo, 0) < 0)
397                          error(SYSTEM, "seek error on holodeck file");
398                  n *= sizeof(RAYVAL);
399                  if (read(hp->fd, (char *)hdbray(hp->bl[i]), n) != n)
400                          error(SYSTEM, "error reading beam from holodeck file");
401          }
402 <        hp->bl[i]->tick = hdclock;      /* update LRU clock */
345 <        blglob(hp)->tick = hdclock++;
402 >        blglob(hp)->tick = hp->bl[i]->tick = hdclock++; /* update LRU clock */
403          return(hp->bl[i]);
404   }
405  
406  
407   int
408 < hdfilord(hb1, hb2)      /* order beams for optimal loading */
408 > hdfilord(hb1, hb2)      /* order beams for quick loading */
409   register HDBEAMI        *hb1, *hb2;
410   {
411 <        register int    c;
412 <                                /* sort by file descriptor first */
411 >        register long   c;
412 >                                /* residents go first */
413 >        if (hb2->h->bl[hb2->b] != NULL)
414 >                return(hb1->h->bl[hb1->b] == NULL);
415 >        if (hb1->h->bl[hb1->b] != NULL)
416 >                return(-1);
417 >                                /* otherwise sort by file descriptor */
418          if ((c = hb1->h->fd - hb2->h->fd))
419                  return(c);
420                                  /* then by position in file */
421 <        return(hb1->h->bi[hb1->b].fo - hb2->h->bi[hb2->b].fo);
421 >        c = hb1->h->bi[hb1->b].fo - hb2->h->bi[hb2->b].fo;
422 >        return(c > 0 ? 1 : c < 0 ? -1 : 0);
423   }
424  
425  
# Line 366 | Line 429 | int    n;                      /* list length */
429   int     (*bf)();                /* callback function (optional) */
430   {
431          unsigned        origcachesize, memuse;
369        register BEAM   *bp;
432          int     bytesloaded, needbytes, bytes2free;
433 +        register BEAM   *bp;
434          register int    i;
435                                          /* precheck consistency */
436 +        if (n <= 0) return;
437          for (i = n; i--; )
438                  if (hb[i].h == NULL || hb[i].b < 1 | hb[i].b > nbeams(hb[i].h))
439                          error(CONSISTENCY, "bad beam in hdloadbeams");
440                                          /* sort list for optimal access */
441          qsort((char *)hb, n, sizeof(HDBEAMI), hdfilord);
442 <        bytesloaded = needbytes = 0;    /* figure out memory needs */
442 >        bytesloaded = 0;                /* run through loaded beams */
443 >        for ( ; n && (bp = hb->h->bl[hb->b]) != NULL; n--, hb++) {
444 >                bp->tick = hdclock;     /* preempt swap */
445 >                bytesloaded += bp->nrm;
446 >                if (bf != NULL)
447 >                        (*bf)(bp, hb);
448 >        }
449 >        bytesloaded *= sizeof(RAYVAL);
450          if ((origcachesize = hdcachesize) > 0) {
451 +                needbytes = 0;          /* figure out memory needs */
452                  for (i = n; i--; )
453 <                        if ((bp = hb[i].h->bl[hb[i].b]) != NULL) {
382 <                                bp->tick = hdclock;     /* preempt swap */
383 <                                bytesloaded += bp->nrm;
384 <                        } else                          /* prepare to load */
385 <                                needbytes += hb[i].h->bi[hb[i].b].nrd;
386 <                bytesloaded *= sizeof(RAYVAL);
453 >                        needbytes += hb[i].h->bi[hb[i].b].nrd;
454                  needbytes *= sizeof(RAYVAL);
455                  do {                            /* free enough memory */
456                          memuse = hdmemuse(0);
457 <                        bytes2free = needbytes - (signed)(hdcachesize-memuse);
458 <                        if (bytes2free > (signed)(memuse - bytesloaded))
457 >                        bytes2free = needbytes - (int)(hdcachesize-memuse);
458 >                        if (bytes2free > (int)(memuse - bytesloaded))
459                                  bytes2free = memuse - bytesloaded;
460                  } while (bytes2free > 0 &&
461                                  hdfreecache(100*bytes2free/memuse, NULL) < 0);
462 +                hdcachesize = 0;                /* load beams w/o swap */
463          }
396        hdcachesize = 0;                /* load the ordered beams w/o swap */
464          for (i = 0; i < n; i++)
465                  if ((bp = hdgetbeam(hb[i].h, hb[i].b)) != NULL && bf != NULL)
466 <                        (*bf)(bp, hb[i].h, hb[i].b);
466 >                        (*bf)(bp, hb+i);
467          hdcachesize = origcachesize;    /* resume dynamic swapping */
468   }
469  
470  
471 + hdfreefrag(fd, bi)                      /* free a file fragment */
472 + int     fd;
473 + register BEAMI  *bi;
474 + {
475 +        register struct fraglist        *f;
476 +        register int    j, k;
477 +
478 +        if (bi->nrd == 0)
479 +                return;
480 + #ifdef DEBUG
481 +        if (fd < 0 | fd >= nhdfragls || !hdfragl[fd].nlinks)
482 +                error(CONSISTENCY, "bad file descriptor in hdfreefrag");
483 + #endif
484 +        f = &hdfragl[fd];
485 +        if (f->nfrags % FRAGBLK == 0) { /* delete empty remnants */
486 +                for (j = k = 0; k < f->nfrags; j++, k++) {
487 +                        while (f->fi[k].nrd == 0)
488 +                                if (++k >= f->nfrags)
489 +                                        goto endloop;
490 +                        if (k > j)
491 +                                copystruct(f->fi+j, f->fi+k);
492 +                }
493 +        endloop:
494 +                f->nfrags = j;
495 +        }
496 +        j = f->nfrags++;                /* allocate a slot in free list */
497 + #if MAXFRAG
498 +        if (j >= MAXFRAG-1)
499 +                f->nfrags--;
500 + #endif
501 +        if (j % FRAGBLK == 0) {         /* more free list space */
502 +                register BEAMI  *newp;
503 +                if (f->fi == NULL)
504 +                        newp = (BEAMI *)malloc((j+FRAGBLK)*sizeof(BEAMI));
505 +                else
506 +                        newp = (BEAMI *)realloc((char *)f->fi,
507 +                                        (j+FRAGBLK)*sizeof(BEAMI));
508 +                if (newp == NULL) {
509 +                        f->nfrags--;    /* graceful failure */
510 +                        return;
511 +                }
512 +                f->fi = newp;
513 +        }
514 +        for ( ; ; j--) {                /* insert in descending list */
515 +                if (!j || bi->fo < f->fi[j-1].fo) {
516 +                        f->fi[j].fo = bi->fo;
517 +                        f->fi[j].nrd = bi->nrd;
518 +                        break;
519 +                }
520 +                copystruct(f->fi+j, f->fi+(j-1));
521 +        }
522 +                                        /* coalesce adjacent fragments */
523 +                                                /* successors never empty */
524 +        if (j && f->fi[j-1].fo == f->fi[j].fo + f->fi[j].nrd*sizeof(RAYVAL)) {
525 +                f->fi[j].nrd += f->fi[j-1].nrd;
526 +                f->fi[j-1].nrd = 0;
527 +        }
528 +        for (k = j+1; k < f->nfrags; k++)       /* get non-empty predecessor */
529 +                if (f->fi[k].nrd) {
530 +                        if (f->fi[j].fo == f->fi[k].fo +
531 +                                        f->fi[k].nrd*sizeof(RAYVAL)) {
532 +                                f->fi[k].nrd += f->fi[j].nrd;
533 +                                f->fi[j].nrd = 0;
534 +                        }
535 +                        break;
536 +                }
537 + }
538 +
539 +
540 + long
541 + hdallocfrag(fd, nrays)          /* allocate a file fragment */
542 + int     fd;
543 + unsigned int4   nrays;
544 + {
545 +        register struct fraglist        *f;
546 +        register int    j, k;
547 +        long    nfo;
548 +
549 +        if (nrays == 0)
550 +                return(-1L);
551 + #ifdef DEBUG
552 +        if (fd < 0 | fd >= nhdfragls || !hdfragl[fd].nlinks)
553 +                error(CONSISTENCY, "bad file descriptor in hdallocfrag");
554 + #endif
555 +        f = &hdfragl[fd];
556 +        k = -1;                         /* find closest-sized fragment */
557 +        for (j = f->nfrags; j-- > 0; )
558 +                if (f->fi[j].nrd >= nrays &&
559 +                                (k < 0 || f->fi[j].nrd < f->fi[k].nrd))
560 +                        if (f->fi[k=j].nrd == nrays)
561 +                                break;
562 +        if (k < 0) {                    /* no fragment -- extend file */
563 +                nfo = f->flen;
564 +                f->flen += nrays*sizeof(RAYVAL);
565 +        } else {                        /* else use fragment */
566 +                nfo = f->fi[k].fo;
567 +                f->fi[k].fo += nrays*sizeof(RAYVAL);
568 +                f->fi[k].nrd -= nrays;
569 +        }
570 +        return(nfo);
571 + }
572 +
573 +
574   int
575   hdsyncbeam(hp, i)               /* sync beam in memory with beam on disk */
576   register HOLO   *hp;
577   register int    i;
578   {
579 <        unsigned int    nrays;
410 <        long    nfo;
579 >        unsigned int4   nrays;
580          unsigned int    n;
581 +        long    nfo;
582                                          /* check file status */
583 <        if (hdfrag[hp->fd].writerr)
583 >        if (hdfragl[hp->fd].writerr)
584                  return(-1);
585   #ifdef DEBUG
586          if (i < 1 | i > nbeams(hp))
# Line 419 | Line 589 | register int   i;
589                                          /* is current fragment OK? */
590          if (hp->bl[i] == NULL || (nrays = hp->bl[i]->nrm) == hp->bi[i].nrd)
591                  return(0);
592 <                                        /* locate fragment */
593 <        if (hp->fd >= nhdfrags || !hdfrag[hp->fd].nlinks) /* untracked */
594 <                hp->bi[i].fo = lseek(hp->fd, 0L, 2);
595 <
426 <        else if (hp->bi[i].fo + hp->bi[i].nrd*sizeof(RAYVAL) ==
427 <                        hdfrag[hp->fd].flen)            /* EOF special case */
428 <                hdfrag[hp->fd].flen = (nfo=hp->bi[i].fo) + nrays*sizeof(RAYVAL);
429 <
430 <        else {                                          /* general case */
431 <                register struct fragment        *f = &hdfrag[hp->fd];
432 <                register int    j, k;
433 <                                        /* relinquish old fragment */
434 <                if (hp->bi[i].nrd) {
435 <                        j = f->nfrags++;
436 < #if MAXFRAG
437 <                        if (j >= MAXFRAG-1)
438 <                                f->nfrags--;
439 < #endif
440 <                        if (j % FRAGBLK == 0) {         /* more frag. space */
441 <                                if (f->fi == NULL)
442 <                                        f->fi = (BEAMI *)malloc(
443 <                                                        FRAGBLK*sizeof(BEAMI));
444 <                                else
445 <                                        f->fi = (BEAMI *)realloc((char *)f->fi,
446 <                                                (j+FRAGBLK)*sizeof(BEAMI));
447 <                                if (f->fi == NULL)
448 <                                        error(SYSTEM,
449 <                                                "out of memory in hdsyncbeam");
450 <                        }
451 <                        for ( ; ; j--) {        /* insert in descending list */
452 <                                if (!j || hp->bi[i].fo < f->fi[j-1].fo) {
453 <                                        f->fi[j].fo = hp->bi[i].fo;
454 <                                        f->fi[j].nrd = hp->bi[i].nrd;
455 <                                        break;
456 <                                }
457 <                                copystruct(f->fi+j, f->fi+(j-1));
458 <                        }
459 <                                        /* coalesce adjacent fragments */
460 <                        if (j && f->fi[j-1].fo == f->fi[j].fo +
461 <                                        f->fi[j].nrd*sizeof(RAYVAL)) {
462 <                                f->fi[j].nrd += f->fi[j-1].nrd;
463 <                                f->fi[j-1].nrd = 0;
464 <                        }
465 <                        if (j+1 < f->nfrags && f->fi[j].fo == f->fi[j+1].fo +
466 <                                        f->fi[j+1].nrd*sizeof(RAYVAL)) {
467 <                                f->fi[j+1].nrd += f->fi[j].nrd;
468 <                                f->fi[j].nrd = 0;
469 <                        }
470 <                }
471 <                k = -1;                 /* find closest-sized fragment */
472 <                for (j = (nrays ? f->nfrags : 0); j-- > 0; )
473 <                        if (f->fi[j].nrd >= nrays &&
474 <                                        (k < 0 || f->fi[j].nrd < f->fi[k].nrd))
475 <                                if (f->fi[k=j].nrd == nrays)
476 <                                        break;
477 <                if (k < 0) {            /* no fragment -- extend file */
478 <                        nfo = f->flen;
479 <                        f->flen += nrays*sizeof(RAYVAL);
480 <                } else {                /* else use fragment */
481 <                        nfo = f->fi[k].fo;
482 <                        f->fi[k].fo += nrays*sizeof(RAYVAL);
483 <                        f->fi[k].nrd -= nrays;
484 <                }
485 <                                        /* delete empty remnants */
486 <                for (j = k = 0; k < f->nfrags; j++, k++) {
487 <                        while (f->fi[k].nrd == 0)
488 <                                if (++k >= f->nfrags)
489 <                                        goto endloop;
490 <                        if (k > j)
491 <                                copystruct(f->fi+j, f->fi+k);
492 <                }
493 <        endloop:
494 <                f->nfrags = j;
495 <        }
496 <        if (nrays) {            /* write the new fragment */
592 >        if (hp->bi[i].nrd)              /* relinquish old fragment */
593 >                hdfreefrag(hp->fd, &hp->bi[i]);
594 >        if (nrays) {                    /* get and write new fragment */
595 >                nfo = hdallocfrag(hp->fd, nrays);
596                  errno = 0;
597                  if (lseek(hp->fd, nfo, 0) < 0)
598                          error(SYSTEM, "cannot seek on holodeck file");
599                  n = hp->bl[i]->nrm * sizeof(RAYVAL);
600                  if (write(hp->fd, (char *)hdbray(hp->bl[i]), n) != n) {
601 <                        hdfrag[hp->fd].writerr++;
602 <                        hdsync(hp, 0);          /* sync directory */
601 >                        hdfragl[hp->fd].writerr++;
602 >                        hdsync(NULL, 0);        /* sync directories */
603                          error(SYSTEM, "write error in hdsyncbeam");
604                  }
605 <        }
605 >                hp->bi[i].fo = nfo;
606 >        } else
607 >                hp->bi[i].fo = 0L;
608          biglob(hp)->nrd += nrays - hp->bi[i].nrd;
609          hp->bi[i].nrd = nrays;
610 <        hp->bi[i].fo = nfo;
510 <        markdirty(hp);          /* section directory now out of date */
610 >        markdirty(hp, i);               /* section directory now out of date */
611          return(1);
612   }
613  
# Line 525 | Line 625 | register int   i;
625                          nchanged += hdfreebeam(hdlist[i], 0);
626                  return(nchanged);
627          }
628 <        if (hdfrag[hp->fd].writerr)     /* check for file error */
628 >        if (hdfragl[hp->fd].writerr)    /* check for file error */
629                  return(0);
630          if (i == 0) {                   /* clear entire holodeck */
631                  nchanged = 0;
# Line 603 | Line 703 | register HOLO  *hp;                    /* section we're adding from */
703   {
704          register int    i, j;
705                                          /* insert each beam from hp */
706 <        for (i = nbeams(hp); i > 0; i--) {
706 >        for (i = 1; i <= nbeams(hp); i++) {
707                  if (hp->bl[i] == NULL)          /* check if loaded */
708                          continue;
709   #if 0
# Line 635 | Line 735 | register HOLO  *honly;                 /* NULL means check all */
735          int     freetarget;
736          int     n;
737          register int    i;
738 + #ifdef DEBUG
739 +        unsigned        membefore;
740 +
741 +        membefore = hdmemuse(0);
742 + #endif
743                                                  /* compute free target */
744          freetarget = (honly != NULL) ? blglob(honly)->nrm :
745                          hdmemuse(0)/sizeof(RAYVAL) ;
# Line 655 | Line 760 | register HOLO  *honly;                 /* NULL means check all */
760                          break;
761          }
762          hdsync(honly, 0);       /* synchronize directories as necessary */
763 + #ifdef DEBUG
764 +        sprintf(errmsg,
765 +        "%dK before, %dK after hdfreecache (%dK total), %d rays short\n",
766 +                membefore>>10, hdmemuse(0)>>10, hdmemuse(1)>>10, freetarget);
767 +        wputs(errmsg);
768 + #endif
769          return(-freetarget);    /* return how far past goal we went */
770   }
771  
# Line 667 | Line 778 | register HOLO  *hp;            /* NULL means clean up all */
778          if (hp == NULL) {               /* NULL means clean up everything */
779                  while (hdlist[0] != NULL)
780                          hddone(hdlist[0]);
781 +                free((char *)hdfragl);
782 +                hdfragl = NULL; nhdfragls = 0;
783                  return;
784          }
785                                          /* flush all data and free memory */
786 <        hdflush(hp);
786 >        hdfreebeam(hp, 0);
787 >        hdsync(hp, 0);
788                                          /* release fragment resources */
789          hdrelease(hp->fd);
790                                          /* remove hp from active list */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines