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.34 by gregl, Sun Jan 4 18:36:43 1998 UTC vs.
Revision 3.48 by gwlarson, Tue Feb 2 16:13:24 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 14 | Line 14 | static char SCCSid[] = "$SunId$ SGI";
14   #include <sys/types.h>
15   #include <sys/stat.h>
16  
17 + #ifndef RTFLUSH
18 + #define RTFLUSH         0               /* flush one at a time in batch */
19 + #endif
20 + #ifndef FRAGWARN
21 + #define FRAGWARN        20              /* fragmentation for warning (%) */
22 + #endif
23   #ifndef MAXQTIME
24   #define MAXQTIME        5               /* target maximum seconds in queue */
25   #endif
# Line 26 | Line 32 | char   *progname;              /* our program name */
32   char    *hdkfile;               /* holodeck file name */
33   char    froot[256];             /* root file name */
34  
29 int     nowarn = 0;             /* turn warnings off? */
30
35   int     ncprocs = 0;            /* desired number of compute processes */
36  
37   char    *outdev = NULL;         /* output device name */
# Line 51 | Line 55 | long   nraysdone = 0L;         /* number of rays done */
55   long    npacksdone = 0L;        /* number of packets done */
56  
57   PACKET  *freepacks;             /* available packets */
58 < int     avgqlen;                /* average queue length when full */
58 > int     totqlen;                /* maximum queue length when full */
59  
60   char  *sigerr[NSIG];            /* signal error messages */
61  
62 + extern int      nowarn;         /* turn warnings off? */
63 +
64   extern time_t   time();
65  
66  
# Line 109 | Line 115 | char   *argv[];
115                  }
116                                                  /* check settings */
117          checkvalues();
118 <                                                /* load RIF if rtrace */
119 <        if (ncprocs)
114 <                getradfile();
118 >                                                /* load rad input file */
119 >        getradfile();
120  
121          if (hdlist[0] == NULL) {                /* create new holodeck */
122                  HDGRID  hdg[HDMAX];
# Line 145 | Line 150 | int  signo;
150   {
151          static int  gotsig = 0;
152  
153 <        if (gotsig++)                   /* two signals and we're gone! */
153 >        if (gotsig > 1)                 /* we're going as fast as we can! */
154 >                return;
155 >        if (gotsig++) {                 /* two signals and we split */
156 >                hdsync(NULL, 0);        /* don't leave w/o saying goodbye */
157                  _exit(signo);
158 <
159 <        alarm(60);                      /* allow 60 seconds to clean up */
152 <        signal(SIGALRM, SIG_DFL);       /* make certain we do die */
158 >        }
159 >        alarm(300);                     /* allow 5 minutes to clean up */
160          eputs("signal - ");
161          eputs(sigerr[signo]);
162          eputs("\n");
# Line 176 | Line 183 | int    fd, mod;
183          if (fstat(fd, &stbuf) < 0)
184                  error(SYSTEM, "cannot stat open holodeck file");
185          mod &= stbuf.st_mode;           /* always more restrictive */
186 <        if (mod == stbuf.st_mode)
186 >        if (mod == (stbuf.st_mode & 0777))
187                  return(-1);             /* already set */
188                                          /* else change it */
189          if (fchmod(fd, mod) < 0) {
# Line 223 | Line 230 | initrholo()                    /* get our holodeck running */
230                  endtime = starttime + vflt(TIME)*3600. + .5;
231                                                  /* start rtrace */
232          if (ncprocs > 0) {
233 <                i = start_rtrace();
233 >                totqlen = i = start_rtrace();
234                  if (i < 1)
235                          error(USER, "cannot start rtrace process(es)");
236                  if (vdef(REPORT)) {             /* make first report */
# Line 234 | Line 241 | initrholo()                    /* get our holodeck running */
241                  freepacks = (PACKET *)bmalloc(i*sizeof(PACKET));
242                  if (freepacks == NULL)
243                          goto memerr;
237                if (!(avgqlen = i/nprocs))      /* record mean queue length */
238                        avgqlen = 1;
244                  freepacks[--i].nr = 0;
245                  freepacks[i].next = NULL;
246                  if (!vdef(OBSTRUCTIONS) || !vbool(OBSTRUCTIONS)) {
# Line 272 | Line 277 | memerr:
277  
278   rholo()                         /* holodeck main loop */
279   {
280 +        static long     nextfragwarn = 100*(1L<<20);
281          static int      idle = 0;
282          PACKET  *pl = NULL, *plend;
283 +        long    fsiz;
284          int     pksiz;
285          register PACKET *p;
286          time_t  t;
# Line 287 | Line 294 | rholo()                                /* holodeck main loop */
294                          return(1);
295          } else if (idle)
296                  return(0);              /* all done */
297 <                                        /* check file size */
298 <        if (maxdisk > 0 && hdfilen(hdlist[0]->fd) >= maxdisk) {
297 >        fsiz = hdfilen(hdlist[0]->fd);  /* check file size */
298 >        if (maxdisk > 0 && fsiz >= maxdisk) {
299                  error(WARNING, "file limit exceeded");
300                  done_rtrace();
301                  return(1);      /* comes back */
302          }
303 + #if FRAGWARN
304 +        if (fsiz >= nextfragwarn &&
305 +                (fsiz-hdfiluse(hdlist[0]->fd,0))/(fsiz/100) > FRAGWARN) {
306 +                sprintf(errmsg, "holodeck file fragmentation is %.0f%%",
307 +                                100.*(fsiz-hdfiluse(hdlist[0]->fd,1))/fsiz);
308 +                error(WARNING, errmsg);
309 +                nextfragwarn = fsiz + (fsiz>>2);        /* decent interval */
310 +        }
311 + #endif
312          t = time(NULL);                 /* check time */
313          if (endtime > 0 && t >= endtime) {
314                  error(WARNING, "time limit exceeded");
# Line 302 | Line 318 | rholo()                                /* holodeck main loop */
318          if (reporttime > 0 && t >= reporttime)
319                  report(t);
320                                          /* figure out good packet size */
321 +        pksiz = RPACKSIZ;
322   #if MAXQTIME
323 <        pksiz = nraysdone*MAXQTIME/(avgqlen*(t - starttime + 1L));
324 <        if (pksiz < 1)
325 <                pksiz = 1;
326 <        else if (pksiz > RPACKSIZ)
323 >        if (!chunkycmp) {
324 >                pksiz = nraysdone*MAXQTIME/(totqlen*(t - starttime + 1L));
325 >                if (pksiz < 1) pksiz = 1;
326 >                else if (pksiz > RPACKSIZ) pksiz = RPACKSIZ;
327 >        }
328   #endif
311                pksiz = RPACKSIZ;
329          idle = 0;                       /* get packets to process */
330          while (freepacks != NULL) {
331                  p = freepacks; freepacks = p->next; p->next = NULL;
# Line 333 | Line 350 | register HDGRID        *gp;
350          extern char     *atos();
351          register int    i;
352          int     n;
353 <        double  len[3], maxlen, d;
353 >        double  len[3], d;
354          char    buf[64];
355  
356          if (!vdef(SECTION)) {
# Line 367 | Line 384 | register HDGRID        *gp;
384                                  &gp->xv[2][0], &gp->xv[2][1], &gp->xv[2][2],
385                                  &gp->grid[0], &gp->grid[1], &gp->grid[2]) < 12)
386                          badvalue(SECTION);
370                maxlen = 0.;
387                  for (i = 0; i < 3; i++)
388 <                        if ((len[i] = VLEN(gp->xv[i])) > maxlen)
389 <                                maxlen = len[i];
390 <                if (!vdef(GRID))
391 <                        d = 0.125*maxlen;
392 <                else if ((d = vflt(GRID)) <= FTINY)
388 >                        len[i] = VLEN(gp->xv[i]);
389 >                if (!vdef(GRID)) {
390 >                        d = 2/2e5*( len[0]*len[0]*(len[1]*len[1] +
391 >                                        len[2]*len[2] + 4*len[1]*len[2])
392 >                                + len[1]*len[1]*len[2]*(len[2] + 4*len[0])
393 >                                + 4*len[0]*len[1]*len[2]*len[2] );
394 >                        d = sqrt(sqrt(d));
395 >                } else if ((d = vflt(GRID)) <= FTINY)
396                          badvalue(GRID);
397                  for (i = 0; i < 3; i++)
398                          if (gp->grid[i] <= 0)
# Line 421 | Line 440 | HDGRID *gp;
440   }
441  
442  
443 + int
444   headline(s)                     /* process information header line */
445   char    *s;
446   {
# Line 434 | Line 454 | char   *s;
454                                          HOLOFMT, hdkfile, FMTSTR, fmt);
455                          error(USER, errmsg);
456                  }
457 <                return;
457 >                return(0);
458          }
459          for (cp = s; *cp; cp++)         /* take off any comments */
460                  if (*cp == '#') {
# Line 442 | Line 462 | char   *s;
462                          break;
463                  }
464          setvariable(s, matchvar);       /* don't flag errors */
465 +        return(0);
466   }
467  
468  
# Line 454 | Line 475 | loadholo()                     /* start loading a holodeck from fname */
475          int4    nextloc;
476                                          /* open holodeck file */
477          if ((fp = fopen(hdkfile, ncprocs>0 ? "r+" : "r")) == NULL) {
478 <                sprintf(errmsg, "cannot open \"%s\" for %s", hdkfile,
479 <                                ncprocs>0 ? "appending" : "reading");
478 >                sprintf(errmsg, "cannot %s \"%s\"",
479 >                                ncprocs>0 ? "append" : "read", hdkfile);
480                  error(SYSTEM, errmsg);
481          }
482                                          /* load variables from header */
# Line 496 | Line 517 | PACKET *pl;
517                                  p->nr*sizeof(RAYVAL));
518                          if (outdev != NULL)     /* display it */
519                                  disp_packet((PACKHEAD *)p);
520 <                        if (hdcachesize <= 0)   /* manual flushing */
520 >                        if (hdcachesize <= 0) {
521 > #if RTFLUSH
522 >                                if (outdev == NULL)
523 >                                        hdfreebeam(hdlist[p->hd], p->bi);
524 > #endif
525                                  n2flush++;
526 +                        }
527                          nraysdone += p->nr;
528                          npacksdone++;
529                          p->nr = 0;
# Line 505 | Line 531 | PACKET *pl;
531                  p->next = freepacks;            /* push onto free list */
532                  freepacks = p;
533          }
534 <        if (n2flush > 300/MAXQTIME*avgqlen*nprocs) {
535 <                hdflush(NULL);                  /* flush holodeck buffers */
534 > #if MAXQTIME
535 >        if (n2flush > 300/MAXQTIME*totqlen) {
536 > #else
537 >        if (n2flush > 50*totqlen) {
538 > #endif
539 > #if RTFLUSH
540 >                hdsync(NULL, outdev!=NULL);     /* sync beams & directories */
541 > #else
542 >                if (outdev != NULL)
543 >                        hdsync(NULL, 1);
544 >                else
545 >                        hdflush(NULL);
546 > #endif
547                  n2flush = 0;
548          }
549   }
# Line 551 | Line 588 | register char  *s;
588                  fflush(stderr);
589                  midline = 0;
590          }
554 }
555
556
557 wputs(s)                        /* put warning string to stderr */
558 char    *s;
559 {
560        if (!nowarn)
561                eputs(s);
591   }
592  
593  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines