ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/hd/rholo.c
(Generate patch)

Comparing ray/src/hd/rholo.c (file contents):
Revision 3.8 by gregl, Mon Nov 10 18:05:24 1997 UTC vs.
Revision 3.50 by gwlarson, Tue Mar 9 08:51:39 1999 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1997 Silicon Graphics, Inc. */
1 > /* Copyright (c) 1999 Silicon Graphics, Inc. */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ SGI";
# Line 9 | Line 9 | static char SCCSid[] = "$SunId$ SGI";
9   */
10  
11   #include "rholo.h"
12 < #include "paths.h"
13 < #include <sys/types.h>
12 > #include "random.h"
13 > #include <signal.h>
14 > #include <sys/stat.h>
15  
16 + #ifndef FRAGWARN
17 + #define FRAGWARN        20              /* fragmentation for warning (%) */
18 + #endif
19 + #ifndef MAXQTIME
20 + #define MAXQTIME        5               /* target maximum seconds in queue */
21 + #endif
22 +                                        /* manual cache flushing frequency */
23 + #ifndef RTFLUSH
24 + #if MAXQTIME
25 + #define RTFLUSH         (300/MAXQTIME*totqlen)  /* <= 5 minutes */
26 + #else
27 + #define RTFLUSH         (50*totqlen)            /* just guess */
28 + #endif
29 + #endif
30                          /* the following must be consistent with rholo.h */
31   int     NVARS = NRHVARS;                /* total number of variables */
32  
# Line 19 | Line 34 | VARIABLE       vv[] = RHVINIT;         /* variable-value pairs */
34  
35   char    *progname;              /* our program name */
36   char    *hdkfile;               /* holodeck file name */
37 < char    froot[MAXPATH];         /* root file name */
37 > char    froot[256];             /* root file name */
38  
24 int     nowarn = 0;             /* turn warnings off? */
25
26 double  expval = 1.;            /* global exposure value */
27
39   int     ncprocs = 0;            /* desired number of compute processes */
40  
41   char    *outdev = NULL;         /* output device name */
42  
43 + int     readinp = 0;            /* read commands from stdin */
44 +
45 + int     force = 0;              /* allow overwrite of holodeck */
46 +
47   time_t  starttime;              /* time we got started */
48   time_t  endtime;                /* time we should end by */
49   time_t  reporttime;             /* time for next report */
# Line 38 | Line 53 | long   maxdisk;                /* maximum file space (bytes) */
53   int     rtargc = 1;             /* rtrace command */
54   char    *rtargv[128] = {"rtrace", NULL};
55  
56 + int     orig_mode = -1;         /* original file mode (-1 if unchanged) */
57 +
58   long    nraysdone = 0L;         /* number of rays done */
59   long    npacksdone = 0L;        /* number of packets done */
60  
61   PACKET  *freepacks;             /* available packets */
62 + int     totqlen;                /* maximum queue length (number of packets) */
63  
64 + char  *sigerr[NSIG];            /* signal error messages */
65 +
66 + extern int      nowarn;         /* turn warnings off? */
67 +
68   extern time_t   time();
69  
70  
# Line 50 | Line 72 | main(argc, argv)
72   int     argc;
73   char    *argv[];
74   {
53        HDGRID  hdg;
75          int     i;
76 <        int     force = 0;
77 <                                                /* mark start time */
57 <        starttime = time(NULL);
76 >
77 >        initurand(16384);                       /* initialize urand */
78          progname = argv[0];                     /* get arguments */
79          for (i = 1; i < argc && argv[i][0] == '-'; i++)
80                  switch (argv[i][1]) {
# Line 64 | Line 84 | char   *argv[];
84                  case 'f':                       /* force overwrite */
85                          force++;
86                          break;
87 +                case 'i':                       /* read input from stdin */
88 +                        readinp++;
89 +                        break;
90                  case 'n':                       /* compute processes */
91                          if (i >= argc-2)
92                                  goto userr;
# Line 77 | Line 100 | char   *argv[];
100                  default:
101                          goto userr;
102                  }
80                                                /* do we have a job? */
81        if (outdev == NULL && ncprocs <= 0)
82                goto userr;
103                                                  /* get root file name */
104 +        if (i >= argc)
105 +                goto userr;
106          rootname(froot, hdkfile=argv[i++]);
107 <                                                /* load... */
108 <        if (i < argc) {                         /* variables */
109 <                loadvars(argv[i++]);
110 <                                                        /* cmdline settings */
111 <                for ( ; i < argc; i++)
112 <                        if (setvariable(argv[i], matchvar) < 0) {
113 <                                sprintf(errmsg, "unknown variable: %s",
114 <                                                argv[i]);
115 <                                error(USER, errmsg);
116 <                        }
117 <                                                        /* check settings */
118 <                checkvalues();
119 <                                                        /* load RIF if any */
120 <                if (vdef(RIF))
121 <                        getradfile(vval(RIF));
107 >                                                /* load variables? */
108 >        if (i < argc)
109 >                if (argv[i][0] != '-' && argv[i][0] != '+')
110 >                        loadvars(argv[i]);      /* load variables from file */
111 >
112 >        if (i >= argc || argv[i][0] == '+')
113 >                loadholo();                     /* load existing holodeck */
114 >
115 >        while (++i < argc)                      /* get command line settings */
116 >                if (setvariable(argv[i], matchvar) < 0) {
117 >                        sprintf(errmsg, "unknown variable: %s", argv[i]);
118 >                        error(USER, errmsg);
119 >                }
120 >                                                /* check settings */
121 >        checkvalues();
122 >                                                /* load rad input file */
123 >        getradfile();
124 >
125 >        if (hdlist[0] == NULL) {                /* create new holodeck */
126 >                HDGRID  hdg[HDMAX];
127                                                          /* set defaults */
128 <                setdefaults(&hdg);
128 >                setdefaults(hdg);
129                                                          /* holodeck exists? */
130                  if (!force && access(hdkfile, R_OK|W_OK) == 0)
131                          error(USER,
132                                  "holodeck file exists -- use -f to overwrite");
133                                                          /* create holodeck */
134 <                creatholo(&hdg);
135 <        } else {                                /* else load holodeck */
136 <                loadholo();
110 <                if (vdef(RIF))                          /* load RIF if any */
111 <                        getradfile(vval(RIF));
112 <        }
134 >                creatholo(hdg);
135 >        } else                                  /* else just set defaults */
136 >                setdefaults(NULL);
137                                                  /* initialize */
138          initrholo();
139 <                                                /* run */
139 >                                                /* main loop */
140          while (rholo())
141                  ;
142                                                  /* done */
143          quit(0);
144   userr:
145          fprintf(stderr,
146 < "Usage: %s {-n nprocs|-o disp} [-w][-f] output.hdk [control.hif [VAR=val ..]]\n",
146 > "Usage: %s [-n nprocs][-o disp][-w][-f] output.hdk [control.hif|+|- [VAR=val ..]]\n",
147                          progname);
148          quit(1);
149   }
150  
151  
152 + onsig(signo)                            /* fatal signal */
153 + int  signo;
154 + {
155 +        static int  gotsig = 0;
156 +
157 +        if (gotsig > 1)                 /* we're going as fast as we can! */
158 +                return;
159 +        if (gotsig++) {                 /* two signals and we split */
160 +                hdsync(NULL, 0);        /* don't leave w/o saying goodbye */
161 +                _exit(signo);
162 +        }
163 +        alarm(300);                     /* allow 5 minutes to clean up */
164 +        eputs("signal - ");
165 +        eputs(sigerr[signo]);
166 +        eputs("\n");
167 +        quit(3);
168 + }
169 +
170 +
171 + sigdie(signo, msg)                      /* set fatal signal */
172 + int  signo;
173 + char  *msg;
174 + {
175 +        if (signal(signo, onsig) == SIG_IGN)
176 +                signal(signo, SIG_IGN);
177 +        sigerr[signo] = msg;
178 + }
179 +
180 +
181 + int
182 + resfmode(fd, mod)               /* restrict open file access mode */
183 + int     fd, mod;
184 + {
185 +        struct stat     stbuf;
186 +                                        /* get original mode */
187 +        if (fstat(fd, &stbuf) < 0)
188 +                error(SYSTEM, "cannot stat open holodeck file");
189 +        mod &= stbuf.st_mode;           /* always more restrictive */
190 +        if (mod == (stbuf.st_mode & 0777))
191 +                return(-1);             /* already set */
192 +                                        /* else change it */
193 +        if (fchmod(fd, mod) < 0) {
194 +                error(WARNING, "cannot change holodeck file access mode");
195 +                return(-1);
196 +        }
197 +        return(stbuf.st_mode);          /* return original mode */
198 + }
199 +
200 +
201   initrholo()                     /* get our holodeck running */
202   {
203          extern int      global_packet();
204          register int    i;
205 +                                                /* close holodeck on exec() */
206 +        fcntl(hdlist[0]->fd, F_SETFD, FD_CLOEXEC);
207  
208          if (outdev != NULL)                     /* open output device */
209                  disp_open(outdev);
# Line 138 | Line 213 | initrholo()                    /* get our holodeck running */
213          if (!vdef(DISKSPACE))
214                  maxdisk = 0;
215          else
216 <                maxdisk = 1024.*1024.*vflt(DISKSPACE));
142 <                                                /* record end time */
143 <        if (!vdef(TIME) || vflt(TIME) <= FTINY)
144 <                endtime = 0;
145 <        else
146 <                endtime = starttime + vflt(TIME)*3600.;
216 >                maxdisk = 1024.*1024.*vflt(DISKSPACE);
217                                                  /* set up memory cache */
218          if (outdev == NULL)
219 <                hdcachesize = 0;        /* manual flushing */
219 >                hdcachesize = 0;                /* manual flushing */
220          else if (vdef(CACHE))
221                  hdcachesize = 1024.*1024.*vflt(CACHE);
222                                                  /* open report file */
# Line 155 | Line 225 | initrholo()                    /* get our holodeck running */
225                  if (*s && freopen(s, "a", stderr) == NULL)
226                          quit(2);
227          }
228 +                                                /* mark the starting time */
229 +        starttime = time(NULL);
230 +                                                /* compute end time */
231 +        if (!vdef(TIME) || vflt(TIME) <= FTINY)
232 +                endtime = 0;
233 +        else
234 +                endtime = starttime + vflt(TIME)*3600. + .5;
235                                                  /* start rtrace */
236          if (ncprocs > 0) {
237 <                i = start_rtrace();
237 >                totqlen = i = start_rtrace();
238                  if (i < 1)
239 <                        error(USER, "cannot start rtrace process");
239 >                        error(USER, "cannot start rtrace process(es)");
240                  if (vdef(REPORT)) {             /* make first report */
241                          printargs(rtargc, rtargv, stderr);
242                          report(0);
# Line 170 | Line 247 | initrholo()                    /* get our holodeck running */
247                          goto memerr;
248                  freepacks[--i].nr = 0;
249                  freepacks[i].next = NULL;
250 <                if (!vbool(OBSTRUCTIONS)) {
250 >                if (!vdef(OBSTRUCTIONS) || !vbool(OBSTRUCTIONS)) {
251                          freepacks[i].offset = (float *)bmalloc(
252                                          RPACKSIZ*sizeof(float)*(i+1) );
253                          if (freepacks[i].offset == NULL)
# Line 184 | Line 261 | initrholo()                    /* get our holodeck running */
261                          freepacks[i].next = &freepacks[i+1];
262                  }
263          }
264 +                                        /* set up signal handling */
265 +        sigdie(SIGINT, "Interrupt");
266 +        sigdie(SIGHUP, "Hangup");
267 +        sigdie(SIGTERM, "Terminate");
268 +        sigdie(SIGPIPE, "Broken pipe");
269 +        sigdie(SIGALRM, "Alarm clock");
270 + #ifdef  SIGXCPU
271 +        sigdie(SIGXCPU, "CPU limit exceeded");
272 +        sigdie(SIGXFSZ, "File size exceeded");
273 + #endif
274 +                                        /* protect holodeck file */
275 +        orig_mode = resfmode(hdlist[0]->fd, ncprocs>0 ? 0 : 0444);
276          return;
277   memerr:
278          error(SYSTEM, "out of memory in initrholo");
# Line 192 | Line 281 | memerr:
281  
282   rholo()                         /* holodeck main loop */
283   {
284 <        static int      idle = 1;
284 >        static long     nextfragwarn = 100*(1L<<20);
285 >        static int      idle = 0;
286          PACKET  *pl = NULL, *plend;
287 +        long    fsiz;
288 +        int     pksiz;
289          register PACKET *p;
290          time_t  t;
291 <        long    l;
292 <
293 <        if (outdev != NULL)             /* check display */
291 >                                        /* check display */
292 >        if (nprocs <= 0)
293 >                idle = 1;
294 >        if (outdev != NULL) {
295                  if (!disp_check(idle))
296 <                        return(0);
297 <                                        /* display only? */
298 <        if (ncprocs <= 0)
299 <                return(1);
300 <                                        /* check file size */
301 <        if (maxdisk > 0 && hdfiluse(hdlist[0]->fd,0)+hdmemuse(0) >= maxdisk) {
296 >                        return(0);      /* quit request */
297 >                if (nprocs <= 0)
298 >                        return(1);
299 >        } else if (idle)
300 >                return(0);              /* all done */
301 >        fsiz = hdfilen(hdlist[0]->fd);  /* check file size */
302 >        if (maxdisk > 0 && fsiz >= maxdisk) {
303                  error(WARNING, "file limit exceeded");
304 <                return(0);
304 >                done_rtrace();
305 >                return(1);      /* comes back */
306          }
307 <                                        /* check time */
308 <        if (endtime > 0 || reporttime > 0)
309 <                t = time(NULL);
307 > #if FRAGWARN
308 >        if (fsiz >= nextfragwarn &&
309 >                (fsiz-hdfiluse(hdlist[0]->fd,0))/(fsiz/100) > FRAGWARN) {
310 >                sprintf(errmsg, "holodeck file fragmentation is %.0f%%",
311 >                                100.*(fsiz-hdfiluse(hdlist[0]->fd,1))/fsiz);
312 >                error(WARNING, errmsg);
313 >                nextfragwarn = fsiz + (fsiz>>2);        /* decent interval */
314 >        }
315 > #endif
316 >        t = time(NULL);                 /* check time */
317          if (endtime > 0 && t >= endtime) {
318                  error(WARNING, "time limit exceeded");
319 <                return(0);
319 >                done_rtrace();
320 >                return(1);      /* comes back */
321          }
322          if (reporttime > 0 && t >= reporttime)
323                  report(t);
324 <                                        /* get packets to process */
324 >                                        /* figure out good packet size */
325 >        pksiz = RPACKSIZ;
326 > #if MAXQTIME
327 >        if (!chunkycmp) {
328 >                pksiz = nraysdone*MAXQTIME/(totqlen*(t - starttime + 1L));
329 >                if (pksiz < 1) pksiz = 1;
330 >                else if (pksiz > RPACKSIZ) pksiz = RPACKSIZ;
331 >        }
332 > #endif
333 >        idle = 0;                       /* get packets to process */
334          while (freepacks != NULL) {
335                  p = freepacks; freepacks = p->next; p->next = NULL;
336 <                if (!next_packet(p)) {
336 >                if (!next_packet(p, pksiz)) {
337                          p->next = freepacks; freepacks = p;
338 +                        idle = 1;
339                          break;
340                  }
341                  if (pl == NULL) pl = p;
342                  else plend->next = p;
343                  plend = p;
344          }
345 <        idle = pl == NULL && freepacks != NULL;
233 <                                        /* are we out of stuff to do? */
234 <        if (idle && outdev == NULL)
235 <                return(0);
236 <                                        /* else process packets */
345 >                                        /* process packets */
346          done_packets(do_packets(pl));
347          return(1);                      /* and continue */
348   }
349  
350  
242 report(t)                       /* report progress so far */
243 time_t  t;
244 {
245        if (t == 0)
246                t = time(NULL);
247        fprintf(stderr, "%s: %ld packets (%ld rays) done after %.2f hours\n",
248                        progname, npacksdone, nraysdone, (t-starttime)/3600.);
249        fflush(stderr);
250        if (vdef(REPORT))
251                reporttime = t + (time_t)(vflt(REPORT)*60.+.5);
252 }
253
254
351   setdefaults(gp)                 /* set default values */
352   register HDGRID *gp;
353   {
354          extern char     *atos();
355          register int    i;
356 <        double  len[3], maxlen, d;
356 >        int     n;
357 >        double  len[3], d;
358          char    buf[64];
359  
360          if (!vdef(SECTION)) {
361                  sprintf(errmsg, "%s must be defined", vnam(SECTION));
362                  error(USER, errmsg);
363          }
267        if (vdef(SECTION) > 1) {
268                sprintf(errmsg, "ignoring all but first %s", vnam(SECTION));
269                error(WARNING, errmsg);
270        }
271        if (sscanf(vval(SECTION),
272                        "%lf %lf %lf %lf %lf %lf %lf %lf %lf %lf %lf %lf",
273                        &gp->orig[0], &gp->orig[1], &gp->orig[2],
274                        &gp->xv[0][0], &gp->xv[0][1], &gp->xv[0][2],
275                        &gp->xv[1][0], &gp->xv[1][1], &gp->xv[1][2],
276                        &gp->xv[2][0], &gp->xv[2][1], &gp->xv[2][2]) != 12)
277                badvalue(SECTION);
278        maxlen = 0.;
279        for (i = 0; i < 3; i++)
280                if ((len[i] = VLEN(gp->xv[i])) > maxlen)
281                        maxlen = len[i];
282        if (!vdef(GRID)) {
283                sprintf(buf, "%.4f", maxlen/8.);
284                vval(GRID) = savqstr(buf);
285                vdef(GRID)++;
286        }
287        if ((d = vflt(GRID)) <= FTINY)
288                badvalue(GRID);
289        for (i = 0; i < 3; i++)
290                gp->grid[i] = len[i]/d + (1.-FTINY);
291        if (!vdef(EXPOSURE)) {
292                sprintf(errmsg, "%s must be defined", vnam(EXPOSURE));
293                error(USER, errmsg);
294        }
295        expval = vval(EXPOSURE)[0] == '-' || vval(EXPOSURE)[0] == '+' ?
296                        pow(2., vflt(EXPOSURE)) : vflt(EXPOSURE);
364          if (!vdef(OCTREE)) {
365                  if ((vval(OCTREE) = bmalloc(strlen(froot)+5)) == NULL)
366                          error(SYSTEM, "out of memory");
367                  sprintf(vval(OCTREE), "%s.oct", froot);
368                  vdef(OCTREE)++;
369          }
370 <        if (!vdef(OBSTRUCTIONS)) {
371 <                vval(OBSTRUCTIONS) = "T";
372 <                vdef(OBSTRUCTIONS)++;
370 >        if (!vdef(VDIST)) {
371 >                vval(VDIST) = "F";
372 >                vdef(VDIST)++;
373          }
307        if (!vdef(OCCUPANCY)) {
308                vval(OCCUPANCY) = "U";
309                vdef(OCCUPANCY)++;
310        }
374                                  /* append rendering options */
375          if (vdef(RENDER))
376                  rtargc += wordstring(rtargv+rtargc, vval(RENDER));
377 +        
378 +        if (gp == NULL)         /* already initialized? */
379 +                return;
380 +                                /* set grid parameters */
381 +        for (n = 0; n < vdef(SECTION); n++, gp++) {
382 +                gp->grid[0] = gp->grid[1] = gp->grid[2] = 0;
383 +                if (sscanf(nvalue(SECTION, n),
384 +                "%lf %lf %lf %lf %lf %lf %lf %lf %lf %lf %lf %lf %hd %hd %hd",
385 +                                &gp->orig[0], &gp->orig[1], &gp->orig[2],
386 +                                &gp->xv[0][0], &gp->xv[0][1], &gp->xv[0][2],
387 +                                &gp->xv[1][0], &gp->xv[1][1], &gp->xv[1][2],
388 +                                &gp->xv[2][0], &gp->xv[2][1], &gp->xv[2][2],
389 +                                &gp->grid[0], &gp->grid[1], &gp->grid[2]) < 12)
390 +                        badvalue(SECTION);
391 +                for (i = 0; i < 3; i++)
392 +                        len[i] = VLEN(gp->xv[i]);
393 +                if (!vdef(GRID)) {
394 +                        d = 2/2e5*( len[0]*len[0]*(len[1]*len[1] +
395 +                                        len[2]*len[2] + 4*len[1]*len[2])
396 +                                + len[1]*len[1]*len[2]*(len[2] + 4*len[0])
397 +                                + 4*len[0]*len[1]*len[2]*len[2] );
398 +                        d = sqrt(sqrt(d));
399 +                } else if ((d = vflt(GRID)) <= FTINY)
400 +                        badvalue(GRID);
401 +                for (i = 0; i < 3; i++)
402 +                        if (gp->grid[i] <= 0)
403 +                                gp->grid[i] = len[i]/d + (1.-FTINY);
404 +        }
405   }
406  
407  
408   creatholo(gp)                   /* create a holodeck output file */
409   HDGRID  *gp;
410   {
411 <        long    endloc = 0;
411 >        extern char     VersionID[];
412 >        int4    lastloc, nextloc;
413 >        int     n;
414 >        int     fd;
415          FILE    *fp;
416                                          /* open & truncate file */
417          if ((fp = fopen(hdkfile, "w+")) == NULL) {
# Line 326 | Line 420 | HDGRID *gp;
420          }
421                                          /* write information header */
422          newheader("RADIANCE", fp);
423 +        fprintf(fp, "SOFTWARE= %s\n", VersionID);
424          printvars(fp);
425          fputformat(HOLOFMT, fp);
426          fputc('\n', fp);
427 <        putw(HOLOMAGIC, fp);            /* put magic number & terminus */
428 <        fwrite(&endloc, sizeof(long), 1, fp);
429 <        fflush(fp);                     /* flush buffer */
430 <        hdinit(fileno(fp), gp);         /* allocate and initialize index */
431 <                        /* we're dropping fp here.... */
427 >        putw(HOLOMAGIC, fp);            /* put magic number */
428 >        fd = dup(fileno(fp));
429 >        fclose(fp);                     /* flush and close stdio stream */
430 >        lastloc = lseek(fd, 0L, 2);
431 >        for (n = vdef(SECTION); n--; gp++) {    /* initialize each section */
432 >                nextloc = 0L;
433 >                write(fd, (char *)&nextloc, sizeof(nextloc));
434 >                hdinit(fd, gp);                 /* writes beam index */
435 >                if (!n)
436 >                        break;
437 >                nextloc = hdfilen(fd);          /* write section pointer */
438 >                if (lseek(fd, (long)lastloc, 0) < 0)
439 >                        error(SYSTEM,
440 >                                "cannot seek on holodeck file in creatholo");
441 >                write(fd, (char *)&nextloc, sizeof(nextloc));
442 >                lseek(fd, (long)(lastloc=nextloc), 0);
443 >        }
444   }
445  
446  
447 + int
448   headline(s)                     /* process information header line */
449   char    *s;
450   {
# Line 350 | Line 458 | char   *s;
458                                          HOLOFMT, hdkfile, FMTSTR, fmt);
459                          error(USER, errmsg);
460                  }
461 <                return;
461 >                return(0);
462          }
463          for (cp = s; *cp; cp++)         /* take off any comments */
464                  if (*cp == '#') {
# Line 358 | Line 466 | char   *s;
466                          break;
467                  }
468          setvariable(s, matchvar);       /* don't flag errors */
469 +        return(0);
470   }
471  
472  
473   loadholo()                      /* start loading a holodeck from fname */
474   {
475 +        extern long     ftell();
476          FILE    *fp;
477 <        long    endloc;
477 >        int     fd;
478 >        int     n;
479 >        int4    nextloc;
480                                          /* open holodeck file */
481          if ((fp = fopen(hdkfile, ncprocs>0 ? "r+" : "r")) == NULL) {
482 <                sprintf(errmsg, "cannot open \"%s\" for %s", hdkfile,
483 <                                ncprocs>0 ? "appending" : "reading");
482 >                sprintf(errmsg, "cannot %s \"%s\"",
483 >                                ncprocs>0 ? "append" : "read", hdkfile);
484                  error(SYSTEM, errmsg);
485          }
486                                          /* load variables from header */
# Line 379 | Line 491 | loadholo()                     /* start loading a holodeck from fname */
491                                  hdkfile);
492                  error(USER, errmsg);
493          }
494 <        fread(&endloc, sizeof(long), 1, fp);
495 <        if (endloc != 0)
496 <                error(WARNING, "ignoring multiple sections in holodeck file");
497 <        fseek(fp, 0L, 1);                       /* align system file pointer */
498 <        hdinit(fileno(fp), NULL);               /* allocate and load index */
499 <                        /* we're dropping fp here.... */
494 >        nextloc = ftell(fp);                    /* get stdio position */
495 >        fd = dup(fileno(fp));
496 >        fclose(fp);                             /* done with stdio */
497 >        for (n = 0; nextloc > 0L; n++) {        /* initialize each section */
498 >                lseek(fd, (long)nextloc, 0);
499 >                read(fd, (char *)&nextloc, sizeof(nextloc));
500 >                hdinit(fd, NULL);
501 >        }
502 >        if (n != vdef(SECTION)) {
503 >                sprintf(errmsg, "number of sections does not match %s setting",
504 >                                vnam(SECTION));
505 >                error(WARNING, errmsg);
506 >        }
507   }
508  
509  
510   done_packets(pl)                /* handle finished packets */
511   PACKET  *pl;
512   {
513 <        static int      nunflushed = 0;
513 >        static int      n2flush = 0;
514          register PACKET *p;
515  
516          while (pl != NULL) {
# Line 402 | Line 521 | PACKET *pl;
521                                  p->nr*sizeof(RAYVAL));
522                          if (outdev != NULL)     /* display it */
523                                  disp_packet((PACKHEAD *)p);
524 <                        else
525 <                                nunflushed += p->nr;
524 >                        if (hdcachesize <= 0)
525 >                                n2flush++;
526                          nraysdone += p->nr;
527                          npacksdone++;
528 +                        p->nr = 0;
529                  }
530 <                p->nr = 0;                      /* push onto free list */
411 <                p->next = freepacks;
530 >                p->next = freepacks;            /* push onto free list */
531                  freepacks = p;
532          }
533 <        if (nunflushed >= 256*RPACKSIZ) {
534 <                hdflush(NULL);                  /* flush holodeck buffers */
535 <                nunflushed = 0;
533 >        if (n2flush >= RTFLUSH) {
534 >                if (outdev != NULL)
535 >                        hdsync(NULL, 1);
536 >                else
537 >                        hdflush(NULL);
538 >                n2flush = 0;
539          }
540   }
541  
542  
421 getradfile(rfargs)              /* run rad and get needed variables */
422 char    *rfargs;
423 {
424        static short    mvar[] = {VIEW,OCTREE,EXPOSURE,-1};
425        static char     tf1[] = TEMPLATE;
426        char    tf2[64];
427        char    combuf[256];
428        char    *pippt;
429        register int    i;
430        register char   *cp;
431                                        /* create rad command */
432        mktemp(tf1);
433        sprintf(tf2, "%s.rif", tf1);
434        sprintf(combuf,
435                "rad -v 0 -s -e -w %s OPTFILE=%s | egrep '^[ \t]*(NOMATCH",
436                        rfargs, tf1);
437        cp = combuf;
438        while (*cp){
439                if (*cp == '|') pippt = cp;
440                cp++;
441        }                               /* match unset variables */
442        for (i = 0; mvar[i] >= 0; i++)
443                if (!vdef(mvar[i])) {
444                        *cp++ = '|';
445                        strcpy(cp, vnam(mvar[i]));
446                        while (*cp) cp++;
447                        pippt = NULL;
448                }
449        if (pippt != NULL)
450                strcpy(pippt, "> /dev/null");   /* nothing to match */
451        else
452                sprintf(cp, ")[ \t]*=' > %s", tf2);
453        if (system(combuf)) {
454                error(SYSTEM, "cannot execute rad command");
455                unlink(tf2);                    /* clean up */
456                unlink(tf1);
457                quit(1);
458        }
459        if (pippt == NULL) {
460                loadvars(tf2);                  /* load variables */
461                unlink(tf2);
462        }
463        rtargc += wordfile(rtargv+rtargc, tf1); /* get rtrace options */
464        unlink(tf1);                    /* clean up */
465 }
466
467
543   rootname(rn, fn)                /* remove tail from end of fn */
544   register char   *rn, *fn;
545   {
546          char    *tp, *dp;
547  
548          for (tp = NULL, dp = rn; *rn = *fn++; rn++)
549 <                if (ISDIRSEP(*rn))
549 >                if (*rn == '/')
550                          dp = rn;
551                  else if (*rn == '.')
552                          tp = rn;
# Line 507 | Line 582 | register char  *s;
582   }
583  
584  
510 wputs(s)                        /* put warning string to stderr */
511 char    *s;
512 {
513        if (!nowarn)
514                eputs(s);
515 }
516
517
585   quit(ec)                        /* exit program gracefully */
586   int     ec;
587   {
588          int     status = 0;
589  
590 <        if (outdev != NULL)             /* close display */
591 <                disp_close();
592 <        if (hdlist[0] != NULL) {        /* flush holodeck */
593 <                if (ncprocs > 0) {
594 <                        done_packets(flush_queue());
595 <                        status = end_rtrace();  /* close rtrace */
596 <                        hdflush(NULL);
597 <                        if (vdef(REPORT)) {
531 <                                long    fsiz, fuse;
532 <                                report(0);
533 <                                fsiz = lseek(hdlist[0]->fd, 0L, 2);
534 <                                fuse = hdfiluse(hdlist[0]->fd, 1);
535 <                                fprintf(stderr,
590 >        if (hdlist[0] != NULL) {        /* close holodeck */
591 >                if (nprocs > 0)
592 >                        status = done_rtrace();         /* calls hdsync() */
593 >                if (ncprocs > 0 && vdef(REPORT)) {
594 >                        long    fsiz, fuse;
595 >                        fsiz = hdfilen(hdlist[0]->fd);
596 >                        fuse = hdfiluse(hdlist[0]->fd, 1);
597 >                        fprintf(stderr,
598                          "%s: %.1f Mbyte holodeck file, %.1f%% fragmentation\n",
599 <                                                hdkfile, fsiz/(1024.*1024.),
600 <                                                100.*(fsiz-fuse)/fsiz);
601 <                        }
540 <                } else
541 <                        hdflush(NULL);
599 >                                        hdkfile, fsiz/(1024.*1024.),
600 >                                        100.*(fsiz-fuse)/fsiz);
601 >                }
602          }
603 +        if (orig_mode >= 0)             /* reset holodeck access mode */
604 +                fchmod(hdlist[0]->fd, orig_mode);
605 +        if (outdev != NULL)             /* close display */
606 +                disp_close();
607          exit(ec ? ec : status);         /* exit */
608   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines