search.c 40.8 KB
Newer Older
Chris Allegretta's avatar
Chris Allegretta committed
1
/* $Id$ */
Chris Allegretta's avatar
Chris Allegretta committed
2
3
4
/**************************************************************************
 *   search.c                                                             *
 *                                                                        *
5
6
 *   Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007   *
 *   Free Software Foundation, Inc.                                       *
Chris Allegretta's avatar
Chris Allegretta committed
7
8
 *   This program is free software; you can redistribute it and/or modify *
 *   it under the terms of the GNU General Public License as published by *
9
 *   the Free Software Foundation; either version 3, or (at your option)  *
Chris Allegretta's avatar
Chris Allegretta committed
10
11
 *   any later version.                                                   *
 *                                                                        *
12
13
14
15
 *   This program is distributed in the hope that it will be useful, but  *
 *   WITHOUT ANY WARRANTY; without even the implied warranty of           *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU    *
 *   General Public License for more details.                             *
Chris Allegretta's avatar
Chris Allegretta committed
16
17
18
 *                                                                        *
 *   You should have received a copy of the GNU General Public License    *
 *   along with this program; if not, write to the Free Software          *
19
20
 *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA            *
 *   02110-1301, USA.                                                     *
Chris Allegretta's avatar
Chris Allegretta committed
21
22
23
 *                                                                        *
 **************************************************************************/

24
#include "proto.h"
25

Chris Allegretta's avatar
Chris Allegretta committed
26
27
#include <string.h>
#include <stdio.h>
28
#include <unistd.h>
Chris Allegretta's avatar
Chris Allegretta committed
29
#include <ctype.h>
30
#include <errno.h>
31
#include <time.h>
Chris Allegretta's avatar
Chris Allegretta committed
32

33
34
static bool search_last_line = FALSE;
	/* Have we gone past the last line while searching? */
35
#if !defined(NANO_TINY) && defined(ENABLE_NANORC)
36
37
38
static bool history_changed = FALSE;
	/* Have any of the history lists changed? */
#endif
39
#ifdef HAVE_REGEX_H
40
41
static bool regexp_compiled = FALSE;
	/* Have we compiled any regular expressions? */
42

43
44
/* Compile the regular expression regexp to see if it's valid.  Return
 * TRUE if it is, or FALSE otherwise. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
45
bool regexp_init(const char *regexp)
46
{
47
48
49
50
51
    int rc;

    assert(!regexp_compiled);

    rc = regcomp(&search_regexp, regexp, REG_EXTENDED
52
#ifndef NANO_TINY
53
54
55
	| (ISSET(CASE_SENSITIVE) ? 0 : REG_ICASE)
#endif
	);
56
57
58
59
60
61
62
63

    if (rc != 0) {
	size_t len = regerror(rc, &search_regexp, NULL, 0);
	char *str = charalloc(len);

	regerror(rc, &search_regexp, str, len);
	statusbar(_("Bad regex \"%s\": %s"), regexp, str);
	free(str);
64
65

	return FALSE;
66
    }
67

68
    regexp_compiled = TRUE;
69
70

    return TRUE;
71
72
}

73
74
/* Decompile the compiled regular expression we used in the last
 * search, if any. */
75
void regexp_cleanup(void)
76
{
77
78
    if (regexp_compiled) {
	regexp_compiled = FALSE;
79
80
	regfree(&search_regexp);
    }
81
}
82
#endif
83

84
85
/* Indicate on the statusbar that the string at str was not found by the
 * last search. */
86
87
void not_found_msg(const char *str)
{
88
89
    char *disp;
    int numchars;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
90

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
91
    assert(str != NULL);
92

93
    disp = display_string(str, 0, (COLS / 2) + 1, FALSE);
94
    numchars = actual_x(disp, mbstrnlen(disp, COLS / 2));
95
96

    statusbar(_("\"%.*s%s\" not found"), numchars, disp,
97
	(disp[numchars] == '\0') ? "" : "...");
98
99

    free(disp);
100
101
}

102
103
104
105
106
/* Abort the current search or replace.  Clean up by displaying the main
 * shortcut list, updating the screen if the mark was on before, and
 * decompiling the compiled regular expression we used in the last
 * search, if any. */
void search_replace_abort(void)
107
108
{
    display_main_list();
109
#ifndef NANO_TINY
110
    if (openfile->mark_set)
111
112
	edit_refresh();
#endif
113
#ifdef HAVE_REGEX_H
114
    regexp_cleanup();
115
116
117
#endif
}

118
/* Initialize the global search and replace strings. */
Chris Allegretta's avatar
Chris Allegretta committed
119
120
void search_init_globals(void)
{
121
122
123
124
    if (last_search == NULL)
	last_search = mallocstrcpy(NULL, "");
    if (last_replace == NULL)
	last_replace = mallocstrcpy(NULL, "");
Chris Allegretta's avatar
Chris Allegretta committed
125
126
}

127
/* Set up the system variables for a search or replace.  If use_answer
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
128
129
130
131
132
 * is TRUE, only set backupstring to answer.  Return -2 to run the
 * opposite program (search -> replace, replace -> search), return -1 if
 * the search should be canceled (due to Cancel, a blank search string,
 * Go to Line, or a failed regcomp()), return 0 on success, and return 1
 * on rerun calling program.
Chris Allegretta's avatar
Chris Allegretta committed
133
 *
134
135
136
 * replacing is TRUE if we call from do_replace(), and FALSE if called
 * from do_search(). */
int search_init(bool replacing, bool use_answer)
Chris Allegretta's avatar
Chris Allegretta committed
137
{
138
    int i = 0;
139
    char *buf;
140
    sc *s;
141
    char func = 0;
142
    bool meta_key = FALSE, func_key = FALSE;
143
    static char *backupstring = NULL;
144
145
146
147
148
149
150
151
152
153
154
	/* The search string we'll be using. */

    /* If backupstring doesn't exist, initialize it to "". */
    if (backupstring == NULL)
	backupstring = mallocstrcpy(NULL, "");

    /* If use_answer is TRUE, set backupstring to answer and get out. */
    if (use_answer) {
	backupstring = mallocstrcpy(backupstring, answer);
	return 0;
    }
155
156
157
158

    /* We display the search prompt below.  If the user types a partial
     * search string and then Replace or a toggle, we will return to
     * do_search() or do_replace() and be called again.  In that case,
159
     * we should put the same search string back up. */
160

Chris Allegretta's avatar
Chris Allegretta committed
161
    search_init_globals();
162

163
    if (last_search[0] != '\0') {
164
	char *disp = display_string(last_search, 0, COLS / 3, FALSE);
165

166
	buf = charalloc(strlen(disp) + 7);
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
167
	/* We use (COLS / 3) here because we need to see more on the
168
	 * line. */
169
	sprintf(buf, " [%s%s]", disp,
170
		(strlenpt(last_search) > COLS / 3) ? "..." : "");
171
	free(disp);
172
173
    } else
	buf = mallocstrcpy(NULL, "");
Chris Allegretta's avatar
Chris Allegretta committed
174

175
    /* This is now one simple call.  It just does a lot. */
176
177
178
179
    i = do_prompt(FALSE,
#ifndef DISABLE_TABCOMP
	TRUE,
#endif
180
	replacing ? MREPLACE : MWHEREIS, backupstring,
181
	&meta_key, &func_key,
182
#ifndef NANO_TINY
183
	&search_history,
184
#endif
185
	edit_refresh, "%s%s%s%s%s%s", _("Search"),
186
#ifndef NANO_TINY
187
188
	/* TRANSLATORS: This string is just a modifier for the search
	 * prompt; no grammar is implied. */
189
190
	ISSET(CASE_SENSITIVE) ? _(" [Case Sensitive]") :
#endif
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
191
	"",
192
#ifdef HAVE_REGEX_H
193
194
	/* TRANSLATORS: This string is just a modifier for the search
	 * prompt; no grammar is implied. */
195
196
	ISSET(USE_REGEXP) ? _(" [Regexp]") :
#endif
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
197
	"",
198
#ifndef NANO_TINY
199
200
	/* TRANSLATORS: This string is just a modifier for the search
	 * prompt; no grammar is implied. */
201
	ISSET(BACKWARDS_SEARCH) ? _(" [Backwards]") :
202
#endif
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
203
	"", replacing ?
204
#ifndef NANO_TINY
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
205
	openfile->mark_set ? _(" (to replace) in selection") :
206
#endif
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
207
	_(" (to replace)") : "", buf);
Chris Allegretta's avatar
Chris Allegretta committed
208

209
210
    fflush(stderr);

211
    /* Release buf now that we don't need it anymore. */
Chris Allegretta's avatar
Chris Allegretta committed
212
213
    free(buf);

214
215
216
    free(backupstring);
    backupstring = NULL;

217
    /* Cancel any search, or just return with no previous search. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
218
219
    if (i == -1 || (i < 0 && *last_search == '\0') || (!replacing &&
	i == 0 && *answer == '\0')) {
220
	statusbar(_("Cancelled"));
Chris Allegretta's avatar
Chris Allegretta committed
221
	return -1;
Chris Allegretta's avatar
Chris Allegretta committed
222
    } else {
223
224
225
226
227
228
229
	for  (s = sclist; s != NULL; s = s->next)
	    if ((s->menu & currmenu) && i == s->seq) {
	        func = s->scfunc;
	  	break;
	    }

	if (i == -2 || i == 0 ) {
230
#ifdef HAVE_REGEX_H
231
232
		/* Use last_search if answer is an empty string, or
		 * answer if it isn't. */
233
234
		if (ISSET(USE_REGEXP) && !regexp_init((i == -2) ?
			last_search : answer))
235
		    return -1;
236
#endif
237
		;
238
#ifndef NANO_TINY
239
	} else if (func == CASE_SENS_MSG) {
240
241
242
		TOGGLE(CASE_SENSITIVE);
		backupstring = mallocstrcpy(backupstring, answer);
		return 1;
243
	} else if (func == BACKWARDS_MSG) {
244
		TOGGLE(BACKWARDS_SEARCH);
245
246
		backupstring = mallocstrcpy(backupstring, answer);
		return 1;
247
#endif
248
#ifdef HAVE_REGEX_H
249
	} else if (func == REGEXP_MSG) {
250
251
252
		TOGGLE(USE_REGEXP);
		backupstring = mallocstrcpy(backupstring, answer);
		return 1;
253
#endif
254
255
	} else if (func == DO_REPLACE || 
	  func == NO_REPLACE_MSG) {
256
257
		backupstring = mallocstrcpy(backupstring, answer);
		return -2;	/* Call the opposite search function. */
258
	} else if (func == DO_GOTOLINECOLUMN_VOID) {
259
		do_gotolinecolumn(openfile->current->lineno,
260
261
			openfile->placewewant + 1, TRUE, TRUE, FALSE,
			TRUE);
262
263
				/* Put answer up on the statusbar and
				 * fall through. */
264
		return 3;
265
	} else {
266
		return -1;
Chris Allegretta's avatar
Chris Allegretta committed
267
	}
Chris Allegretta's avatar
Chris Allegretta committed
268
    }
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
269

Chris Allegretta's avatar
Chris Allegretta committed
270
271
272
    return 0;
}

273
274
/* Look for needle, starting at (current, current_x).  If no_sameline is
 * TRUE, skip over begin when looking for needle.  begin is the line
275
276
277
 * where we first started searching, at column begin_x.  The return
 * value specifies whether we found anything.  If we did, set needle_len
 * to the length of the string we found if it isn't NULL. */
278
279
280
281
282
283
bool findnextstr(
#ifndef DISABLE_SPELLER
	bool whole_word,
#endif
	bool no_sameline, const filestruct *begin, size_t begin_x, const
	char *needle, size_t *needle_len)
Chris Allegretta's avatar
Chris Allegretta committed
284
{
285
    size_t found_len;
286
	/* The length of the match we find. */
287
    size_t current_x_find = 0;
288
	/* The location in the current line of the match we find. */
289
    ssize_t current_y_find = openfile->current_y;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
290
291
    filestruct *fileptr = openfile->current;
    const char *rev_start = fileptr->data, *found = NULL;
292
293
    const subnfunc *f;
    time_t lastkbcheck = time(NULL);
294
295
296
297
298
299

    /* rev_start might end up 1 character before the start or after the
     * end of the line.  This won't be a problem because strstrwrapper()
     * will return immediately and say that no match was found, and
     * rev_start will be properly set when the search continues on the
     * previous or next line. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
300
    rev_start +=
301
#ifndef NANO_TINY
302
	ISSET(BACKWARDS_SEARCH) ?
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
303
	openfile->current_x - 1 :
304
#endif
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
305
	openfile->current_x + 1;
Chris Allegretta's avatar
Chris Allegretta committed
306

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
307
    /* Look for needle in the current line we're searching. */
308
    enable_nodelay();
309
    while (TRUE) {
310
311
312
313
314
315
316
317
318
        if (time(NULL) - lastkbcheck > 1) {
            lastkbcheck = time(NULL);
	    f = getfuncfromkey(edit);
            if (f && f->scfunc == CANCEL_MSG) {
		statusbar(_("Cancelled"));
		return FALSE;
	    }
	}

319
	found = strstrwrapper(fileptr->data, needle, rev_start);
Chris Allegretta's avatar
Chris Allegretta committed
320

321
322
	/* We've found a potential match. */
	if (found != NULL) {
323
#ifndef DISABLE_SPELLER
324
325
	    bool found_whole = FALSE;
		/* Is this potential match a whole word? */
326
#endif
327
328

	    /* Set found_len to the length of the potential match. */
329
	    found_len =
330
#ifdef HAVE_REGEX_H
331
332
		ISSET(USE_REGEXP) ?
		regmatches[0].rm_eo - regmatches[0].rm_so :
333
#endif
334
		strlen(needle);
335

336
#ifndef DISABLE_SPELLER
337
338
	    /* If we're searching for whole words, see if this potential
	     * match is a whole word. */
339
	    if (whole_word) {
340
		char *word = mallocstrncpy(NULL, found, found_len + 1);
341
342
343
344
345
346
		word[found_len] = '\0';

		found_whole = is_whole_word(found - fileptr->data,
			fileptr->data, word);
		free(word);
	    }
347
#endif
348
349
350
351
352

	    /* If we're searching for whole words and this potential
	     * match isn't a whole word, or if we're not allowed to find
	     * a match on the same line we started on and this potential
	     * match is on that line, continue searching. */
353
354
355
356
357
	    if (
#ifndef DISABLE_SPELLER
		(!whole_word || found_whole) &&
#endif
		(!no_sameline || fileptr != openfile->current))
358
		break;
Chris Allegretta's avatar
Chris Allegretta committed
359
	}
360

361
	/* We've finished processing the file, so get out. */
362
	if (search_last_line) {
363
	    not_found_msg(needle);
364
            disable_nodelay();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
365
	    return FALSE;
366
	}
367

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
368
	/* Move to the previous or next line in the file. */
369
#ifndef NANO_TINY
370
	if (ISSET(BACKWARDS_SEARCH)) {
371
372
373
374
375
376
	    fileptr = fileptr->prev;
	    current_y_find--;
	} else {
#endif
	    fileptr = fileptr->next;
	    current_y_find++;
377
#ifndef NANO_TINY
378
	}
379
#endif
380

381
382
	/* We've reached the start or end of the buffer, so wrap
	 * around. */
383
	if (fileptr == NULL) {
384
#ifndef NANO_TINY
385
	    if (ISSET(BACKWARDS_SEARCH)) {
386
		fileptr = openfile->filebot;
387
388
		current_y_find = editwinrows - 1;
	    } else {
389
#endif
390
		fileptr = openfile->fileage;
391
		current_y_find = 0;
392
#ifndef NANO_TINY
393
394
	    }
#endif
395
	    statusbar(_("Search Wrapped"));
396
	}
Chris Allegretta's avatar
Chris Allegretta committed
397

398
	/* We've reached the original starting line. */
399
	if (fileptr == begin)
400
	    search_last_line = TRUE;
401

402
	rev_start = fileptr->data;
403
#ifndef NANO_TINY
404
	if (ISSET(BACKWARDS_SEARCH))
405
406
407
	    rev_start += strlen(fileptr->data);
#endif
    }
408

409
410
    /* We found an instance. */
    current_x_find = found - fileptr->data;
Chris Allegretta's avatar
Chris Allegretta committed
411

412
413
    /* Ensure we haven't wrapped around again! */
    if (search_last_line &&
414
#ifndef NANO_TINY
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
415
416
	((!ISSET(BACKWARDS_SEARCH) && current_x_find > begin_x) ||
	(ISSET(BACKWARDS_SEARCH) && current_x_find < begin_x))
417
#else
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
418
	current_x_find > begin_x
419
420
#endif
	) {
421
	not_found_msg(needle);
422
	disable_nodelay();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
423
	return FALSE;
Chris Allegretta's avatar
Chris Allegretta committed
424
425
    }

426
    disable_nodelay();
427
428
429
430
    /* We've definitely found something. */
    openfile->current = fileptr;
    openfile->current_x = current_x_find;
    openfile->placewewant = xplustabs();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
431
    openfile->current_y = current_y_find;
432
433

    /* needle_len holds the length of needle. */
434
435
    if (needle_len != NULL)
	*needle_len = found_len;
436

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
437
    return TRUE;
Chris Allegretta's avatar
Chris Allegretta committed
438
439
}

440
441
/* Clear the flag indicating that a search reached the last line of the
 * file.  We need to do this just before a new search. */
442
443
444
445
446
void findnextstr_wrap_reset(void)
{
    search_last_line = FALSE;
}

Chris Allegretta's avatar
Chris Allegretta committed
447
/* Search for a string. */
448
void do_search(void)
Chris Allegretta's avatar
Chris Allegretta committed
449
{
450
    filestruct *fileptr = openfile->current;
451
    size_t fileptr_x = openfile->current_x;
452
    size_t pww_save = openfile->placewewant;
453
454
    int i;
    bool didfind;
Chris Allegretta's avatar
Chris Allegretta committed
455

456
    i = search_init(FALSE, FALSE);
457
458
459
460

    if (i == -1)
	/* Cancel, Go to Line, blank search string, or regcomp()
	 * failed. */
461
	search_replace_abort();
462
463
    else if (i == -2)
	/* Replace. */
Chris Allegretta's avatar
Chris Allegretta committed
464
	do_replace();
465
#if !defined(NANO_TINY) || defined(HAVE_REGEX_H)
466
467
    else if (i == 1)
	/* Case Sensitive, Backwards, or Regexp search toggle. */
Chris Allegretta's avatar
Chris Allegretta committed
468
	do_search();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
469
#endif
470

471
    if (i != 0)
472
	return;
473
474

    /* If answer is now "", copy last_search into answer. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
475
    if (*answer == '\0')
476
477
478
479
	answer = mallocstrcpy(answer, last_search);
    else
	last_search = mallocstrcpy(last_search, answer);

480
#ifndef NANO_TINY
481
482
    /* If answer is not "", add this search string to the search history
     * list. */
Chris Allegretta's avatar
Chris Allegretta committed
483
    if (answer[0] != '\0')
484
	update_history(&search_history, answer);
485
#endif
486

487
    findnextstr_wrap_reset();
488
489
490
491
492
    didfind = findnextstr(
#ifndef DISABLE_SPELLER
	FALSE,
#endif
	FALSE, openfile->current, openfile->current_x, answer, NULL);
493

494
495
    /* Check to see if there's only one occurrence of the string and
     * we're on it now. */
496
497
    if (fileptr == openfile->current && fileptr_x ==
	openfile->current_x && didfind) {
498
499
500
501
502
503
#ifdef HAVE_REGEX_H
	/* Do the search again, skipping over the current line, if we're
	 * doing a bol and/or eol regex search ("^", "$", or "^$"), so
	 * that we find one only once per line.  We should only end up
	 * back at the same position if the string isn't found again, in
	 * which case it's the only occurrence. */
504
505
	if (ISSET(USE_REGEXP) && regexp_bol_or_eol(&search_regexp,
		last_search)) {
506
507
508
509
510
	    didfind = findnextstr(
#ifndef DISABLE_SPELLER
		FALSE,
#endif
		TRUE, openfile->current,
511
512
513
		openfile->current_x, answer, NULL);
	    if (fileptr == openfile->current && fileptr_x ==
		openfile->current_x && !didfind)
514
515
516
517
518
519
520
521
		statusbar(_("This is the only occurrence"));
	} else {
#endif
	    statusbar(_("This is the only occurrence"));
#ifdef HAVE_REGEX_H
	}
#endif
    }
522

523
    openfile->placewewant = xplustabs();
524
    edit_redraw(fileptr, pww_save);
525
    search_replace_abort();
Chris Allegretta's avatar
Chris Allegretta committed
526
527
}

