]> git.saurik.com Git - apple/shell_cmds.git/blob - window/lcmd.c
shell_cmds-17.1.tar.gz
[apple/shell_cmds.git] / window / lcmd.c
1 /* $NetBSD: lcmd.c,v 1.4 1997/11/21 08:36:01 lukem Exp $ */
2
3 /*
4 * Copyright (c) 1983, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Edward Wang at The University of California, Berkeley.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 */
38
39 #include <sys/cdefs.h>
40 #ifndef lint
41 #if 0
42 static char sccsid[] = "@(#)lcmd.c 8.1 (Berkeley) 6/6/93";
43 #else
44 __RCSID("$NetBSD: lcmd.c,v 1.4 1997/11/21 08:36:01 lukem Exp $");
45 #endif
46 #endif /* not lint */
47
48 #include "defs.h"
49 #include "lcmd.h"
50 #include "window_string.h"
51
52 extern struct lcmd_arg arg_alias[];
53 extern struct lcmd_arg arg_cursormodes[];
54 extern struct lcmd_arg arg_debug[];
55 extern struct lcmd_arg arg_echo[];
56 extern struct lcmd_arg arg_escape[];
57 extern struct lcmd_arg arg_foreground[];
58 extern struct lcmd_arg arg_label[];
59 extern struct lcmd_arg arg_def_nline[];
60 extern struct lcmd_arg arg_def_shell[];
61 extern struct lcmd_arg arg_def_smooth[];
62 extern struct lcmd_arg arg_close[];
63 extern struct lcmd_arg arg_select[];
64 extern struct lcmd_arg arg_smooth[];
65 extern struct lcmd_arg arg_source[];
66 extern struct lcmd_arg arg_terse[];
67 extern struct lcmd_arg arg_time[];
68 extern struct lcmd_arg arg_unalias[];
69 extern struct lcmd_arg arg_unset[];
70 extern struct lcmd_arg arg_window[];
71 extern struct lcmd_arg arg_write[];
72 struct lcmd_arg arg_null[1] = { { 0 } };
73
74 struct lcmd_tab lcmd_tab[] = {
75 { "alias", 1, l_alias, arg_alias },
76 { "close", 2, l_close, arg_close },
77 { "cursormodes", 2, l_cursormodes, arg_cursormodes },
78 { "debug", 1, l_debug, arg_debug },
79 { "default_nlines", 9, l_def_nline, arg_def_nline },
80 { "default_shell", 10, l_def_shell, arg_def_shell },
81 { "default_smooth", 10, l_def_smooth, arg_def_smooth },
82 { "echo", 2, l_echo, arg_echo },
83 { "escape", 2, l_escape, arg_escape },
84 { "foreground", 1, l_foreground, arg_foreground },
85 { "iostat", 1, l_iostat, arg_null },
86 { "label", 2, l_label, arg_label },
87 { "list", 2, l_list, arg_null },
88 { "nlines", 1, l_def_nline, arg_def_nline },
89 { "select", 2, l_select, arg_select },
90 { "shell", 2, l_def_shell, arg_def_shell },
91 { "smooth", 2, l_smooth, arg_smooth },
92 { "source", 2, l_source, arg_source },
93 { "terse", 2, l_terse, arg_terse },
94 { "time", 2, l_time, arg_time },
95 { "unalias", 3, l_unalias, arg_unalias },
96 { "unset", 3, l_unset, arg_unset },
97 { "variable", 1, l_variable, arg_null },
98 { "window", 2, l_window, arg_window },
99 { "write", 2, l_write, arg_write },
100 { 0, 0, 0, 0 }
101 };
102
103 struct lcmd_tab *
104 lcmd_lookup(name)
105 char *name;
106 {
107 struct lcmd_tab *p;
108
109 for (p = lcmd_tab; p->lc_name != 0; p++)
110 if (str_match(name, p->lc_name, p->lc_minlen))
111 return p;
112 return 0;
113 }
114
115 int
116 dosource(filename)
117 char *filename;
118 {
119 if (cx_beginfile(filename) < 0)
120 return -1;
121 p_start();
122 err_end();
123 cx_end();
124 return 0;
125 }
126
127 int
128 dolongcmd(buffer, arg, narg)
129 char *buffer;
130 struct value *arg;
131 int narg;
132 {
133 if (cx_beginbuf(buffer, arg, narg) < 0)
134 return -1;
135 p_start();
136 err_end();
137 cx_end();
138 return 0;
139 }