]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/ditto.c
1a06feaee7c3d682623aee622c8e4e80703307f2
[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.14 2008/03/29 21:35:39 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 typedef struct {
44     FILE *input;
45     FILE *output;
46     SCREEN *screen;
47 } DITTO;
48
49 static void
50 failed(const char *s)
51 {
52     perror(s);
53     ExitProgram(EXIT_FAILURE);
54 }
55
56 static void
57 usage(void)
58 {
59     fprintf(stderr, "usage: ditto [terminal1 ...]\n");
60     ExitProgram(EXIT_FAILURE);
61 }
62
63 static FILE *
64 open_tty(char *path)
65 {
66     FILE *fp;
67     struct stat sb;
68
69     if (stat(path, &sb) < 0)
70         failed(path);
71     if ((sb.st_mode & S_IFMT) != S_IFCHR) {
72         errno = ENOTTY;
73         failed(path);
74     }
75     fp = fopen(path, "r+");
76     if (fp == 0)
77         failed(path);
78     printf("opened %s\n", path);
79     return fp;
80 }
81
82 static int
83 close_screen(SCREEN *sp GCC_UNUSED, void *arg GCC_UNUSED)
84 {
85     (void) sp;
86     (void) arg;
87     return endwin();
88 }
89
90 static int
91 read_screen(SCREEN *sp GCC_UNUSED, void *arg GCC_UNUSED)
92 {
93     return getch();
94 }
95
96 static int
97 write_screen(SCREEN *sp GCC_UNUSED, void *arg GCC_UNUSED)
98 {
99     addstr((char *) arg);
100     refresh();
101     return OK;
102 }
103
104 static void
105 show_ditto(DITTO * data, int count, char *msg)
106 {
107     int n;
108
109     for (n = 0; n < count; n++) {
110         USING_SCREEN(data[n].screen, write_screen, (void *) msg);
111     }
112 }
113
114 int
115 main(int argc GCC_UNUSED,
116      char *argv[]GCC_UNUSED)
117 {
118     int j;
119     int count;
120     DITTO *data;
121
122     if (argc <= 1)
123         usage();
124
125     if ((data = (DITTO *) calloc((unsigned) argc, sizeof(DITTO))) == 0)
126         failed("calloc data");
127
128     data[0].input = stdin;
129     data[0].output = stdout;
130     for (j = 1; j < argc; j++) {
131         data[j].input =
132             data[j].output = open_tty(argv[j]);
133     }
134
135     /*
136      * If we got this far, we have open connection(s) to the terminal(s).
137      * Set up the screens.
138      */
139     for (j = 0; j < argc; j++) {
140         data[j].screen = newterm((char *) 0,    /* assume $TERM is the same */
141                                  data[j].output,
142                                  data[j].input);
143         if (data[j].screen == 0)
144             failed("newterm");
145         cbreak();
146         noecho();
147         scrollok(stdscr, TRUE);
148         nodelay(stdscr, TRUE);
149     }
150
151     /*
152      * Loop, reading characters from any of the inputs and writing to all
153      * of the screens.
154      */
155     for (count = 0;; ++count) {
156         char message[80];
157         int ch;
158         int which = (count % argc);
159
160         napms(20);
161         ch = USING_SCREEN(data[which].screen, read_screen, 0);
162         if (ch == ERR) {
163             /* echochar('.'); */
164             continue;
165         }
166         if (ch == CTRL('D'))
167             break;
168         sprintf(message, "from[%d:%d] '%c' (%#x)\n", count, which, ch, ch);
169         show_ditto(data, argc, message);
170     }
171
172     /*
173      * Cleanup and exit
174      */
175     for (j = argc - 1; j >= 0; j--) {
176         USING_SCREEN(data[j].screen, close_screen, 0);
177         delscreen(data[j].screen);
178     }
179     ExitProgram(EXIT_SUCCESS);
180 }