ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/hd/holofile.c
Revision: 3.40
Committed: Fri Mar 12 09:37:48 1999 UTC (25 years, 1 month ago) by gwlarson
Content type: text/plain
Branch: MAIN
Changes since 3.39: +34 -0 lines
Log Message:
moved hdalloc() from holo.c to holofile.c

File Contents

# Content
1 /* Copyright (c) 1999 Silicon Graphics, Inc. */
2
3 #ifndef lint
4 static char SCCSid[] = "$SunId$ SGI";
5 #endif
6
7 /*
8 * Routines for managing holodeck files
9 *
10 * 9/30/97 GWLarson
11 */
12
13 #include "holo.h"
14
15 #ifndef CACHESIZE
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 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))
38 #endif
39
40 #ifndef BSD
41 #define write writebuf /* safe i/o routines */
42 #define read readbuf
43 #endif
44
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 */
50
51 HOLO *hdlist[HDMAX+1]; /* holodeck pointers (NULL term.) */
52
53 static struct fraglist {
54 short nlinks; /* number of holodeck sections using us */
55 short writerr; /* write error encountered */
56 int nfrags; /* number of known fragments */
57 BEAMI *fi; /* fragments, descending file position */
58 long flen; /* last known file length */
59 } *hdfragl; /* fragment lists, indexed by file descriptor */
60
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;
101 unsigned siz;
102 char *rout;
103 {
104 register char *newp;
105 /* call malloc/realloc */
106 if (ptr == NULL) newp = (char *)malloc(siz);
107 else newp = (char *)realloc(ptr, siz);
108 /* check success */
109 if (newp == NULL && rout != NULL) {
110 hdfreecache(25, NULL); /* free some memory */
111 errno = 0; /* retry */
112 newp = hdrealloc(ptr, siz, NULL);
113 if (newp == NULL) { /* give up and report error */
114 sprintf(errmsg, "out of memory in %s", rout);
115 error(SYSTEM, errmsg);
116 }
117 }
118 return(newp);
119 }
120
121
122 hdattach(fd) /* start tracking file fragments for some section */
123 register int fd;
124 {
125 if (fd >= nhdfragls) {
126 hdfragl = (struct fraglist *)hdrealloc((char *)hdfragl,
127 (fd+1)*sizeof(struct fraglist), "hdattach");
128 bzero((char *)(hdfragl+nhdfragls),
129 (fd+1-nhdfragls)*sizeof(struct fraglist));
130 nhdfragls = fd+1;
131 }
132 hdfragl[fd].nlinks++;
133 hdfragl[fd].flen = lseek(fd, 0L, 2); /* get file length */
134 }
135
136
137 /* Do we need a routine to locate file fragments given known occupants? */
138
139
140 hdrelease(fd) /* stop tracking file fragments for some section */
141 register int fd;
142 {
143 if (fd < 0 | fd >= nhdfragls || !hdfragl[fd].nlinks)
144 return;
145 if (!--hdfragl[fd].nlinks && hdfragl[fd].nfrags) {
146 free((char *)hdfragl[fd].fi);
147 hdfragl[fd].fi = NULL;
148 hdfragl[fd].nfrags = 0;
149 }
150 }
151
152
153 HOLO *
154 hdinit(fd, hproto) /* initialize a holodeck section in a file */
155 int fd; /* corresponding file descriptor */
156 HDGRID *hproto; /* holodeck section grid */
157 {
158 long rtrunc;
159 long fpos;
160 register HOLO *hp;
161 register int n;
162 /* prepare for system errors */
163 errno = 0;
164 if ((fpos = lseek(fd, 0L, 1)) < 0)
165 error(SYSTEM, "cannot determine holodeck file position");
166 if (hproto == NULL) { /* assume we're loading it */
167 HDGRID hpr;
168 /* load header */
169 if (read(fd, (char *)&hpr, sizeof(HDGRID)) != sizeof(HDGRID))
170 error(SYSTEM, "cannot load holodeck header");
171 /* allocate grid */
172 if ((hp = hdalloc(&hpr)) == NULL)
173 goto memerr;
174 /* load beam directory */
175 n = nbeams(hp)*sizeof(BEAMI);
176 if (read(fd, (char *)(hp->bi+1), n) != n)
177 error(SYSTEM, "failure loading holodeck directory");
178 /* check that it's clean */
179 for (n = nbeams(hp); n > 0; n--)
180 if (hp->bi[n].fo < 0) {
181 hp->bi[n].fo = 0;
182 error(WARNING, "dirty holodeck section");
183 break;
184 }
185 } else { /* assume we're creating it */
186 if ((hp = hdalloc(hproto)) == NULL)
187 goto memerr;
188 /* write header and skeleton */
189 n = nbeams(hp)*sizeof(BEAMI);
190 if (write(fd, (char *)hproto, sizeof(HDGRID)) !=
191 sizeof(HDGRID) ||
192 write(fd, (char *)(hp->bi+1), n) != n)
193 error(SYSTEM, "cannot write header to holodeck file");
194 }
195 hp->fd = fd;
196 hp->dirty = 0;
197 biglob(hp)->fo = fpos + sizeof(HDGRID);
198 /* start tracking fragments */
199 hdattach(fd);
200 /* check rays on disk */
201 fpos = hdfilen(fd);
202 biglob(hp)->nrd = rtrunc = 0;
203 for (n = hproto == NULL ? nbeams(hp) : 0; n > 0; n--)
204 if (hp->bi[n].nrd)
205 if (hp->bi[n].fo+hp->bi[n].nrd*sizeof(RAYVAL) > fpos) {
206 rtrunc += hp->bi[n].nrd;
207 hp->bi[n].nrd = 0;
208 } else
209 biglob(hp)->nrd += hp->bi[n].nrd;
210 if (rtrunc) {
211 sprintf(errmsg, "truncated section, %ld rays lost (%.1f%%)",
212 rtrunc, 100.*rtrunc/(rtrunc+biglob(hp)->nrd));
213 error(WARNING, errmsg);
214 }
215 /* add to holodeck list */
216 for (n = 0; n < HDMAX; n++)
217 if (hdlist[n] == NULL) {
218 hdlist[n] = hp;
219 break;
220 }
221 /* all done */
222 return(hp);
223 memerr:
224 error(SYSTEM, "cannot allocate holodeck grid");
225 }
226
227
228 hdmarkdirty(hp, i) /* mark holodeck directory position dirty */
229 register HOLO *hp;
230 int i;
231 {
232 static BEAMI smudge = {0, -1};
233 int mindist, minpos;
234 register int j;
235
236 if (!hp->dirty++) { /* write smudge first time */
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 hdmarkdirty");
241 hp->dirseg[0].s = i;
242 hp->dirseg[0].n = 1;
243 return;
244 }
245 /* insert into segment list */
246 for (j = hp->dirty; j--; ) {
247 if (!j || hp->dirseg[j-1].s < i) {
248 hp->dirseg[j].s = i;
249 hp->dirseg[j].n = 1;
250 break;
251 }
252 copystruct(hp->dirseg+j, hp->dirseg+(j-1));
253 }
254 do { /* check neighbors */
255 mindist = nbeams(hp); /* find closest */
256 for (j = hp->dirty; --j; )
257 if (hp->dirseg[j].s -
258 (hp->dirseg[j-1].s + hp->dirseg[j-1].n)
259 < mindist) {
260 minpos = j;
261 mindist = hp->dirseg[j].s -
262 (hp->dirseg[j-1].s + hp->dirseg[j-1].n);
263 }
264 /* good enough? */
265 if (hp->dirty <= MAXDIRSE && mindist > MINDIRSEL)
266 break;
267 j = minpos - 1; /* coalesce neighbors */
268 if (hp->dirseg[j].s + hp->dirseg[j].n <
269 hp->dirseg[minpos].s + hp->dirseg[minpos].n)
270 hp->dirseg[j].n = hp->dirseg[minpos].s +
271 hp->dirseg[minpos].n - hp->dirseg[j].s;
272 hp->dirty--;
273 while (++j < hp->dirty) /* close the gap */
274 copystruct(hp->dirseg+j, hp->dirseg+(j+1));
275 } while (mindist <= MINDIRSEL);
276 }
277
278
279 int
280 hdsync(hp, all) /* update beams and directory on disk */
281 register HOLO *hp;
282 int all;
283 {
284 register int j, n;
285
286 if (hp == NULL) { /* do all holodecks */
287 n = 0;
288 for (j = 0; hdlist[j] != NULL; j++)
289 n += hdsync(hdlist[j], all);
290 return(n);
291 }
292 /* sync the beams */
293 for (j = (all ? nbeams(hp) : 0); j > 0; j--)
294 if (hp->bl[j] != NULL)
295 hdsyncbeam(hp, j);
296 if (!hp->dirty) /* directory clean? */
297 return(0);
298 errno = 0; /* write dirty segments */
299 for (j = 0; j < hp->dirty; j++) {
300 if (lseek(hp->fd, biglob(hp)->fo +
301 (hp->dirseg[j].s-1)*sizeof(BEAMI), 0) < 0)
302 error(SYSTEM, "cannot seek on holodeck file");
303 n = hp->dirseg[j].n * sizeof(BEAMI);
304 if (write(hp->fd, (char *)(hp->bi+hp->dirseg[j].s), n) != n)
305 error(SYSTEM, "cannot update section directory");
306 }
307 hp->dirty = 0; /* all clean */
308 return(1);
309 }
310
311
312 unsigned
313 hdmemuse(all) /* return memory usage (in bytes) */
314 int all; /* include overhead (painful) */
315 {
316 long total = 0;
317 register int i, j;
318
319 for (j = 0; hdlist[j] != NULL; j++) {
320 total += blglob(hdlist[j])->nrm * sizeof(RAYVAL);
321 if (all) {
322 total += sizeof(HOLO) + sizeof(BEAM *) +
323 nbeams(hdlist[j]) *
324 (sizeof(BEAM *)+sizeof(BEAMI));
325 for (i = nbeams(hdlist[j]); i > 0; i--)
326 if (hdlist[j]->bl[i] != NULL)
327 total += sizeof(BEAM);
328 }
329 }
330 if (all)
331 for (j = 0; j < nhdfragls; j++) {
332 total += sizeof(struct fraglist);
333 if (hdfragl[j].nfrags)
334 total += FRAGBLK*sizeof(BEAMI) *
335 ((hdfragl[j].nfrags-1)/FRAGBLK + 1) ;
336 }
337 return(total);
338 }
339
340
341 long
342 hdfilen(fd) /* return file length for fd */
343 int fd;
344 {
345 long fpos, flen;
346
347 if (fd < 0)
348 return(-1);
349 if (fd >= nhdfragls || !hdfragl[fd].nlinks) {
350 if ((fpos = lseek(fd, 0L, 1)) < 0)
351 return(-1);
352 flen = lseek(fd, 0L, 2);
353 lseek(fd, fpos, 0);
354 return(flen);
355 }
356 return(hdfragl[fd].flen);
357 }
358
359
360 long
361 hdfiluse(fd, all) /* compute file usage (in bytes) */
362 int fd; /* open file descriptor to check */
363 int all; /* include overhead and unflushed data */
364 {
365 long total = 0;
366 register int i, j;
367
368 for (j = 0; hdlist[j] != NULL; j++) {
369 if (hdlist[j]->fd != fd)
370 continue;
371 total += biglob(hdlist[j])->nrd * sizeof(RAYVAL);
372 if (all) {
373 for (i = nbeams(hdlist[j]); i > 0; i--)
374 if (hdlist[j]->bl[i] != NULL)
375 total += sizeof(RAYVAL) *
376 (hdlist[j]->bl[i]->nrm -
377 hdlist[j]->bi[i].nrd);
378 total += sizeof(HDGRID) +
379 nbeams(hdlist[j])*sizeof(BEAMI);
380 }
381 }
382 return(total); /* does not include fragments */
383 }
384
385
386 RAYVAL *
387 hdnewrays(hp, i, nr) /* allocate space for add'l rays and return pointer */
388 register HOLO *hp;
389 register int i;
390 int nr; /* number of new rays desired */
391 {
392 RAYVAL *p;
393 int n;
394
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)
401 hdfreecache(PCTFREE, NULL); /* free some space */
402 if (hp->bl[i] == NULL) { /* allocate (and load) */
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)) {
407 errno = 0;
408 if (lseek(hp->fd, hp->bi[i].fo, 0) < 0)
409 error(SYSTEM, "seek error on holodeck file");
410 n *= sizeof(RAYVAL);
411 if (read(hp->fd, (char *)hdbray(hp->bl[i]), n) != n)
412 error(SYSTEM,
413 "error reading beam from holodeck file");
414 }
415 } else { /* just grow in memory */
416 hp->bl[i] = (BEAM *)hdrealloc((char *)hp->bl[i],
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));
425 blglob(hp)->tick = hp->bl[i]->tick = hdclock++; /* update LRU clock */
426 return(p); /* point to new rays */
427 }
428
429
430 BEAM *
431 hdgetbeam(hp, i) /* get beam (from file if necessary) */
432 register HOLO *hp;
433 register int i;
434 {
435 register int n;
436
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);
442 if (hdcachesize > 0 && hdmemuse(0) >= hdcachesize)
443 hdfreecache(PCTFREE, NULL); /* get free space */
444 hp->bl[i] = (BEAM *)hdrealloc(NULL, hdbsiz(n), "hdgetbeam");
445 blglob(hp)->nrm += hp->bl[i]->nrm = n;
446 errno = 0;
447 if (lseek(hp->fd, hp->bi[i].fo, 0) < 0)
448 error(SYSTEM, "seek error on holodeck file");
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]);
457 }
458
459
460 int
461 hdfilord(hb1, hb2) /* order beams for quick loading */
462 register HDBEAMI *hb1, *hb2;
463 {
464 register long c;
465 /* residents go first */
466 if (hb2->h->bl[hb2->b] != NULL)
467 return(hb1->h->bl[hb1->b] == NULL);
468 if (hb1->h->bl[hb1->b] != NULL)
469 return(-1);
470 /* otherwise sort by file descriptor */
471 if ((c = hb1->h->fd - hb2->h->fd))
472 return(c);
473 /* then by position in file */
474 c = hb1->h->bi[hb1->b].fo - hb2->h->bi[hb2->b].fo;
475 return(c > 0 ? 1 : c < 0 ? -1 : 0);
476 }
477
478
479 hdloadbeams(hb, n, bf) /* load a list of beams in optimal order */
480 register HDBEAMI *hb; /* list gets sorted by hdfilord() */
481 int n; /* list length */
482 int (*bf)(); /* callback function (optional) */
483 {
484 unsigned origcachesize, memuse;
485 int bytesloaded, needbytes, bytes2free;
486 register BEAM *bp;
487 register int i;
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))
492 error(CONSISTENCY, "bad beam in hdloadbeams");
493 /* sort list for optimal access */
494 qsort((char *)hb, n, sizeof(HDBEAMI), hdfilord);
495 bytesloaded = 0; /* run through loaded beams */
496 for ( ; n && (bp = hb->h->bl[hb->b]) != NULL; n--, hb++) {
497 bp->tick = hdclock; /* preempt swap */
498 bytesloaded += bp->nrm;
499 if (bf != NULL)
500 (*bf)(bp, hb);
501 }
502 bytesloaded *= sizeof(RAYVAL);
503 if ((origcachesize = hdcachesize) > 0) {
504 needbytes = 0; /* figure out memory needs */
505 for (i = n; i--; )
506 needbytes += hb[i].h->bi[hb[i].b].nrd;
507 needbytes *= sizeof(RAYVAL);
508 do { /* free enough memory */
509 memuse = hdmemuse(0);
510 bytes2free = needbytes - (int)(hdcachesize-memuse);
511 if (bytes2free > (int)(memuse - bytesloaded))
512 bytes2free = memuse - bytesloaded;
513 } while (bytes2free > 0 &&
514 hdfreecache(100*bytes2free/memuse, NULL) < 0);
515 hdcachesize = 0; /* load beams w/o swap */
516 }
517 for (i = 0; i < n; i++)
518 if ((bp = hdgetbeam(hb[i].h, hb[i].b)) != NULL && bf != NULL)
519 (*bf)(bp, hb+i);
520 hdcachesize = origcachesize; /* resume dynamic swapping */
521 }
522
523
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(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)
541 if (++k >= f->nfrags)
542 goto endloop;
543 if (k > j)
544 copystruct(f->fi+j, f->fi+k);
545 }
546 endloop:
547 f->nfrags = j;
548 }
549 j = f->nfrags++; /* allocate a slot in free list */
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 (or less) free list space */
558 register BEAMI *newp;
559 if (f->fi == NULL)
560 newp = (BEAMI *)malloc((j+FRAGBLK)*sizeof(BEAMI));
561 else
562 newp = (BEAMI *)realloc((char *)f->fi,
563 (j+FRAGBLK)*sizeof(BEAMI));
564 if (newp == NULL) {
565 f->nfrags--; /* graceful failure */
566 return(0);
567 }
568 f->fi = newp;
569 }
570 for ( ; ; j--) { /* insert in descending list */
571 if (!j || bi->fo < f->fi[j-1].fo) {
572 f->fi[j].fo = bi->fo;
573 f->fi[j].nrd = bi->nrd;
574 break;
575 }
576 copystruct(f->fi+j, f->fi+(j-1));
577 }
578 /* coalesce adjacent fragments */
579 /* successors never empty */
580 if (j && f->fi[j-1].fo == f->fi[j].fo + f->fi[j].nrd*sizeof(RAYVAL)) {
581 f->fi[j].nrd += f->fi[j-1].nrd;
582 f->fi[j-1].nrd = 0;
583 }
584 for (k = j+1; k < f->nfrags; k++) /* get non-empty predecessor */
585 if (f->fi[k].nrd) {
586 if (f->fi[j].fo == f->fi[k].fo +
587 f->fi[k].nrd*sizeof(RAYVAL)) {
588 f->fi[k].nrd += f->fi[j].nrd;
589 f->fi[j].nrd = 0;
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;
632 long nfo;
633
634 if (nrays == 0)
635 return(-1L);
636 DCHECK(fd < 0 | fd >= nhdfragls || !hdfragl[fd].nlinks,
637 CONSISTENCY, "bad file descriptor in hdallocfrag");
638 f = &hdfragl[fd];
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[j].fo;
647 f->fi[j].fo += nrays*sizeof(RAYVAL);
648 f->fi[j].nrd -= nrays;
649 }
650 return(nfo);
651 }
652
653
654 int
655 hdsyncbeam(hp, i) /* sync beam in memory with beam on disk */
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 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 /* 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;
676 if (lseek(hp->fd, nfo, 0) < 0)
677 error(SYSTEM, "cannot seek on holodeck file");
678 n = hp->bl[i]->nrm * sizeof(RAYVAL);
679 if (write(hp->fd, (char *)hdbray(hp->bl[i]), n) != n) {
680 hdfragl[hp->fd].writerr++;
681 hdsync(NULL, 0); /* sync directories */
682 error(SYSTEM, "write error in hdsyncbeam");
683 }
684 hp->bi[i].fo = nfo;
685 } else
686 hp->bi[i].fo = 0L;
687 biglob(hp)->nrd += nrays - hp->bi[i].nrd;
688 hp->bi[i].nrd = nrays;
689 if (!fragfreed)
690 hdmarkdirty(hp, i); /* need to flag dir. ent. */
691 return(1);
692 }
693
694
695 int
696 hdfreebeam(hp, i) /* free beam, writing if dirty */
697 register HOLO *hp;
698 register int i;
699 {
700 int nchanged;
701
702 if (hp == NULL) { /* clear all holodecks */
703 nchanged = 0;
704 for (i = 0; hdlist[i] != NULL; i++)
705 nchanged += hdfreebeam(hdlist[i], 0);
706 return(nchanged);
707 }
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 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 */
726 nchanged = hp->bl[i]->nrm - hp->bi[i].nrd;
727 if (nchanged)
728 hdsyncbeam(hp, i); /* write new fragment */
729 blglob(hp)->nrm -= hp->bl[i]->nrm;
730 free((char *)hp->bl[i]); /* free memory */
731 hp->bl[i] = NULL;
732 return(nchanged);
733 }
734
735
736 int
737 hdkillbeam(hp, i) /* delete beam from holodeck */
738 register HOLO *hp;
739 register int i;
740 {
741 int nchanged;
742
743 if (hp == NULL) { /* clobber all holodecks */
744 nchanged = 0;
745 for (i = 0; hdlist[i] != NULL; i++)
746 nchanged += hdkillbeam(hdlist[i], 0);
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 DCHECK(biglob(hp)->nrd != 0 | blglob(hp)->nrm != 0,
758 CONSISTENCY, "bad beam count in hdkillbeam");
759 return(nchanged);
760 }
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 && !(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 }
775 return(nchanged);
776 }
777
778
779 int
780 hdlrulist(hb, nents, n, hp) /* add beams from holodeck to LRU list */
781 register HDBEAMI *hb; /* beam list */
782 int nents; /* current list length */
783 int n; /* maximum list length */
784 register HOLO *hp; /* section we're adding from */
785 {
786 register int i, j;
787 /* insert each beam from hp */
788 for (i = 1; i <= nbeams(hp); i++) {
789 if (hp->bl[i] == NULL) /* check if loaded */
790 continue;
791 #if 0
792 if (hp->bl[i]->tick == hdclock) /* preempt swap? */
793 continue;
794 #endif
795 if ((j = ++nents) >= n) /* grow list if we can */
796 nents--;
797 for ( ; ; ) { /* bubble into place */
798 if (!--j || hp->bl[i]->tick >=
799 hb[j-1].h->bl[hb[j-1].b]->tick) {
800 hb[j].h = hp;
801 hb[j].b = i;
802 break;
803 }
804 copystruct(hb+j, hb+(j-1));
805 }
806 }
807 return(nents); /* return new list length */
808 }
809
810
811 int
812 hdfreecache(pct, honly) /* free up cache space, writing changes */
813 int pct; /* maximum percentage to free */
814 register HOLO *honly; /* NULL means check all */
815 {
816 HDBEAMI hb[FREEBEAMS];
817 int freetarget;
818 int n;
819 register int i;
820 #ifdef DEBUG
821 unsigned membefore;
822
823 membefore = hdmemuse(0);
824 #endif
825 /* compute free target */
826 freetarget = (honly != NULL) ? blglob(honly)->nrm :
827 hdmemuse(0)/sizeof(RAYVAL) ;
828 freetarget = freetarget*pct/100;
829 if (freetarget <= 0)
830 return(0);
831 /* find least recently used */
832 n = 0;
833 if (honly != NULL)
834 n = hdlrulist(hb, n, FREEBEAMS, honly);
835 else
836 for (i = 0; hdlist[i] != NULL; i++)
837 n = hdlrulist(hb, n, FREEBEAMS, hdlist[i]);
838 /* free LRU beams */
839 for (i = 0; i < n; i++) {
840 hdfreebeam(hb[i].h, hb[i].b);
841 if ((freetarget -= hb[i].h->bi[hb[i].b].nrd) <= 0)
842 break;
843 }
844 hdsync(honly, 0); /* synchronize directories as necessary */
845 #ifdef DEBUG
846 sprintf(errmsg,
847 "%dK before, %dK after hdfreecache (%dK total), %d rays short\n",
848 membefore>>10, hdmemuse(0)>>10, hdmemuse(1)>>10, freetarget);
849 wputs(errmsg);
850 #endif
851 return(-freetarget); /* return how far past goal we went */
852 }
853
854
855 hddone(hp) /* clean up holodeck section and free */
856 register HOLO *hp; /* NULL means clean up all */
857 {
858 register int i;
859
860 if (hp == NULL) { /* NULL means clean up everything */
861 while (hdlist[0] != NULL)
862 hddone(hdlist[0]);
863 free((char *)hdfragl);
864 hdfragl = NULL; nhdfragls = 0;
865 return;
866 }
867 /* flush all data and free memory */
868 hdflush(hp);
869 /* release fragment resources */
870 hdrelease(hp->fd);
871 /* remove hp from active list */
872 for (i = 0; hdlist[i] != NULL; i++)
873 if (hdlist[i] == hp) {
874 while ((hdlist[i] = hdlist[i+1]) != NULL)
875 i++;
876 break;
877 }
878 free((char *)hp->bl); /* free beam list */
879 free((char *)hp); /* free holodeck struct */
880 }