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.19 by greg, Thu Oct 18 13:33:09 1990 UTC vs.
Revision 2.12 by schorsch, Tue Mar 30 16:13:01 2004 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1988 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   *  devcomm.c - communication routines for separate drivers.
6   *
7 < *      10/5/88
7 > *  External symbols declared in driver.h
8   */
9  
10 < #include "standard.h"
10 > #include "copyright.h"
11  
12 < #include "color.h"
12 > #include <sys/types.h>
13 > #include <sys/wait.h> /* XXX platform specific */
14  
15 + #include "platform.h"
16 + #include "standard.h"
17   #include "driver.h"
18  
19   #ifndef DEVPATH
20   #define DEVPATH         getenv("PATH")  /* device search path */
21   #endif
22  
23 < #ifndef DELAY
24 < #define DELAY           20              /* seconds to wait for response */
25 < #endif
23 > FILE    *devin, *devout;
24 > int     devchild;
25  
26 < #ifndef BSD
27 < #define vfork           fork
28 < #endif
26 > static struct driver * final_connect(void);
27 > static void mygets(char *s, FILE        *fp);
28 > static void myputs(char *s, FILE        *fp);
29 > static void reply_error(char    *routine);
30 > static void getstate(void);
31  
32 < static int      comm_close(), comm_clear(), comm_paintr(), comm_errout(),
33 <                comm_getcur(), comm_comout(), comm_comin(), comm_flush();
32 > static dr_closef_t comm_close;
33 > static dr_clearf_t comm_clear;
34 > static dr_paintrf_t comm_paintr;
35 > static dr_getcurf_t comm_getcur;
36 > static dr_comoutf_t comm_comout;
37 > static dr_cominf_t comm_comin;
38 > static dr_flushf_t comm_flush;
39  
40   struct driver   comm_driver = {
41          comm_close, comm_clear, comm_paintr, comm_getcur,
42          comm_comout, comm_comin, comm_flush
43   };
44  
39 FILE    *devin, *devout;
45  
46 < int     devchild;
46 > static struct driver *
47 > final_connect(void)                             /* verify and initialize connection */
48 > {
49 >        putw(COM_SENDM, devout);
50 >        fflush(devout);
51 >        if (getw(devin) != COM_RECVM)
52 >                return(NULL);
53 >                                                /* get driver parameters */
54 >        getstate();
55 >                                                /* set error vectors */
56 >        erract[COMMAND].pf = comm_comout;
57 >        if (erract[WARNING].pf != NULL)
58 >                erract[WARNING].pf = comm_comout;
59 >        return(&comm_driver);
60 > }
61  
62  
63 < struct driver *
64 < comm_init(dname, id)                    /* set up and execute driver */
65 < char    *dname, *id;
63 > extern struct driver *
64 > slave_init(                     /* run rview in slave mode */
65 >        char    *dname,
66 >        char    *id
67 > )
68   {
69 <        char    *devname;
69 >        devchild = -1;                          /* we're the slave here */
70 >        devout = stdout;                        /* use standard input */
71 >        devin = stdin;                          /* and standard output */
72 >        return(final_connect());                /* verify initialization */
73 > }
74 >
75 >
76 > extern struct driver *
77 > comm_init(                      /* set up and execute driver */
78 >        char    *dname,
79 >        char    *id
80 > )
81 > {
82 >        char    *dvcname;
83          int     p1[2], p2[2];
84          char    pin[16], pout[16];
85                                                  /* find driver program */
86 <        if ((devname = getpath(dname, DEVPATH, X_OK)) == NULL) {
87 <                stderr_v(dname);
88 <                stderr_v(": not found\n");
86 >        if ((dvcname = getpath(dname, DEVPATH, X_OK)) == NULL) {
87 >                eputs(dname);
88 >                eputs(": not found\n");
89                  return(NULL);
90          }
91 + #ifdef RHAS_FORK_EXEC
92                                                  /* open communication pipes */
93          if (pipe(p1) == -1 || pipe(p2) == -1)
94                  goto syserr;
95 <        if ((devchild = vfork()) == 0) {        /* fork driver process */
95 >        if ((devchild = fork()) == 0) { /* fork driver process */
96                  close(p1[1]);
97                  close(p2[0]);
98                  sprintf(pin, "%d", p1[0]);
99                  sprintf(pout, "%d", p2[1]);
100 <                execl(devname, dname, pin, pout, id, 0);
101 <                perror(devname);
100 >                execl(dvcname, dname, pin, pout, id, 0);
101 >                perror(dvcname);
102                  _exit(127);
103          }
104          if (devchild == -1)
# Line 74 | Line 109 | char   *dname, *id;
109                  goto syserr;
110          if ((devin = fdopen(p2[0], "r")) == NULL)
111                  goto syserr;
112 <                                                /* verify initialization */
78 <        putw(COM_SENDM, devout);
79 <        fflush(devout);
80 <        if (getw(devin) != COM_RECVM)
81 <                return(NULL);
82 <                                                /* get driver parameters */
83 <        getstate();
84 <                                                /* set error vectors */
85 <        cmdvec = comm_comout;
86 <        if (wrnvec != NULL)
87 <                wrnvec = comm_comout;
88 <        return(&comm_driver);
112 >        return(final_connect());                /* verify initialization */
113   syserr:
114          perror(dname);
115          return(NULL);
116 +
117 + #else   /* ! RHAS_FORK_EXEC */
118 +
119 +        eputs(dname);
120 +        eputs(": no fork/exec\n");
121 +        return(NULL);
122 +
123 + #endif  /* ! RHAS_FORK_EXEC */
124   }
125  
126  
127 < static
128 < comm_close()                    /* done with driver */
127 > static void
128 > comm_close(void)                        /* done with driver */
129   {
130          int     pid;
131  
132 <        cmdvec = NULL;                          /* reset error vectors */
133 <        if (wrnvec != NULL)
134 <                wrnvec = stderr_v;
132 >        erract[COMMAND].pf = NULL;              /* reset error vectors */
133 >        if (erract[WARNING].pf != NULL)
134 >                erract[WARNING].pf = wputs;
135          fclose(devout);
136          fclose(devin);
137 +        if (devchild < 0)
138 +                return;
139          while ((pid = wait(0)) != -1 && pid != devchild)
140                  ;
141   }
142  
143  
144 < static
145 < comm_clear(xres, yres)                          /* clear screen */
146 < int     xres, yres;
144 > static void
145 > comm_clear(                             /* clear screen */
146 >        int     xres,
147 >        int     yres
148 > )
149   {
150          putc(COM_CLEAR, devout);
151          putw(xres, devout);
# Line 118 | Line 154 | int    xres, yres;
154   }
155  
156  
157 < static
158 < comm_paintr(col, xmin, ymin, xmax, ymax)        /* paint a rectangle */
159 < COLOR   col;
160 < int     xmin, ymin, xmax, ymax;
157 > static void
158 > comm_paintr(    /* paint a rectangle */
159 >        COLOR   col,
160 >        int     xmin,
161 >        int     ymin,
162 >        int     xmax,
163 >        int     ymax
164 > )
165   {
166          putc(COM_PAINTR, devout);
167          fwrite((char *)col, sizeof(COLOR), 1, devout);
# Line 132 | Line 172 | int    xmin, ymin, xmax, ymax;
172   }
173  
174  
175 < static
176 < comm_flush()                            /* flush output to driver */
175 > static void
176 > comm_flush(void)                                /* flush output to driver */
177   {
178          putc(COM_FLUSH, devout);
179          fflush(devout);
# Line 144 | Line 184 | comm_flush()                           /* flush output to driver */
184  
185  
186   static int
187 < comm_getcur(xp, yp)                     /* get and return cursor position */
188 < int     *xp, *yp;
187 > comm_getcur(                    /* get and return cursor position */
188 >        int     *xp,
189 >        int     *yp
190 > )
191   {
192          int     c;
193  
# Line 160 | Line 202 | int    *xp, *yp;
202   }
203  
204  
205 < static
206 < comm_comout(str)                        /* print string to command line */
207 < char    *str;
205 > static void
206 > comm_comout(                    /* print string to command line */
207 >        char    *str
208 > )
209   {
210          putc(COM_COMOUT, devout);
211          myputs(str, devout);
# Line 171 | Line 214 | char   *str;
214   }
215  
216  
217 < static
218 < comm_comin(buf, prompt)                 /* read string from command line */
219 < char    *buf;
220 < char    *prompt;
217 > static void
218 > comm_comin(                     /* read string from command line */
219 >        char    *buf,
220 >        char    *prompt
221 > )
222   {
223          putc(COM_COMIN, devout);
224          if (prompt == NULL)
# Line 191 | Line 235 | char   *prompt;
235   }
236  
237  
238 < static
239 < comm_errout(str)                        /* display an error message */
240 < char    *str;
238 > static void
239 > mygets(                         /* get string from file (with nul) */
240 >        register char   *s,
241 >        register FILE   *fp
242 > )
243   {
198        comm_comout(str);
199        stderr_v(str);                  /* send to standard error also */
200 }
201
202
203 static
204 mygets(s, fp)                           /* get string from file (with nul) */
205 register char   *s;
206 register FILE   *fp;
207 {
244          register int    c;
245  
246          while ((c = getc(fp)) != EOF)
# Line 214 | Line 250 | register FILE  *fp;
250   }
251  
252  
253 < static
254 < myputs(s, fp)                           /* put string to file (with nul) */
255 < register char   *s;
256 < register FILE   *fp;
253 > static void
254 > myputs(                         /* put string to file (with nul) */
255 >        register char   *s,
256 >        register FILE   *fp
257 > )
258   {
259          do
260                  putc(*s, fp);
# Line 225 | Line 262 | register FILE  *fp;
262   }
263  
264  
265 < static
266 < reply_error(routine)                    /* what should we do here? */
267 < char    *routine;
265 > static void
266 > reply_error(                    /* what should we do here? */
267 >        char    *routine
268 > )
269   {
270 <        stderr_v(routine);
271 <        stderr_v(": driver reply error\n");
270 >        eputs(routine);
271 >        eputs(": driver reply error\n");
272          quit(1);
273   }
274  
275  
276 < static
277 < getstate()                              /* get driver state variables */
276 > static void
277 > getstate(void)                          /* get driver state variables */
278   {
279          fread((char *)&comm_driver.pixaspect,
280                          sizeof(comm_driver.pixaspect), 1, devin);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines