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.15 by greg, Sat Jul 6 23:19:57 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
14
15   #include "paths.h"
16 + #include "selcall.h"
17   #include <signal.h>
17 #include <sys/types.h>
18   #include <sys/stat.h>
19  
20   #ifndef TIMELIM
# Line 112 | Line 112 | pfhold()               /* holding pattern for idle rendering proces
112                                  /* close input and output descriptors */
113          close(fileno(stdin));
114          close(fileno(stdout));
115 +        if (errfile == NULL)
116 +                close(fileno(stderr));
117                                  /* create named pipes for input and output */
118          if (mknod(mktemp(strcpy(inpname,TEMPLATE)), S_IFIFO|0600, 0) < 0)
119                  goto createrr;
# Line 125 | 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 133 | 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 */
136        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)
141 <                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 162 | Line 164 | openerr:
164   }
165  
166  
167 < io_process()            /* just act as conduits to and from actual process */
167 > io_process()            /* just act as go-between for actual process */
168   {
169          register char   *cp;
170          register int    nr, n;
171 <        char    buf[512], *pfin, *pfout, *pferr;
172 <        int     pid, pid2 = -1;
171 >        char    buf[BUFSIZ], *pfin, *pfout, *pferr;
172 >        int     pid, nfds;
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          }
177        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 203 | Line 212 | io_process()           /* just act as conduits to and from actu
212                  sprintf(errmsg, "persist file for %s, not %s", buf, progname);
213                  error(USER, errmsg);
214          }
215 <                                /* wake up rendering process */
215 >                                        /* wake up rendering process */
216          if (kill(pid, SIGIO) < 0)
217                  error(SYSTEM, "cannot signal rendering process in io_process");
218 <        pid = fork();           /* fork i/o process */
218 >                                        /* fork child feeder process */
219 >        pid = fork();
220          if (pid < 0)
221 <                goto forkerr;
222 <                                /* connect to appropriate pipe */
223 <        if (pid) {                      /* parent passes renderer output */
224 <                close(0);
225 <                if (pferr[0]) {
226 <                        pid2 = fork();          /* fork another for stderr */
227 <                        if (pid2 < 0)
228 <                                goto forkerr;
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 (pid2) {                     /* parent is still stdout */
236 <                        if (open(pfout, O_RDONLY) != 0)
237 <                                error(SYSTEM,
238 <                                "cannot open output pipe in io_process");
239 <                } else {                        /* second child is stderr */
240 <                        if (open(pferr, O_RDONLY) != 0)
241 <                                error(SYSTEM,
242 <                                "cannot open error pipe in io_process");
243 <                        dup2(2, 1);             /* attach stdout to stderr */
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 ( ; ; ) {                   /* eater loop */
246 >                FD_ZERO(&readfds);
247 >                FD_ZERO(&excepfds);
248 >                nfds = 0;
249 >                if (fdout >= 0) {
250 >                        FD_SET(fdout, &readfds);
251 >                        FD_SET(fdout, &excepfds);
252 >                        nfds = fdout+1;
253                  }
254 <        } else {                        /* child passes renderer input */
255 <                close(1);
256 <                if (open(pfin, O_WRONLY) != 1)
257 <                        error(SYSTEM, "cannot open input pipe in io_process");
254 >                if (fderr >= 0) {
255 >                        FD_SET(fderr, &readfds);
256 >                        FD_SET(fderr, &excepfds);
257 >                        nfds = fderr+1;
258 >                }
259 >                if (nfds == 0)
260 >                        break;                  /* all done, exit */
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) ||
265 >                                FD_ISSET(fderr, &excepfds))) {
266 >                        nr = read(fderr, cp=buf, sizeof(buf));
267 >                        if (nr < 0)
268 >                                goto readerr;
269 >                        if (nr == 0) {
270 >                                close(fderr);
271 >                                /* close(2);    don't close stderr! */
272 >                                fderr = -1;
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) ||
298 >                                FD_ISSET(fdout, &excepfds))) {
299 >                        nr = read(fdout, cp=buf, sizeof(buf));
300 >                        if (nr < 0)
301 >                                goto readerr;
302 >                        if (nr == 0) {          /* EOF */
303 >                                close(fdout);
304 >                                close(1);
305 >                                fdout = -1;
306 >                        } else
307 >                                do {            /* write it all */
308 >                                        if ((n = write(1, cp, nr)) <= 0)
309 >                                                goto writerr;
310 >                                        cp += n;
311 >                                } while ((nr -= n) > 0);
312 >                }
313          }
314 <                                /* pass input to output */
315 <                                /* read as much as we can, write all of it */
237 <        while ((nr = read(0, cp=buf, sizeof(buf))) > 0)
238 <                do {
239 <                        if ((n = write(1, cp, nr)) <= 0)
240 <                                error(SYSTEM, "write error in io_process");
241 <                        cp += n;
242 <                } while ((nr -= n) > 0);
243 <        if (nr < 0)
244 <                error(SYSTEM, "read error in io_process");
245 <        close(0);               /* close input */
246 <        close(1);               /* close output */
247 <        if (pid)                /* parent waits for stdin child */
248 <                wait(0);
249 <        if (pid2 > 0)           /* wait for stderr child also */
250 <                wait(0);
251 <        _exit(0);               /* all done, exit (not quit!) */
314 >        wait(0);                /* wait for feeder process */
315 >        _exit(status);
316   formerr:
317          error(USER, "format error in persist file");
318 < forkerr:
319 <        error(SYSTEM, "fork failed in io_process");
318 > readerr:
319 >        error(SYSTEM, "read error in io_process");
320 > writerr:
321 >        error(SYSTEM, "write error in io_process");
322   }
323  
324   #else

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines