chared.c revision 1.30 1 1.30 christos /* $NetBSD: chared.c,v 1.30 2011/07/28 01:05:20 christos Exp $ */
2 1.2 lukem
3 1.1 cgd /*-
4 1.1 cgd * Copyright (c) 1992, 1993
5 1.1 cgd * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * This code is derived from software contributed to Berkeley by
8 1.1 cgd * Christos Zoulas of Cornell University.
9 1.1 cgd *
10 1.1 cgd * Redistribution and use in source and binary forms, with or without
11 1.1 cgd * modification, are permitted provided that the following conditions
12 1.1 cgd * are met:
13 1.1 cgd * 1. Redistributions of source code must retain the above copyright
14 1.1 cgd * notice, this list of conditions and the following disclaimer.
15 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 cgd * notice, this list of conditions and the following disclaimer in the
17 1.1 cgd * documentation and/or other materials provided with the distribution.
18 1.19 agc * 3. Neither the name of the University nor the names of its contributors
19 1.1 cgd * may be used to endorse or promote products derived from this software
20 1.1 cgd * without specific prior written permission.
21 1.1 cgd *
22 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.1 cgd * SUCH DAMAGE.
33 1.1 cgd */
34 1.1 cgd
35 1.15 christos #include "config.h"
36 1.1 cgd #if !defined(lint) && !defined(SCCSID)
37 1.2 lukem #if 0
38 1.1 cgd static char sccsid[] = "@(#)chared.c 8.1 (Berkeley) 6/4/93";
39 1.2 lukem #else
40 1.30 christos __RCSID("$NetBSD: chared.c,v 1.30 2011/07/28 01:05:20 christos Exp $");
41 1.2 lukem #endif
42 1.1 cgd #endif /* not lint && not SCCSID */
43 1.1 cgd
44 1.7 simonb /*
45 1.1 cgd * chared.c: Character editor utilities
46 1.1 cgd */
47 1.1 cgd #include <stdlib.h>
48 1.1 cgd #include "el.h"
49 1.1 cgd
50 1.26 sketch private void ch__clearmacro (EditLine *);
51 1.24 christos
52 1.12 jdolecek /* value to leave unused in line buffer */
53 1.12 jdolecek #define EL_LEAVE 2
54 1.12 jdolecek
55 1.1 cgd /* cv_undo():
56 1.1 cgd * Handle state for the vi undo command
57 1.1 cgd */
58 1.1 cgd protected void
59 1.17 christos cv_undo(EditLine *el)
60 1.9 lukem {
61 1.9 lukem c_undo_t *vu = &el->el_chared.c_undo;
62 1.17 christos c_redo_t *r = &el->el_chared.c_redo;
63 1.27 christos size_t size;
64 1.16 christos
65 1.17 christos /* Save entire line for undo */
66 1.17 christos size = el->el_line.lastchar - el->el_line.buffer;
67 1.17 christos vu->len = size;
68 1.27 christos vu->cursor = (int)(el->el_line.cursor - el->el_line.buffer);
69 1.28 christos (void)memcpy(vu->buf, el->el_line.buffer, size * sizeof(*vu->buf));
70 1.16 christos
71 1.17 christos /* save command info for redo */
72 1.17 christos r->count = el->el_state.doingarg ? el->el_state.argument : 0;
73 1.17 christos r->action = el->el_chared.c_vcmd.action;
74 1.17 christos r->pos = r->buf;
75 1.17 christos r->cmd = el->el_state.thiscmd;
76 1.17 christos r->ch = el->el_state.thisch;
77 1.17 christos }
78 1.17 christos
79 1.17 christos /* cv_yank():
80 1.17 christos * Save yank/delete data for paste
81 1.17 christos */
82 1.17 christos protected void
83 1.28 christos cv_yank(EditLine *el, const Char *ptr, int size)
84 1.17 christos {
85 1.17 christos c_kill_t *k = &el->el_chared.c_kill;
86 1.17 christos
87 1.28 christos (void)memcpy(k->buf, ptr, size * sizeof(*k->buf));
88 1.17 christos k->last = k->buf + size;
89 1.1 cgd }
90 1.1 cgd
91 1.1 cgd
92 1.7 simonb /* c_insert():
93 1.1 cgd * Insert num characters
94 1.1 cgd */
95 1.1 cgd protected void
96 1.9 lukem c_insert(EditLine *el, int num)
97 1.9 lukem {
98 1.28 christos Char *cp;
99 1.9 lukem
100 1.17 christos if (el->el_line.lastchar + num >= el->el_line.limit) {
101 1.27 christos if (!ch_enlargebufs(el, (size_t)num))
102 1.17 christos return; /* can't go past end of buffer */
103 1.17 christos }
104 1.9 lukem
105 1.9 lukem if (el->el_line.cursor < el->el_line.lastchar) {
106 1.9 lukem /* if I must move chars */
107 1.9 lukem for (cp = el->el_line.lastchar; cp >= el->el_line.cursor; cp--)
108 1.9 lukem cp[num] = *cp;
109 1.9 lukem }
110 1.9 lukem el->el_line.lastchar += num;
111 1.9 lukem }
112 1.1 cgd
113 1.1 cgd
114 1.1 cgd /* c_delafter():
115 1.1 cgd * Delete num characters after the cursor
116 1.1 cgd */
117 1.1 cgd protected void
118 1.9 lukem c_delafter(EditLine *el, int num)
119 1.1 cgd {
120 1.1 cgd
121 1.9 lukem if (el->el_line.cursor + num > el->el_line.lastchar)
122 1.27 christos num = (int)(el->el_line.lastchar - el->el_line.cursor);
123 1.1 cgd
124 1.17 christos if (el->el_map.current != el->el_map.emacs) {
125 1.17 christos cv_undo(el);
126 1.17 christos cv_yank(el, el->el_line.cursor, num);
127 1.17 christos }
128 1.16 christos
129 1.9 lukem if (num > 0) {
130 1.28 christos Char *cp;
131 1.1 cgd
132 1.9 lukem for (cp = el->el_line.cursor; cp <= el->el_line.lastchar; cp++)
133 1.9 lukem *cp = cp[num];
134 1.1 cgd
135 1.9 lukem el->el_line.lastchar -= num;
136 1.9 lukem }
137 1.1 cgd }
138 1.1 cgd
139 1.1 cgd
140 1.22 mycroft /* c_delafter1():
141 1.22 mycroft * Delete the character after the cursor, do not yank
142 1.22 mycroft */
143 1.22 mycroft protected void
144 1.22 mycroft c_delafter1(EditLine *el)
145 1.22 mycroft {
146 1.28 christos Char *cp;
147 1.22 mycroft
148 1.22 mycroft for (cp = el->el_line.cursor; cp <= el->el_line.lastchar; cp++)
149 1.22 mycroft *cp = cp[1];
150 1.22 mycroft
151 1.22 mycroft el->el_line.lastchar--;
152 1.22 mycroft }
153 1.22 mycroft
154 1.22 mycroft
155 1.1 cgd /* c_delbefore():
156 1.1 cgd * Delete num characters before the cursor
157 1.1 cgd */
158 1.1 cgd protected void
159 1.9 lukem c_delbefore(EditLine *el, int num)
160 1.1 cgd {
161 1.1 cgd
162 1.9 lukem if (el->el_line.cursor - num < el->el_line.buffer)
163 1.27 christos num = (int)(el->el_line.cursor - el->el_line.buffer);
164 1.1 cgd
165 1.17 christos if (el->el_map.current != el->el_map.emacs) {
166 1.17 christos cv_undo(el);
167 1.17 christos cv_yank(el, el->el_line.cursor - num, num);
168 1.17 christos }
169 1.16 christos
170 1.9 lukem if (num > 0) {
171 1.28 christos Char *cp;
172 1.1 cgd
173 1.9 lukem for (cp = el->el_line.cursor - num;
174 1.9 lukem cp <= el->el_line.lastchar;
175 1.9 lukem cp++)
176 1.9 lukem *cp = cp[num];
177 1.1 cgd
178 1.9 lukem el->el_line.lastchar -= num;
179 1.9 lukem }
180 1.1 cgd }
181 1.1 cgd
182 1.1 cgd
183 1.22 mycroft /* c_delbefore1():
184 1.22 mycroft * Delete the character before the cursor, do not yank
185 1.22 mycroft */
186 1.22 mycroft protected void
187 1.22 mycroft c_delbefore1(EditLine *el)
188 1.22 mycroft {
189 1.28 christos Char *cp;
190 1.22 mycroft
191 1.22 mycroft for (cp = el->el_line.cursor - 1; cp <= el->el_line.lastchar; cp++)
192 1.22 mycroft *cp = cp[1];
193 1.22 mycroft
194 1.22 mycroft el->el_line.lastchar--;
195 1.22 mycroft }
196 1.22 mycroft
197 1.22 mycroft
198 1.1 cgd /* ce__isword():
199 1.1 cgd * Return if p is part of a word according to emacs
200 1.1 cgd */
201 1.1 cgd protected int
202 1.28 christos ce__isword(Int p)
203 1.1 cgd {
204 1.28 christos return (Isalnum(p) || Strchr(STR("*?_-.[]~="), p) != NULL);
205 1.1 cgd }
206 1.1 cgd
207 1.1 cgd
208 1.1 cgd /* cv__isword():
209 1.1 cgd * Return if p is part of a word according to vi
210 1.1 cgd */
211 1.1 cgd protected int
212 1.28 christos cv__isword(Int p)
213 1.1 cgd {
214 1.28 christos if (Isalnum(p) || p == '_')
215 1.17 christos return 1;
216 1.28 christos if (Isgraph(p))
217 1.17 christos return 2;
218 1.17 christos return 0;
219 1.16 christos }
220 1.16 christos
221 1.16 christos
222 1.16 christos /* cv__isWord():
223 1.16 christos * Return if p is part of a big word according to vi
224 1.16 christos */
225 1.16 christos protected int
226 1.28 christos cv__isWord(Int p)
227 1.16 christos {
228 1.28 christos return (!Isspace(p));
229 1.1 cgd }
230 1.1 cgd
231 1.1 cgd
232 1.1 cgd /* c__prev_word():
233 1.1 cgd * Find the previous word
234 1.1 cgd */
235 1.28 christos protected Char *
236 1.28 christos c__prev_word(Char *p, Char *low, int n, int (*wtest)(Int))
237 1.9 lukem {
238 1.9 lukem p--;
239 1.9 lukem
240 1.9 lukem while (n--) {
241 1.28 christos while ((p >= low) && !(*wtest)(*p))
242 1.9 lukem p--;
243 1.28 christos while ((p >= low) && (*wtest)(*p))
244 1.9 lukem p--;
245 1.9 lukem }
246 1.9 lukem
247 1.9 lukem /* cp now points to one character before the word */
248 1.9 lukem p++;
249 1.9 lukem if (p < low)
250 1.9 lukem p = low;
251 1.9 lukem /* cp now points where we want it */
252 1.9 lukem return (p);
253 1.1 cgd }
254 1.1 cgd
255 1.1 cgd
256 1.1 cgd /* c__next_word():
257 1.1 cgd * Find the next word
258 1.1 cgd */
259 1.28 christos protected Char *
260 1.28 christos c__next_word(Char *p, Char *high, int n, int (*wtest)(Int))
261 1.9 lukem {
262 1.9 lukem while (n--) {
263 1.28 christos while ((p < high) && !(*wtest)(*p))
264 1.9 lukem p++;
265 1.28 christos while ((p < high) && (*wtest)(*p))
266 1.9 lukem p++;
267 1.9 lukem }
268 1.9 lukem if (p > high)
269 1.9 lukem p = high;
270 1.9 lukem /* p now points where we want it */
271 1.9 lukem return (p);
272 1.1 cgd }
273 1.1 cgd
274 1.1 cgd /* cv_next_word():
275 1.1 cgd * Find the next word vi style
276 1.1 cgd */
277 1.28 christos protected Char *
278 1.28 christos cv_next_word(EditLine *el, Char *p, Char *high, int n, int (*wtest)(Int))
279 1.9 lukem {
280 1.9 lukem int test;
281 1.9 lukem
282 1.9 lukem while (n--) {
283 1.28 christos test = (*wtest)(*p);
284 1.28 christos while ((p < high) && (*wtest)(*p) == test)
285 1.9 lukem p++;
286 1.9 lukem /*
287 1.9 lukem * vi historically deletes with cw only the word preserving the
288 1.9 lukem * trailing whitespace! This is not what 'w' does..
289 1.9 lukem */
290 1.16 christos if (n || el->el_chared.c_vcmd.action != (DELETE|INSERT))
291 1.28 christos while ((p < high) && Isspace(*p))
292 1.9 lukem p++;
293 1.9 lukem }
294 1.1 cgd
295 1.9 lukem /* p now points where we want it */
296 1.9 lukem if (p > high)
297 1.9 lukem return (high);
298 1.9 lukem else
299 1.9 lukem return (p);
300 1.1 cgd }
301 1.1 cgd
302 1.1 cgd
303 1.1 cgd /* cv_prev_word():
304 1.1 cgd * Find the previous word vi style
305 1.1 cgd */
306 1.28 christos protected Char *
307 1.28 christos cv_prev_word(Char *p, Char *low, int n, int (*wtest)(Int))
308 1.1 cgd {
309 1.9 lukem int test;
310 1.1 cgd
311 1.16 christos p--;
312 1.9 lukem while (n--) {
313 1.28 christos while ((p > low) && Isspace(*p))
314 1.16 christos p--;
315 1.28 christos test = (*wtest)(*p);
316 1.28 christos while ((p >= low) && (*wtest)(*p) == test)
317 1.9 lukem p--;
318 1.9 lukem }
319 1.16 christos p++;
320 1.1 cgd
321 1.9 lukem /* p now points where we want it */
322 1.9 lukem if (p < low)
323 1.9 lukem return (low);
324 1.9 lukem else
325 1.9 lukem return (p);
326 1.1 cgd }
327 1.1 cgd
328 1.1 cgd
329 1.1 cgd #ifdef notdef
330 1.1 cgd /* c__number():
331 1.1 cgd * Ignore character p points to, return number appearing after that.
332 1.1 cgd * A '$' by itself means a big number; "$-" is for negative; '^' means 1.
333 1.1 cgd * Return p pointing to last char used.
334 1.1 cgd */
335 1.28 christos protected Char *
336 1.9 lukem c__number(
337 1.28 christos Char *p, /* character position */
338 1.9 lukem int *num, /* Return value */
339 1.9 lukem int dval) /* dval is the number to subtract from like $-3 */
340 1.9 lukem {
341 1.9 lukem int i;
342 1.9 lukem int sign = 1;
343 1.9 lukem
344 1.9 lukem if (*++p == '^') {
345 1.9 lukem *num = 1;
346 1.9 lukem return (p);
347 1.9 lukem }
348 1.9 lukem if (*p == '$') {
349 1.9 lukem if (*++p != '-') {
350 1.9 lukem *num = 0x7fffffff; /* Handle $ */
351 1.9 lukem return (--p);
352 1.9 lukem }
353 1.9 lukem sign = -1; /* Handle $- */
354 1.9 lukem ++p;
355 1.9 lukem }
356 1.28 christos /* XXX: this assumes ASCII compatible digits */
357 1.28 christos for (i = 0; Isdigit(*p); i = 10 * i + *p++ - '0')
358 1.9 lukem continue;
359 1.9 lukem *num = (sign < 0 ? dval - i : i);
360 1.9 lukem return (--p);
361 1.1 cgd }
362 1.1 cgd #endif
363 1.1 cgd
364 1.1 cgd /* cv_delfini():
365 1.1 cgd * Finish vi delete action
366 1.1 cgd */
367 1.1 cgd protected void
368 1.9 lukem cv_delfini(EditLine *el)
369 1.1 cgd {
370 1.9 lukem int size;
371 1.17 christos int action = el->el_chared.c_vcmd.action;
372 1.1 cgd
373 1.17 christos if (action & INSERT)
374 1.9 lukem el->el_map.current = el->el_map.key;
375 1.1 cgd
376 1.9 lukem if (el->el_chared.c_vcmd.pos == 0)
377 1.17 christos /* sanity */
378 1.9 lukem return;
379 1.9 lukem
380 1.27 christos size = (int)(el->el_line.cursor - el->el_chared.c_vcmd.pos);
381 1.17 christos if (size == 0)
382 1.17 christos size = 1;
383 1.16 christos el->el_line.cursor = el->el_chared.c_vcmd.pos;
384 1.17 christos if (action & YANK) {
385 1.17 christos if (size > 0)
386 1.17 christos cv_yank(el, el->el_line.cursor, size);
387 1.17 christos else
388 1.17 christos cv_yank(el, el->el_line.cursor + size, -size);
389 1.9 lukem } else {
390 1.17 christos if (size > 0) {
391 1.17 christos c_delafter(el, size);
392 1.17 christos re_refresh_cursor(el);
393 1.17 christos } else {
394 1.17 christos c_delbefore(el, -size);
395 1.17 christos el->el_line.cursor += size;
396 1.17 christos }
397 1.9 lukem }
398 1.17 christos el->el_chared.c_vcmd.action = NOP;
399 1.1 cgd }
400 1.1 cgd
401 1.1 cgd
402 1.1 cgd #ifdef notdef
403 1.1 cgd /* ce__endword():
404 1.1 cgd * Go to the end of this word according to emacs
405 1.1 cgd */
406 1.28 christos protected Char *
407 1.28 christos ce__endword(Char *p, Char *high, int n)
408 1.9 lukem {
409 1.9 lukem p++;
410 1.1 cgd
411 1.9 lukem while (n--) {
412 1.28 christos while ((p < high) && Isspace(*p))
413 1.9 lukem p++;
414 1.28 christos while ((p < high) && !Isspace(*p))
415 1.9 lukem p++;
416 1.9 lukem }
417 1.9 lukem
418 1.9 lukem p--;
419 1.9 lukem return (p);
420 1.1 cgd }
421 1.1 cgd #endif
422 1.1 cgd
423 1.1 cgd
424 1.1 cgd /* cv__endword():
425 1.1 cgd * Go to the end of this word according to vi
426 1.1 cgd */
427 1.28 christos protected Char *
428 1.28 christos cv__endword(Char *p, Char *high, int n, int (*wtest)(Int))
429 1.9 lukem {
430 1.16 christos int test;
431 1.16 christos
432 1.9 lukem p++;
433 1.1 cgd
434 1.9 lukem while (n--) {
435 1.28 christos while ((p < high) && Isspace(*p))
436 1.9 lukem p++;
437 1.9 lukem
438 1.28 christos test = (*wtest)(*p);
439 1.28 christos while ((p < high) && (*wtest)(*p) == test)
440 1.16 christos p++;
441 1.9 lukem }
442 1.9 lukem p--;
443 1.9 lukem return (p);
444 1.1 cgd }
445 1.1 cgd
446 1.1 cgd /* ch_init():
447 1.1 cgd * Initialize the character editor
448 1.1 cgd */
449 1.1 cgd protected int
450 1.9 lukem ch_init(EditLine *el)
451 1.1 cgd {
452 1.24 christos c_macro_t *ma = &el->el_chared.c_macro;
453 1.24 christos
454 1.28 christos el->el_line.buffer = el_malloc(EL_BUFSIZ *
455 1.28 christos sizeof(*el->el_line.buffer));
456 1.11 christos if (el->el_line.buffer == NULL)
457 1.11 christos return (-1);
458 1.11 christos
459 1.28 christos (void) memset(el->el_line.buffer, 0, EL_BUFSIZ *
460 1.28 christos sizeof(*el->el_line.buffer));
461 1.9 lukem el->el_line.cursor = el->el_line.buffer;
462 1.9 lukem el->el_line.lastchar = el->el_line.buffer;
463 1.16 christos el->el_line.limit = &el->el_line.buffer[EL_BUFSIZ - EL_LEAVE];
464 1.9 lukem
465 1.28 christos el->el_chared.c_undo.buf = el_malloc(EL_BUFSIZ *
466 1.28 christos sizeof(*el->el_chared.c_undo.buf));
467 1.11 christos if (el->el_chared.c_undo.buf == NULL)
468 1.11 christos return (-1);
469 1.28 christos (void) memset(el->el_chared.c_undo.buf, 0, EL_BUFSIZ *
470 1.28 christos sizeof(*el->el_chared.c_undo.buf));
471 1.16 christos el->el_chared.c_undo.len = -1;
472 1.16 christos el->el_chared.c_undo.cursor = 0;
473 1.28 christos el->el_chared.c_redo.buf = el_malloc(EL_BUFSIZ *
474 1.28 christos sizeof(*el->el_chared.c_redo.buf));
475 1.17 christos if (el->el_chared.c_redo.buf == NULL)
476 1.16 christos return (-1);
477 1.17 christos el->el_chared.c_redo.pos = el->el_chared.c_redo.buf;
478 1.17 christos el->el_chared.c_redo.lim = el->el_chared.c_redo.buf + EL_BUFSIZ;
479 1.17 christos el->el_chared.c_redo.cmd = ED_UNASSIGNED;
480 1.9 lukem
481 1.9 lukem el->el_chared.c_vcmd.action = NOP;
482 1.9 lukem el->el_chared.c_vcmd.pos = el->el_line.buffer;
483 1.9 lukem
484 1.28 christos el->el_chared.c_kill.buf = el_malloc(EL_BUFSIZ *
485 1.28 christos sizeof(*el->el_chared.c_kill.buf));
486 1.11 christos if (el->el_chared.c_kill.buf == NULL)
487 1.11 christos return (-1);
488 1.28 christos (void) memset(el->el_chared.c_kill.buf, 0, EL_BUFSIZ *
489 1.28 christos sizeof(*el->el_chared.c_kill.buf));
490 1.9 lukem el->el_chared.c_kill.mark = el->el_line.buffer;
491 1.9 lukem el->el_chared.c_kill.last = el->el_chared.c_kill.buf;
492 1.29 christos el->el_chared.c_resizefun = NULL;
493 1.29 christos el->el_chared.c_resizearg = NULL;
494 1.9 lukem
495 1.9 lukem el->el_map.current = el->el_map.key;
496 1.9 lukem
497 1.9 lukem el->el_state.inputmode = MODE_INSERT; /* XXX: save a default */
498 1.9 lukem el->el_state.doingarg = 0;
499 1.9 lukem el->el_state.metanext = 0;
500 1.9 lukem el->el_state.argument = 1;
501 1.9 lukem el->el_state.lastcmd = ED_UNASSIGNED;
502 1.9 lukem
503 1.24 christos ma->level = -1;
504 1.24 christos ma->offset = 0;
505 1.28 christos ma->macro = el_malloc(EL_MAXMACRO * sizeof(*ma->macro));
506 1.24 christos if (ma->macro == NULL)
507 1.11 christos return (-1);
508 1.9 lukem return (0);
509 1.1 cgd }
510 1.1 cgd
511 1.1 cgd /* ch_reset():
512 1.1 cgd * Reset the character editor
513 1.1 cgd */
514 1.1 cgd protected void
515 1.24 christos ch_reset(EditLine *el, int mclear)
516 1.1 cgd {
517 1.9 lukem el->el_line.cursor = el->el_line.buffer;
518 1.9 lukem el->el_line.lastchar = el->el_line.buffer;
519 1.1 cgd
520 1.16 christos el->el_chared.c_undo.len = -1;
521 1.16 christos el->el_chared.c_undo.cursor = 0;
522 1.1 cgd
523 1.9 lukem el->el_chared.c_vcmd.action = NOP;
524 1.9 lukem el->el_chared.c_vcmd.pos = el->el_line.buffer;
525 1.1 cgd
526 1.9 lukem el->el_chared.c_kill.mark = el->el_line.buffer;
527 1.1 cgd
528 1.9 lukem el->el_map.current = el->el_map.key;
529 1.1 cgd
530 1.9 lukem el->el_state.inputmode = MODE_INSERT; /* XXX: save a default */
531 1.9 lukem el->el_state.doingarg = 0;
532 1.9 lukem el->el_state.metanext = 0;
533 1.9 lukem el->el_state.argument = 1;
534 1.9 lukem el->el_state.lastcmd = ED_UNASSIGNED;
535 1.1 cgd
536 1.25 christos el->el_history.eventno = 0;
537 1.25 christos
538 1.24 christos if (mclear)
539 1.24 christos ch__clearmacro(el);
540 1.24 christos }
541 1.1 cgd
542 1.24 christos private void
543 1.27 christos ch__clearmacro(EditLine *el)
544 1.24 christos {
545 1.24 christos c_macro_t *ma = &el->el_chared.c_macro;
546 1.24 christos while (ma->level >= 0)
547 1.24 christos el_free((ptr_t)ma->macro[ma->level--]);
548 1.1 cgd }
549 1.1 cgd
550 1.12 jdolecek /* ch_enlargebufs():
551 1.12 jdolecek * Enlarge line buffer to be able to hold twice as much characters.
552 1.12 jdolecek * Returns 1 if successful, 0 if not.
553 1.12 jdolecek */
554 1.12 jdolecek protected int
555 1.27 christos ch_enlargebufs(EditLine *el, size_t addlen)
556 1.12 jdolecek {
557 1.13 lukem size_t sz, newsz;
558 1.28 christos Char *newbuffer, *oldbuf, *oldkbuf;
559 1.12 jdolecek
560 1.13 lukem sz = el->el_line.limit - el->el_line.buffer + EL_LEAVE;
561 1.13 lukem newsz = sz * 2;
562 1.13 lukem /*
563 1.13 lukem * If newly required length is longer than current buffer, we need
564 1.13 lukem * to make the buffer big enough to hold both old and new stuff.
565 1.13 lukem */
566 1.13 lukem if (addlen > sz) {
567 1.13 lukem while(newsz - sz < addlen)
568 1.13 lukem newsz *= 2;
569 1.13 lukem }
570 1.13 lukem
571 1.13 lukem /*
572 1.13 lukem * Reallocate line buffer.
573 1.13 lukem */
574 1.28 christos newbuffer = el_realloc(el->el_line.buffer, newsz * sizeof(*newbuffer));
575 1.13 lukem if (!newbuffer)
576 1.13 lukem return 0;
577 1.13 lukem
578 1.13 lukem /* zero the newly added memory, leave old data in */
579 1.28 christos (void) memset(&newbuffer[sz], 0, (newsz - sz) * sizeof(*newbuffer));
580 1.13 lukem
581 1.13 lukem oldbuf = el->el_line.buffer;
582 1.13 lukem
583 1.13 lukem el->el_line.buffer = newbuffer;
584 1.13 lukem el->el_line.cursor = newbuffer + (el->el_line.cursor - oldbuf);
585 1.13 lukem el->el_line.lastchar = newbuffer + (el->el_line.lastchar - oldbuf);
586 1.16 christos /* don't set new size until all buffers are enlarged */
587 1.16 christos el->el_line.limit = &newbuffer[sz - EL_LEAVE];
588 1.13 lukem
589 1.13 lukem /*
590 1.13 lukem * Reallocate kill buffer.
591 1.13 lukem */
592 1.28 christos newbuffer = el_realloc(el->el_chared.c_kill.buf, newsz * sizeof(*newbuffer));
593 1.13 lukem if (!newbuffer)
594 1.13 lukem return 0;
595 1.12 jdolecek
596 1.13 lukem /* zero the newly added memory, leave old data in */
597 1.28 christos (void) memset(&newbuffer[sz], 0, (newsz - sz) * sizeof(*newbuffer));
598 1.12 jdolecek
599 1.13 lukem oldkbuf = el->el_chared.c_kill.buf;
600 1.12 jdolecek
601 1.13 lukem el->el_chared.c_kill.buf = newbuffer;
602 1.13 lukem el->el_chared.c_kill.last = newbuffer +
603 1.12 jdolecek (el->el_chared.c_kill.last - oldkbuf);
604 1.13 lukem el->el_chared.c_kill.mark = el->el_line.buffer +
605 1.12 jdolecek (el->el_chared.c_kill.mark - oldbuf);
606 1.12 jdolecek
607 1.13 lukem /*
608 1.13 lukem * Reallocate undo buffer.
609 1.13 lukem */
610 1.28 christos newbuffer = el_realloc(el->el_chared.c_undo.buf,
611 1.28 christos newsz * sizeof(*newbuffer));
612 1.13 lukem if (!newbuffer)
613 1.13 lukem return 0;
614 1.13 lukem
615 1.13 lukem /* zero the newly added memory, leave old data in */
616 1.28 christos (void) memset(&newbuffer[sz], 0, (newsz - sz) * sizeof(*newbuffer));
617 1.16 christos el->el_chared.c_undo.buf = newbuffer;
618 1.13 lukem
619 1.28 christos newbuffer = el_realloc(el->el_chared.c_redo.buf,
620 1.28 christos newsz * sizeof(*newbuffer));
621 1.16 christos if (!newbuffer)
622 1.16 christos return 0;
623 1.17 christos el->el_chared.c_redo.pos = newbuffer +
624 1.17 christos (el->el_chared.c_redo.pos - el->el_chared.c_redo.buf);
625 1.17 christos el->el_chared.c_redo.lim = newbuffer +
626 1.17 christos (el->el_chared.c_redo.lim - el->el_chared.c_redo.buf);
627 1.17 christos el->el_chared.c_redo.buf = newbuffer;
628 1.13 lukem
629 1.13 lukem if (!hist_enlargebuf(el, sz, newsz))
630 1.13 lukem return 0;
631 1.12 jdolecek
632 1.16 christos /* Safe to set enlarged buffer size */
633 1.21 christos el->el_line.limit = &el->el_line.buffer[newsz - EL_LEAVE];
634 1.29 christos if (el->el_chared.c_resizefun)
635 1.29 christos (*el->el_chared.c_resizefun)(el, el->el_chared.c_resizearg);
636 1.13 lukem return 1;
637 1.12 jdolecek }
638 1.1 cgd
639 1.1 cgd /* ch_end():
640 1.1 cgd * Free the data structures used by the editor
641 1.1 cgd */
642 1.1 cgd protected void
643 1.9 lukem ch_end(EditLine *el)
644 1.1 cgd {
645 1.9 lukem el_free((ptr_t) el->el_line.buffer);
646 1.9 lukem el->el_line.buffer = NULL;
647 1.9 lukem el->el_line.limit = NULL;
648 1.9 lukem el_free((ptr_t) el->el_chared.c_undo.buf);
649 1.9 lukem el->el_chared.c_undo.buf = NULL;
650 1.17 christos el_free((ptr_t) el->el_chared.c_redo.buf);
651 1.17 christos el->el_chared.c_redo.buf = NULL;
652 1.17 christos el->el_chared.c_redo.pos = NULL;
653 1.17 christos el->el_chared.c_redo.lim = NULL;
654 1.17 christos el->el_chared.c_redo.cmd = ED_UNASSIGNED;
655 1.9 lukem el_free((ptr_t) el->el_chared.c_kill.buf);
656 1.9 lukem el->el_chared.c_kill.buf = NULL;
657 1.24 christos ch_reset(el, 1);
658 1.9 lukem el_free((ptr_t) el->el_chared.c_macro.macro);
659 1.9 lukem el->el_chared.c_macro.macro = NULL;
660 1.1 cgd }
661 1.1 cgd
662 1.1 cgd
663 1.1 cgd /* el_insertstr():
664 1.1 cgd * Insert string at cursorI
665 1.1 cgd */
666 1.1 cgd public int
667 1.28 christos FUN(el,insertstr)(EditLine *el, const Char *s)
668 1.9 lukem {
669 1.14 christos size_t len;
670 1.9 lukem
671 1.28 christos if ((len = Strlen(s)) == 0)
672 1.9 lukem return (-1);
673 1.12 jdolecek if (el->el_line.lastchar + len >= el->el_line.limit) {
674 1.12 jdolecek if (!ch_enlargebufs(el, len))
675 1.12 jdolecek return (-1);
676 1.12 jdolecek }
677 1.9 lukem
678 1.14 christos c_insert(el, (int)len);
679 1.9 lukem while (*s)
680 1.9 lukem *el->el_line.cursor++ = *s++;
681 1.9 lukem return (0);
682 1.1 cgd }
683 1.1 cgd
684 1.1 cgd
685 1.1 cgd /* el_deletestr():
686 1.1 cgd * Delete num characters before the cursor
687 1.1 cgd */
688 1.1 cgd public void
689 1.9 lukem el_deletestr(EditLine *el, int n)
690 1.9 lukem {
691 1.9 lukem if (n <= 0)
692 1.9 lukem return;
693 1.9 lukem
694 1.9 lukem if (el->el_line.cursor < &el->el_line.buffer[n])
695 1.9 lukem return;
696 1.9 lukem
697 1.9 lukem c_delbefore(el, n); /* delete before dot */
698 1.9 lukem el->el_line.cursor -= n;
699 1.9 lukem if (el->el_line.cursor < el->el_line.buffer)
700 1.9 lukem el->el_line.cursor = el->el_line.buffer;
701 1.1 cgd }
702 1.1 cgd
703 1.1 cgd /* c_gets():
704 1.1 cgd * Get a string
705 1.1 cgd */
706 1.1 cgd protected int
707 1.28 christos c_gets(EditLine *el, Char *buf, const Char *prompt)
708 1.9 lukem {
709 1.28 christos Char ch;
710 1.27 christos ssize_t len;
711 1.28 christos Char *cp = el->el_line.buffer;
712 1.18 christos
713 1.18 christos if (prompt) {
714 1.28 christos len = Strlen(prompt);
715 1.28 christos (void)memcpy(cp, prompt, len * sizeof(*cp));
716 1.18 christos cp += len;
717 1.18 christos }
718 1.18 christos len = 0;
719 1.18 christos
720 1.18 christos for (;;) {
721 1.18 christos el->el_line.cursor = cp;
722 1.18 christos *cp = ' ';
723 1.18 christos el->el_line.lastchar = cp + 1;
724 1.18 christos re_refresh(el);
725 1.18 christos
726 1.28 christos if (FUN(el,getc)(el, &ch) != 1) {
727 1.18 christos ed_end_of_file(el, 0);
728 1.18 christos len = -1;
729 1.18 christos break;
730 1.18 christos }
731 1.1 cgd
732 1.9 lukem switch (ch) {
733 1.18 christos
734 1.9 lukem case 0010: /* Delete and backspace */
735 1.9 lukem case 0177:
736 1.27 christos if (len == 0) {
737 1.18 christos len = -1;
738 1.18 christos break;
739 1.9 lukem }
740 1.18 christos cp--;
741 1.18 christos continue;
742 1.9 lukem
743 1.9 lukem case 0033: /* ESC */
744 1.9 lukem case '\r': /* Newline */
745 1.9 lukem case '\n':
746 1.18 christos buf[len] = ch;
747 1.9 lukem break;
748 1.9 lukem
749 1.9 lukem default:
750 1.18 christos if (len >= EL_BUFSIZ - 16)
751 1.30 christos terminal_beep(el);
752 1.9 lukem else {
753 1.9 lukem buf[len++] = ch;
754 1.18 christos *cp++ = ch;
755 1.9 lukem }
756 1.18 christos continue;
757 1.9 lukem }
758 1.18 christos break;
759 1.9 lukem }
760 1.18 christos
761 1.18 christos el->el_line.buffer[0] = '\0';
762 1.18 christos el->el_line.lastchar = el->el_line.buffer;
763 1.18 christos el->el_line.cursor = el->el_line.buffer;
764 1.27 christos return (int)len;
765 1.1 cgd }
766 1.1 cgd
767 1.1 cgd
768 1.1 cgd /* c_hpos():
769 1.1 cgd * Return the current horizontal position of the cursor
770 1.1 cgd */
771 1.1 cgd protected int
772 1.9 lukem c_hpos(EditLine *el)
773 1.1 cgd {
774 1.28 christos Char *ptr;
775 1.1 cgd
776 1.9 lukem /*
777 1.9 lukem * Find how many characters till the beginning of this line.
778 1.9 lukem */
779 1.9 lukem if (el->el_line.cursor == el->el_line.buffer)
780 1.9 lukem return (0);
781 1.9 lukem else {
782 1.9 lukem for (ptr = el->el_line.cursor - 1;
783 1.9 lukem ptr >= el->el_line.buffer && *ptr != '\n';
784 1.9 lukem ptr--)
785 1.9 lukem continue;
786 1.27 christos return (int)(el->el_line.cursor - ptr - 1);
787 1.9 lukem }
788 1.1 cgd }
789 1.29 christos
790 1.29 christos protected int
791 1.29 christos ch_resizefun(EditLine *el, el_zfunc_t f, void *a)
792 1.29 christos {
793 1.29 christos el->el_chared.c_resizefun = f;
794 1.29 christos el->el_chared.c_resizearg = a;
795 1.29 christos return 0;
796 1.29 christos }
797