xref: /dragonfly/usr.bin/window/wwopen.c (revision 984263bc)
1 /*
2  * Copyright (c) 1983, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Edward Wang at The University of California, Berkeley.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *	This product includes software developed by the University of
19  *	California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  */
36 
37 #ifndef lint
38 static char sccsid[] = "@(#)wwopen.c	8.1 (Berkeley) 6/6/93";
39 static char rcsid[] =
40   "$FreeBSD: src/usr.bin/window/wwopen.c,v 1.2.12.1 2001/05/17 09:45:01 obrien Exp $";
41 #endif /* not lint */
42 
43 #include "ww.h"
44 #include <sys/types.h>
45 #include <sys/socket.h>
46 #include <fcntl.h>
47 #include <stdlib.h>
48 
49 struct ww *
50 wwopen(flags, nrow, ncol, row, col, nline)
51 {
52 	register struct ww *w;
53 	register i, j;
54 	char m;
55 	short nvis;
56 
57 	w = (struct ww *)calloc(sizeof (struct ww), 1);
58 	if (w == 0) {
59 		wwerrno = WWE_NOMEM;
60 		goto bad;
61 	}
62 	w->ww_pty = -1;
63 	w->ww_socket = -1;
64 
65 	for (i = 0; i < NWW && wwindex[i] != 0; i++)
66 		;
67 	if (i >= NWW) {
68 		wwerrno = WWE_TOOMANY;
69 		goto bad;
70 	}
71 	w->ww_index = i;
72 
73 	if (nline < nrow)
74 		nline = nrow;
75 
76 	w->ww_w.t = row;
77 	w->ww_w.b = row + nrow;
78 	w->ww_w.l = col;
79 	w->ww_w.r = col + ncol;
80 	w->ww_w.nr = nrow;
81 	w->ww_w.nc = ncol;
82 
83 	w->ww_b.t = row;
84 	w->ww_b.b = row + nline;
85 	w->ww_b.l = col;
86 	w->ww_b.r = col + ncol;
87 	w->ww_b.nr = nline;
88 	w->ww_b.nc = ncol;
89 
90 	w->ww_i.t = MAX(w->ww_w.t, 0);
91 	w->ww_i.b = MIN(w->ww_w.b, wwnrow);
92 	w->ww_i.l = MAX(w->ww_w.l, 0);
93 	w->ww_i.r = MIN(w->ww_w.r, wwncol);
94 	w->ww_i.nr = w->ww_i.b - w->ww_i.t;
95 	w->ww_i.nc = w->ww_i.r - w->ww_i.l;
96 
97 	w->ww_cur.r = w->ww_w.t;
98 	w->ww_cur.c = w->ww_w.l;
99 
100 	if (flags & WWO_PTY) {
101 		if (wwgetpty(w) < 0)
102 			goto bad;
103 		w->ww_ispty = 1;
104 	} else if (flags & WWO_SOCKET) {
105 		int d[2];
106 		if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, d) < 0) {
107 			wwerrno = WWE_SYS;
108 			goto bad;
109 		}
110 		(void) fcntl(d[0], F_SETFD, 1);
111 		(void) fcntl(d[1], F_SETFD, 1);
112 		w->ww_pty = d[0];
113 		w->ww_socket = d[1];
114 	}
115 	if (flags & (WWO_PTY|WWO_SOCKET)) {
116 		if ((w->ww_ob = malloc(512)) == 0) {
117 			wwerrno = WWE_NOMEM;
118 			goto bad;
119 		}
120 		w->ww_obe = w->ww_ob + 512;
121 		w->ww_obp = w->ww_obq = w->ww_ob;
122 	}
123 
124 	w->ww_win = wwalloc(w->ww_w.t, w->ww_w.l,
125 		w->ww_w.nr, w->ww_w.nc, sizeof (char));
126 	if (w->ww_win == 0)
127 		goto bad;
128 	m = 0;
129 	if (flags & WWO_GLASS)
130 		m |= WWM_GLS;
131 	if (flags & WWO_REVERSE)
132 		if (wwavailmodes & WWM_REV)
133 			m |= WWM_REV;
134 		else
135 			flags &= ~WWO_REVERSE;
136 	for (i = w->ww_w.t; i < w->ww_w.b; i++)
137 		for (j = w->ww_w.l; j < w->ww_w.r; j++)
138 			w->ww_win[i][j] = m;
139 
140 	if (flags & WWO_FRAME) {
141 		w->ww_fmap = wwalloc(w->ww_w.t, w->ww_w.l,
142 			w->ww_w.nr, w->ww_w.nc, sizeof (char));
143 		if (w->ww_fmap == 0)
144 			goto bad;
145 		for (i = w->ww_w.t; i < w->ww_w.b; i++)
146 			for (j = w->ww_w.l; j < w->ww_w.r; j++)
147 				w->ww_fmap[i][j] = 0;
148 	}
149 
150 	w->ww_buf = (union ww_char **)
151 		wwalloc(w->ww_b.t, w->ww_b.l,
152 			w->ww_b.nr, w->ww_b.nc, sizeof (union ww_char));
153 	if (w->ww_buf == 0)
154 		goto bad;
155 	for (i = w->ww_b.t; i < w->ww_b.b; i++)
156 		for (j = w->ww_b.l; j < w->ww_b.r; j++)
157 			w->ww_buf[i][j].c_w = ' ';
158 
159 	w->ww_nvis = (short *)malloc((unsigned) w->ww_w.nr * sizeof (short));
160 	if (w->ww_nvis == 0) {
161 		wwerrno = WWE_NOMEM;
162 		goto bad;
163 	}
164 	w->ww_nvis -= w->ww_w.t;
165 	nvis = m ? 0 : w->ww_w.nc;
166 	for (i = w->ww_w.t; i < w->ww_w.b; i++)
167 		w->ww_nvis[i] = nvis;
168 
169 	w->ww_state = WWS_INITIAL;
170 	w->ww_oflags = flags;
171 	return wwindex[w->ww_index] = w;
172 bad:
173 	if (w != 0) {
174 		if (w->ww_win != 0)
175 			wwfree(w->ww_win, w->ww_w.t);
176 		if (w->ww_fmap != 0)
177 			wwfree(w->ww_fmap, w->ww_w.t);
178 		if (w->ww_buf != 0)
179 			wwfree((char **)w->ww_buf, w->ww_b.t);
180 		if (w->ww_nvis != 0)
181 			free((char *)(w->ww_nvis + w->ww_w.t));
182 		if (w->ww_ob != 0)
183 			free(w->ww_ob);
184 		if (w->ww_pty >= 0)
185 			(void) close(w->ww_pty);
186 		if (w->ww_socket >= 0)
187 			(void) close(w->ww_socket);
188 		free((char *)w);
189 	}
190 	return 0;
191 }
192