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

Comparing ray/src/rt/devcomm.c (file contents):
Revision 1.2 by greg, Thu May 25 19:33:21 1989 UTC vs.
Revision 2.4 by greg, Thu Nov 18 09:42:58 1993 UTC

# Line 10 | Line 10 | static char SCCSid[] = "$SunId$ LBL";
10   *      10/5/88
11   */
12  
13 < #include <stdio.h>
13 > #include "standard.h"
14  
15 #include <signal.h>
16
15   #include "color.h"
16  
17   #include "driver.h"
18  
19 + #include "vfork.h"
20 +
21   #ifndef DEVPATH
22   #define DEVPATH         getenv("PATH")  /* device search path */
23   #endif
24  
25 < #ifndef BSD
26 < #define vfork           fork
27 < #endif
25 > static int      comm_close(), comm_clear(), comm_paintr(),
26 >                comm_getcur(), comm_comout(), comm_comin(), comm_flush();
27  
28 < #ifndef WFLUSH
30 < #define WFLUSH          30              /* flush after this many rays */
31 < #endif
32 <
33 < extern char     *getpath(), *getenv();
34 <
35 < int     onsigio();
36 <
37 < int     comm_close(), comm_clear(), comm_paintr(), comm_errout(),
38 <                comm_getcur(), comm_comout(), comm_comin();
39 <
40 < struct driver   comm_driver, comm_default = {
28 > struct driver   comm_driver = {
29          comm_close, comm_clear, comm_paintr, comm_getcur,
30 <        comm_comout, comm_comin,
43 <        MAXRES, MAXRES, 0
30 >        comm_comout, comm_comin, comm_flush
31   };
32  
33 + static int      mygets(), myputs(), reply_error(), getstate();
34 +
35   FILE    *devin, *devout;
36  
37   int     devchild;
38  
39  
40 + static struct driver *
41 + final_connect()                         /* verify and initialize connection */
42 + {
43 +        putw(COM_SENDM, devout);
44 +        fflush(devout);
45 +        if (getw(devin) != COM_RECVM)
46 +                return(NULL);
47 +                                                /* get driver parameters */
48 +        getstate();
49 +                                                /* set error vectors */
50 +        cmdvec = comm_comout;
51 +        if (wrnvec != NULL)
52 +                wrnvec = comm_comout;
53 +        return(&comm_driver);
54 + }
55 +
56 +
57   struct driver *
58 < comm_init(argv)                 /* set up and execute driver */
59 < char    *argv[];
58 > slave_init(dname, id)                   /* run rview in slave mode */
59 > char    *dname, *id;
60   {
61 +        devchild = -1;                          /* we're the slave here */
62 +        devout = stdout;                        /* use standard input */
63 +        devin = stdin;                          /* and standard output */
64 +        return(final_connect());                /* verify initialization */
65 + }
66 +
67 +
68 + struct driver *
69 + comm_init(dname, id)                    /* set up and execute driver */
70 + char    *dname, *id;
71 + {
72          char    *devname;
73          int     p1[2], p2[2];
74 <
75 <        if ((devname = getpath(argv[0], DEVPATH)) == NULL) {
76 <                stderr_v(argv[0]);
74 >        char    pin[16], pout[16];
75 >                                                /* find driver program */
76 >        if ((devname = getpath(dname, DEVPATH, X_OK)) == NULL) {
77 >                stderr_v(dname);
78                  stderr_v(": not found\n");
79                  return(NULL);
80          }
81 +                                                /* open communication pipes */
82          if (pipe(p1) == -1 || pipe(p2) == -1)
83                  goto syserr;
84 <        if ((devchild = vfork()) == 0) {
84 >        if ((devchild = vfork()) == 0) {        /* fork driver process */
85                  close(p1[1]);
86                  close(p2[0]);
87 <                if (p1[0] != 0) {
88 <                        dup2(p1[0], 0);
89 <                        close(p1[0]);
90 <                }
72 <                if (p2[1] != 1) {
73 <                        dup2(p2[1], 1);
74 <                        close(p2[1]);
75 <                }
76 <                execv(devname, argv);
77 <                stderr_v(devname);
78 <                stderr_v(": cannot execute\n");
87 >                sprintf(pin, "%d", p1[0]);
88 >                sprintf(pout, "%d", p2[1]);
89 >                execl(devname, dname, pin, pout, id, 0);
90 >                perror(devname);
91                  _exit(127);
92          }
93          if (devchild == -1)
# Line 86 | Line 98 | char   *argv[];
98                  goto syserr;
99          if ((devin = fdopen(p2[0], "r")) == NULL)
100                  goto syserr;
101 <        bcopy(&comm_default, &comm_driver, sizeof(comm_driver));
90 <        signal(SIGIO, onsigio);
91 <        cmdvec = comm_comout;                   /* set error vectors */
92 <        if (wrnvec != NULL)
93 <                wrnvec = comm_comout;
94 <        return(&comm_driver);
101 >        return(final_connect());                /* verify initialization */
102   syserr:
103 <        perror(argv[0]);
103 >        perror(dname);
104          return(NULL);
105   }
106  
# Line 106 | Line 113 | comm_close()                   /* done with driver */
113          cmdvec = NULL;                          /* reset error vectors */
114          if (wrnvec != NULL)
115                  wrnvec = stderr_v;
109        signal(SIGIO, SIG_DFL);
116          fclose(devout);
117          fclose(devin);
118 +        if (devchild < 0)
119 +                return;
120          while ((pid = wait(0)) != -1 && pid != devchild)
121                  ;
122   }
# Line 119 | Line 127 | comm_clear(xres, yres)                         /* clear screen */
127   int     xres, yres;
128   {
129          putc(COM_CLEAR, devout);
130 <        fwrite(&xres, sizeof(xres), 1, devout);
131 <        fwrite(&yres, sizeof(yres), 1, devout);
130 >        putw(xres, devout);
131 >        putw(yres, devout);
132          fflush(devout);
133   }
134  
# Line 130 | Line 138 | comm_paintr(col, xmin, ymin, xmax, ymax)       /* paint a re
138   COLOR   col;
139   int     xmin, ymin, xmax, ymax;
140   {
133        extern long     nrays;          /* number of rays traced */
134        static long     lastflush = 0;  /* ray count at last flush */
135
141          putc(COM_PAINTR, devout);
142 <        fwrite(col, sizeof(COLOR), 1, devout);
143 <        fwrite(&xmin, sizeof(xmin), 1, devout);
144 <        fwrite(&ymin, sizeof(ymin), 1, devout);
145 <        fwrite(&xmax, sizeof(xmax), 1, devout);
146 <        fwrite(&ymax, sizeof(ymax), 1, devout);
142 <        if (nrays - lastflush >= WFLUSH) {
143 <                fflush(devout);
144 <                lastflush = nrays;
145 <        }
142 >        fwrite((char *)col, sizeof(COLOR), 1, devout);
143 >        putw(xmin, devout);
144 >        putw(ymin, devout);
145 >        putw(xmax, devout);
146 >        putw(ymax, devout);
147   }
148  
149  
150 + static
151 + comm_flush()                            /* flush output to driver */
152 + {
153 +        putc(COM_FLUSH, devout);
154 +        fflush(devout);
155 +        if (getc(devin) != COM_FLUSH)
156 +                reply_error("flush");
157 +        getstate();
158 + }
159 +
160 +
161   static int
162   comm_getcur(xp, yp)                     /* get and return cursor position */
163   int     *xp, *yp;
# Line 157 | Line 169 | int    *xp, *yp;
169          if (getc(devin) != COM_GETCUR)
170                  reply_error("getcur");
171          c = getc(devin);
172 <        fread(xp, sizeof(*xp), 1, devin);
173 <        fread(yp, sizeof(*yp), 1, devin);
172 >        *xp = getw(devin);
173 >        *yp = getw(devin);
174          return(c);
175   }
176  
# Line 169 | Line 181 | char   *str;
181   {
182          putc(COM_COMOUT, devout);
183          myputs(str, devout);
184 +        if (str[strlen(str)-1] == '\n')
185 +                fflush(devout);
186   }
187  
188  
189   static
190 < comm_comin(buf)                         /* read string from command line */
190 > comm_comin(buf, prompt)                 /* read string from command line */
191   char    *buf;
192 + char    *prompt;
193   {
194          putc(COM_COMIN, devout);
195 +        if (prompt == NULL)
196 +                putc(0, devout);
197 +        else {
198 +                putc(1, devout);
199 +                myputs(prompt, devout);
200 +        }
201          fflush(devout);
202          if (getc(devin) != COM_COMIN)
203                  reply_error("comin");
204          mygets(buf, devin);
205 <        comm_driver.inpready = 0;
205 >        getstate();
206   }
207  
208  
209   static
189 comm_errout(str)                        /* display an error message */
190 char    *str;
191 {
192        comm_comout(str);
193        stderr_v(str);                  /* send to standard error also */
194 }
195
196
197 static
210   mygets(s, fp)                           /* get string from file (with nul) */
211   register char   *s;
212   register FILE   *fp;
# Line 230 | Line 242 | char   *routine;
242  
243  
244   static
245 < onsigio()                               /* input ready */
245 > getstate()                              /* get driver state variables */
246   {
247 <        comm_driver.inpready++;
247 >        fread((char *)&comm_driver.pixaspect,
248 >                        sizeof(comm_driver.pixaspect), 1, devin);
249 >        comm_driver.xsiz = getw(devin);
250 >        comm_driver.ysiz = getw(devin);
251 >        comm_driver.inpready = getw(devin);
252   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines