]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/ditto.c
ncurses 5.6 - patch 20080419
[ncurses.git] / test / ditto.c
1 /****************************************************************************
2  * Copyright (c) 1998-2007,2008 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 <dickey@clark.net> 1998
31  *
32  * $Id: ditto.c,v 1.21 2008/04/19 20:08:45 tom Exp $
33  *
34  * The program illustrates how to set up multiple screens from a single
35  * program.  Invoke the program by specifying another terminal on the same
36  * machine by specifying its device, e.g.,
37  *      ditto /dev/ttyp1
38  */
39 #include <test.priv.h>
40 #include <sys/stat.h>
41 #include <errno.h>
42
43 #ifdef USE_XTERM_PTY
44 #include USE_OPENPTY_HEADER
45 #endif
46
47 typedef struct {
48     FILE *input;
49     FILE *output;
50     SCREEN *screen;
51     WINDOW **windows;
52 } DITTO;
53
54 typedef struct {
55     int value;                  /* the actual data */
56     int source;                 /* which screen did data come from */
57     int target;                 /* which screen is data going to */
58     DITTO *ditto;
59 } DDATA;
60
61 static void
62 failed(const char *s)
63 {
64     perror(s);
65     ExitProgram(EXIT_FAILURE);
66 }
67
68 static void
69 usage(void)
70 {
71     fprintf(stderr, "usage: ditto [terminal1 ...]\n");
72     ExitProgram(EXIT_FAILURE);
73 }
74
75 static FILE *
76 open_tty(char *path)
77 {
78     FILE *fp;
79 #ifdef USE_XTERM_PTY
80     int amaster;
81     int aslave;
82     char slave_name[1024];
83     char s_option[1024];
84     char *leaf;
85
86     if (openpty(&amaster, &aslave, slave_name, 0, 0) != 0)
87         failed("openpty");
88     if ((leaf = strrchr(slave_name, '/')) == 0) {
89         errno = EISDIR;
90         failed(slave_name);
91     }
92     sprintf(s_option, "-S%s/%d", slave_name, aslave);
93     if (fork()) {
94         execlp("xterm", "xterm", s_option, "-title", path, (char *) 0);
95         _exit(0);
96     }
97     fp = fdopen(amaster, "r+");
98 #else
99     struct stat sb;
100
101     if (stat(path, &sb) < 0)
102         failed(path);
103     if ((sb.st_mode & S_IFMT) != S_IFCHR) {
104         errno = ENOTTY;
105         failed(path);
106     }
107     fp = fopen(path, "r+");
108     if (fp == 0)
109         failed(path);
110     printf("opened %s\n", path);
111 #endif
112     return fp;
113 }
114
115 static int
116 close_screen(SCREEN *sp GCC_UNUSED, void *arg GCC_UNUSED)
117 {
118     (void) sp;
119     (void) arg;
120     return endwin();
121 }
122
123 static int
124 read_screen(SCREEN *sp GCC_UNUSED, void *arg)
125 {
126     DDATA *data = (DDATA *) arg;
127     WINDOW *win = data->ditto[data->source].windows[data->source];
128
129     return wgetch(win);
130 }
131
132 static int
133 write_screen(SCREEN *sp GCC_UNUSED, void *arg GCC_UNUSED)
134 {
135     DDATA *data = (DDATA *) arg;
136     WINDOW *win = data->ditto[data->target].windows[data->source];
137
138     waddch(win, data->value);
139     wnoutrefresh(win);
140     doupdate();
141     return OK;
142 }
143
144 static void
145 show_ditto(DITTO * data, int count, DDATA * ddata)
146 {
147     int n;
148
149     for (n = 0; n < count; n++) {
150         ddata->target = n;
151         USING_SCREEN(data[n].screen, write_screen, (void *) ddata);
152     }
153 }
154
155 int
156 main(int argc GCC_UNUSED,
157      char *argv[]GCC_UNUSED)
158 {
159     int j, k;
160     int count;
161     DITTO *data;
162
163     if (argc <= 1)
164         usage();
165
166     if ((data = typeCalloc(DITTO, argc)) == 0)
167         failed("calloc data");
168
169     data[0].input = stdin;
170     data[0].output = stdout;
171     for (j = 1; j < argc; j++) {
172         data[j].input =
173             data[j].output = open_tty(argv[j]);
174     }
175
176     /*
177      * If we got this far, we have open connection(s) to the terminal(s).
178      * Set up the screens.
179      */
180     for (j = 0; j < argc; j++) {
181         int high, wide;
182
183         data[j].screen = newterm((char *) 0,    /* assume $TERM is the same */
184                                  data[j].output,
185                                  data[j].input);
186
187         if (data[j].screen == 0)
188             failed("newterm");
189         cbreak();
190         noecho();
191         scrollok(stdscr, TRUE);
192         nodelay(stdscr, TRUE);
193         box(stdscr, 0, 0);
194
195         data[j].windows = typeCalloc(WINDOW *, argc);
196
197         high = (LINES - 2) / argc;
198         wide = (COLS - 2);
199         for (k = 0; k < argc; ++k) {
200             WINDOW *outer = newwin(high, wide, 1 + (high * k), 1);
201             WINDOW *inner = derwin(outer, high - 2, wide - 2, 1, 1);
202
203             box(outer, 0, 0);
204             mvwaddstr(outer, 0, 2, argv[k]);
205             wnoutrefresh(outer);
206
207             scrollok(inner, TRUE);
208             nodelay(inner, TRUE);
209
210             data[j].windows[k] = inner;
211         }
212         doupdate();
213     }
214
215     /*
216      * Loop, reading characters from any of the inputs and writing to all
217      * of the screens.
218      */
219     for (count = 0;; ++count) {
220         DDATA ddata;
221         int ch;
222         int which = (count % argc);
223
224         napms(20);
225
226         ddata.source = which;
227         ddata.ditto = data;
228
229         ch = USING_SCREEN(data[which].screen, read_screen, &ddata);
230         if (ch == ERR) {
231             continue;
232         }
233         if (ch == CTRL('D'))
234             break;
235
236         ddata.value = ch;
237         show_ditto(data, argc, &ddata);
238     }
239
240     /*
241      * Cleanup and exit
242      */
243     for (j = argc - 1; j >= 0; j--) {
244         USING_SCREEN(data[j].screen, close_screen, 0);
245         fprintf(data[j].output, "**Closed\r\n");
246
247         /*
248          * Closing before a delscreen() helps ncurses determine that there
249          * is no valid output buffer, and can remove the setbuf() data.
250          */
251         fflush(data[j].output);
252         fclose(data[j].output);
253         delscreen(data[j].screen);
254     }
255     ExitProgram(EXIT_SUCCESS);
256 }