528
#ifndef NANO_TINY
529
/* Search for the last string without prompting. */
530
void do_research(void)
531
{
532
    filestruct *fileptr = openfile->current;
533
    size_t fileptr_x = openfile->current_x;
534
    size_t pww_save = openfile->placewewant;
535
    bool didfind;
536
537
538
539
540

    search_init_globals();

    if (last_search[0] != '\0') {
#ifdef HAVE_REGEX_H
541
	/* Since answer is "", use last_search! */
542
	if (ISSET(USE_REGEXP) && !regexp_init(last_search))
543
	    return;
544
545
#endif

546
	findnextstr_wrap_reset();
547
548
549
550
551
552
	didfind = findnextstr(
#ifndef DISABLE_SPELLER
		FALSE,
#endif
		FALSE, openfile->current, openfile->current_x,
		last_search, NULL);
553

554
555
	/* Check to see if there's only one occurrence of the string and
	 * we're on it now. */
556
557
	if (fileptr == openfile->current && fileptr_x ==
		openfile->current_x && didfind) {
558
559
560
561
562
563
#ifdef HAVE_REGEX_H
	    /* Do the search again, skipping over the current line, if
	     * we're doing a bol and/or eol regex search ("^", "$", or
	     * "^$"), so that we find one only once per line.  We should
	     * only end up back at the same position if the string isn't
	     * found again, in which case it's the only occurrence. */
564
565
	    if (ISSET(USE_REGEXP) && regexp_bol_or_eol(&search_regexp,
		last_search)) {
566
567
568
569
570
571
		didfind = findnextstr(
#ifndef DISABLE_SPELLER
			FALSE,
#endif
			TRUE, openfile->current, openfile->current_x,
			answer, NULL);
572
573
		if (fileptr == openfile->current && fileptr_x ==
			openfile->current_x && !didfind)
574
575
576
577
578
579
580
581
		    statusbar(_("This is the only occurrence"));
	    } else {
#endif
		statusbar(_("This is the only occurrence"));
#ifdef HAVE_REGEX_H
	    }
#endif
	}
582
583
584
    } else
        statusbar(_("No current search pattern"));

585
    openfile->placewewant = xplustabs();
586
    edit_redraw(fileptr, pww_save);
587
    search_replace_abort();
588
}
589
#endif
590

591
#ifdef HAVE_REGEX_H
592
int replace_regexp(char *string, bool create)
593
{
594
595
    /* We have a split personality here.  If create is FALSE, just
     * calculate the size of the replacement line (necessary because of
596
     * subexpressions \1 to \9 in the replaced text). */
597

598
    const char *c = last_replace;
599
600
601
602
    size_t search_match_count = regmatches[0].rm_eo -
	regmatches[0].rm_so;
    size_t new_line_size = strlen(openfile->current->data) + 1 -
	search_match_count;
603

Chris Allegretta's avatar
Chris Allegretta committed
604
605
    /* Iterate through the replacement text to handle subexpression
     * replacement using \1, \2, \3, etc. */
606
    while (*c != '\0') {
607
	int num = (*(c + 1) - '0');
608

609
610
	if (*c != '\\' || num < 1 || num > 9 || num >
		search_regexp.re_nsub) {
611
	    if (create)
612
613
		*string++ = *c;
	    c++;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
614
	    new_line_size++;
615
	} else {
616
	    size_t i = regmatches[num].rm_eo - regmatches[num].rm_so;
617

618
619
	    /* Skip over the replacement expression. */
	    c += 2;
620

621
	    /* But add the length of the subexpression to new_size. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
622
	    new_line_size += i;
623

624
	    /* And if create is TRUE, append the result of the
625
	     * subexpression match to the new line. */
626
	    if (create) {
627
628
		strncpy(string, openfile->current->data +
			openfile->current_x + regmatches[num].rm_so, i);
629
		string += i;
630
631
	    }
	}
632
633
    }

634
    if (create)
Chris Allegretta's avatar
Chris Allegretta committed
635
	*string = '\0';
636

637
    return new_line_size;
638
}
639
#endif
640

641
char *replace_line(const char *needle)
642
{
643
    char *copy;
644
    size_t new_line_size, search_match_count;
645

646
    /* Calculate the size of the new line. */
647
#ifdef HAVE_REGEX_H
648
    if (ISSET(USE_REGEXP)) {
649
	search_match_count = regmatches[0].rm_eo - regmatches[0].rm_so;
650
	new_line_size = replace_regexp(NULL, FALSE);
651
    } else {
652
#endif
653
	search_match_count = strlen(needle);
654
655
	new_line_size = strlen(openfile->current->data) -
		search_match_count + strlen(answer) + 1;
656
#ifdef HAVE_REGEX_H
657
    }
658
#endif
659

660
    /* Create the buffer. */
661
    copy = charalloc(new_line_size);
662

663
    /* The head of the original line. */
664
    strncpy(copy, openfile->current->data, openfile->current_x);
665

666
    /* The replacement text. */
667
#ifdef HAVE_REGEX_H
668
    if (ISSET(USE_REGEXP))
669
	replace_regexp(copy + openfile->current_x, TRUE);
670
    else
671
#endif
672
	strcpy(copy + openfile->current_x, answer);
673

674
    /* The tail of the original line. */
675
    assert(openfile->current_x + search_match_count <= strlen(openfile->current->data));
676

677
678
    strcat(copy, openfile->current->data + openfile->current_x +
	search_match_count);
679
680

    return copy;
Chris Allegretta's avatar
Chris Allegretta committed
681
682
}

683
/* Step through each replace word and prompt user before replacing.
684
685
686
 * Parameters real_current and real_current_x are needed in order to
 * allow the cursor position to be updated when a word before the cursor
 * is replaced by a shorter word.
687
688
 *
 * needle is the string to seek.  We replace it with answer.  Return -1
689
690
 * if needle isn't found, else the number of replacements performed.  If
 * canceled isn't NULL, set it to TRUE if we canceled. */
691
692
693
694
695
696
ssize_t do_replace_loop(
#ifndef DISABLE_SPELLER
	bool whole_word,
#endif
	bool *canceled, const filestruct *real_current, size_t
	*real_current_x, const char *needle)
