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

Comparing ray/src/hd/rholo4.c (file contents):
Revision 3.3 by gregl, Tue Nov 4 09:58:24 1997 UTC vs.
Revision 3.10 by gregl, Mon Dec 1 16:35:35 1997 UTC

# Line 18 | Line 18 | static char SCCSid[] = "$SunId$ SGI";
18  
19   static int      inp_flags;
20   static int      dpd[3];
21 < static int      pipesiz;
21 > static FILE     *dpout;
22  
23  
24   disp_open(dname)                /* open the named display driver */
25   char    *dname;
26   {
27 <        char    dpath[128], *com[2];
27 >        char    dpath[128], *com[3];
28          int     i;
29  
30   #ifdef DEVPATH
# Line 32 | Line 32 | char   *dname;
32   #else
33          sprintf(dpath, "dev/%s%s", dname, HDSUF);
34   #endif
35 <        com[0] = dpath; com[1] = NULL;
36 <        pipesiz = open_process(dpd, com);
37 <        if (pipesiz <= 0)
35 >        com[0] = dpath; com[1] = froot; com[2] = NULL;
36 >        i = open_process(dpd, com);
37 >        if (i <= 0)
38                  error(USER, "cannot start display process");
39 +        if ((dpout = fdopen(dup(dpd[1]), "w")) == NULL)
40 +                error(SYSTEM, "cannot associate FILE with display pipe");
41          inp_flags = 0;
42                                  /* write out hologram grids */
43          for (i = 0; hdlist[i] != NULL; i++)
44                  disp_result(DS_ADDHOLO, sizeof(HDGRID), (char *)hdlist[i]);
45 +        disp_flush();
46   }
47  
48  
49   disp_packet(p)                  /* display a packet */
50 < register PACKET *p;
50 > register PACKHEAD       *p;
51   {
52 <        disp_result(DS_BUNDLE, sizeof(PACKHEAD) + p->nr*sizeof(RAYVAL),
50 <                        (char *)p);
52 >        disp_result(DS_BUNDLE, packsiz(p->nr), (char *)p);
53   }
54  
55  
# Line 58 | Line 60 | int    block;
60          int     n;
61          char    *buf = NULL;
62  
63 <        if (pipesiz <= 0)
63 >        if (dpout == NULL)
64                  return(-1);
65 +                                        /* flush display output */
66 +        disp_flush();
67                                          /* check read blocking */
68          if (block != (inp_flags == 0)) {
69                  inp_flags = block ? 0 : FNONBLK;
# Line 69 | Line 73 | int    block;
73                                          /* read message header */
74          n = read(dpd[0], (char *)&msg, sizeof(MSGHEAD));
75          if (n != sizeof(MSGHEAD)) {
76 <                if (n >= 0)
76 >                if (n >= 0) {
77 >                        dpout = NULL;
78                          error(USER, "display process died");
79 +                }
80                  if (errno != EAGAIN & errno != EINTR)
81                          goto readerr;
82                  return(2);              /* acceptable failure */
# Line 96 | Line 102 | int    block;
102                  disp_result(DS_STARTIMM, 0, NULL);
103                  bundle_set(BS_NEW, (PACKHEAD *)buf, msg.nbytes/sizeof(PACKHEAD));
104                  disp_result(DS_ENDIMM, 0, NULL);
105 +                disp_flush();
106                  break;
107          case DR_ADDSET:
108                  if (msg.nbytes % sizeof(PACKHEAD))
# Line 103 | Line 110 | int    block;
110                  disp_result(DS_STARTIMM, 0, NULL);
111                  bundle_set(BS_ADD, (PACKHEAD *)buf, msg.nbytes/sizeof(PACKHEAD));
112                  disp_result(DS_ENDIMM, 0, NULL);
113 +                disp_check(0);          /* hack -- delete usu. follows add */
114                  break;
115 +        case DR_ADJSET:
116 +                if (msg.nbytes % sizeof(PACKHEAD))
117 +                        error(INTERNAL, "bad DR_ADJSET from display process");
118 +                disp_result(DS_STARTIMM, 0, NULL);
119 +                bundle_set(BS_ADJ, (PACKHEAD *)buf, msg.nbytes/sizeof(PACKHEAD));
120 +                disp_result(DS_ENDIMM, 0, NULL);
121 +                disp_flush();
122 +                break;
123          case DR_DELSET:
124                  if (msg.nbytes % sizeof(PACKHEAD))
125                          error(INTERNAL, "bad DR_DELSET from display process");
# Line 119 | Line 135 | int    block;
135                  if (msg.nbytes)
136                          error(INTERNAL, "bad DR_SHUTDOWN from display process");
137                  return(0);              /* zero return signals shutdown */
138 +        case DR_NOOP:
139 +                break;
140          default:
141                  error(INTERNAL, "unrecognized request from display process");
142          }
# Line 137 | Line 155 | disp_close()                   /* close our display process */
155   {
156          int     rval;
157  
158 <        if (pipesiz <= 0)
158 >        if (dpout == NULL)
159                  return(-1);
160          disp_result(DS_SHUTDOWN, 0, NULL);
161 <        pipesiz = 0;
161 >        fclose(dpout);
162 >        dpout = NULL;
163          return(close_process(dpd));
164   }
165  
166  
167 < disp_result(type, nbytes, p)    /* send result message to display process */
167 > disp_result(type, nbytes, p)    /* queue result message to display process */
168   int     type, nbytes;
169   char    *p;
170   {
152        struct iovec    iov[2];
171          MSGHEAD msg;
154        int     n;
172  
173 <        if (pipesiz <= 0)
173 >        if (dpout == NULL)
174                  return;
175          msg.type = type;
176          msg.nbytes = nbytes;
177 <        if (nbytes == 0 || sizeof(MSGHEAD)+nbytes > pipesiz) {
178 <                do
179 <                        n = write(dpd[1], (char *)&msg, sizeof(MSGHEAD));
180 <                while (n < 0 && errno == EINTR);
181 <                if (n != sizeof(MSGHEAD))
182 <                        goto writerr;
183 <                if (nbytes > 0) {
184 <                        n = writebuf(dpd[1], p, nbytes);
185 <                        if (n != nbytes)
186 <                                goto writerr;
170 <                }
171 <                return;
172 <        }
173 <        iov[0].iov_base = (char *)&msg;
174 <        iov[0].iov_len = sizeof(MSGHEAD);
175 <        iov[1].iov_base = p;
176 <        iov[1].iov_len = nbytes;
177 <        do
178 <                n = writev(dpd[1], iov, 2);
179 <        while (n < 0 && errno == EINTR);
180 <        if (n == sizeof(MSGHEAD)+nbytes)
181 <                return;
182 < writerr:
183 <        error(SYSTEM, "write error in disp_result");
177 >        fwrite((char *)&msg, sizeof(MSGHEAD), 1, dpout);
178 >        if (nbytes > 0)
179 >                fwrite(p, 1, nbytes, dpout);
180 > }
181 >
182 >
183 > disp_flush()                    /* flush output to display */
184 > {
185 >        if (fflush(dpout) < 0)
186 >                error(SYSTEM, "error writing to the display process");
187   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines