ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/devcomm.c
Revision: 1.18
Committed: Thu May 3 13:17:41 1990 UTC (34 years ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 1.17: +2 -0 lines
Log Message:
Added automatic flushing to dev_comout()

File Contents

# Content
1 /* Copyright (c) 1988 Regents of the University of California */
2
3 #ifndef lint
4 static char SCCSid[] = "$SunId$ LBL";
5 #endif
6
7 /*
8 * devcomm.c - communication routines for separate drivers.
9 *
10 * 10/5/88
11 */
12
13 #include "standard.h"
14
15 #include "color.h"
16
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
26
27 #ifndef BSD
28 #define vfork fork
29 #endif
30
31 extern char *getpath(), *getenv();
32
33 static int comm_close(), comm_clear(), comm_paintr(), comm_errout(),
34 comm_getcur(), comm_comout(), comm_comin(), comm_flush();
35
36 struct driver comm_driver = {
37 comm_close, comm_clear, comm_paintr, comm_getcur,
38 comm_comout, comm_comin, comm_flush
39 };
40
41 FILE *devin, *devout;
42
43 int devchild;
44
45
46 struct driver *
47 comm_init(dname, id) /* set up and execute driver */
48 char *dname, *id;
49 {
50 char *devname;
51 int p1[2], p2[2];
52 char pin[16], pout[16];
53 /* find driver program */
54 if ((devname = getpath(dname, DEVPATH, 1)) == NULL) {
55 stderr_v(dname);
56 stderr_v(": not found\n");
57 return(NULL);
58 }
59 /* open communication pipes */
60 if (pipe(p1) == -1 || pipe(p2) == -1)
61 goto syserr;
62 if ((devchild = vfork()) == 0) { /* fork driver process */
63 close(p1[1]);
64 close(p2[0]);
65 sprintf(pin, "%d", p1[0]);
66 sprintf(pout, "%d", p2[1]);
67 execl(devname, dname, pin, pout, id, 0);
68 perror(devname);
69 _exit(127);
70 }
71 if (devchild == -1)
72 goto syserr;
73 close(p1[0]);
74 close(p2[1]);
75 if ((devout = fdopen(p1[1], "w")) == NULL)
76 goto syserr;
77 if ((devin = fdopen(p2[0], "r")) == NULL)
78 goto syserr;
79 /* verify initialization */
80 putw(COM_SENDM, devout);
81 fflush(devout);
82 if (getw(devin) != COM_RECVM)
83 return(NULL);
84 /* get driver parameters */
85 getstate();
86 /* set error vectors */
87 cmdvec = comm_comout;
88 if (wrnvec != NULL)
89 wrnvec = comm_comout;
90 return(&comm_driver);
91 syserr:
92 perror(dname);
93 return(NULL);
94 }
95
96
97 static
98 comm_close() /* done with driver */
99 {
100 int pid;
101
102 cmdvec = NULL; /* reset error vectors */
103 if (wrnvec != NULL)
104 wrnvec = stderr_v;
105 fclose(devout);
106 fclose(devin);
107 while ((pid = wait(0)) != -1 && pid != devchild)
108 ;
109 }
110
111
112 static
113 comm_clear(xres, yres) /* clear screen */
114 int xres, yres;
115 {
116 putc(COM_CLEAR, devout);
117 putw(xres, devout);
118 putw(yres, devout);
119 fflush(devout);
120 }
121
122
123 static
124 comm_paintr(col, xmin, ymin, xmax, ymax) /* paint a rectangle */
125 COLOR col;
126 int xmin, ymin, xmax, ymax;
127 {
128 putc(COM_PAINTR, devout);
129 fwrite((char *)col, sizeof(COLOR), 1, devout);
130 putw(xmin, devout);
131 putw(ymin, devout);
132 putw(xmax, devout);
133 putw(ymax, devout);
134 }
135
136
137 static
138 comm_flush() /* flush output to driver */
139 {
140 putc(COM_FLUSH, devout);
141 fflush(devout);
142 if (getc(devin) != COM_FLUSH)
143 reply_error("flush");
144 getstate();
145 }
146
147
148 static int
149 comm_getcur(xp, yp) /* get and return cursor position */
150 int *xp, *yp;
151 {
152 int c;
153
154 putc(COM_GETCUR, devout);
155 fflush(devout);
156 if (getc(devin) != COM_GETCUR)
157 reply_error("getcur");
158 c = getc(devin);
159 *xp = getw(devin);
160 *yp = getw(devin);
161 return(c);
162 }
163
164
165 static
166 comm_comout(str) /* print string to command line */
167 char *str;
168 {
169 putc(COM_COMOUT, devout);
170 myputs(str, devout);
171 if (str[strlen(str)-1] == '\n')
172 fflush(devout);
173 }
174
175
176 static
177 comm_comin(buf, prompt) /* read string from command line */
178 char *buf;
179 char *prompt;
180 {
181 putc(COM_COMIN, devout);
182 if (prompt == NULL)
183 putc(0, devout);
184 else {
185 putc(1, devout);
186 myputs(prompt, devout);
187 }
188 fflush(devout);
189 if (getc(devin) != COM_COMIN)
190 reply_error("comin");
191 mygets(buf, devin);
192 getstate();
193 }
194
195
196 static
197 comm_errout(str) /* display an error message */
198 char *str;
199 {
200 comm_comout(str);
201 stderr_v(str); /* send to standard error also */
202 }
203
204
205 static
206 mygets(s, fp) /* get string from file (with nul) */
207 register char *s;
208 register FILE *fp;
209 {
210 register int c;
211
212 while ((c = getc(fp)) != EOF)
213 if ((*s++ = c) == '\0')
214 return;
215 *s = '\0';
216 }
217
218
219 static
220 myputs(s, fp) /* put string to file (with nul) */
221 register char *s;
222 register FILE *fp;
223 {
224 do
225 putc(*s, fp);
226 while (*s++);
227 }
228
229
230 static
231 reply_error(routine) /* what should we do here? */
232 char *routine;
233 {
234 stderr_v(routine);
235 stderr_v(": driver reply error\n");
236 quit(1);
237 }
238
239
240 static
241 getstate() /* get driver state variables */
242 {
243 fread((char *)&comm_driver.pixaspect,
244 sizeof(comm_driver.pixaspect), 1, devin);
245 comm_driver.xsiz = getw(devin);
246 comm_driver.ysiz = getw(devin);
247 comm_driver.inpready = getw(devin);
248 }