Chris Allegretta's avatar
Chris Allegretta committed
697
{
698
699
    ssize_t numreplaced = -1;
    size_t match_len;
700
    bool replaceall = FALSE;
701
#ifdef HAVE_REGEX_H
702
    /* The starting-line match and bol/eol regex flags. */
703
    bool begin_line = FALSE, bol_or_eol = FALSE;
704
#endif
705
#ifndef NANO_TINY
706
707
    bool old_mark_set = openfile->mark_set;
    filestruct *edittop_save = openfile->edittop, *top, *bot;
708
709
    size_t top_x, bot_x;
    bool right_side_up = FALSE;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
710
	/* TRUE if (mark_begin, mark_begin_x) is the top of the mark,
711
	 * FALSE if (current, current_x) is. */
Chris Allegretta's avatar
Chris Allegretta committed
712

713
    if (old_mark_set) {
714
	/* If the mark is on, partition the filestruct so that it
715
716
	 * contains only the marked text, set edittop to the top of the
	 * partition, turn the mark off, and refresh the screen. */
717
	mark_order((const filestruct **)&top, &top_x,
718
	    (const filestruct **)&bot, &bot_x, &right_side_up);
719
	filepart = partition_filestruct(top, top_x, bot, bot_x);
720
721
	openfile->edittop = openfile->fileage;
	openfile->mark_set = FALSE;
722
723
724
#ifdef ENABLE_COLOR
	reset_multis(openfile->current, TRUE);
#endif
725
726
	edit_refresh();
    }
727
#endif
728

729
730
731
    if (canceled != NULL)
	*canceled = FALSE;

732
    findnextstr_wrap_reset();
733
734
735
736
    while (findnextstr(
#ifndef DISABLE_SPELLER
	whole_word,
#endif
737
#ifdef HAVE_REGEX_H
738
739
740
741
742
	/* We should find a bol and/or eol regex only once per line.  If
	 * the bol_or_eol flag is set, it means that the last search
	 * found one on the beginning line, so we should skip over the
	 * beginning line when doing this search. */
	bol_or_eol
743
#else
744
	FALSE
745
#endif
746
	, real_current, *real_current_x, needle, &match_len)) {
747
	int i = 0;
748

749
750
751
752
753
#ifdef HAVE_REGEX_H
	/* If the bol_or_eol flag is set, we've found a match on the
	 * beginning line already, and we're still on the beginning line
	 * after the search, it means that we've wrapped around, so
	 * we're done. */
754
755
	if (bol_or_eol && begin_line && openfile->current ==
		real_current)
756
757
758
759
760
	    break;
	/* Otherwise, set the begin_line flag if we've found a match on
	 * the beginning line, reset the bol_or_eol flag, and
	 * continue. */
	else {
761
	    if (openfile->current == real_current)
762
763
764
765
766
		begin_line = TRUE;
	    bol_or_eol = FALSE;
	}
#endif

767
768
	if (!replaceall)
	    edit_refresh();
Chris Allegretta's avatar
Chris Allegretta committed
769

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
770
	/* Indicate that we found the search string. */
771
772
	if (numreplaced == -1)
	    numreplaced = 0;
773

774
	if (!replaceall) {
775
	    size_t xpt = xplustabs();
776
777
778
	    char *exp_word = display_string(openfile->current->data,
		xpt, strnlenpt(openfile->current->data,
		openfile->current_x + match_len) - xpt, FALSE);
779

780
	    curs_set(0);
781

782
	    do_replace_highlight(TRUE, exp_word);
783

784
	    i = do_yesno_prompt(TRUE, _("Replace this instance?"));
Chris Allegretta's avatar
Chris Allegretta committed
785

786
	    do_replace_highlight(FALSE, exp_word);
787

788
	    free(exp_word);
789

790
	    curs_set(1);
791

792
793
794
	    if (i == -1) {	/* We canceled the replace. */
		if (canceled != NULL)
		    *canceled = TRUE;
795
		break;
796
	    }
797
798
	}

799
#ifdef HAVE_REGEX_H
800
	/* Set the bol_or_eol flag if we're doing a bol and/or eol regex
801
	 * replace ("^", "$", or "^$"). */
802
803
	if (ISSET(USE_REGEXP) && regexp_bol_or_eol(&search_regexp,
		needle))
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
804
	    bol_or_eol = TRUE;
805
806
#endif

807
	if (i > 0 || replaceall) {	/* Yes, replace it!!!! */
808
	    char *copy;
809
	    size_t length_change;
810

811
#ifndef NANO_TINY
812
	    update_undo(REPLACE);
813
#endif
814
	    if (i == 2)
815
		replaceall = TRUE;
Chris Allegretta's avatar
Chris Allegretta committed
816

817
	    copy = replace_line(needle);
Chris Allegretta's avatar
Chris Allegretta committed
818

819
820
	    length_change = strlen(copy) -
		strlen(openfile->current->data);
Chris Allegretta's avatar
Chris Allegretta committed
821

822
#ifndef NANO_TINY
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
823
824
	    /* If the mark was on and (mark_begin, mark_begin_x) was the
	     * top of it, don't change mark_begin_x. */
825
	    if (!old_mark_set || !right_side_up) {
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
826
827
828
829
		/* Keep mark_begin_x in sync with the text changes. */
		if (openfile->current == openfile->mark_begin &&
			openfile->mark_begin_x > openfile->current_x) {
		    if (openfile->mark_begin_x < openfile->current_x +
830
			match_len)
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
831
			openfile->mark_begin_x = openfile->current_x;
832
		    else
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
833
			openfile->mark_begin_x += length_change;
834
		}
835
	    }
Chris Allegretta's avatar
Chris Allegretta committed
836

837
838
839
	    /* If the mark was on and (current, current_x) was the top
	     * of it, don't change real_current_x. */
	    if (!old_mark_set || right_side_up) {
840
#endif
841
		/* Keep real_current_x in sync with the text changes. */
842
843
844
845
846
847
		if (openfile->current == real_current &&
			openfile->current_x <= *real_current_x) {
		    if (*real_current_x <
			openfile->current_x + match_len)
			*real_current_x = openfile->current_x +
				match_len;
848
849
		    *real_current_x += length_change;
		}
850
#ifndef NANO_TINY
851
	    }
852
#endif
853

854
	    /* Set the cursor at the last character of the replacement
855
	     * text, so searching will resume after the replacement
856
857
	     * text.  Note that current_x might be set to (size_t)-1
	     * here. */
858
#ifndef NANO_TINY
859
	    if (!ISSET(BACKWARDS_SEARCH))
860
#endif
861
		openfile->current_x += match_len + length_change - 1;
862

863
	    /* Cleanup. */
864
865
	    openfile->totsize += mbstrlen(copy) -
		mbstrlen(openfile->current->data);
866
867
	    free(openfile->current->data);
	    openfile->current->data = copy;
868

869
870
871
872
#ifdef ENABLE_COLOR
	reset_multis(openfile->current, TRUE);
#endif
	edit_refresh();
873
874
	    if (!replaceall) {
#ifdef ENABLE_COLOR
875
876
877
878
		/* If color syntaxes are available and turned on, we
		 * need to call edit_refresh(). */
		if (openfile->colorstrings != NULL &&
			!ISSET(NO_COLOR_SYNTAX))
879
880
881
		    edit_refresh();
		else
#endif
882
		    update_line(openfile->current, openfile->current_x);
883
884
	    }

Chris Allegretta's avatar
Chris Allegretta committed
885
886
	    set_modified();
	    numreplaced++;
887
	}
Chris Allegretta's avatar
Chris Allegretta committed
888
889
    }

890
#ifndef NANO_TINY
891
    if (old_mark_set) {
892
893
894
	/* If the mark was on, unpartition the filestruct so that it
	 * contains all the text again, set edittop back to what it was
	 * before, turn the mark back on, and refresh the screen. */
895
	unpartition_filestruct(&filepart);
896
897
	openfile->edittop = edittop_save;
	openfile->mark_set = TRUE;
898
899
	edit_refresh();
    }
900
901
#endif

902
903
904
    /* If the NO_NEWLINES flag isn't set, and text has been added to the
     * magicline, make a new magicline. */
    if (!ISSET(NO_NEWLINES) && openfile->filebot->data[0] != '\0')
905
906
	new_magicline();

Chris Allegretta's avatar
Chris Allegretta committed
907
908
909
    return numreplaced;
}

