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

Comparing ray/src/rt/persist.c (file contents):
Revision 2.16 by greg, Mon Jul 8 19:46:21 1996 UTC vs.
Revision 2.25 by gregl, Sat Jan 3 20:07:31 1998 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1996 Regents of the University of California */
1 > /* Copyright (c) 1997 Silicon Graphics, Inc. */
2  
3   #ifndef lint
4 < static char SCCSid[] = "$SunId$ LBL";
4 > static char SCCSid[] = "$SunId$ SGI";
5   #endif
6  
7   /*
# Line 9 | Line 9 | static char SCCSid[] = "$SunId$ LBL";
9   */
10  
11   #include "standard.h"
12 + #include "random.h"
13  
14   #ifdef F_SETLKW
15   #include "paths.h"
16 + #include "selcall.h"
17   #include <signal.h>
16 #include <sys/types.h>
18   #include <sys/stat.h>
18                                        /* select call compatibility stuff */
19 #ifndef FD_SETSIZE
20 #include <sys/param.h>
21 #define FD_SETSIZE      NOFILE          /* maximum # select file descriptors */
22 #endif
23 #ifndef FD_SET
24 #ifndef NFDBITS
25 #define NFDBITS         (8*sizeof(int)) /* number of bits per fd_mask */
26 #endif
27 #define FD_SET(n, p)    ((p)->fds_bits[(n)/NFDBITS] |= (1 << ((n) % NFDBITS)))
28 #define FD_CLR(n, p)    ((p)->fds_bits[(n)/NFDBITS] &= ~(1 << ((n) % NFDBITS)))
29 #define FD_ISSET(n, p)  ((p)->fds_bits[(n)/NFDBITS] & (1 << ((n) % NFDBITS)))
30 #define FD_ZERO(p)      bzero((char *)(p), sizeof(*(p)))
31 #endif
19  
20   #ifndef TIMELIM
21   #define TIMELIM         (8*3600)        /* time limit for holding pattern */
# Line 140 | Line 127 | pfhold()               /* holding pattern for idle rendering proces
127          n = strlen(buf);
128          if (write(persistfd, buf, n) < n)
129                  error(SYSTEM, "error writing persist file");
130 +        lseek(persistfd, 0L, 0);
131                                  /* wait TIMELIM for someone to signal us */
132          got_io = 0;
133          signal(SIGIO, sig_io);
# Line 148 | Line 136 | pfhold()               /* holding pattern for idle rendering proces
136          pflock(0);                      /* unlock persist file for attach */
137          while (!got_io)
138                  pause();                /* wait for attach */
151        pflock(1);                      /* grab persist file right back! */
139          alarm(0);                       /* turn off alarm */
140          signal(SIGALRM, oldalrm);
141          signal(SIGIO, SIG_DFL);
142 <        if (lseek(persistfd, 0L, 0) < 0 || ftruncate(persistfd, 0L) < 0)
156 <                error(SYSTEM, "seek/truncate error on persist file");
142 >        pflock(1);                      /* grab persist file back */
143                                  /* someone wants us; reopen stdin and stdout */
144          if (freopen(inpname, "r", stdin) == NULL)
145                  goto openerr;
146          if (freopen(outpname, "w", stdout) == NULL)
147                  goto openerr;
148 +        sleep(3);               /* give them a chance to open their pipes */
149          if (errname[0]) {
150                  if (freopen(errname, "w", stderr) == NULL)
151                          goto openerr;
# Line 183 | Line 170 | io_process()           /* just act as go-between for actual pro
170          register int    nr, n;
171          char    buf[BUFSIZ], *pfin, *pfout, *pferr;
172          int     pid, nfds;
173 <        int     fdin, fdout, fderr = -1;
174 <        fd_set  readfds, writefds, excepfds;
173 >        int     fdout, fderr = -1;
174 >        int     status = 0;
175 >        fd_set  readfds, excepfds;
176                                          /* load persist file */
177 +        n = 40;
178          while ((nr = read(persistfd, buf, sizeof(buf)-1)) == 0) {
179 +                if (!n--)
180 +                        error(USER, "unattended persist file?");
181                  pflock(0);
182 <                sleep(15);              /* wait until ready */
182 >                sleep(3+(3*getpid()+random())%13);      /* wait until ready */
183                  pflock(1);
184          }
194        pfdetach();                     /* close persist file */
185          if (nr < 0)
186                  error(SYSTEM, "error reading persist file");
187 <        buf[nr] = '\0';
187 >        ftruncate(persistfd, 0L);       /* truncate persist file */
188 >        pfdetach();                     /* close & release persist file */
189 >        buf[nr] = '\0';                 /* parse what we got */
190          if ((cp = index(buf, ' ')) == NULL)
191                  goto formerr;
192          *cp++ = '\0';
# Line 223 | Line 215 | io_process()           /* just act as go-between for actual pro
215                                          /* wake up rendering process */
216          if (kill(pid, SIGIO) < 0)
217                  error(SYSTEM, "cannot signal rendering process in io_process");
218 <                                        /* open named pipes, in order */
219 <        if ((fdin = open(pfin, O_WRONLY)) < 0)
220 <                error(SYSTEM, "cannot open input pipe in io_process");
218 >                                        /* fork child feeder process */
219 >        pid = fork();
220 >        if (pid < 0)
221 >                error(SYSTEM, "fork failed in io_process");
222 >        if (pid == 0) {                 /* feeder loop */
223 >                int     fdin;
224 >                close(1);               /* open input pipe */
225 >                if ((fdin = open(pfin, O_WRONLY)) < 0)
226 >                        error(SYSTEM, "cannot open feed pipe in io_process");
227 >                                                /* renderer stdin */
228 >                while ((nr = read(0, cp=buf, sizeof(buf))) > 0) {
229 >                        do {
230 >                                if ((n = write(fdin, cp, nr)) <= 0)
231 >                                        goto writerr;
232 >                                cp += n;
233 >                        } while ((nr -= n) > 0);
234 >                }
235 >                if (nr < 0)
236 >                        goto readerr;
237 >                _exit(0);
238 >        }
239 >        close(0);
240 >                                        /* open output pipes, in order */
241          if ((fdout = open(pfout, O_RDONLY)) < 0)
242                  error(SYSTEM, "cannot open output pipe in io_process");
243          if (pferr[0] && (fderr = open(pferr, O_RDONLY)) < 0)
244                  error(SYSTEM, "cannot open error pipe in io_process");
245 <        for ( ; ; ) {                   /* loop on select call */
245 >        for ( ; ; ) {                   /* eater loop */
246                  FD_ZERO(&readfds);
235                FD_ZERO(&writefds);
247                  FD_ZERO(&excepfds);
248                  nfds = 0;
238                if (fdin >= 0) {
239                        FD_SET(fdin, &writefds);
240                        FD_SET(fdin, &excepfds);
241                        nfds = fdin+1;
242                }
249                  if (fdout >= 0) {
250                          FD_SET(fdout, &readfds);
251                          FD_SET(fdout, &excepfds);
# Line 252 | Line 258 | io_process()           /* just act as go-between for actual pro
258                  }
259                  if (nfds == 0)
260                          break;                  /* all done, exit */
261 <                if (select(nfds, &readfds, &writefds, &excepfds, NULL) < 0)
261 >                if (select(nfds, &readfds, NULL, &excepfds, NULL) < 0)
262                          error(SYSTEM, "error in select call in io_process");
263                                                  /* renderer stderr */
264                  if (fderr >= 0 && (FD_ISSET(fderr, &readfds) ||
# Line 262 | Line 268 | io_process()           /* just act as go-between for actual pro
268                                  goto readerr;
269                          if (nr == 0) {
270                                  close(fderr);
271 <                                close(2);
271 >                                /* close(2);    don't close stderr! */
272                                  fderr = -1;
273 <                        } else
274 <                                do {            /* write it all */
273 >                        } else {
274 >                                cp[nr] = '\0';  /* deduce status if we can */
275 >                                n = strlen(progname);
276 >                                if (!strncmp(cp, progname, n) &&
277 >                                                cp[n++] == ':' &&
278 >                                                cp[n++] == ' ') {
279 >                                        register struct erract  *ep;
280 >                                        for (ep = erract; ep < erract+NERRS;
281 >                                                        ep++)
282 >                                                if (ep->pre[0] &&
283 >                                                        !strncmp(cp+n, ep->pre,
284 >                                                            strlen(ep->pre))) {
285 >                                                        status = ep->ec;
286 >                                                        break;
287 >                                                }
288 >                                }
289 >                                do {            /* write message */
290                                          if ((n = write(2, cp, nr)) <= 0)
291                                                  goto writerr;
292                                          cp += n;
293                                  } while ((nr -= n) > 0);
294 +                        }
295                  }
296                                                  /* renderer stdout */
297                  if (fdout >= 0 && (FD_ISSET(fdout, &readfds) ||
# Line 288 | Line 310 | io_process()           /* just act as go-between for actual pro
310                                          cp += n;
311                                  } while ((nr -= n) > 0);
312                  }
291                                                /* renderer stdin */
292                if (fdin >= 0 && (FD_ISSET(fdin, &writefds) ||
293                                FD_ISSET(fdin, &excepfds))) {
294                        nr = read(0, buf, 512); /* use minimal buffer */
295                        if (nr < 0)
296                                goto readerr;
297                        if (nr == 0) {
298                                close(0);
299                                close(fdin);
300                                fdin = -1;
301                        } else if (write(fdin, buf, nr) < nr)
302                                goto writerr;   /* what else to do? */
303                }
313          }
314 <        _exit(0);               /* we ought to return renderer error status! */
314 >        wait(0);                /* wait for feeder process */
315 >        _exit(status);
316   formerr:
317          error(USER, "format error in persist file");
318   readerr:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines