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.21 by gregl, Tue Oct 28 14:00:02 1997 UTC

# Line 11 | Line 11 | static char SCCSid[] = "$SunId$ LBL";
11   #include "standard.h"
12  
13   #ifdef F_SETLKW
14
14   #include "paths.h"
15 + #include "selcall.h"
16   #include <signal.h>
17 #include <sys/types.h>
17   #include <sys/stat.h>
18  
19   #ifndef TIMELIM
# Line 112 | Line 111 | pfhold()               /* holding pattern for idle rendering proces
111                                  /* close input and output descriptors */
112          close(fileno(stdin));
113          close(fileno(stdout));
114 +        if (errfile == NULL)
115 +                close(fileno(stderr));
116                                  /* create named pipes for input and output */
117          if (mknod(mktemp(strcpy(inpname,TEMPLATE)), S_IFIFO|0600, 0) < 0)
118                  goto createrr;
# Line 125 | Line 126 | pfhold()               /* holding pattern for idle rendering proces
126          n = strlen(buf);
127          if (write(persistfd, buf, n) < n)
128                  error(SYSTEM, "error writing persist file");
129 +        lseek(persistfd, 0L, 0);
130                                  /* wait TIMELIM for someone to signal us */
131          got_io = 0;
132          signal(SIGIO, sig_io);
# Line 133 | Line 135 | pfhold()               /* holding pattern for idle rendering proces
135          pflock(0);                      /* unlock persist file for attach */
136          while (!got_io)
137                  pause();                /* wait for attach */
136        pflock(1);                      /* grab persist file right back! */
138          alarm(0);                       /* turn off alarm */
139          signal(SIGALRM, oldalrm);
140          signal(SIGIO, SIG_DFL);
141 <        if (lseek(persistfd, 0L, 0) < 0 || ftruncate(persistfd, 0L) < 0)
141 <                error(SYSTEM, "seek/truncate error on persist file");
141 >        pflock(1);                      /* grab persist file back */
142                                  /* someone wants us; reopen stdin and stdout */
143          if (freopen(inpname, "r", stdin) == NULL)
144                  goto openerr;
# Line 162 | Line 162 | openerr:
162   }
163  
164  
165 < io_process()            /* just act as conduits to and from actual process */
165 > io_process()            /* just act as go-between for actual process */
166   {
167          register char   *cp;
168          register int    nr, n;
169 <        char    buf[512], *pfin, *pfout, *pferr;
170 <        int     pid, pid2 = -1;
169 >        char    buf[BUFSIZ], *pfin, *pfout, *pferr;
170 >        int     pid, nfds;
171 >        int     fdin, fdout, fderr = -1;
172 >        fd_set  readfds, writefds, excepfds;
173                                          /* load persist file */
174 +        n = 40;
175          while ((nr = read(persistfd, buf, sizeof(buf)-1)) == 0) {
176 +                if (!n--)
177 +                        error(USER, "unattended persist file?");
178                  pflock(0);
179                  sleep(15);              /* wait until ready */
180                  pflock(1);
181          }
177        pfdetach();                     /* close persist file */
182          if (nr < 0)
183                  error(SYSTEM, "error reading persist file");
184 <        buf[nr] = '\0';
184 >        ftruncate(persistfd, 0L);       /* truncate persist file */
185 >        pfdetach();                     /* close & release persist file */
186 >        buf[nr] = '\0';                 /* parse what we got */
187          if ((cp = index(buf, ' ')) == NULL)
188                  goto formerr;
189          *cp++ = '\0';
# Line 203 | Line 209 | io_process()           /* just act as conduits to and from actu
209                  sprintf(errmsg, "persist file for %s, not %s", buf, progname);
210                  error(USER, errmsg);
211          }
212 <                                /* wake up rendering process */
212 >                                        /* wake up rendering process */
213          if (kill(pid, SIGIO) < 0)
214                  error(SYSTEM, "cannot signal rendering process in io_process");
215 <        pid = fork();           /* fork i/o process */
216 <        if (pid < 0)
217 <                goto forkerr;
218 <                                /* connect to appropriate pipe */
219 <        if (pid) {                      /* parent passes renderer output */
220 <                close(0);
221 <                if (pferr[0]) {
222 <                        pid2 = fork();          /* fork another for stderr */
223 <                        if (pid2 < 0)
224 <                                goto forkerr;
215 >                                        /* open named pipes, in order */
216 >        if ((fdin = open(pfin, O_WRONLY)) < 0)
217 >                error(SYSTEM, "cannot open input pipe in io_process");
218 >        if ((fdout = open(pfout, O_RDONLY)) < 0)
219 >                error(SYSTEM, "cannot open output pipe in io_process");
220 >        if (pferr[0] && (fderr = open(pferr, O_RDONLY)) < 0)
221 >                error(SYSTEM, "cannot open error pipe in io_process");
222 >        for ( ; ; ) {                   /* loop on select call */
223 >                FD_ZERO(&readfds);
224 >                FD_ZERO(&writefds);
225 >                FD_ZERO(&excepfds);
226 >                nfds = 0;
227 >                if (fdin >= 0) {
228 >                        FD_SET(fdin, &writefds);
229 >                        FD_SET(fdin, &excepfds);
230 >                        nfds = fdin+1;
231                  }
232 <                if (pid2) {                     /* parent is still stdout */
233 <                        if (open(pfout, O_RDONLY) != 0)
234 <                                error(SYSTEM,
235 <                                "cannot open output pipe in io_process");
224 <                } else {                        /* second child is stderr */
225 <                        if (open(pferr, O_RDONLY) != 0)
226 <                                error(SYSTEM,
227 <                                "cannot open error pipe in io_process");
228 <                        dup2(2, 1);             /* attach stdout to stderr */
232 >                if (fdout >= 0) {
233 >                        FD_SET(fdout, &readfds);
234 >                        FD_SET(fdout, &excepfds);
235 >                        nfds = fdout+1;
236                  }
237 <        } else {                        /* child passes renderer input */
238 <                close(1);
239 <                if (open(pfin, O_WRONLY) != 1)
240 <                        error(SYSTEM, "cannot open input pipe in io_process");
237 >                if (fderr >= 0) {
238 >                        FD_SET(fderr, &readfds);
239 >                        FD_SET(fderr, &excepfds);
240 >                        nfds = fderr+1;
241 >                }
242 >                if (nfds == 0)
243 >                        break;                  /* all done, exit */
244 >                if (select(nfds, &readfds, &writefds, &excepfds, NULL) < 0)
245 >                        error(SYSTEM, "error in select call in io_process");
246 >                                                /* renderer stderr */
247 >                if (fderr >= 0 && (FD_ISSET(fderr, &readfds) ||
248 >                                FD_ISSET(fderr, &excepfds))) {
249 >                        nr = read(fderr, cp=buf, sizeof(buf));
250 >                        if (nr < 0)
251 >                                goto readerr;
252 >                        if (nr == 0) {
253 >                                close(fderr);
254 >                                /* close(2);    don't close stderr! */
255 >                                fderr = -1;
256 >                        } else
257 >                                do {            /* write it all */
258 >                                        if ((n = write(2, cp, nr)) <= 0)
259 >                                                goto writerr;
260 >                                        cp += n;
261 >                                } while ((nr -= n) > 0);
262 >                }
263 >                                                /* renderer stdout */
264 >                if (fdout >= 0 && (FD_ISSET(fdout, &readfds) ||
265 >                                FD_ISSET(fdout, &excepfds))) {
266 >                        nr = read(fdout, cp=buf, sizeof(buf));
267 >                        if (nr < 0)
268 >                                goto readerr;
269 >                        if (nr == 0) {          /* EOF */
270 >                                close(fdout);
271 >                                close(1);
272 >                                fdout = -1;
273 >                        } else
274 >                                do {            /* write it all */
275 >                                        if ((n = write(1, cp, nr)) <= 0)
276 >                                                goto writerr;
277 >                                        cp += n;
278 >                                } while ((nr -= n) > 0);
279 >                }
280 >                                                /* renderer stdin */
281 >                if (fdin >= 0 && (FD_ISSET(fdin, &writefds) ||
282 >                                FD_ISSET(fdin, &excepfds))) {
283 >                        nr = read(0, buf, 512); /* use minimal buffer */
284 >                        if (nr < 0)
285 >                                goto readerr;
286 >                        if (nr == 0) {
287 >                                close(0);
288 >                                close(fdin);
289 >                                fdin = -1;
290 >                        } else if (write(fdin, buf, nr) < nr)
291 >                                goto writerr;   /* what else to do? */
292 >                }
293          }
294 <                                /* pass input to output */
236 <                                /* 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!) */
294 >        _exit(0);               /* we ought to return renderer error status! */
295   formerr:
296          error(USER, "format error in persist file");
297 < forkerr:
298 <        error(SYSTEM, "fork failed in io_process");
297 > readerr:
298 >        error(SYSTEM, "read error in io_process");
299 > writerr:
300 >        error(SYSTEM, "write error in io_process");
301   }
302  
303   #else

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines