1 /* $NetBSD: v_search.c,v 1.1.1.2 2008/05/18 14:31:44 aymeric Exp $ */
4 * Copyright (c) 1992, 1993, 1994
5 * The Regents of the University of California. All rights reserved.
6 * Copyright (c) 1992, 1993, 1994, 1995, 1996
7 * Keith Bostic. All rights reserved.
9 * See the LICENSE file for redistribution information.
15 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";
18 #include <sys/types.h>
19 #include <sys/queue.h>
22 #include <bitstring.h>
30 #include "../common/common.h"
32 #include "../ipc/ip.h"
34 static int v_exaddr
__P((SCR
*, VICMD
*, dir_t
));
35 static int v_search
__P((SCR
*, VICMD
*, CHAR_T
*, size_t, u_int
, dir_t
));
38 * v_srch -- [count]?RE[? offset]
39 * Ex address search backward.
41 * PUBLIC: int v_searchb __P((SCR *, VICMD *));
44 v_searchb(SCR
*sp
, VICMD
*vp
)
46 return (v_exaddr(sp
, vp
, BACKWARD
));
50 * v_searchf -- [count]/RE[/ offset]
51 * Ex address search forward.
53 * PUBLIC: int v_searchf __P((SCR *, VICMD *));
56 v_searchf(SCR
*sp
, VICMD
*vp
)
58 return (v_exaddr(sp
, vp
, FORWARD
));
63 * Do a vi search (which is really an ex address).
66 v_exaddr(SCR
*sp
, VICMD
*vp
, dir_t dir
)
68 static EXCMDLIST fake
= { .name
= L("search") };
73 size_t len
, s_cno
, tlen
;
82 * If using the search command as a motion, any addressing components
83 * are lost, i.e. y/ptrn/+2, when repeated, is the same as y/ptrn/.
85 if (F_ISSET(vp
, VC_ISDOT
))
86 return (v_search(sp
, vp
,
87 NULL
, 0, SEARCH_PARSE
| SEARCH_MSG
| SEARCH_SET
, dir
));
89 /* Get the search pattern. */
90 if (v_tcmd(sp
, vp
, dir
== BACKWARD
? CH_BSEARCH
: CH_FSEARCH
,
91 TXT_BS
| TXT_CR
| TXT_ESCAPE
| TXT_PROMPT
|
92 (O_ISSET(sp
, O_SEARCHINCR
) ? TXT_SEARCHINCR
: 0)))
95 tp
= sp
->tiq
.cqh_first
;
97 /* If the user backspaced over the prompt, do nothing. */
98 if (tp
->term
== TERM_BS
)
102 * If the user was doing an incremental search, then we've already
103 * updated the cursor and moved to the right location. Return the
104 * correct values, we're done.
106 if (tp
->term
== TERM_SEARCH
) {
107 vp
->m_stop
.lno
= sp
->lno
;
108 vp
->m_stop
.cno
= sp
->cno
;
110 return (v_correct(sp
, vp
, 0));
111 vp
->m_final
= vp
->m_stop
;
116 * If the user entered <escape> or <carriage-return>, the length is
117 * 1 and the right thing will happen, i.e. the prompt will be used
118 * as a command character.
120 * Build a fake ex command structure.
123 wp
->excmd
.cp
= tp
->lb
;
124 wp
->excmd
.clen
= tp
->len
;
125 F_INIT(&wp
->excmd
, E_VISEARCH
);
129 * Warn if the search wraps. This is a pretty special case, but it's
130 * nice feature that wasn't in the original implementations of ex/vi.
131 * (It was added at some point to System V's version.) This message
132 * is only displayed if there are no keys in the queue. The problem is
133 * the command is going to succeed, and the message is informational,
134 * not an error. If a macro displays it repeatedly, e.g., the pattern
135 * only occurs once in the file and wrapscan is set, you lose big. For
136 * example, if the macro does something like:
138 * :map K /pattern/^MjK
140 * Each search will display the message, but the following "/pattern/"
141 * will immediately overwrite it, with strange results. The System V
142 * vi displays the "wrapped" message multiple times, but because it's
143 * overwritten each time, it's not as noticeable. As we don't discard
144 * messages, it's a real problem for us.
146 if (!KEYS_WAITING(sp
))
147 F_SET(&wp
->excmd
, E_SEARCH_WMSG
);
149 /* Save the current line/column. */
155 * Historically, vi / and ? commands were full-blown ex addresses,
156 * including ';' delimiters, trailing <blank>'s, multiple search
157 * strings (separated by semi-colons) and, finally, full-blown z
158 * commands after the / and ? search strings. (If the search was
159 * being used as a motion, the trailing z command was ignored.
160 * Also, we do some argument checking on the z command, to be sure
161 * that it's not some other random command.) For multiple search
162 * strings, leading <blank>'s at the second and subsequent strings
163 * were eaten as well. This has some (unintended?) side-effects:
164 * the command /ptrn/;3 is legal and results in moving to line 3.
165 * I suppose you could use it to optionally move to line 3...
168 * Historically, if any part of the search command failed, the cursor
169 * remained unmodified (even if ; was used). We have to play games
170 * because the underlying ex parser thinks we're modifying the cursor
171 * as we go, but I think we're compatible with historic practice.
174 * Historically, the command "/STRING/; " failed, apparently it
175 * confused the parser. We're not that compatible.
178 if (ex_range(sp
, cmdp
, &err
))
182 * Remember where any remaining command information is, and clean
183 * up the fake ex command.
192 /* Copy out the new cursor position and make sure it's okay. */
193 switch (cmdp
->addrcnt
) {
195 vp
->m_stop
= cmdp
->addr1
;
198 vp
->m_stop
= cmdp
->addr2
;
201 if (!db_exist(sp
, vp
->m_stop
.lno
)) {
202 ex_badaddr(sp
, &fake
,
203 vp
->m_stop
.lno
== 0 ? A_ZERO
: A_EOF
, NUM_OK
);
209 * Historic practice is that a trailing 'z' was ignored if it was a
210 * motion command. Should probably be an error, but not worth the
214 return (v_correct(sp
, vp
, F_ISSET(cmdp
, E_DELTA
)));
218 * Historically, if it wasn't a motion command, a delta in the search
219 * pattern turns it into a first nonblank movement.
221 nb
= F_ISSET(cmdp
, E_DELTA
);
223 /* Check for the 'z' command. */
228 /* No blanks, just like the z command. */
229 for (t
= cmd
+ 1, tlen
= len
- 1; tlen
> 0; ++t
, --tlen
)
233 (*t
== '-' || *t
== '.' || *t
== '+' || *t
== '^')) {
242 /* The z command will do the nonblank for us. */
247 v_event_push(sp
, NULL
, L("+"), 1, CH_NOMAP
| CH_QUOTED
))
250 /* Push the user's command. */
251 if (v_event_push(sp
, NULL
, cmd
, len
, CH_NOMAP
| CH_QUOTED
))
254 /* Push line number so get correct z display. */
256 sizeof(buf
), "%lu", (u_long
)vp
->m_stop
.lno
);
257 CHAR2INT(sp
, buf
, tlen
, w
, wlen
);
258 if (v_event_push(sp
, NULL
, w
, wlen
, CH_NOMAP
| CH_QUOTED
))
261 /* Don't refresh until after 'z' happens. */
262 F_SET(VIP(sp
), VIP_S_REFRESH
);
265 /* Non-motion commands move to the end of the range. */
266 vp
->m_final
= vp
->m_stop
;
268 F_CLR(vp
, VM_RCM_MASK
);
269 F_SET(vp
, VM_RCM_SETFNB
);
273 err1
: msgq(sp
, M_ERR
,
274 "188|Characters after search string, line offset and/or z command");
275 err2
: vp
->m_final
.lno
= s_lno
;
276 vp
->m_final
.cno
= s_cno
;
282 * Reverse last search.
284 * PUBLIC: int v_searchN __P((SCR *, VICMD *));
287 v_searchN(SCR
*sp
, VICMD
*vp
)
291 switch (sp
->searchdir
) {
302 return (v_search(sp
, vp
, NULL
, 0, SEARCH_PARSE
, dir
));
307 * Repeat last search.
309 * PUBLIC: int v_searchn __P((SCR *, VICMD *));
312 v_searchn(SCR
*sp
, VICMD
*vp
)
314 return (v_search(sp
, vp
, NULL
, 0, SEARCH_PARSE
, sp
->searchdir
));
318 * v_searchw -- [count]^A
319 * Search for the word under the cursor.
321 * PUBLIC: int v_searchw __P((SCR *, VICMD *));
324 v_searchw(SCR
*sp
, VICMD
*vp
)
330 len
= VIP(sp
)->klen
+ RE_WSTART_LEN
+ RE_WSTOP_LEN
;
331 GET_SPACE_RETW(sp
, bp
, blen
, len
);
332 MEMCPY(bp
, RE_WSTART
, RE_WSTART_LEN
);
333 p
= bp
+ RE_WSTART_LEN
;
334 MEMCPY(p
, VIP(sp
)->keyw
, VIP(sp
)->klen
);
336 MEMCPY(p
, RE_WSTOP
, RE_WSTOP_LEN
);
338 rval
= v_search(sp
, vp
, bp
, len
, SEARCH_SET
, FORWARD
);
340 FREE_SPACEW(sp
, bp
, blen
);
345 * v_esearch -- <dialog box>
346 * Search command from the screen.
348 * PUBLIC: int v_esearch __P((SCR *, VICMD *));
351 v_esearch(SCR
*sp
, VICMD
*vp
)
359 LF_INIT(SEARCH_NOOPT
);
360 if (FL_ISSET(vp
->ev
.e_flags
, VI_SEARCH_EXT
))
361 LF_SET(SEARCH_EXTEND
);
362 if (FL_ISSET(vp
->ev
.e_flags
, VI_SEARCH_IC
))
364 if (FL_ISSET(vp
->ev
.e_flags
, VI_SEARCH_ICL
))
366 if (FL_ISSET(vp
->ev
.e_flags
, VI_SEARCH_INCR
))
368 if (FL_ISSET(vp
->ev
.e_flags
, VI_SEARCH_LIT
))
369 LF_SET(SEARCH_LITERAL
);
370 if (FL_ISSET(vp
->ev
.e_flags
, VI_SEARCH_WR
))
372 return (v_search(sp
, vp
, vp
->ev
.e_csp
, vp
->ev
.e_len
, flags
,
373 FL_ISSET(vp
->ev
.e_flags
, VI_SEARCH_REV
) ? BACKWARD
: FORWARD
));
378 * The search commands.
381 v_search(SCR
*sp
, VICMD
*vp
, CHAR_T
*ptrn
, size_t plen
, u_int flags
, dir_t dir
)
383 /* Display messages. */
386 /* If it's a motion search, offset past end-of-line is okay. */
392 * Warn if the search wraps. See the comment above, in v_exaddr().
394 if (!KEYS_WAITING(sp
))
400 &vp
->m_start
, &vp
->m_stop
, ptrn
, plen
, NULL
, flags
))
405 &vp
->m_start
, &vp
->m_stop
, ptrn
, plen
, NULL
, flags
))
409 msgq(sp
, M_ERR
, "189|No previous search pattern");
415 /* Correct motion commands, otherwise, simply move to the location. */
417 if (v_correct(sp
, vp
, 0))
420 vp
->m_final
= vp
->m_stop
;
426 * Handle command with a search as the motion.
429 * Historically, commands didn't affect the line searched to/from if the
430 * motion command was a search and the final position was the start/end
431 * of the line. There were some special cases and vi was not consistent;
432 * it was fairly easy to confuse it. For example, given the two lines:
437 * placing the cursor on the 'A' and doing y?$ would so confuse it that 'h'
438 * 'k' and put would no longer work correctly. In any case, we try to do
439 * the right thing, but it's not going to exactly match historic practice.
441 * PUBLIC: int v_correct __P((SCR *, VICMD *, int));
444 v_correct(SCR
*sp
, VICMD
*vp
, int isdelta
)
452 * We may have wrapped if wrapscan was set, and we may have returned
453 * to the position where the cursor started. Historic vi didn't cope
454 * with this well. Yank wouldn't beep, but the first put after the
455 * yank would move the cursor right one column (without adding any
456 * text) and the second would put a copy of the current line. The
457 * change and delete commands would beep, but would leave the cursor
458 * on the colon command line. I believe that there are macros that
459 * depend on delete, at least, failing. For now, commands that use
460 * search as a motion component fail when the search returns to the
461 * original cursor position.
463 if (vp
->m_start
.lno
== vp
->m_stop
.lno
&&
464 vp
->m_start
.cno
== vp
->m_stop
.cno
) {
465 msgq(sp
, M_BERR
, "190|Search wrapped to original position");
471 * Searches become line mode operations if there was a delta specified
472 * to the search pattern.
478 * If the motion is in the reverse direction, switch the start and
479 * stop MARK's so that it's in a forward direction. (There's no
480 * reason for this other than to make the tests below easier. The
481 * code in vi.c:vi() would have done the switch.) Both forward
482 * and backward motions can happen for any kind of search command
483 * because of the wrapscan option.
485 if (vp
->m_start
.lno
> vp
->m_stop
.lno
||
486 (vp
->m_start
.lno
== vp
->m_stop
.lno
&&
487 vp
->m_start
.cno
> vp
->m_stop
.cno
)) {
489 vp
->m_start
= vp
->m_stop
;
497 * Delete and yank commands move to the end of the range.
501 * Delete and yank commands don't move. Ignore others.
503 vp
->m_final
= vp
->m_start
;
507 * Delta'd searches don't correct based on column positions.
514 * Backward searches starting at column 0, and forward searches ending
515 * at column 0 are corrected to the last column of the previous line.
516 * Otherwise, adjust the starting/ending point to the character before
517 * the current one (this is safe because we know the search had to move
520 * Searches become line mode operations if they start at the first
521 * nonblank and end at column 0 of another line.
523 if (vp
->m_start
.lno
< vp
->m_stop
.lno
&& vp
->m_stop
.cno
== 0) {
524 if (db_get(sp
, --vp
->m_stop
.lno
, DBG_FATAL
, NULL
, &len
))
526 vp
->m_stop
.cno
= len
? len
- 1 : 0;
528 if (nonblank(sp
, vp
->m_start
.lno
, &len
))
530 if (vp
->m_start
.cno
<= len
)