| 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 |
| 24 |
< |
#define vfork fork |
| 25 |
< |
#endif |
| 26 |
< |
|
| 27 |
< |
extern char *getpath(), *getenv(); |
| 28 |
< |
|
| 29 |
< |
int onsigio(); |
| 30 |
< |
|
| 31 |
< |
int comm_close(), comm_clear(), comm_paintr(), comm_errout(), |
| 25 |
> |
static int comm_close(), comm_clear(), comm_paintr(), |
| 26 |
|
comm_getcur(), comm_comout(), comm_comin(), comm_flush(); |
| 27 |
|
|
| 28 |
|
struct driver comm_driver = { |
| 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 |
+ |
erract[COMMAND].pf = comm_comout; |
| 51 |
+ |
if (erract[WARNING].pf != NULL) |
| 52 |
+ |
erract[WARNING].pf = comm_comout; |
| 53 |
+ |
return(&comm_driver); |
| 54 |
+ |
} |
| 55 |
+ |
|
| 56 |
+ |
|
| 57 |
|
struct driver * |
| 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 |
|
{ |
| 73 |
|
int p1[2], p2[2]; |
| 74 |
|
char pin[16], pout[16]; |
| 75 |
|
/* find driver program */ |
| 76 |
< |
if ((devname = getpath(dname, DEVPATH, 1)) == NULL) { |
| 77 |
< |
stderr_v(dname); |
| 78 |
< |
stderr_v(": not found\n"); |
| 76 |
> |
if ((devname = getpath(dname, DEVPATH, X_OK)) == NULL) { |
| 77 |
> |
eputs(dname); |
| 78 |
> |
eputs(": not found\n"); |
| 79 |
|
return(NULL); |
| 80 |
|
} |
| 81 |
|
/* open communication pipes */ |
| 98 |
|
goto syserr; |
| 99 |
|
if ((devin = fdopen(p2[0], "r")) == NULL) |
| 100 |
|
goto syserr; |
| 101 |
< |
/* verify & get resolution */ |
| 78 |
< |
putw(COM_SENDM, devout); |
| 79 |
< |
fflush(devout); |
| 80 |
< |
if (getw(devin) != COM_RECVM) |
| 81 |
< |
return(NULL); |
| 82 |
< |
fread((char *)&comm_driver.pixaspect, |
| 83 |
< |
sizeof(comm_driver.pixaspect), 1, devin); |
| 84 |
< |
comm_driver.xsiz = getw(devin); |
| 85 |
< |
comm_driver.ysiz = getw(devin); |
| 86 |
< |
/* set error vectors */ |
| 87 |
< |
cmdvec = comm_comout; |
| 88 |
< |
if (wrnvec != NULL) |
| 89 |
< |
wrnvec = comm_comout; |
| 90 |
< |
return(&comm_driver); |
| 101 |
> |
return(final_connect()); /* verify initialization */ |
| 102 |
|
syserr: |
| 103 |
|
perror(dname); |
| 104 |
|
return(NULL); |
| 110 |
|
{ |
| 111 |
|
int pid; |
| 112 |
|
|
| 113 |
< |
cmdvec = NULL; /* reset error vectors */ |
| 114 |
< |
if (wrnvec != NULL) |
| 115 |
< |
wrnvec = stderr_v; |
| 113 |
> |
erract[COMMAND].pf = NULL; /* reset error vectors */ |
| 114 |
> |
if (erract[WARNING].pf != NULL) |
| 115 |
> |
erract[WARNING].pf = wputs; |
| 116 |
|
fclose(devout); |
| 117 |
|
fclose(devin); |
| 118 |
+ |
if (devchild < 0) |
| 119 |
+ |
return; |
| 120 |
|
while ((pid = wait(0)) != -1 && pid != devchild) |
| 121 |
|
; |
| 122 |
|
} |
| 154 |
|
fflush(devout); |
| 155 |
|
if (getc(devin) != COM_FLUSH) |
| 156 |
|
reply_error("flush"); |
| 157 |
< |
comm_driver.inpready = getw(devin); |
| 157 |
> |
getstate(); |
| 158 |
|
} |
| 159 |
|
|
| 160 |
|
|
| 181 |
|
{ |
| 182 |
|
putc(COM_COMOUT, devout); |
| 183 |
|
myputs(str, devout); |
| 184 |
< |
fflush(devout); |
| 184 |
> |
if (str[strlen(str)-1] == '\n') |
| 185 |
> |
fflush(devout); |
| 186 |
|
} |
| 187 |
|
|
| 188 |
|
|
| 202 |
|
if (getc(devin) != COM_COMIN) |
| 203 |
|
reply_error("comin"); |
| 204 |
|
mygets(buf, devin); |
| 205 |
< |
comm_driver.inpready = getw(devin); |
| 205 |
> |
getstate(); |
| 206 |
|
} |
| 207 |
|
|
| 208 |
|
|
| 209 |
|
static |
| 196 |
– |
comm_errout(str) /* display an error message */ |
| 197 |
– |
char *str; |
| 198 |
– |
{ |
| 199 |
– |
comm_comout(str); |
| 200 |
– |
stderr_v(str); /* send to standard error also */ |
| 201 |
– |
} |
| 202 |
– |
|
| 203 |
– |
|
| 204 |
– |
static |
| 210 |
|
mygets(s, fp) /* get string from file (with nul) */ |
| 211 |
|
register char *s; |
| 212 |
|
register FILE *fp; |
| 235 |
|
reply_error(routine) /* what should we do here? */ |
| 236 |
|
char *routine; |
| 237 |
|
{ |
| 238 |
< |
stderr_v(routine); |
| 239 |
< |
stderr_v(": driver reply error\n"); |
| 238 |
> |
eputs(routine); |
| 239 |
> |
eputs(": driver reply error\n"); |
| 240 |
|
quit(1); |
| 241 |
+ |
} |
| 242 |
+ |
|
| 243 |
+ |
|
| 244 |
+ |
static |
| 245 |
+ |
getstate() /* get driver state variables */ |
| 246 |
+ |
{ |
| 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 |
|
} |