]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/ditto.c
ncurses 5.6 - patch 20080203
[ncurses.git] / test / ditto.c
1 /****************************************************************************
2  * Copyright (c) 1998-2005,2007 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.8 2007/09/01 21:10:38 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 void
83 show_ditto(DITTO * data, int count, int which, int ch)
84 {
85     int n;
86
87     for (n = 0; n < count; n++) {
88         set_term(data[n].screen);
89         addch(UChar(ch));
90         refresh();
91     }
92     set_term(data[which].screen);
93 }
94
95 int
96 main(int argc GCC_UNUSED,
97      char *argv[]GCC_UNUSED)
98 {
99     int j;
100     int count;
101     DITTO *data;
102
103     if (argc <= 1)
104         usage();
105
106     if ((data = (DITTO *) calloc((unsigned) argc, sizeof(DITTO))) == 0)
107         failed("calloc data");
108
109     data[0].input = stdin;
110     data[0].output = stdout;
111     for (j = 1; j < argc; j++) {
112         data[j].input =
113             data[j].output = open_tty(argv[j]);
114     }
115
116     /*
117      * If we got this far, we have open connection(s) to the terminal(s).
118      * Set up the screens.
119      */
120     for (j = 0; j < argc; j++) {
121         data[j].screen = newterm((char *) 0,    /* assume $TERM is the same */
122                                  data[j].output,
123                                  data[j].input);
124         if (data[j].screen == 0)
125             failed("newterm");
126         cbreak();
127         noecho();
128         scrollok(stdscr, TRUE);
129         nodelay(stdscr, TRUE);
130     }
131
132     /*
133      * Loop, reading characters from any of the inputs and writing to all
134      * of the screens.
135      */
136     for (count = 0;; ++count) {
137         int ch;
138         int which = (count % argc);
139
140         set_term(data[which].screen);
141         napms(20);
142         ch = getch();
143         if (ch == ERR) {
144             /* echochar('.'); */
145             continue;
146         }
147         if (ch == CTRL('D'))
148             break;
149         show_ditto(data, argc, which, ch);
150     }
151
152     /*
153      * Cleanup and exit
154      */
155     for (j = argc - 1; j >= 0; j--) {
156         set_term(data[j].screen);
157         endwin();
158     }
159     ExitProgram(EXIT_SUCCESS);
160 }