Chris Allegretta's avatar
Chris Allegretta committed
910
/* Replace a string. */
911
void do_replace(void)
Chris Allegretta's avatar
Chris Allegretta committed
912
{
913
    filestruct *edittop_save, *begin;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
914
    size_t begin_x, pww_save;
915
    bool meta_key = FALSE, func_key = FALSE;
916
    ssize_t numreplaced;
917
    int i;
Chris Allegretta's avatar
Chris Allegretta committed
918

Chris Allegretta's avatar
Chris Allegretta committed
919
920
    if (ISSET(VIEW_MODE)) {
	print_view_warning();
921
	search_replace_abort();
922
	return;
Chris Allegretta's avatar
Chris Allegretta committed
923
924
    }

925
    i = search_init(TRUE, FALSE);
926
927
928
    if (i == -1) {
	/* Cancel, Go to Line, blank search string, or regcomp()
	 * failed. */
929
	search_replace_abort();
930
	return;
931
932
    } else if (i == -2) {
	/* No Replace. */
Chris Allegretta's avatar
Chris Allegretta committed
933
	do_search();
934
	return;
935
936
    } else if (i == 1)
	/* Case Sensitive, Backwards, or Regexp search toggle. */
937
938
939
	do_replace();

    if (i != 0)
940
	return;
Chris Allegretta's avatar
Chris Allegretta committed
941

942
943
944
    /* If answer is not "", add answer to the search history list and
     * copy answer into last_search. */
    if (answer[0] != '\0') {
945
#ifndef NANO_TINY
946
	update_history(&search_history, answer);
947
#endif
Chris Allegretta's avatar
Chris Allegretta committed
948
	last_search = mallocstrcpy(last_search, answer);
949
    }
Chris Allegretta's avatar
Chris Allegretta committed
950

951
952
    last_replace = mallocstrcpy(last_replace, "");

953
954
955
956
    i = do_prompt(FALSE,
#ifndef DISABLE_TABCOMP
	TRUE,
#endif
957
	MREPLACE2, last_replace,
958
	&meta_key, &func_key,
959
#ifndef NANO_TINY
960
	&replace_history,
961
#endif
962
	edit_refresh, _("Replace with"));
963

964
#ifndef NANO_TINY
965
966
967
    /* Add this replace string to the replace history list.  i == 0
     * means that the string is not "". */
    if (i == 0)
968
	update_history(&replace_history, answer);
969
970
971
972
973
974
#endif

    if (i != 0 && i != -2) {
	if (i == -1) {		/* Cancel. */
	    if (last_replace[0] != '\0')
		answer = mallocstrcpy(answer, last_replace);
975
	    statusbar(_("Cancelled"));
976
	}
977
	search_replace_abort();
978
	return;
979
980
981
    }

    last_replace = mallocstrcpy(last_replace, answer);
Chris Allegretta's avatar
Chris Allegretta committed
982

983
    /* Save where we are. */
984
985
    edittop_save = openfile->edittop;
    begin = openfile->current;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
986
    begin_x = openfile->current_x;
987
    pww_save = openfile->placewewant;
Chris Allegretta's avatar
Chris Allegretta committed
988

989
990
991
992
993
    numreplaced = do_replace_loop(
#ifndef DISABLE_SPELLER
	FALSE,
#endif
	NULL, begin, &begin_x, last_search);
Chris Allegretta's avatar
Chris Allegretta committed
994

995
    /* Restore where we were. */
996
997
    openfile->edittop = edittop_save;
    openfile->current = begin;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
998
    openfile->current_x = begin_x;
999
    openfile->placewewant = pww_save;
1000

1001
    edit_refresh();
Chris Allegretta's avatar
Chris Allegretta committed
1002
1003

    if (numreplaced >= 0)
1004
1005
1006
	statusbar(P_("Replaced %lu occurrence",
		"Replaced %lu occurrences", (unsigned long)numreplaced),
		(unsigned long)numreplaced);
Chris Allegretta's avatar
Chris Allegretta committed
1007

1008
    search_replace_abort();
Chris Allegretta's avatar
Chris Allegretta committed
1009
1010
}

1011
1012
/* Go to the specified line and column, or ask for them if interactive
 * is TRUE.  Save the x-coordinate and y-coordinate if save_pos is TRUE.
1013
1014
 * Update the screen afterwards if allow_update is TRUE.  Note that both
 * the line and column numbers should be one-based. */
1015
void do_gotolinecolumn(ssize_t line, ssize_t column, bool use_answer,
1016
	bool interactive, bool save_pos, bool allow_update)
Chris Allegretta's avatar
Chris Allegretta committed
1017
{
1018
    bool meta_key = FALSE, func_key = FALSE;
1019
1020
    const sc *s;

1021
    if (interactive) {
1022
	char *ans = mallocstrcpy(NULL, answer);
1023

1024
	/* Ask for the line and column. */
1025
1026
1027
1028
	int i = do_prompt(FALSE,
#ifndef DISABLE_TABCOMP
		TRUE,
#endif
1029
		MGOTOLINE, use_answer ? ans : "",
1030
		&meta_key, &func_key,
1031
#ifndef NANO_TINY
1032
		NULL,
Chris Allegretta's avatar
Chris Allegretta committed
1033
#endif
1034
		edit_refresh, _("Enter line number, column number"));
1035
1036

	free(ans);
Chris Allegretta's avatar
Chris Allegretta committed
1037
1038

	/* Cancel, or Enter with blank string. */
1039
	if (i < 0) {
1040
	    statusbar(_("Cancelled"));
1041
	    display_main_list();
1042
1043
1044
	    return;
	}

1045
1046

	s = get_shortcut(currmenu, &i, &meta_key, &func_key);
1047
	if (s && s->scfunc ==  GOTOTEXT_MSG) {
1048
1049
1050
	    /* Keep answer up on the statusbar. */
	    search_init(TRUE, TRUE);

1051
	    do_search();
1052
	    return;
Chris Allegretta's avatar
Chris Allegretta committed
1053
	}
1054

1055
	/* Do a bounds check.  Display a warning on an out-of-bounds
1056
1057
	 * line or column number only if we hit Enter at the statusbar
	 * prompt. */
1058
	if (!parse_line_column(answer, &line, &column) || line < 1 ||
1059
		column < 1) {
1060
	    if (i == 0)
1061
		statusbar(_("Invalid line or column number"));
Chris Allegretta's avatar
Chris Allegretta committed
1062
	    display_main_list();
1063
	    return;
Chris Allegretta's avatar
Chris Allegretta committed
1064
	}
1065
1066
    } else {
	if (line < 1)
1067
	    line = openfile->current->lineno;
1068

1069
	if (column < 1)
1070
	    column = openfile->placewewant + 1;
Chris Allegretta's avatar
Chris Allegretta committed
1071
1072
    }

1073
    for (openfile->current = openfile->fileage;
1074
	openfile->current != openfile->filebot && line > 1; line--)
1075
	openfile->current = openfile->current->next;
Chris Allegretta's avatar
Chris Allegretta committed
1076

1077
1078
    openfile->current_x = actual_x(openfile->current->data, column - 1);
    openfile->placewewant = column - 1;
1079

1080
1081
1082
1083
1084
1085
    /* Put the top line of the edit window in range of the current line.
     * If save_pos is TRUE, don't change the cursor position when doing
     * it. */
    edit_update(save_pos ? NONE : CENTER);

    /* If allow_update is TRUE, update the screen. */
1086
    if (allow_update)
1087
	edit_refresh();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1088

Chris Allegretta's avatar
Chris Allegretta committed
1089
    display_main_list();
Chris Allegretta's avatar
Chris Allegretta committed
1090
1091
}

1092
/* Go to the specified line and column, asking for them beforehand. */
1093
void do_gotolinecolumn_void(void)
Chris Allegretta's avatar
Chris Allegretta committed
1094
{
1095
    do_gotolinecolumn(openfile->current->lineno,
1096
	openfile->placewewant + 1, FALSE, TRUE, FALSE, TRUE);
Chris Allegretta's avatar
Chris Allegretta committed
1097
}
1098

