ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/ambient.c
Revision: 2.33
Committed: Tue Oct 24 13:33:23 1995 UTC (28 years, 6 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 2.32: +9 -14 lines
Log Message:
made setambacc() a little simpler

File Contents

# User Rev Content
1 greg 2.27 /* Copyright (c) 1995 Regents of the University of California */
2 greg 1.1
3     #ifndef lint
4     static char SCCSid[] = "$SunId$ LBL";
5     #endif
6    
7     /*
8     * ambient.c - routines dealing with ambient (inter-reflected) component.
9     */
10    
11     #include "ray.h"
12    
13     #include "octree.h"
14    
15 greg 1.8 #include "otypes.h"
16    
17 greg 1.14 #include "ambient.h"
18    
19 greg 1.1 #include "random.h"
20    
21 greg 2.32 #ifndef OCTSCALE
22 greg 2.29 #define OCTSCALE 1.0 /* ceil((valid rad.)/(cube size)) */
23 greg 2.32 #endif
24     #ifndef AMBVWT
25     #define AMBVWT 250 /* relative ambient value weight (# calcs) */
26     #endif
27 greg 1.1
28 greg 1.14 typedef struct ambtree {
29 greg 2.12 AMBVAL *alist; /* ambient value list */
30     struct ambtree *kid; /* 8 child nodes */
31 greg 1.14 } AMBTREE; /* ambient octree */
32    
33 greg 1.1 extern CUBE thescene; /* contains space boundaries */
34    
35 greg 2.27 extern char *shm_boundary; /* memory sharing boundary */
36 greg 2.26
37 greg 2.12 #define MAXASET 511 /* maximum number of elements in ambient set */
38     OBJECT ambset[MAXASET+1]={0}; /* ambient include/exclude set */
39 greg 1.1
40 greg 2.12 double maxarad; /* maximum ambient radius */
41     double minarad; /* minimum ambient radius */
42 greg 1.1
43 greg 2.12 static AMBTREE atrunk; /* our ambient trunk node */
44 greg 1.1
45     static FILE *ambfp = NULL; /* ambient file pointer */
46 greg 2.16 static int nunflshed = 0; /* number of unflushed ambient values */
47 greg 1.1
48 greg 2.26 #ifndef SORT_THRESH
49     #ifdef BIGMEM
50 greg 2.27 #define SORT_THRESH ((9L<<20)/sizeof(AMBVAL))
51 greg 2.26 #else
52 greg 2.27 #define SORT_THRESH ((3L<<20)/sizeof(AMBVAL))
53 greg 2.26 #endif
54     #endif
55     #ifndef SORT_INTVL
56 greg 2.29 #define SORT_INTVL (SORT_THRESH*256)
57 greg 2.26 #endif
58 greg 2.28 #ifndef MAX_SORT_INTVL
59 greg 2.29 #define MAX_SORT_INTVL (SORT_INTVL<<4)
60 greg 2.28 #endif
61 greg 2.26
62 greg 2.32 static COLOR avsum = BLKCOLOR; /* computed ambient value sum */
63     static unsigned int nambvals = 0; /* number of computed ambient values */
64 greg 2.27 static unsigned long ambclock = 0; /* ambient access clock */
65     static unsigned long lastsort = 0; /* time of last value sort */
66 greg 2.26 static long sortintvl = SORT_INTVL; /* time until next sort */
67    
68     #define MAXACLOCK (1L<<30) /* clock turnover value */
69 greg 2.27 /*
70     * Track access times unless we are sharing ambient values
71     * through memory on a multiprocessor, when we want to avoid
72     * claiming our own memory (copy on write).
73     */
74 greg 2.26 #define tracktime (shm_boundary == NULL || ambfp == NULL)
75    
76 greg 2.12 #define AMBFLUSH (BUFSIZ/AMBVALSIZ)
77 greg 2.6
78 greg 2.12 #define newambval() (AMBVAL *)bmalloc(sizeof(AMBVAL))
79 greg 1.1
80 greg 2.7 extern long ftell(), lseek();
81 greg 2.26 static int initambfile(), avsave(), avinsert(), sortambvals();
82 greg 2.20 static AMBVAL *avstore();
83 greg 2.19 #ifdef F_SETLKW
84     static aflock();
85     #endif
86 greg 1.1
87 greg 2.7
88 greg 2.3 setambres(ar) /* set ambient resolution */
89     int ar;
90     {
91 greg 2.21 ambres = ar < 0 ? 0 : ar; /* may be done already */
92 greg 2.3 /* set min & max radii */
93     if (ar <= 0) {
94 greg 2.25 minarad = 0;
95 greg 2.3 maxarad = thescene.cusize / 2.0;
96     } else {
97     minarad = thescene.cusize / ar;
98 greg 2.30 maxarad = 64 * minarad; /* heuristic */
99 greg 2.3 if (maxarad > thescene.cusize / 2.0)
100     maxarad = thescene.cusize / 2.0;
101     }
102 greg 2.25 if (minarad <= FTINY)
103     minarad = 10*FTINY;
104     if (maxarad <= minarad)
105     maxarad = 64 * minarad;
106 greg 2.3 }
107    
108    
109 greg 2.21 setambacc(newa) /* set ambient accuracy */
110 greg 2.20 double newa;
111     {
112 greg 2.33 double ambdiff;
113 greg 2.20
114 greg 2.33 if (newa < 0.0)
115     newa = 0.0;
116     ambdiff = fabs(newa - ambacc);
117     if (ambdiff >= .01 && (ambacc = newa) > FTINY && nambvals > 0)
118     sortambvals(1); /* rebuild tree */
119 greg 2.20 }
120    
121    
122 greg 1.1 setambient(afile) /* initialize calculation */
123     char *afile;
124     {
125 greg 2.9 long headlen;
126 greg 2.12 AMBVAL amb;
127 greg 2.3 /* init ambient limits */
128     setambres(ambres);
129 greg 2.21 setambacc(ambacc);
130 greg 2.19 if (afile == NULL)
131     return;
132 greg 2.20 if (ambacc <= FTINY) {
133 greg 2.21 sprintf(errmsg, "zero ambient accuracy so \"%s\" not opened",
134 greg 2.20 afile);
135     error(WARNING, errmsg);
136     return;
137     }
138 greg 2.3 /* open ambient file */
139 greg 2.19 if ((ambfp = fopen(afile, "r+")) != NULL) {
140     initambfile(0);
141     headlen = ftell(ambfp);
142     while (readambval(&amb, ambfp))
143 greg 2.21 avinsert(avstore(&amb));
144 greg 2.19 /* align */
145     fseek(ambfp, -((ftell(ambfp)-headlen)%AMBVALSIZ), 1);
146     } else if ((ambfp = fopen(afile, "w+")) != NULL)
147     initambfile(1);
148     else {
149     sprintf(errmsg, "cannot open ambient file \"%s\"", afile);
150     error(SYSTEM, errmsg);
151 greg 2.16 }
152 greg 2.19 nunflshed++; /* lie */
153     ambsync();
154 greg 1.8 }
155    
156    
157     ambnotify(obj) /* record new modifier */
158 greg 2.12 OBJECT obj;
159 greg 1.8 {
160 greg 1.11 static int hitlimit = 0;
161 greg 2.12 register OBJREC *o = objptr(obj);
162 greg 1.8 register char **amblp;
163    
164 greg 1.11 if (hitlimit || !ismodifier(o->otype))
165 greg 1.8 return;
166     for (amblp = amblist; *amblp != NULL; amblp++)
167     if (!strcmp(o->oname, *amblp)) {
168 greg 1.11 if (ambset[0] >= MAXASET) {
169     error(WARNING, "too many modifiers in ambient list");
170     hitlimit++;
171     return; /* should this be fatal? */
172     }
173 greg 1.8 insertelem(ambset, obj);
174     return;
175 greg 1.1 }
176     }
177    
178    
179     ambient(acol, r) /* compute ambient component for ray */
180     COLOR acol;
181     register RAY *r;
182     {
183     static int rdepth = 0; /* ambient recursion */
184 greg 2.12 double d;
185 greg 1.1
186     if (ambdiv <= 0) /* no ambient calculation */
187     goto dumbamb;
188     /* check number of bounces */
189 greg 1.16 if (rdepth >= ambounce)
190 greg 1.1 goto dumbamb;
191     /* check ambient list */
192     if (ambincl != -1 && r->ro != NULL &&
193     ambincl != inset(ambset, r->ro->omod))
194     goto dumbamb;
195    
196     if (ambacc <= FTINY) { /* no ambient storage */
197 greg 1.16 rdepth++;
198     d = doambient(acol, r, r->rweight, NULL, NULL);
199     rdepth--;
200 greg 2.32 if (d <= FTINY)
201 greg 1.1 goto dumbamb;
202 greg 1.16 return;
203 greg 1.1 }
204 greg 2.27 /* resort memory? */
205 greg 2.28 sortambvals(0);
206 greg 1.1 /* get ambient value */
207     setcolor(acol, 0.0, 0.0, 0.0);
208 greg 1.16 d = sumambient(acol, r, rdepth,
209     &atrunk, thescene.cuorg, thescene.cusize);
210 greg 2.32 if (d > FTINY) {
211 greg 1.16 scalecolor(acol, 1.0/d);
212 greg 2.32 return;
213 greg 1.16 }
214 greg 2.33 rdepth++; /* need to cache new value */
215 greg 2.32 d = makeambient(acol, r, rdepth-1);
216     rdepth--;
217 greg 1.16 if (d > FTINY)
218     return;
219 greg 1.1 dumbamb: /* return global value */
220     copycolor(acol, ambval);
221 greg 2.32 #if AMBVWT
222     if (nambvals == 0)
223     return;
224     scalecolor(acol, (double)AMBVWT);
225     addcolor(acol, avsum); /* average in computations */
226     d = 1.0/(AMBVWT+nambvals);
227     scalecolor(acol, d);
228     #endif
229 greg 1.1 }
230    
231    
232     double
233 greg 1.16 sumambient(acol, r, al, at, c0, s) /* get interpolated ambient value */
234 greg 1.1 COLOR acol;
235     register RAY *r;
236 greg 1.16 int al;
237 greg 2.12 AMBTREE *at;
238 greg 1.1 FVECT c0;
239 greg 2.12 double s;
240 greg 1.1 {
241 greg 2.12 double d, e1, e2, wt, wsum;
242 greg 1.1 COLOR ct;
243     FVECT ck0;
244     int i;
245     register int j;
246 greg 2.12 register AMBVAL *av;
247 greg 2.29
248     wsum = 0.0;
249 greg 1.7 /* do this node */
250 greg 1.1 for (av = at->alist; av != NULL; av = av->next) {
251 greg 2.26 if (tracktime)
252     av->latick = ambclock++;
253 greg 1.1 /*
254 greg 1.16 * Ambient level test.
255 greg 1.1 */
256 greg 2.23 if (av->lvl > al) /* list sorted, so this works */
257     break;
258     if (av->weight < r->rweight-FTINY)
259 greg 1.1 continue;
260     /*
261     * Ambient radius test.
262     */
263 greg 2.29 d = av->pos[0] - r->rop[0];
264     e1 = d * d;
265     d = av->pos[1] - r->rop[1];
266     e1 += d * d;
267     d = av->pos[2] - r->rop[2];
268     e1 += d * d;
269 greg 1.1 e1 /= av->rad * av->rad;
270     if (e1 > ambacc*ambacc*1.21)
271     continue;
272     /*
273     * Normal direction test.
274     */
275     e2 = (1.0 - DOT(av->dir, r->ron)) * r->rweight;
276     if (e2 < 0.0) e2 = 0.0;
277     if (e1 + e2 > ambacc*ambacc*1.21)
278     continue;
279     /*
280     * Ray behind test.
281     */
282     d = 0.0;
283     for (j = 0; j < 3; j++)
284     d += (r->rop[j] - av->pos[j]) *
285     (av->dir[j] + r->ron[j]);
286 greg 1.18 if (d*0.5 < -minarad*ambacc-.001)
287 greg 1.1 continue;
288     /*
289     * Jittering final test reduces image artifacts.
290     */
291     wt = sqrt(e1) + sqrt(e2);
292 greg 2.31 if (wt > ambacc*(.9+.2*urand(9015+samplendx)))
293 greg 1.1 continue;
294     if (wt <= 1e-3)
295     wt = 1e3;
296     else
297     wt = 1.0 / wt;
298     wsum += wt;
299 greg 1.15 extambient(ct, av, r->rop, r->ron);
300 greg 1.1 scalecolor(ct, wt);
301     addcolor(acol, ct);
302 greg 1.7 }
303     if (at->kid == NULL)
304     return(wsum);
305     /* do children */
306     s *= 0.5;
307     for (i = 0; i < 8; i++) {
308     for (j = 0; j < 3; j++) {
309     ck0[j] = c0[j];
310     if (1<<j & i)
311     ck0[j] += s;
312     if (r->rop[j] < ck0[j] - OCTSCALE*s)
313     break;
314     if (r->rop[j] > ck0[j] + (1.0+OCTSCALE)*s)
315     break;
316     }
317     if (j == 3)
318 greg 1.16 wsum += sumambient(acol, r, al, at->kid+i, ck0, s);
319 greg 1.1 }
320     return(wsum);
321     }
322    
323    
324     double
325 greg 1.16 makeambient(acol, r, al) /* make a new ambient value */
326 greg 1.1 COLOR acol;
327     register RAY *r;
328 greg 1.16 int al;
329 greg 1.1 {
330 greg 2.12 AMBVAL amb;
331 greg 1.14 FVECT gp, gd;
332 greg 1.16 /* compute weight */
333     amb.weight = pow(AVGREFL, (double)al);
334 greg 2.33 if (r->rweight < 0.1*amb.weight) /* heuristic */
335 greg 1.16 amb.weight = r->rweight;
336     /* compute ambient */
337     amb.rad = doambient(acol, r, amb.weight, gp, gd);
338 greg 2.33 if (amb.rad <= FTINY)
339 greg 1.1 return(0.0);
340     /* store it */
341     VCOPY(amb.pos, r->rop);
342     VCOPY(amb.dir, r->ron);
343 greg 1.16 amb.lvl = al;
344 greg 1.1 copycolor(amb.val, acol);
345 greg 1.14 VCOPY(amb.gpos, gp);
346     VCOPY(amb.gdir, gd);
347 greg 1.1 /* insert into tree */
348 greg 2.7 avsave(&amb); /* and save to file */
349 greg 1.1 return(amb.rad);
350 greg 1.15 }
351    
352    
353     extambient(cr, ap, pv, nv) /* extrapolate value at pv, nv */
354     COLOR cr;
355 greg 2.12 register AMBVAL *ap;
356 greg 1.15 FVECT pv, nv;
357     {
358     FVECT v1, v2;
359     register int i;
360 greg 2.12 double d;
361 greg 1.15
362     d = 1.0; /* zeroeth order */
363     /* gradient due to translation */
364     for (i = 0; i < 3; i++)
365     d += ap->gpos[i]*(pv[i]-ap->pos[i]);
366     /* gradient due to rotation */
367     VCOPY(v1, ap->dir);
368     fcross(v2, v1, nv);
369     d += DOT(ap->gdir, v2);
370     if (d <= 0.0) {
371     setcolor(cr, 0.0, 0.0, 0.0);
372     return;
373     }
374     copycolor(cr, ap->val);
375     scalecolor(cr, d);
376 greg 1.1 }
377    
378    
379     static
380 greg 2.9 initambfile(creat) /* initialize ambient file */
381     int creat;
382     {
383     extern char *progname, *octname, VersionID[];
384    
385 greg 2.19 #ifdef F_SETLKW
386     aflock(creat ? F_WRLCK : F_RDLCK);
387     #endif
388 greg 2.12 #ifdef MSDOS
389     setmode(fileno(ambfp), O_BINARY);
390     #endif
391 greg 2.21 setbuf(ambfp, bmalloc(BUFSIZ+8));
392 greg 2.9 if (creat) { /* new file */
393 greg 2.24 newheader("RADIANCE", ambfp);
394 greg 2.9 fprintf(ambfp, "%s -av %g %g %g -ab %d -aa %g ",
395     progname, colval(ambval,RED),
396     colval(ambval,GRN), colval(ambval,BLU),
397     ambounce, ambacc);
398     fprintf(ambfp, "-ad %d -as %d -ar %d %s\n",
399     ambdiv, ambssamp, ambres,
400     octname==NULL ? "" : octname);
401     fprintf(ambfp, "SOFTWARE= %s\n", VersionID);
402     fputformat(AMBFMT, ambfp);
403     putc('\n', ambfp);
404     putambmagic(ambfp);
405 greg 2.17 } else if (checkheader(ambfp, AMBFMT, NULL) < 0 || !hasambmagic(ambfp))
406     error(USER, "bad ambient file");
407 greg 2.9 }
408    
409    
410     static
411 greg 2.7 avsave(av) /* insert and save an ambient value */
412 greg 2.12 AMBVAL *av;
413 greg 1.1 {
414 greg 2.21 avinsert(avstore(av));
415 greg 1.1 if (ambfp == NULL)
416     return;
417 greg 2.5 if (writambval(av, ambfp) < 0)
418 greg 1.1 goto writerr;
419 greg 2.16 if (++nunflshed >= AMBFLUSH)
420 greg 2.7 if (ambsync() == EOF)
421 greg 1.1 goto writerr;
422     return;
423     writerr:
424 greg 2.17 error(SYSTEM, "error writing ambient file");
425 greg 1.1 }
426    
427    
428 greg 2.20 static AMBVAL *
429     avstore(aval) /* allocate memory and store aval */
430     register AMBVAL *aval;
431     {
432     register AMBVAL *av;
433    
434     if ((av = newambval()) == NULL)
435     error(SYSTEM, "out of memory in avstore");
436     copystruct(av, aval);
437 greg 2.26 av->latick = ambclock;
438     av->next = NULL;
439 greg 2.32 addcolor(avsum, av->val); /* add to sum for averaging */
440 greg 2.26 nambvals++;
441 greg 2.20 return(av);
442     }
443    
444    
445 greg 2.26 #define ATALLOCSZ 512 /* #/8 trees to allocate at once */
446    
447     static AMBTREE *atfreelist = NULL; /* free ambient tree structures */
448    
449    
450 greg 1.1 static
451 greg 2.26 AMBTREE *
452     newambtree() /* allocate 8 ambient tree structs */
453     {
454     register AMBTREE *atp, *upperlim;
455    
456     if (atfreelist == NULL) { /* get more nodes */
457     atfreelist = (AMBTREE *)bmalloc(ATALLOCSZ*8*sizeof(AMBTREE));
458     if (atfreelist == NULL)
459     return(NULL);
460     /* link new free list */
461     upperlim = atfreelist + 8*(ATALLOCSZ-1);
462     for (atp = atfreelist; atp < upperlim; atp += 8)
463     atp->kid = atp + 8;
464     atp->kid = NULL;
465     }
466     atp = atfreelist;
467     atfreelist = atp->kid;
468     bzero((char *)atp, 8*sizeof(AMBTREE));
469     return(atp);
470     }
471    
472    
473     static
474     freeambtree(atp) /* free 8 ambient tree structs */
475     AMBTREE *atp;
476     {
477     atp->kid = atfreelist;
478     atfreelist = atp;
479     }
480    
481    
482     static
483 greg 2.21 avinsert(av) /* insert ambient value in our tree */
484 greg 2.20 register AMBVAL *av;
485 greg 1.1 {
486 greg 2.21 register AMBTREE *at;
487 greg 2.23 register AMBVAL *ap;
488     AMBVAL avh;
489 greg 1.1 FVECT ck0;
490 greg 2.21 double s;
491 greg 1.1 int branch;
492     register int i;
493    
494 greg 2.20 if (av->rad <= FTINY)
495     error(CONSISTENCY, "zero ambient radius in avinsert");
496 greg 2.21 at = &atrunk;
497     VCOPY(ck0, thescene.cuorg);
498     s = thescene.cusize;
499 greg 1.1 while (s*(OCTSCALE/2) > av->rad*ambacc) {
500     if (at->kid == NULL)
501     if ((at->kid = newambtree()) == NULL)
502 greg 2.20 error(SYSTEM, "out of memory in avinsert");
503 greg 1.1 s *= 0.5;
504     branch = 0;
505     for (i = 0; i < 3; i++)
506     if (av->pos[i] > ck0[i] + s) {
507     ck0[i] += s;
508     branch |= 1 << i;
509     }
510     at = at->kid + branch;
511     }
512 greg 2.23 avh.next = at->alist; /* order by increasing level */
513     for (ap = &avh; ap->next != NULL; ap = ap->next)
514     if (ap->next->lvl >= av->lvl)
515     break;
516     av->next = ap->next;
517     ap->next = av;
518     at->alist = avh.next;
519 greg 2.7 }
520    
521    
522 greg 2.20 static
523 greg 2.26 unloadatree(at, f) /* unload an ambient value tree */
524 greg 2.20 register AMBTREE *at;
525 greg 2.26 int (*f)();
526 greg 2.20 {
527     register AMBVAL *av;
528     register int i;
529     /* transfer values at this node */
530     for (av = at->alist; av != NULL; av = at->alist) {
531     at->alist = av->next;
532 greg 2.26 (*f)(av);
533 greg 2.20 }
534 greg 2.21 if (at->kid == NULL)
535     return;
536 greg 2.20 for (i = 0; i < 8; i++) /* transfer and free children */
537 greg 2.26 unloadatree(at->kid+i, f);
538 greg 2.20 freeambtree(at->kid);
539 greg 2.26 at->kid = NULL;
540     }
541    
542    
543     static AMBVAL **avlist1, **avlist2; /* ambient value lists for sorting */
544     static int i_avlist; /* index for lists */
545    
546    
547     static
548     av2list(av)
549     AMBVAL *av;
550     {
551 greg 2.27 #ifdef DEBUG
552 greg 2.26 if (i_avlist >= nambvals)
553     error(CONSISTENCY, "too many ambient values in av2list1");
554 greg 2.27 #endif
555 greg 2.26 avlist1[i_avlist] = avlist2[i_avlist] = av;
556     i_avlist++;
557     }
558    
559    
560     static int
561     alatcmp(avp1, avp2) /* compare ambient values for MRA */
562     AMBVAL **avp1, **avp2;
563     {
564     return((**avp2).latick - (**avp1).latick);
565     }
566    
567    
568     static int
569     aposcmp(avp1, avp2) /* compare ambient value positions */
570     AMBVAL **avp1, **avp2;
571     {
572     return(*avp1 - *avp2);
573     }
574    
575    
576 greg 2.27 #ifdef DEBUG
577     static int
578     avlmemi(avaddr) /* find list position from address */
579     AMBVAL *avaddr;
580     {
581     register AMBVAL **avlpp;
582    
583     avlpp = (AMBVAL **)bsearch((char *)&avaddr, (char *)avlist2,
584     nambvals, sizeof(AMBVAL *), aposcmp);
585     if (avlpp == NULL)
586     error(CONSISTENCY, "address not found in avlmemi");
587     return(avlpp - avlist2);
588     }
589     #else
590     #define avlmemi(avaddr) ((AMBVAL **)bsearch((char *)&avaddr,(char *)avlist2, \
591     nambvals,sizeof(AMBVAL *),aposcmp) - avlist2)
592     #endif
593    
594    
595 greg 2.26 static
596     sortambvals(always) /* resort ambient values */
597     int always;
598     {
599     AMBTREE oldatrunk;
600     AMBVAL tav, *tap, *pnext;
601     register int i, j;
602 greg 2.28 /* see if it's time yet */
603     if (!always && (ambclock < lastsort+sortintvl ||
604     nambvals < SORT_THRESH))
605     return;
606 greg 2.26 /*
607     * The idea here is to minimize memory thrashing
608     * in VM systems by improving reference locality.
609     * We do this by periodically sorting our stored ambient
610     * values in memory in order of most recently to least
611     * recently accessed. This ordering was chosen so that new
612     * ambient values (which tend to be less important) go into
613     * higher memory with the infrequently accessed values.
614     * Since we expect our values to need sorting less
615     * frequently as the process continues, we double our
616     * waiting interval after each call.
617     * This routine is also called by setambacc() with
618     * the "always" parameter set to 1 so that the ambient
619     * tree will be rebuilt with the new accuracy parameter.
620     */
621 greg 2.27 if (tracktime) { /* allocate pointer arrays to sort */
622 greg 2.26 avlist1 = (AMBVAL **)malloc(nambvals*sizeof(AMBVAL *));
623     avlist2 = (AMBVAL **)malloc(nambvals*sizeof(AMBVAL *));
624     } else
625     avlist1 = avlist2 = NULL;
626 greg 2.27 if (avlist2 == NULL) { /* no time tracking -- rebuild tree? */
627 greg 2.26 if (avlist1 != NULL)
628     free((char *)avlist1);
629 greg 2.27 if (always) { /* rebuild without sorting */
630     copystruct(&oldatrunk, &atrunk);
631     atrunk.alist = NULL;
632     atrunk.kid = NULL;
633     unloadatree(&oldatrunk, avinsert);
634     }
635 greg 2.26 } else { /* sort memory by last access time */
636     /*
637     * Sorting memory is tricky because it isn't contiguous.
638     * We have to sort an array of pointers by MRA and also
639     * by memory position. We then copy values in "loops"
640     * to minimize memory hits. Nevertheless, we will visit
641 greg 2.27 * everyone at least twice, and this is an expensive process
642 greg 2.26 * when we're thrashing, which is when we need to do it.
643     */
644 greg 2.27 #ifdef DEBUG
645 greg 2.29 sprintf(errmsg, "sorting %u ambient values at ambclock=%lu...",
646     nambvals, ambclock);
647 greg 2.27 eputs(errmsg);
648     #endif
649     i_avlist = 0;
650     unloadatree(&atrunk, av2list); /* empty current tree */
651     #ifdef DEBUG
652     if (i_avlist < nambvals)
653     error(CONSISTENCY, "missing ambient values in sortambvals");
654     #endif
655 greg 2.26 qsort((char *)avlist1, nambvals, sizeof(AMBVAL *), alatcmp);
656     qsort((char *)avlist2, nambvals, sizeof(AMBVAL *), aposcmp);
657     for (i = 0; i < nambvals; i++) {
658 greg 2.27 if (avlist1[i] == NULL)
659 greg 2.26 continue;
660     tap = avlist2[i];
661     copystruct(&tav, tap);
662     for (j = i; (pnext = avlist1[j]) != tap;
663 greg 2.27 j = avlmemi(pnext)) {
664 greg 2.26 copystruct(avlist2[j], pnext);
665     avinsert(avlist2[j]);
666     avlist1[j] = NULL;
667     }
668     copystruct(avlist2[j], &tav);
669     avinsert(avlist2[j]);
670     avlist1[j] = NULL;
671     }
672     free((char *)avlist1);
673     free((char *)avlist2);
674 greg 2.28 /* compute new sort interval */
675     sortintvl = ambclock - lastsort;
676 greg 2.32 if (sortintvl >= MAX_SORT_INTVL/2)
677 greg 2.28 sortintvl = MAX_SORT_INTVL;
678     else
679 greg 2.26 sortintvl <<= 1; /* wait twice as long next */
680 greg 2.27 #ifdef DEBUG
681     eputs("done\n");
682     #endif
683 greg 2.26 }
684     if (ambclock >= MAXACLOCK)
685     ambclock = MAXACLOCK/2;
686     lastsort = ambclock;
687 greg 2.20 }
688    
689    
690 greg 2.18 #ifdef F_SETLKW
691 greg 2.10
692 greg 2.19 static
693     aflock(typ) /* lock/unlock ambient file */
694     int typ;
695     {
696     static struct flock fls; /* static so initialized to zeroes */
697    
698     fls.l_type = typ;
699     if (fcntl(fileno(ambfp), F_SETLKW, &fls) < 0)
700     error(SYSTEM, "cannot (un)lock ambient file");
701     }
702    
703    
704 greg 2.16 int
705 greg 2.7 ambsync() /* synchronize ambient file */
706     {
707     static FILE *ambinp = NULL;
708 greg 2.15 static long lastpos = -1;
709     long flen;
710 greg 2.12 AMBVAL avs;
711 greg 2.7 register int n;
712 greg 2.16
713     if (nunflshed == 0)
714     return(0);
715 greg 2.19 if (lastpos < 0) /* initializing (locked in initambfile) */
716     goto syncend;
717 greg 2.7 /* gain exclusive access */
718 greg 2.19 aflock(F_WRLCK);
719 greg 2.7 /* see if file has grown */
720 greg 2.15 if ((flen = lseek(fileno(ambfp), 0L, 2)) < 0)
721 greg 2.21 goto seekerr;
722 greg 2.15 if (n = flen - lastpos) { /* file has grown */
723 greg 2.17 if (ambinp == NULL) { /* use duplicate filedes */
724     ambinp = fdopen(dup(fileno(ambfp)), "r");
725 greg 2.14 if (ambinp == NULL)
726 greg 2.17 error(SYSTEM, "fdopen failed in ambsync");
727 greg 2.14 }
728 greg 2.15 if (fseek(ambinp, lastpos, 0) < 0)
729 greg 2.21 goto seekerr;
730 greg 2.15 while (n >= AMBVALSIZ) { /* load contributed values */
731 greg 2.7 readambval(&avs, ambinp);
732 greg 2.21 avinsert(avstore(&avs));
733 greg 2.15 n -= AMBVALSIZ;
734     }
735 greg 2.22 /*** seek always as safety measure
736     if (n) ***/ /* alignment */
737 greg 2.21 if (lseek(fileno(ambfp), flen-n, 0) < 0)
738     goto seekerr;
739 greg 2.7 }
740 greg 2.21 #ifdef DEBUG
741     if (ambfp->_ptr - ambfp->_base != nunflshed*AMBVALSIZ) {
742     sprintf(errmsg, "ambient file buffer at %d rather than %d",
743     ambfp->_ptr - ambfp->_base,
744     nunflshed*AMBVALSIZ);
745     error(CONSISTENCY, errmsg);
746     }
747     #endif
748 greg 2.15 syncend:
749 greg 2.7 n = fflush(ambfp); /* calls write() at last */
750 greg 2.21 if ((lastpos = lseek(fileno(ambfp), 0L, 1)) < 0)
751     goto seekerr;
752 greg 2.19 aflock(F_UNLCK); /* release file */
753 greg 2.16 nunflshed = 0;
754 greg 2.7 return(n);
755 greg 2.21 seekerr:
756     error(SYSTEM, "seek failed in ambsync");
757 greg 2.18 }
758    
759     #else
760    
761     int
762     ambsync() /* flush ambient file */
763     {
764     if (nunflshed == 0)
765     return(0);
766     nunflshed = 0;
767     return(fflush(ambfp));
768 greg 1.1 }
769 greg 2.10
770     #endif