1 /* $NetBSD: v_search.c,v 1.6 2014/01/26 21:43:45 christos Exp $ */
3 * Copyright (c) 1992, 1993, 1994
4 * The Regents of the University of California. All rights reserved.
5 * Copyright (c) 1992, 1993, 1994, 1995, 1996
6 * Keith Bostic. All rights reserved.
8 * See the LICENSE file for redistribution information.
13 #include <sys/cdefs.h>
16 static const char sccsid
[] = "Id: v_search.c,v 10.30 2001/09/11 20:52:46 skimo Exp (Berkeley) Date: 2001/09/11 20:52:46 ";
19 __RCSID("$NetBSD: v_search.c,v 1.6 2014/01/26 21:43:45 christos Exp $");
22 #include <sys/types.h>
23 #include <sys/queue.h>
26 #include <bitstring.h>
34 #include "../common/common.h"
36 #include "../ipc/ip.h"
38 static int v_exaddr
__P((SCR
*, VICMD
*, dir_t
));
39 static int v_search
__P((SCR
*, VICMD
*, CHAR_T
*, size_t, u_int
, dir_t
));
42 * v_srch -- [count]?RE[? offset]
43 * Ex address search backward.
45 * PUBLIC: int v_searchb __P((SCR *, VICMD *));
48 v_searchb(SCR
*sp
, VICMD
*vp
)
50 return (v_exaddr(sp
, vp
, BACKWARD
));
54 * v_searchf -- [count]/RE[/ offset]
55 * Ex address search forward.
57 * PUBLIC: int v_searchf __P((SCR *, VICMD *));
60 v_searchf(SCR
*sp
, VICMD
*vp
)
62 return (v_exaddr(sp
, vp
, FORWARD
));
67 * Do a vi search (which is really an ex address).
70 v_exaddr(SCR
*sp
, VICMD
*vp
, dir_t dir
)
72 static EXCMDLIST fake
= { .name
= L("search") };
77 size_t len
, s_cno
, tlen
;
86 * If using the search command as a motion, any addressing components
87 * are lost, i.e. y/ptrn/+2, when repeated, is the same as y/ptrn/.
89 if (F_ISSET(vp
, VC_ISDOT
))
90 return (v_search(sp
, vp
,
91 NULL
, 0, SEARCH_PARSE
| SEARCH_MSG
| SEARCH_SET
, dir
));
93 /* Get the search pattern. */
94 if (v_tcmd(sp
, vp
, dir
== BACKWARD
? CH_BSEARCH
: CH_FSEARCH
,
95 TXT_BS
| TXT_CR
| TXT_ESCAPE
| TXT_PROMPT
|
96 (O_ISSET(sp
, O_SEARCHINCR
) ? TXT_SEARCHINCR
: 0)))
99 tp
= TAILQ_FIRST(&sp
->tiq
);
101 /* If the user backspaced over the prompt, do nothing. */
102 if (tp
->term
== TERM_BS
)
106 * If the user was doing an incremental search, then we've already
107 * updated the cursor and moved to the right location. Return the
108 * correct values, we're done.
110 if (tp
->term
== TERM_SEARCH
) {
111 vp
->m_stop
.lno
= sp
->lno
;
112 vp
->m_stop
.cno
= sp
->cno
;
114 return (v_correct(sp
, vp
, 0));
115 vp
->m_final
= vp
->m_stop
;
120 * If the user entered <escape> or <carriage-return>, the length is
121 * 1 and the right thing will happen, i.e. the prompt will be used
122 * as a command character.
124 * Build a fake ex command structure.
127 wp
->excmd
.cp
= tp
->lb
;
128 wp
->excmd
.clen
= tp
->len
;
129 F_INIT(&wp
->excmd
, E_VISEARCH
);
133 * Warn if the search wraps. This is a pretty special case, but it's
134 * nice feature that wasn't in the original implementations of ex/vi.
135 * (It was added at some point to System V's version.) This message
136 * is only displayed if there are no keys in the queue. The problem is
137 * the command is going to succeed, and the message is informational,
138 * not an error. If a macro displays it repeatedly, e.g., the pattern
139 * only occurs once in the file and wrapscan is set, you lose big. For
140 * example, if the macro does something like:
142 * :map K /pattern/^MjK
144 * Each search will display the message, but the following "/pattern/"
145 * will immediately overwrite it, with strange results. The System V
146 * vi displays the "wrapped" message multiple times, but because it's
147 * overwritten each time, it's not as noticeable. As we don't discard
148 * messages, it's a real problem for us.
150 if (!KEYS_WAITING(sp
))
151 F_SET(&wp
->excmd
, E_SEARCH_WMSG
);
153 /* Save the current line/column. */
159 * Historically, vi / and ? commands were full-blown ex addresses,
160 * including ';' delimiters, trailing <blank>'s, multiple search
161 * strings (separated by semi-colons) and, finally, full-blown z
162 * commands after the / and ? search strings. (If the search was
163 * being used as a motion, the trailing z command was ignored.
164 * Also, we do some argument checking on the z command, to be sure
165 * that it's not some other random command.) For multiple search
166 * strings, leading <blank>'s at the second and subsequent strings
167 * were eaten as well. This has some (unintended?) side-effects:
168 * the command /ptrn/;3 is legal and results in moving to line 3.
169 * I suppose you could use it to optionally move to line 3...
172 * Historically, if any part of the search command failed, the cursor
173 * remained unmodified (even if ; was used). We have to play games
174 * because the underlying ex parser thinks we're modifying the cursor
175 * as we go, but I think we're compatible with historic practice.
178 * Historically, the command "/STRING/; " failed, apparently it
179 * confused the parser. We're not that compatible.
182 if (ex_range(sp
, cmdp
, &error
))
186 * Remember where any remaining command information is, and clean
187 * up the fake ex command.
196 /* Copy out the new cursor position and make sure it's okay. */
197 switch (cmdp
->addrcnt
) {
199 vp
->m_stop
= cmdp
->addr1
;
202 vp
->m_stop
= cmdp
->addr2
;
205 if (!db_exist(sp
, vp
->m_stop
.lno
)) {
206 ex_badaddr(sp
, &fake
,
207 vp
->m_stop
.lno
== 0 ? A_ZERO
: A_EOF
, NUM_OK
);
213 * Historic practice is that a trailing 'z' was ignored if it was a
214 * motion command. Should probably be an error, but not worth the
218 return (v_correct(sp
, vp
, F_ISSET(cmdp
, E_DELTA
)));
222 * Historically, if it wasn't a motion command, a delta in the search
223 * pattern turns it into a first nonblank movement.
225 nb
= F_ISSET(cmdp
, E_DELTA
);
227 /* Check for the 'z' command. */
232 /* No blanks, just like the z command. */
233 for (t
= cmd
+ 1, tlen
= len
- 1; tlen
> 0; ++t
, --tlen
)
234 if (!ISDIGIT((UCHAR_T
)*t
))
237 (*t
== '-' || *t
== '.' || *t
== '+' || *t
== '^')) {
246 /* The z command will do the nonblank for us. */
251 v_event_push(sp
, NULL
, L("+"), 1, CH_NOMAP
| CH_QUOTED
))
254 /* Push the user's command. */
255 if (v_event_push(sp
, NULL
, cmd
, len
, CH_NOMAP
| CH_QUOTED
))
258 /* Push line number so get correct z display. */
260 sizeof(buf
), "%lu", (u_long
)vp
->m_stop
.lno
);
261 CHAR2INT(sp
, buf
, tlen
, w
, wlen
);
262 if (v_event_push(sp
, NULL
, w
, wlen
, CH_NOMAP
| CH_QUOTED
))
265 /* Don't refresh until after 'z' happens. */
266 F_SET(VIP(sp
), VIP_S_REFRESH
);
269 /* Non-motion commands move to the end of the range. */
270 vp
->m_final
= vp
->m_stop
;
272 F_CLR(vp
, VM_RCM_MASK
);
273 F_SET(vp
, VM_RCM_SETFNB
);
277 err1
: msgq(sp
, M_ERR
,
278 "188|Characters after search string, line offset and/or z command");
279 err2
: vp
->m_final
.lno
= s_lno
;
280 vp
->m_final
.cno
= s_cno
;
286 * Reverse last search.
288 * PUBLIC: int v_searchN __P((SCR *, VICMD *));
291 v_searchN(SCR
*sp
, VICMD
*vp
)
295 switch (sp
->searchdir
) {
306 return (v_search(sp
, vp
, NULL
, 0, SEARCH_PARSE
, dir
));
311 * Repeat last search.
313 * PUBLIC: int v_searchn __P((SCR *, VICMD *));
316 v_searchn(SCR
*sp
, VICMD
*vp
)
318 return (v_search(sp
, vp
, NULL
, 0, SEARCH_PARSE
, sp
->searchdir
));
323 * Test if the character is special in an extended RE.
326 is_especial(CHAR_T c
)
330 * Right-brace is not an ERE special according to IEEE 1003.1-2001.
331 * Right-parenthesis is a special character (so quoting doesn't hurt),
332 * though it has no special meaning in this context, viz. at the
333 * beginning of the string. So we need not quote it. Then again,
334 * see the BUGS section in regex/re_format.7.
335 * The tilde is vi-specific, of course.
337 return (STRCHR(L(".[\\()*+?{|^$~"), c
) && c
);
341 * Rear delimiter for word search when the keyword ends in
342 * (i.e., consists of) a non-word character. See v_searchw below.
344 #define RE_NWSTOP L("([^[:alnum:]_]|$)")
345 #define RE_NWSTOP_LEN (SIZE(RE_NWSTOP) - 1)
348 * v_searchw -- [count]^A
349 * Search for the word under the cursor.
351 * PUBLIC: int v_searchw __P((SCR *, VICMD *));
354 v_searchw(SCR
*sp
, VICMD
*vp
)
360 len
= VIP(sp
)->klen
+ MAX(RE_WSTART_LEN
, 1)
361 + MAX(RE_WSTOP_LEN
, RE_NWSTOP_LEN
);
363 GET_SPACE_RETW(sp
, bp
, blen
, len
);
366 /* Only the first character can be non-word, see v_curword. */
367 if (inword(VIP(sp
)->keyw
[0]))
368 p
= MEMPCPY(p
, RE_WSTART
, RE_WSTART_LEN
);
369 else if (is_especial(VIP(sp
)->keyw
[0]))
370 p
= MEMPCPY(p
, L("\\"), 1);
372 p
= MEMPCPY(p
, VIP(sp
)->keyw
, VIP(sp
)->klen
);
375 p
= MEMPCPY(p
, RE_WSTOP
, RE_WSTOP_LEN
);
378 * The keyword is a single non-word character.
379 * We want it to stay the same when typing ^A several times
380 * in a row, just the way the other cases behave.
382 p
= MEMPCPY(p
, RE_NWSTOP
, RE_NWSTOP_LEN
);
385 rval
= v_search(sp
, vp
, bp
, len
, SEARCH_SET
| SEARCH_EXTEND
, FORWARD
);
387 FREE_SPACEW(sp
, bp
, blen
);
392 * v_esearch -- <dialog box>
393 * Search command from the screen.
395 * PUBLIC: int v_esearch __P((SCR *, VICMD *));
398 v_esearch(SCR
*sp
, VICMD
*vp
)
402 LF_INIT(SEARCH_NOOPT
);
403 if (FL_ISSET(vp
->ev
.e_flags
, VI_SEARCH_EXT
))
404 LF_SET(SEARCH_EXTEND
);
405 if (FL_ISSET(vp
->ev
.e_flags
, VI_SEARCH_IC
))
407 if (FL_ISSET(vp
->ev
.e_flags
, VI_SEARCH_ICL
))
409 if (FL_ISSET(vp
->ev
.e_flags
, VI_SEARCH_INCR
))
411 if (FL_ISSET(vp
->ev
.e_flags
, VI_SEARCH_LIT
))
412 LF_SET(SEARCH_LITERAL
);
413 if (FL_ISSET(vp
->ev
.e_flags
, VI_SEARCH_WR
))
415 return (v_search(sp
, vp
, vp
->ev
.e_csp
, vp
->ev
.e_len
, flags
,
416 FL_ISSET(vp
->ev
.e_flags
, VI_SEARCH_REV
) ? BACKWARD
: FORWARD
));
421 * The search commands.
424 v_search(SCR
*sp
, VICMD
*vp
, CHAR_T
*ptrn
, size_t plen
, u_int flags
, dir_t dir
)
426 /* Display messages. */
429 /* If it's a motion search, offset past end-of-line is okay. */
435 * Warn if the search wraps. See the comment above, in v_exaddr().
437 if (!KEYS_WAITING(sp
))
443 &vp
->m_start
, &vp
->m_stop
, ptrn
, plen
, NULL
, flags
))
448 &vp
->m_start
, &vp
->m_stop
, ptrn
, plen
, NULL
, flags
))
452 msgq(sp
, M_ERR
, "189|No previous search pattern");
458 /* Correct motion commands, otherwise, simply move to the location. */
460 if (v_correct(sp
, vp
, 0))
463 vp
->m_final
= vp
->m_stop
;
469 * Handle command with a search as the motion.
472 * Historically, commands didn't affect the line searched to/from if the
473 * motion command was a search and the final position was the start/end
474 * of the line. There were some special cases and vi was not consistent;
475 * it was fairly easy to confuse it. For example, given the two lines:
480 * placing the cursor on the 'A' and doing y?$ would so confuse it that 'h'
481 * 'k' and put would no longer work correctly. In any case, we try to do
482 * the right thing, but it's not going to exactly match historic practice.
484 * PUBLIC: int v_correct __P((SCR *, VICMD *, int));
487 v_correct(SCR
*sp
, VICMD
*vp
, int isdelta
)
494 * We may have wrapped if wrapscan was set, and we may have returned
495 * to the position where the cursor started. Historic vi didn't cope
496 * with this well. Yank wouldn't beep, but the first put after the
497 * yank would move the cursor right one column (without adding any
498 * text) and the second would put a copy of the current line. The
499 * change and delete commands would beep, but would leave the cursor
500 * on the colon command line. I believe that there are macros that
501 * depend on delete, at least, failing. For now, commands that use
502 * search as a motion component fail when the search returns to the
503 * original cursor position.
505 if (vp
->m_start
.lno
== vp
->m_stop
.lno
&&
506 vp
->m_start
.cno
== vp
->m_stop
.cno
) {
507 msgq(sp
, M_BERR
, "190|Search wrapped to original position");
513 * Searches become line mode operations if there was a delta specified
514 * to the search pattern.
520 * If the motion is in the reverse direction, switch the start and
521 * stop MARK's so that it's in a forward direction. (There's no
522 * reason for this other than to make the tests below easier. The
523 * code in vi.c:vi() would have done the switch.) Both forward
524 * and backward motions can happen for any kind of search command
525 * because of the wrapscan option.
527 if (vp
->m_start
.lno
> vp
->m_stop
.lno
||
528 (vp
->m_start
.lno
== vp
->m_stop
.lno
&&
529 vp
->m_start
.cno
> vp
->m_stop
.cno
)) {
531 vp
->m_start
= vp
->m_stop
;
537 * Delete and yank commands move to the end of the range.
541 * Delete and yank commands don't move. Ignore others.
543 vp
->m_final
= vp
->m_start
;
547 * Delta'd searches don't correct based on column positions.
554 * Backward searches starting at column 0, and forward searches ending
555 * at column 0 are corrected to the last column of the previous line.
556 * Otherwise, adjust the starting/ending point to the character before
557 * the current one (this is safe because we know the search had to move
560 * Searches become line mode operations if they start at the first
561 * nonblank and end at column 0 of another line.
563 if (vp
->m_start
.lno
< vp
->m_stop
.lno
&& vp
->m_stop
.cno
== 0) {
564 if (db_get(sp
, --vp
->m_stop
.lno
, DBG_FATAL
, NULL
, &len
))
566 vp
->m_stop
.cno
= len
? len
- 1 : 0;
568 if (nonblank(sp
, vp
->m_start
.lno
, &len
))
570 if (vp
->m_start
.cno
<= len
)