1099
#ifndef DISABLE_SPELLER
1100
1101
1102
1103
/* Go to the line with the number specified in pos_line, the
 * x-coordinate specified in pos_x, the y-coordinate specified in pos_y,
 * and the place we want specified in pos_pww. */
void do_gotopos(ssize_t pos_line, size_t pos_x, ssize_t pos_y, size_t
1104
	pos_pww)
1105
{
1106
    /* Since do_gotolinecolumn() resets the x-coordinate but not the
1107
     * y-coordinate, set the coordinates up this way. */
1108
    openfile->current_y = pos_y;
1109
    do_gotolinecolumn(pos_line, pos_x + 1, FALSE, FALSE, TRUE, TRUE);
1110

1111
    /* Set the rest of the coordinates up. */
1112
1113
    openfile->placewewant = pos_pww;
    update_line(openfile->current, pos_x);
1114
1115
}
#endif
1116

1117
#ifndef NANO_TINY
1118
/* Search for a match to one of the two characters in bracket_set.  If
1119
1120
1121
 * reverse is TRUE, search backwards for the leftmost bracket.
 * Otherwise, search forwards for the rightmost bracket.  Return TRUE if
 * we found a match, and FALSE otherwise. */
1122
1123
1124
1125
1126
1127
bool find_bracket_match(bool reverse, const char *bracket_set)
{
    filestruct *fileptr = openfile->current;
    const char *rev_start = NULL, *found = NULL;
    ssize_t current_y_find = openfile->current_y;

1128
    assert(mbstrlen(bracket_set) == 2);
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142

    /* rev_start might end up 1 character before the start or after the
     * end of the line.  This won't be a problem because we'll skip over
     * it below in that case, and rev_start will be properly set when
     * the search continues on the previous or next line. */
    rev_start = reverse ? fileptr->data + (openfile->current_x - 1) :
	fileptr->data + (openfile->current_x + 1);

    /* Look for either of the two characters in bracket_set.  rev_start
     * can be 1 character before the start or after the end of the line.
     * In either case, just act as though no match is found. */
    while (TRUE) {
	found = ((rev_start > fileptr->data && *(rev_start - 1) ==
		'\0') || rev_start < fileptr->data) ? NULL : (reverse ?
1143
1144
		mbrevstrpbrk(fileptr->data, bracket_set, rev_start) :
		mbstrpbrk(rev_start, bracket_set));
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157

	/* We've found a potential match. */
	if (found != NULL)
	    break;

	if (reverse) {
	    fileptr = fileptr->prev;
	    current_y_find--;
	} else {
	    fileptr = fileptr->next;
	    current_y_find++;
	}

1158
	/* We've reached the start or end of the buffer, so get out. */
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
	if (fileptr == NULL)
	    return FALSE;

	rev_start = fileptr->data;
	if (reverse)
	    rev_start += strlen(fileptr->data);
    }

    /* We've definitely found something. */
    openfile->current = fileptr;
1169
    openfile->current_x = found - fileptr->data;
1170
1171
1172
1173
1174
1175
1176
1177
    openfile->placewewant = xplustabs();
    openfile->current_y = current_y_find;

    return TRUE;
}

/* Search for a match to the bracket at the current cursor position, if
 * there is one. */
1178
void do_find_bracket(void)
1179
{
1180
    filestruct *current_save;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1181
    size_t current_x_save, pww_save;
1182
    const char *ch;
1183
	/* The location in matchbrackets of the bracket at the current
1184
	 * cursor position. */
1185
1186
1187
    int ch_len;
	/* The length of ch in bytes. */
    const char *wanted_ch;
1188
1189
	/* The location in matchbrackets of the bracket complementing
	 * the bracket at the current cursor position. */
1190
1191
1192
    int wanted_ch_len;
	/* The length of wanted_ch in bytes. */
    char *bracket_set;
1193
	/* The pair of characters in ch and wanted_ch. */
1194
1195
    size_t i;
	/* Generic loop variable. */
1196
    size_t matchhalf;
1197
1198
1199
1200
1201
	/* The number of single-byte characters in one half of
	 * matchbrackets. */
    size_t mbmatchhalf;
	/* The number of multibyte characters in one half of
	 * matchbrackets. */
1202
1203
1204
1205
    size_t count = 1;
	/* The initial bracket count. */
    bool reverse;
	/* The direction we search. */
1206
1207
    char *found_ch;
	/* The character we find. */
1208

1209
    assert(mbstrlen(matchbrackets) % 2 == 0);
1210

1211
    ch = openfile->current->data + openfile->current_x;
1212

1213
    if (ch == '\0' || (ch = mbstrchr(matchbrackets, ch)) == NULL) {
1214
	statusbar(_("Not a bracket"));
1215
	return;
1216
1217
    }

1218
    /* Save where we are. */
1219
1220
1221
    current_save = openfile->current;
    current_x_save = openfile->current_x;
    pww_save = openfile->placewewant;
1222

1223
    /* If we're on an opening bracket, which must be in the first half
1224
     * of matchbrackets, we want to search forwards for a closing
1225
     * bracket.  If we're on a closing bracket, which must be in the
1226
     * second half of matchbrackets, we want to search backwards for an
1227
     * opening bracket. */
1228
1229
1230
1231
1232
1233
1234
    matchhalf = 0;
    mbmatchhalf = mbstrlen(matchbrackets) / 2;

    for (i = 0; i < mbmatchhalf; i++)
	matchhalf += parse_mbchar(matchbrackets + matchhalf, NULL,
		NULL);

1235
    reverse = ((ch - matchbrackets) >= matchhalf);
1236
1237

    /* If we're on an opening bracket, set wanted_ch to the character
1238
1239
1240
     * that's matchhalf characters after ch.  If we're on a closing
     * bracket, set wanted_ch to the character that's matchhalf
     * characters before ch. */
1241
1242
    wanted_ch = ch;

1243
    while (mbmatchhalf > 0) {
1244
	if (reverse)
1245
1246
	    wanted_ch = matchbrackets + move_mbleft(matchbrackets,
		wanted_ch - matchbrackets);
1247
1248
1249
	else
	    wanted_ch += move_mbright(wanted_ch, 0);

1250
	mbmatchhalf--;
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
    }

    ch_len = parse_mbchar(ch, NULL, NULL);
    wanted_ch_len = parse_mbchar(wanted_ch, NULL, NULL);

    /* Fill bracket_set in with the values of ch and wanted_ch. */
    bracket_set = charalloc((mb_cur_max() * 2) + 1);
    strncpy(bracket_set, ch, ch_len);
    strncpy(bracket_set + ch_len, wanted_ch, wanted_ch_len);
    null_at(&bracket_set, ch_len + wanted_ch_len);

    found_ch = charalloc(mb_cur_max() + 1);
1263

1264
    while (TRUE) {
1265
	if (find_bracket_match(reverse, bracket_set)) {
1266
1267
	    /* If we found an identical bracket, increment count.  If we
	     * found a complementary bracket, decrement it. */
1268
1269
1270
	    parse_mbchar(openfile->current->data + openfile->current_x,
		found_ch, NULL);
	    count += (strncmp(found_ch, ch, ch_len) == 0) ? 1 : -1;
1271
1272
1273
1274

	    /* If count is zero, we've found a matching bracket.  Update
	     * the screen and get out. */
	    if (count == 0) {
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1275
		edit_redraw(current_save, pww_save);
1276
		break;
1277
	    }
Chris Allegretta's avatar
Chris Allegretta committed
1278
	} else {
1279
1280
	    /* We didn't find either an opening or closing bracket.
	     * Indicate this, restore where we were, and get out. */
1281
	    statusbar(_("No matching bracket"));
1282
1283
	    openfile->current = current_save;
	    openfile->current_x = current_x_save;
1284
	    openfile->placewewant = pww_save;
1285
1286
1287
	    break;
	}
    }
1288
1289
1290
1291

    /* Clean up. */
    free(bracket_set);
    free(found_ch);
1292
}
1293

