summaryrefslogtreecommitdiff
path: root/zwgc/standard_ports.c
blob: b259525fa13416d3f098c3d2ce5dcfc65b1a545c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
/* This file is part of the Project Athena Zephyr Notification System.
 * It is one of the source files comprising zwgc, the Zephyr WindowGram
 * client.
 *
 *      Created by:     Marc Horowitz <marc@athena.mit.edu>
 *
 *      $Source$
 *      $Author$
 *
 *      Copyright (c) 1989 by the Massachusetts Institute of Technology.
 *      For copying and distribution information, see the file
 *      "mit-copyright.h".
 */

#if (!defined(lint) && !defined(SABER))
static char rcsid_standard_ports_c[] = "$Header$";
#endif

#include <zephyr/mit-copyright.h>

/****************************************************************************/
/*                                                                          */
/*                        Code to setup standard ports:                     */
/*                                                                          */
/****************************************************************************/

#include <stdio.h>
#include "new_memory.h"
#include "port.h"
#include "variables.h"

extern string tty_filter();
extern char *X_driver();

extern int X_driver_init();
extern int tty_filter_init();

/*
 *
 */

char *plain_driver(input)
     string input;
{
    string processed_input = tty_filter(input, 0);

    fputs(processed_input, stdout);
    fflush(stdout);
    free(processed_input);
    return(NULL);
}

/*
 *
 */

char *tty_driver(input)
     string input;
{
    string processed_input = tty_filter(input, 1);

    fputs(processed_input, stdout);
    fflush(stdout);
    free(processed_input);
    return(NULL);
}

/*
 *
 */

string noop_filter(input)
     string input;
{
    return(input);
}

/*
 *
 */

string plain_filter(input)
     string input;
{
    return(tty_filter(input, 0));
}

/*
 *
 */

string fancy_filter(input)
     string input;
{
    return(tty_filter(input, 1));
}

/*
 *
 */

static struct standard_port_info {
    char *port_name;
/*
 * 0 = ok to use as the default output port
 * 1 = not ok to use as the default output port
 * 2 = disabled
 */
    int port_setup_status;
    int (*port_init)();
#define  INPUT_DESC  0
#define  OUTPUT_DESC 1
#define  FILTER      2
#define  OUTPUT_PROC 3
    int type;
    char *(*function)();
    int setup_arg;
} standard_port_info_table[] = {
    { "X",            0, X_driver_init,   OUTPUT_PROC, X_driver,     0},
    { "tty",          0, tty_filter_init, OUTPUT_PROC, tty_driver,   0},
    { "plain",        0, tty_filter_init, OUTPUT_PROC, plain_driver, 0},
    { "stdout",       0, NULL,            OUTPUT_DESC, NULL,         1},
    { "stderr",       0, NULL,            OUTPUT_DESC, NULL,         2},

    { "stdin",        1, NULL,            INPUT_DESC,  NULL,         0},
    { "loopback",     1, NULL,            FILTER,      noop_filter,  0},
    { "plain_filter", 1, tty_filter_init, FILTER,      plain_filter, 0},
    { "tty_filter",   1, tty_filter_init, FILTER,      fancy_filter, 0},

    { NULL,           2, NULL,            FILTER,      NULL,         0} };

#ifdef notdef
/*
 * <<<>>>
 */

static struct standard_port_info *get_standard_port_info(port_name)
     string port_name;
{
    struct standard_port_info *p;

    for (p=standard_port_info_table; p->port_name; p++)
      if (string_Eq(p->port_name, port_name) && p->port_setup_status!=2)
        return(p);

    return(NULL);
}
#endif

/*
 *
 */

void init_standard_ports(pargc, argv)
     int *pargc;
     char **argv;
{
    struct standard_port_info *p;
#ifdef notdef
    string first_working_port = "";
    string default_port = "";

    /*
     * Process argument list handling "-disable <port>" and
     * "-default <output port>" arguments:
     */
    for (new=current=argv+1; *current; current++) {
        if (string_Eq(*current, "-disable")) {
            current++; *pargc -= 2;
            if (!*current)
              usage();
            if (p = get_standard_port_info(*current))
              p->port_setup_status = 2;
        } else if (string_Eq(*current, "-default")) {
            current++; *pargc -= 2;
            if (!*current)
              usage();
            default_port = *current;
        } else
          *(new++) = *current;
    }
    *new = *current;

    /*
     * Initialize all non-disabled ports.  If a port reports an error,
     * disable that port.  Set default_port if not already set
     * by the -default argument to the first non-disabled port.
     */
    for (p = standard_port_info_table; p->port_name; p++) {
        if (p->port_setup_status==2)
          continue;

        if (p->port_init && p->port_init(pargc, argv)) {
            p->port_setup_status = 2;
            continue;
        }

        if (!*first_working_port)
          first_working_port = p->port_name;
    }

    if (!get_standard_port_info(default_port))
      default_port = first_working_port;

    var_set_variable("output_driver", default_port);
#endif

    var_set_variable("output_driver", "X");
    X_driver_init(pargc, argv);
    tty_filter_init();

    /*
     * <<<>>>
     */
    for (p=standard_port_info_table; p->port_name; p++) {
	if (p->port_setup_status == 2)
	  continue;
	
	switch (p->type) {
	  case INPUT_DESC:
	    create_port_from_files(p->port_name, fdopen(p->setup_arg, "r"),0);
	    break;

	  case OUTPUT_DESC:
	    create_port_from_files(p->port_name, 0, fdopen(p->setup_arg, "w"));
	    break;

	  case FILTER:
	    create_port_from_filter(p->port_name, p->function);
	    break;

	  case OUTPUT_PROC:
	    create_port_from_output_proc(p->port_name, p->function);
	    break;
	}
    }
}