]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/ditto.c
ncurses 5.7 - patch 20100501
[ncurses.git] / test / ditto.c
1 /****************************************************************************
2  * Copyright (c) 1998-2009,2010 Free Software Foundation, Inc.              *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28
29 /*
30  * Author: Thomas E. Dickey (1998-on)
31  *
32  * $Id: ditto.c,v 1.38 2010/05/01 22:08:03 tom Exp $
33  *
34  * The program illustrates how to set up multiple screens from a single
35  * program.
36  *
37  * If openpty() is supported, the command line parameters are titles for
38  * the windows showing each screen's data.
39  *
40  * If openpty() is not supported, you must invoke the program by specifying
41  * another terminal on the same machine by specifying its device, e.g.,
42  *      ditto /dev/ttyp1
43  */
44 #include <test.priv.h>
45 #include <sys/stat.h>
46
47 #ifdef USE_PTHREADS
48 #include <pthread.h>
49 #endif
50
51 #ifdef USE_XTERM_PTY
52 #include USE_OPENPTY_HEADER
53 #endif
54
55 #ifdef HAVE_VFORK_H
56 #include <vfork.h>
57 #endif
58
59 #define MAX_FIFO 256
60
61 #define THIS_FIFO(n) ((n) % MAX_FIFO)
62 #define NEXT_FIFO(n) THIS_FIFO((n) + 1)
63
64 typedef struct {
65     unsigned long sequence;
66     int head;
67     int tail;
68     int data[MAX_FIFO];
69 } FIFO;
70
71 typedef struct {
72     unsigned long sequence;
73 } PEEK;
74
75 /*
76  * Data "owned" for a single screen.  Each screen is divided into windows that
77  * show the text read from each terminal.  Input from a given screen will also
78  * be read into one window per screen.
79  */
80 typedef struct {
81     FILE *input;
82     FILE *output;
83     SCREEN *screen;             /* this screen - curses internal data */
84     int which1;                 /* this screen's index in DITTO[] array */
85     int length;                 /* length of windows[] and peeks[] */
86     char **titles;              /* per-window titles */
87     WINDOW **windows;           /* display data from each screen */
88     PEEK *peeks;                /* indices for each screen's fifo */
89     FIFO fifo;                  /* fifo for this screen */
90 #ifdef USE_PTHREADS
91     pthread_t thread;
92 #endif
93 } DITTO;
94
95 /*
96  * Structure used to pass multiple parameters via the use_screen()
97  * single-parameter interface.
98  */
99 typedef struct {
100     int source;                 /* which screen did character come from */
101     int target;                 /* which screen is character going to */
102     DITTO *ditto;               /* data for all screens */
103 } DDATA;
104
105 static void
106 failed(const char *s)
107 {
108     perror(s);
109     ExitProgram(EXIT_FAILURE);
110 }
111
112 static void
113 usage(void)
114 {
115     fprintf(stderr, "usage: ditto [terminal1 ...]\n");
116     ExitProgram(EXIT_FAILURE);
117 }
118
119 /* Add to the head of the fifo, checking for overflow. */
120 static void
121 put_fifo(FIFO * fifo, int value)
122 {
123     int next = NEXT_FIFO(fifo->head);
124     if (next == fifo->tail)
125         fifo->tail = NEXT_FIFO(fifo->tail);
126     fifo->data[next] = value;
127     fifo->head = next;
128     fifo->sequence += 1;
129 }
130
131 /* Get data from the tail (oldest part) of the fifo, returning -1 if no data.
132  * Since each screen can peek into the fifo, we do not update the tail index,
133  * but modify the peek-index.
134  *
135  * FIXME - test/workaround for case where fifo gets more than a buffer
136  * ahead of peek.
137  */
138 static int
139 peek_fifo(FIFO * fifo, PEEK * peek)
140 {
141     int result = -1;
142     if (peek->sequence < fifo->sequence) {
143         result = fifo->data[THIS_FIFO(peek->sequence)];
144         peek->sequence += 1;
145     }
146     return result;
147 }
148
149 static FILE *
150 open_tty(char *path)
151 {
152     FILE *fp;
153 #ifdef USE_XTERM_PTY
154     int amaster;
155     int aslave;
156     char slave_name[1024];
157     char s_option[sizeof(slave_name) + 80];
158
159     if (openpty(&amaster, &aslave, slave_name, 0, 0) != 0
160         || strlen(slave_name) > sizeof(slave_name) - 1)
161         failed("openpty");
162     if (strrchr(slave_name, '/') == 0) {
163         errno = EISDIR;
164         failed(slave_name);
165     }
166     sprintf(s_option, "-S%s/%d", slave_name, aslave);
167     if (vfork()) {
168         execlp("xterm", "xterm", s_option, "-title", path, (char *) 0);
169         _exit(0);
170     }
171     fp = fdopen(amaster, "r+");
172     if (fp == 0)
173         failed(path);
174 #else
175     struct stat sb;
176
177     if (stat(path, &sb) < 0)
178         failed(path);
179     if ((sb.st_mode & S_IFMT) != S_IFCHR) {
180         errno = ENOTTY;
181         failed(path);
182     }
183     fp = fopen(path, "r+");
184     if (fp == 0)
185         failed(path);
186     printf("opened %s\n", path);
187 #endif
188     assert(fp != 0);
189     return fp;
190 }
191
192 static void
193 init_screen(
194 #if HAVE_USE_WINDOW
195                SCREEN *sp GCC_UNUSED,
196 #endif
197                void *arg)
198 {
199     DITTO *target = (DITTO *) arg;
200     int high, wide;
201     int k;
202
203     cbreak();
204     noecho();
205     scrollok(stdscr, TRUE);
206     box(stdscr, 0, 0);
207
208     target->windows = typeCalloc(WINDOW *, (size_t) target->length);
209     target->peeks = typeCalloc(PEEK, (size_t) target->length);
210
211     high = (LINES - 2) / target->length;
212     wide = (COLS - 2);
213     for (k = 0; k < target->length; ++k) {
214         WINDOW *outer = newwin(high, wide, 1 + (high * k), 1);
215         WINDOW *inner = derwin(outer, high - 2, wide - 2, 1, 1);
216
217         box(outer, 0, 0);
218         MvWAddStr(outer, 0, 2, target->titles[k]);
219         wnoutrefresh(outer);
220
221         scrollok(inner, TRUE);
222         keypad(inner, TRUE);
223 #ifndef USE_PTHREADS
224         nodelay(inner, TRUE);
225 #endif
226
227         target->windows[k] = inner;
228     }
229     doupdate();
230 }
231
232 static void
233 open_screen(DITTO * target, char **source, int length, int which1)
234 {
235     if (which1 != 0) {
236         target->input =
237             target->output = open_tty(source[which1]);
238     } else {
239         target->input = stdin;
240         target->output = stdout;
241     }
242
243     target->which1 = which1;
244     target->titles = source;
245     target->length = length;
246     target->fifo.head = -1;
247     target->screen = newterm((char *) 0,        /* assume $TERM is the same */
248                              target->output,
249                              target->input);
250
251     if (target->screen == 0)
252         failed("newterm");
253
254     (void) USING_SCREEN(target->screen, init_screen, target);
255 }
256
257 static int
258 close_screen(
259 #if HAVE_USE_WINDOW
260                 SCREEN *sp GCC_UNUSED,
261 #endif
262                 void *arg GCC_UNUSED)
263 {
264 #if HAVE_USE_WINDOW
265     (void) sp;
266 #endif
267     (void) arg;
268     return endwin();
269 }
270
271 /*
272  * Read data from the 'source' screen.
273  */
274 static int
275 read_screen(
276 #if HAVE_USE_WINDOW
277                SCREEN *sp GCC_UNUSED,
278 #endif
279                void *arg)
280 {
281     DDATA *data = (DDATA *) arg;
282     DITTO *ditto = &(data->ditto[data->source]);
283     WINDOW *win = ditto->windows[data->source];
284     int ch = wgetch(win);
285
286     if (ch > 0 && ch < 256)
287         put_fifo(&(ditto->fifo), ch);
288     else
289         ch = ERR;
290
291     return ch;
292 }
293
294 /*
295  * Write all of the data that's in fifos for the 'target' screen.
296  */
297 static int
298 write_screen(
299 #if HAVE_USE_WINDOW
300                 SCREEN *sp GCC_UNUSED,
301 #endif
302                 void *arg GCC_UNUSED)
303 {
304     DDATA *data = (DDATA *) arg;
305     DITTO *ditto = &(data->ditto[data->target]);
306     bool changed = FALSE;
307     int which;
308
309     for (which = 0; which < ditto->length; ++which) {
310         WINDOW *win = ditto->windows[which];
311         FIFO *fifo = &(data->ditto[which].fifo);
312         PEEK *peek = &(ditto->peeks[which]);
313         int ch;
314
315         while ((ch = peek_fifo(fifo, peek)) > 0) {
316             changed = TRUE;
317
318             waddch(win, (chtype) ch);
319             wnoutrefresh(win);
320         }
321     }
322
323     if (changed)
324         doupdate();
325     return OK;
326 }
327
328 static void
329 show_ditto(DITTO * data, int count, DDATA * ddata)
330 {
331     int n;
332
333     for (n = 0; n < count; n++) {
334         ddata->target = n;
335         USING_SCREEN(data[n].screen, write_screen, (void *) ddata);
336     }
337 }
338
339 #ifdef USE_PTHREADS
340 static void *
341 handle_screen(void *arg)
342 {
343     DDATA ddata;
344     int ch;
345
346     memset(&ddata, 0, sizeof(ddata));
347     ddata.ditto = (DITTO *) arg;
348     ddata.source = ddata.ditto->which1;
349     ddata.ditto -= ddata.source;        /* -> base of array */
350
351     for (;;) {
352         ch = read_screen(ddata.ditto->screen, &ddata);
353         if (ch == CTRL('D')) {
354             int later = (ddata.source ? ddata.source : -1);
355             int j;
356
357             for (j = ddata.ditto->length - 1; j > 0; --j) {
358                 if (j != later) {
359                     pthread_cancel(ddata.ditto[j].thread);
360                 }
361             }
362             if (later > 0) {
363                 pthread_cancel(ddata.ditto[later].thread);
364             }
365             break;
366         }
367         show_ditto(ddata.ditto, ddata.ditto->length, &ddata);
368     }
369     return NULL;
370 }
371 #endif
372
373 int
374 main(int argc, char *argv[])
375 {
376     int j;
377     DITTO *data;
378 #ifndef USE_PTHREADS
379     int count;
380 #endif
381
382     if (argc <= 1)
383         usage();
384
385     if ((data = typeCalloc(DITTO, (size_t) argc)) == 0)
386         failed("calloc data");
387
388     assert(data != 0);
389
390     for (j = 0; j < argc; j++) {
391         open_screen(&data[j], argv, argc, j);
392     }
393
394 #ifdef USE_PTHREADS
395     /*
396      * For multi-threaded operation, set up a reader for each of the screens.
397      * That uses blocking I/O rather than polling for input, so no calls to
398      * napms() are needed.
399      */
400     for (j = 0; j < argc; j++) {
401         (void) pthread_create(&(data[j].thread), NULL, handle_screen, &data[j]);
402     }
403     pthread_join(data[1].thread, NULL);
404 #else
405     /*
406      * Loop, reading characters from any of the inputs and writing to all
407      * of the screens.
408      */
409     for (count = 0;; ++count) {
410         DDATA ddata;
411         int ch;
412         int which = (count % argc);
413
414         napms(20);
415
416         ddata.source = which;
417         ddata.ditto = data;
418
419         ch = USING_SCREEN(data[which].screen, read_screen, &ddata);
420         if (ch == CTRL('D')) {
421             break;
422         } else if (ch != ERR) {
423             show_ditto(data, argc, &ddata);
424         }
425     }
426 #endif
427
428     /*
429      * Cleanup and exit
430      */
431     for (j = argc - 1; j >= 0; j--) {
432         USING_SCREEN(data[j].screen, close_screen, 0);
433         fprintf(data[j].output, "**Closed\r\n");
434
435         /*
436          * Closing before a delscreen() helps ncurses determine that there
437          * is no valid output buffer, and can remove the setbuf() data.
438          */
439         fflush(data[j].output);
440         fclose(data[j].output);
441         delscreen(data[j].screen);
442     }
443     ExitProgram(EXIT_SUCCESS);
444 }