1294
#ifdef ENABLE_NANORC
1295
1296
1297
1298
1299
/* Indicate whether any of the history lists have changed. */
bool history_has_changed(void)
{
    return history_changed;
}
1300
#endif
1301

1302
/* Initialize the search and replace history lists. */
1303
1304
void history_init(void)
{
1305
1306
1307
1308
1309
1310
1311
1312
1313
    search_history = make_new_node(NULL);
    search_history->data = mallocstrcpy(NULL, "");
    searchage = search_history;
    searchbot = search_history;

    replace_history = make_new_node(NULL);
    replace_history->data = mallocstrcpy(NULL, "");
    replaceage = replace_history;
    replacebot = replace_history;
1314
1315
}

1316
1317
1318
1319
1320
1321
1322
1323
1324
/* Set the current position in the history list h to the bottom. */
void history_reset(const filestruct *h)
{
    if (h == search_history)
	search_history = searchbot;
    else if (h == replace_history)
	replace_history = replacebot;
}

1325
1326
1327
/* Return the first node containing the first len characters of the
 * string s in the history list, starting at h_start and ending at
 * h_end, or NULL if there isn't one. */
1328
1329
filestruct *find_history(const filestruct *h_start, const filestruct
	*h_end, const char *s, size_t len)
1330
{
1331
    const filestruct *p;
1332

1333
1334
    for (p = h_start; p != h_end->next && p != NULL; p = p->next) {
	if (strncmp(s, p->data, len) == 0)
1335
	    return (filestruct *)p;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1336
    }
1337

1338
1339
1340
    return NULL;
}

1341
1342
1343
/* Update a history list.  h should be the current position in the
 * list. */
void update_history(filestruct **h, const char *s)
1344
{
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
    filestruct **hage = NULL, **hbot = NULL, *p;

    assert(h != NULL && s != NULL);

    if (*h == search_history) {
	hage = &searchage;
	hbot = &searchbot;
    } else if (*h == replace_history) {
	hage = &replaceage;
	hbot = &replacebot;
    }
1356

1357
    assert(hage != NULL && hbot != NULL);
1358

1359
    /* If this string is already in the history, delete it. */
1360
    p = find_history(*hage, *hbot, s, (size_t)-1);
1361

1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
    if (p != NULL) {
	filestruct *foo, *bar;

	/* If the string is at the beginning, move the beginning down to
	 * the next string. */
	if (p == *hage)
	    *hage = (*hage)->next;

	/* Delete the string. */
	foo = p;
	bar = p->next;
	unlink_node(foo);
	delete_node(foo);
1375
1376
	if (bar != NULL)
	    renumber(bar);
1377
1378
    }

1379
    /* If the history is full, delete the beginning entry to make room
1380
1381
     * for the new entry at the end.  We assume that MAX_SEARCH_HISTORY
     * is greater than zero. */
1382
1383
1384
1385
1386
1387
1388
    if ((*hbot)->lineno == MAX_SEARCH_HISTORY + 1) {
	filestruct *foo = *hage;

	*hage = (*hage)->next;
	unlink_node(foo);
	delete_node(foo);
	renumber(*hage);
1389
    }
1390
1391

    /* Add the new entry to the end. */
1392
    (*hbot)->data = mallocstrcpy((*hbot)->data, s);
1393
1394
1395
1396
    splice_node(*hbot, make_new_node(*hbot), (*hbot)->next);
    *hbot = (*hbot)->next;
    (*hbot)->data = mallocstrcpy(NULL, "");

1397
#ifdef ENABLE_NANORC
1398
1399
    /* Indicate that the history's been changed. */
    history_changed = TRUE;
1400
#endif
1401
1402
1403

    /* Set the current position in the list to the bottom. */
    *h = *hbot;
1404
1405
}

1406
1407
/* Move h to the string in the history list just before it, and return
 * that string.  If there isn't one, don't move h and return NULL. */
1408
char *get_history_older(filestruct **h)
1409
{
1410
    assert(h != NULL);
1411

1412
    if ((*h)->prev == NULL)
1413
	return NULL;
1414
1415
1416
1417

    *h = (*h)->prev;

    return (*h)->data;
1418
1419
}

1420
1421
/* Move h to the string in the history list just after it, and return
 * that string.  If there isn't one, don't move h and return NULL. */
1422
char *get_history_newer(filestruct **h)
1423
{
1424
    assert(h != NULL);
1425

1426
    if ((*h)->next == NULL)
1427
	return NULL;
1428

1429
1430
1431
1432
    *h = (*h)->next;

    return (*h)->data;
}
1433
1434
1435
1436

#ifndef DISABLE_TABCOMP
/* Move h to the next string that's a tab completion of the string s,
 * looking at only the first len characters of s, and return that
1437
1438
 * string.  If there isn't one, or if len is 0, don't move h and return
 * s. */
1439
char *get_history_completion(filestruct **h, const char *s, size_t len)
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
{
    assert(s != NULL);

    if (len > 0) {
	filestruct *hage = NULL, *hbot = NULL, *p;

	assert(h != NULL);

	if (*h == search_history) {
	    hage = searchage;
	    hbot = searchbot;
	} else if (*h == replace_history) {
	    hage = replaceage;
	    hbot = replacebot;
	}

	assert(hage != NULL && hbot != NULL);

1458
1459
1460
	/* Search the history list from the current position to the
	 * bottom for a match of len characters.  Skip over an exact
	 * match. */
1461
1462
	p = find_history((*h)->next, hbot, s, len);

1463
1464
1465
	while (p != NULL && strcmp(p->data, s) == 0)
	    p = find_history(p->next, hbot, s, len);

1466
1467
1468
1469
1470
1471
	if (p != NULL) {
	    *h = p;
	    return (*h)->data;
	}

	/* Search the history list from the top to the current position
1472
	 * for a match of len characters.  Skip over an exact match. */
1473
1474
	p = find_history(hage, *h, s, len);

1475
1476
1477
	while (p != NULL && strcmp(p->data, s) == 0)
	    p = find_history(p->next, *h, s, len);

1478
1479
1480
1481
1482
1483
	if (p != NULL) {
	    *h = p;
	    return (*h)->data;
	}
    }

1484
1485
    /* If we're here, we didn't find a match, we didn't find an inexact
     * match, or len is 0.  Return s. */
1486
    return (char *)s;
1487
}
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1488
#endif /* !DISABLE_TABCOMP */
1489
#endif /* !NANO_TINY */