]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/window/main.c
This commit was generated by cvs2svn to compensate for changes in r75264,
[FreeBSD/FreeBSD.git] / usr.bin / window / main.c
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 char copyright[] =
39 "@(#) Copyright (c) 1983, 1993\n\
40         The Regents of the University of California.  All rights reserved.\n";
41 #endif /* not lint */
42
43 #ifndef lint
44 static char sccsid[] = "@(#)main.c      8.2 (Berkeley) 4/2/94";
45 static char rcsid[] = "@(#)$FreeBSD$";
46 #endif /* not lint */
47
48 #include "defs.h"
49 #include <paths.h>
50 #include <locale.h>
51 #include <stdio.h>
52 #include <string.h> /* System string definitions. */
53 #include "mystring.h" /* Local string definitions. */
54 #include "char.h"
55 #include "local.h"
56
57 #define next(a) (*++*(a) ? *(a) : (*++(a) ? *(a) : (char *)usage()))
58
59 /*ARGSUSED*/
60 main(argc, argv)
61 char **argv;
62 {
63         register char *p;
64         char fflag = 0;
65         char dflag = 0;
66         char xflag = 0;
67         char *cmd = 0;
68         char tflag = 0;
69
70         escapec = ESCAPEC;
71         if (p = rindex(*argv, '/'))
72                 p++;
73         else
74                 p = *argv;
75         debug = strcmp(p, "a.out") == 0;
76         while (*++argv) {
77                 if (**argv == '-') {
78                         switch (*++*argv) {
79                         case 'f':
80                                 fflag++;
81                                 break;
82                         case 'c':
83                                 if (cmd != 0) {
84                                         (void) fprintf(stderr,
85                                                 "Only one -c allowed.\n");
86                                         (void) usage();
87                                 }
88                                 cmd = next(argv);
89                                 break;
90                         case 'e':
91                                 setescape(next(argv));
92                                 break;
93                         case 't':
94                                 tflag++;
95                                 break;
96                         case 'd':
97                                 dflag++;
98                                 break;
99                         case 'D':
100                                 debug = !debug;
101                                 break;
102                         case 'x':
103                                 xflag++;
104                                 break;
105                         default:
106                                 (void) usage();
107                         }
108                 } else
109                         (void) usage();
110         }
111         if ((p = getenv("SHELL")) == 0)
112                 p = _PATH_BSHELL;
113         if ((default_shellfile = str_cpy(p)) == 0) {
114                 (void) fprintf(stderr, "Out of memory.\n");
115                 exit(1);
116         }
117         if (p = rindex(default_shellfile, '/'))
118                 p++;
119         else
120                 p = default_shellfile;
121         default_shell[0] = p;
122         default_shell[1] = 0;
123         default_nline = NLINE;
124         default_smooth = 1;
125         (void) gettimeofday(&starttime, (struct timezone *)0);
126         (void) setlocale(LC_CTYPE, "");
127         if (wwinit() < 0) {
128                 (void) fprintf(stderr, "%s.\n", wwerror());
129                 exit(1);
130         }
131
132 #ifdef OLD_TTY
133         if (debug)
134                 wwnewtty.ww_tchars.t_quitc = wwoldtty.ww_tchars.t_quitc;
135         if (xflag) {
136                 wwnewtty.ww_tchars.t_stopc = wwoldtty.ww_tchars.t_stopc;
137                 wwnewtty.ww_tchars.t_startc = wwoldtty.ww_tchars.t_startc;
138         }
139 #else
140         if (debug) {
141                 wwnewtty.ww_termios.c_cc[VQUIT] =
142                         wwoldtty.ww_termios.c_cc[VQUIT];
143                 wwnewtty.ww_termios.c_lflag |= ISIG;
144         }
145         if (xflag) {
146                 wwnewtty.ww_termios.c_cc[VSTOP] =
147                         wwoldtty.ww_termios.c_cc[VSTOP];
148                 wwnewtty.ww_termios.c_cc[VSTART] =
149                         wwoldtty.ww_termios.c_cc[VSTART];
150                 wwnewtty.ww_termios.c_iflag |= IXON;
151         }
152 #endif
153         if (debug || xflag)
154                 (void) wwsettty(0, &wwnewtty);
155
156         if ((cmdwin = wwopen(wwbaud > 2400 ? WWO_REVERSE : 0, 1, wwncol,
157                              0, 0, 0)) == 0) {
158                 wwflush();
159                 (void) fprintf(stderr, "%s.\r\n", wwerror());
160                 goto bad;
161         }
162         cmdwin->ww_mapnl = 1;
163         cmdwin->ww_nointr = 1;
164         cmdwin->ww_noupdate = 1;
165         cmdwin->ww_unctrl = 1;
166         if ((framewin = wwopen(WWO_GLASS|WWO_FRAME, wwnrow, wwncol, 0, 0, 0))
167             == 0) {
168                 wwflush();
169                 (void) fprintf(stderr, "%s.\r\n", wwerror());
170                 goto bad;
171         }
172         wwadd(framewin, &wwhead);
173         if ((boxwin = wwopen(WWO_GLASS, wwnrow, wwncol, 0, 0, 0)) == 0) {
174                 wwflush();
175                 (void) fprintf(stderr, "%s.\r\n", wwerror());
176                 goto bad;
177         }
178         fgwin = framewin;
179
180         wwupdate();
181         wwflush();
182         setvars();
183
184         setterse(tflag);
185         setcmd(1);
186         if (cmd != 0)
187                 (void) dolongcmd(cmd, (struct value *)0, 0);
188         if (!fflag)
189                 if (dflag || doconfig() < 0)
190                         dodefault();
191         if (selwin != 0)
192                 setcmd(0);
193
194         mloop();
195
196 bad:
197         wwend(1);
198         return 0;
199 }
200
201 usage()
202 {
203         (void) fprintf(stderr, "usage: window [-e escape-char] [-c command] [-t] [-f] [-d]\n");
204         exit(1);
205         return 0;                       /* for lint */
206 }