1 /* $NetBSD: tc1.c,v 1.5 2010/04/18 21:17:47 christos Exp $ */
4 * Copyright (c) 1992, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
8 * Christos Zoulas of Cornell University.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
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. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * test.c: A little test program
52 static int continuation
= 0;
53 volatile sig_atomic_t gotsig
= 0;
55 static unsigned char complete(EditLine
*, int);
56 int main(int, char **);
57 static char *prompt(EditLine
*);
63 static char a
[] = "\1\033[7m\1Edit$\1\033[0m\1 ";
64 static char b
[] = "Edit> ";
66 return (continuation
? b
: a
);
76 complete(EditLine
*el
, int ch
)
78 DIR *dd
= opendir(".");
81 const LineInfo
*lf
= el_line(el
);
88 for (ptr
= lf
->cursor
- 1;
89 !isspace((unsigned char)*ptr
) && ptr
> lf
->buffer
; ptr
--)
91 len
= lf
->cursor
- ptr
;
93 for (dp
= readdir(dd
); dp
!= NULL
; dp
= readdir(dd
)) {
94 if (len
> strlen(dp
->d_name
))
96 if (strncmp(dp
->d_name
, ptr
, len
) == 0) {
97 if (el_insertstr(el
, &dp
->d_name
[len
]) == -1)
110 main(int argc
, char *argv
[])
123 (void) setlocale(LC_CTYPE
, "");
124 (void) signal(SIGINT
, sig
);
125 (void) signal(SIGQUIT
, sig
);
126 (void) signal(SIGHUP
, sig
);
127 (void) signal(SIGTERM
, sig
);
129 hist
= history_init(); /* Init the builtin history */
130 /* Remember 100 events */
131 history(hist
, &ev
, H_SETSIZE
, 100);
133 tok
= tok_init(NULL
); /* Initialize the tokenizer */
135 /* Initialize editline */
136 el
= el_init(*argv
, stdin
, stdout
, stderr
);
138 el_set(el
, EL_EDITOR
, "vi"); /* Default editor is vi */
139 el_set(el
, EL_SIGNAL
, 1); /* Handle signals gracefully */
140 el_set(el
, EL_PROMPT_ESC
, prompt
, '\1');/* Set the prompt function */
142 /* Tell editline to use this history interface */
143 el_set(el
, EL_HIST
, history
, hist
);
145 /* Add a user-defined function */
146 el_set(el
, EL_ADDFN
, "ed-complete", "Complete argument", complete
);
149 el_set(el
, EL_BIND
, "^I", "ed-complete", NULL
);
152 * Bind j, k in vi command mode to previous and next line, instead
153 * of previous and next history.
155 el_set(el
, EL_BIND
, "-a", "k", "ed-prev-line", NULL
);
156 el_set(el
, EL_BIND
, "-a", "j", "ed-next-line", NULL
);
159 * Source the user's defaults file.
163 while ((buf
= el_gets(el
, &num
)) != NULL
&& num
!= 0) {
172 (void) fprintf(stderr
, "==> got %d %s", num
, buf
);
173 (void) fprintf(stderr
, " > li `%.*s_%.*s'\n",
174 (li
->cursor
- li
->buffer
), li
->buffer
,
175 (li
->lastchar
- 1 - li
->cursor
),
176 (li
->cursor
>= li
->lastchar
) ? "" : li
->cursor
);
180 (void) fprintf(stderr
, "Got signal %d.\n", gotsig
);
185 if (!continuation
&& num
== 1)
189 ncontinuation
= tok_line(tok
, li
, &ac
, &av
, &cc
, &co
);
190 if (ncontinuation
< 0) {
191 (void) fprintf(stderr
, "Internal error\n");
196 (void) fprintf(stderr
, " > nc %d ac %d cc %d co %d\n",
197 ncontinuation
, ac
, cc
, co
);
202 * Append to the right event in case the user
203 * moved around in history.
205 if (history(hist
, &ev
, H_SET
, lastevent
) == -1)
206 err(1, "%d: %s", lastevent
, ev
.str
);
207 history(hist
, &ev
, H_ADD
, buf
);
209 history(hist
, &ev
, H_ENTER
, buf
);
214 history(hist
, &ev
, continuation
? H_APPEND
: H_ENTER
, buf
);
217 continuation
= ncontinuation
;
222 for (i
= 0; i
< ac
; i
++) {
223 (void) fprintf(stderr
, " > arg# %2d ", i
);
225 (void) fprintf(stderr
, "`%s'\n", av
[i
]);
227 (void) fprintf(stderr
, "`%.*s_%s'\n",
228 co
, av
[i
], av
[i
] + co
);
232 if (strcmp(av
[0], "history") == 0) {
237 for (rv
= history(hist
, &ev
, H_LAST
); rv
!= -1;
238 rv
= history(hist
, &ev
, H_PREV
))
239 (void) fprintf(stdout
, "%4d %s",
244 if (strcmp(av
[1], "clear") == 0)
245 history(hist
, &ev
, H_CLEAR
);
251 if (strcmp(av
[1], "load") == 0)
252 history(hist
, &ev
, H_LOAD
, av
[2]);
253 else if (strcmp(av
[1], "save") == 0)
254 history(hist
, &ev
, H_SAVE
, av
[2]);
259 (void) fprintf(stderr
,
260 "Bad history arguments\n");
263 } else if (el_parse(el
, ac
, av
) == -1) {
266 execvp(av
[0], (char *const *)av
);
277 if (wait(&num
) == -1)
279 (void) fprintf(stderr
, "Exit %x\n", num
);