search.c 36.5 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
 *   Copyright (C) 2000-2005 Chris Allegretta                             *
Chris Allegretta's avatar
Chris Allegretta committed
6
7
 *   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 *
8
 *   the Free Software Foundation; either version 2, or (at your option)  *
Chris Allegretta's avatar
Chris Allegretta committed
9
10
 *   any later version.                                                   *
 *                                                                        *
11
12
13
14
 *   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
15
16
17
 *                                                                        *
 *   You should have received a copy of the GNU General Public License    *
 *   along with this program; if not, write to the Free Software          *
18
19
 *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA            *
 *   02110-1301, USA.                                                     *
Chris Allegretta's avatar
Chris Allegretta committed
20
21
22
 *                                                                        *
 **************************************************************************/

23
24
25
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
26

Chris Allegretta's avatar
Chris Allegretta committed
27
28
29
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
30
#include <unistd.h>
Chris Allegretta's avatar
Chris Allegretta committed
31
#include <ctype.h>
32
#include <errno.h>
Chris Allegretta's avatar
Chris Allegretta committed
33
#include <assert.h>
Chris Allegretta's avatar
Chris Allegretta committed
34
#include "proto.h"
Chris Allegretta's avatar
Chris Allegretta committed
35

36
37
static bool search_last_line = FALSE;
	/* Have we gone past the last line while searching? */
38
#if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
39
40
41
static bool history_changed = FALSE;
	/* Have any of the history lists changed? */
#endif
42
#ifdef HAVE_REGEX_H
43
44
static bool regexp_compiled = FALSE;
	/* Have we compiled any regular expressions? */
45
46
47
48
49
50

/* Regular expression helper functions. */

/* Compile the given regular expression.  Return value 0 means the
 * expression was invalid, and we wrote an error message on the status
 * bar.  Return value 1 means success. */
51
int regexp_init(const char *regexp)
52
{
53
54
55
56
57
    int rc = regcomp(&search_regexp, regexp, REG_EXTENDED
#ifndef NANO_SMALL
	| (ISSET(CASE_SENSITIVE) ? 0 : REG_ICASE)
#endif
	);
58
59

    assert(!regexp_compiled);
60

61
62
63
64
65
66
67
    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);
68
	return 0;
69
    }
70

71
    regexp_compiled = TRUE;
72
    return 1;
73
74
}

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
void not_found_msg(const char *str)
{
86
87
88
    char *disp;
    int numchars;
 
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
89
    assert(str != NULL);
90

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

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

    free(disp);
98
99
100
101
102
}

void search_abort(void)
{
    display_main_list();
103
#ifndef NANO_SMALL
104
    if (openfile->mark_set)
105
106
	edit_refresh();
#endif
107
#ifdef HAVE_REGEX_H
108
    regexp_cleanup();
109
110
111
#endif
}

Chris Allegretta's avatar
Chris Allegretta committed
112
113
void search_init_globals(void)
{
114
115
116
117
    if (last_search == NULL)
	last_search = mallocstrcpy(NULL, "");
    if (last_replace == NULL)
	last_replace = mallocstrcpy(NULL, "");
Chris Allegretta's avatar
Chris Allegretta committed
118
119
}

120
121
122
123
124
125
/* Set up the system variables for a search or replace.  If use_answer
 * is TRUE, only set backupstring to answer.  Return -2 to run opposite
 * program (search -> replace, replace -> search), return -1 if the
 * search should be canceled (due to Cancel, 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
126
 *
127
128
129
 * 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
130
{
131
    int i = 0;
132
    char *buf;
133
    static char *backupstring = NULL;
134
135
136
137
138
139
140
141
142
143
144
	/* 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;
    }
145
146
147
148

    /* 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,
149
     * we should put the same search string back up. */
150

Chris Allegretta's avatar
Chris Allegretta committed
151
    search_init_globals();
152

153
    if (last_search[0] != '\0') {
154
	char *disp = display_string(last_search, 0, COLS / 3, FALSE);
155

156
	buf = charalloc(strlen(disp) + 7);
157
158
	/* We use COLS / 3 here because we need to see more on the
	 * line. */
159
160
161
	sprintf(buf, " [%s%s]", disp,
		strlenpt(last_search) > COLS / 3 ? "..." : "");
	free(disp);
162
163
    } else
	buf = mallocstrcpy(NULL, "");
Chris Allegretta's avatar
Chris Allegretta committed
164

165
    /* This is now one simple call.  It just does a lot. */
166
167
    i = statusq(FALSE, replacing ? replace_list : whereis_list,
	backupstring,
168
#ifndef NANO_SMALL
169
	&search_history,
170
#endif
171
	"%s%s%s%s%s%s", _("Search"),
172

173
#ifndef NANO_SMALL
174
175
	/* This string is just a modifier for the search prompt; no
	 * grammar is implied. */
176
177
178
	ISSET(CASE_SENSITIVE) ? _(" [Case Sensitive]") :
#endif
		"",
179

180
#ifdef HAVE_REGEX_H
181
182
	/* This string is just a modifier for the search prompt; no
	 * grammar is implied. */
183
184
185
	ISSET(USE_REGEXP) ? _(" [Regexp]") :
#endif
		"",
186

187
#ifndef NANO_SMALL
188
189
	/* This string is just a modifier for the search prompt; no
	 * grammar is implied. */
190
	ISSET(BACKWARDS_SEARCH) ? _(" [Backwards]") :
191
192
#endif
		"",
193

194
195
	replacing ?
#ifndef NANO_SMALL
196
		openfile->mark_set ? _(" (to replace) in selection") :
197
#endif
198
		_(" (to replace)") : "",
199

Chris Allegretta's avatar
Chris Allegretta committed
200
	buf);
Chris Allegretta's avatar
Chris Allegretta committed
201

202
    /* Release buf now that we don't need it anymore. */
Chris Allegretta's avatar
Chris Allegretta committed
203
204
    free(buf);

205
206
207
    free(backupstring);
    backupstring = NULL;

208
209
210
    /* Cancel any search, or just return with no previous search. */
    if (i == -1 || (i < 0 && last_search[0] == '\0') ||
	    (!replacing && i == 0 && answer[0] == '\0')) {
211
	statusbar(_("Cancelled"));
Chris Allegretta's avatar
Chris Allegretta committed
212
	return -1;
Chris Allegretta's avatar
Chris Allegretta committed
213
214
    } else {
	switch (i) {
215
216
	    case -2:		/* It's an empty string. */
	    case 0:		/* It's a new string. */
217
#ifdef HAVE_REGEX_H
218
219
220
221
222
		/* Use last_search if answer is an empty string, or
		 * answer if it isn't. */
		if (ISSET(USE_REGEXP) &&
			regexp_init((i == -2) ? last_search :
			answer) == 0)
223
		    return -1;
224
#endif
225
		break;
Chris Allegretta's avatar
Chris Allegretta committed
226
#ifndef NANO_SMALL
227
228
229
230
231
	    case TOGGLE_CASE_KEY:
		TOGGLE(CASE_SENSITIVE);
		backupstring = mallocstrcpy(backupstring, answer);
		return 1;
	    case TOGGLE_BACKWARDS_KEY:
232
		TOGGLE(BACKWARDS_SEARCH);
233
234
		backupstring = mallocstrcpy(backupstring, answer);
		return 1;
235
#endif
236
#ifdef HAVE_REGEX_H
237
	    case NANO_REGEXP_KEY:
238
239
240
		TOGGLE(USE_REGEXP);
		backupstring = mallocstrcpy(backupstring, answer);
		return 1;
241
#endif
242
243
244
245
	    case NANO_TOOTHERSEARCH_KEY:
		backupstring = mallocstrcpy(backupstring, answer);
		return -2;	/* Call the opposite search function. */
	    case NANO_TOGOTOLINE_KEY:
246
		do_gotolinecolumn(openfile->current->lineno,
247
248
			openfile->placewewant + 1, TRUE, TRUE, FALSE,
			TRUE);
249
250
				/* Put answer up on the statusbar and
				 * fall through. */
251
252
	    default:
		return -1;
Chris Allegretta's avatar
Chris Allegretta committed
253
	}
Chris Allegretta's avatar
Chris Allegretta committed
254
    }
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
255

Chris Allegretta's avatar
Chris Allegretta committed
256
257
258
    return 0;
}

259
bool is_whole_word(size_t pos, const char *buf, const char *word)
260
{
261
262
263
    char *p = charalloc(mb_cur_max()), *r = charalloc(mb_cur_max());
    size_t word_end = pos + strlen(word);
    bool retval;
264

265
266
267
268
269
270
    assert(buf != NULL && pos <= strlen(buf) && word != NULL);

    parse_mbchar(buf + move_mbleft(buf, pos), p, NULL, NULL);
    parse_mbchar(buf + word_end, r, NULL, NULL);

    /* If we're at the beginning of the line or the character before the
271
272
273
274
275
     * word isn't a non-punctuation "word" character, and if we're at
     * the end of the line or the character after the word isn't a
     * non-punctuation "word" character, we have a whole word. */
    retval = (pos == 0 || !is_word_mbchar(p, FALSE)) &&
	(word_end == strlen(buf) || !is_word_mbchar(r, FALSE));
276
277
278
279
280

    free(p);
    free(r);

    return retval;
281
282
}

283
284
/* Look for needle, starting at (current, current_x).  If no_sameline is
 * TRUE, skip over begin when looking for needle.  begin is the line
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
285
 * where we first started searching, at column begin_x.  If
286
 * can_display_wrap is TRUE, we put messages on the statusbar, wrap
287
288
289
 * around the file boundaries.  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. */
290
bool findnextstr(bool can_display_wrap, bool wholeword, bool
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
291
	no_sameline, const filestruct *begin, size_t begin_x, const char
292
	*needle, size_t *needle_len)
Chris Allegretta's avatar
Chris Allegretta committed
293
{
294
    filestruct *fileptr = openfile->current;
295
    const char *rev_start = NULL, *found = NULL;
296
297
    size_t found_len;
	/* The length of the match we found. */
298
    size_t current_x_find = 0;
299
	/* The location of the match we found. */
300
    ssize_t current_y_find = openfile->current_y;
301
302
303
304
305
306

    /* 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
307
    rev_start =
308
#ifndef NANO_SMALL
309
310
	ISSET(BACKWARDS_SEARCH) ?
	fileptr->data + (openfile->current_x - 1) :
311
#endif
312
	fileptr->data + (openfile->current_x + 1);
Chris Allegretta's avatar
Chris Allegretta committed
313

314
    /* Look for needle in searchstr. */
315
    while (TRUE) {
316
	found = strstrwrapper(fileptr->data, needle, rev_start);
Chris Allegretta's avatar
Chris Allegretta committed
317

318
319
320
321
322
323
324
	/* We've found a potential match. */
	if (found != NULL) {
	    bool found_whole = FALSE;
		/* Is this potential match a whole word? */

	    /* Set found_len to the length of the potential match. */
#ifdef HAVE_REGEX_H
325
326
327
	    if (ISSET(USE_REGEXP))
		found_len = regmatches[0].rm_eo - regmatches[0].rm_so;
	    else
328
#endif
329
330
331
332
333
334
335
336
337
338
	    {
		size_t needle_len = mbstrlen(needle);

		/* Get found's length in single-byte characters. */
		found_len = 0;

		for (; needle_len > 0; needle_len--)
		    found_len += parse_mbchar(found + found_len, NULL,
			NULL, NULL);
	    }
339
340
341
342

	    /* If we're searching for whole words, see if this potential
	     * match is a whole word. */
	    if (wholeword) {
343
		char *word = mallocstrncpy(NULL, found, found_len + 1);
344
345
346
347
348
349
350
351
352
353
354
355
		word[found_len] = '\0';

		found_whole = is_whole_word(found - fileptr->data,
			fileptr->data, word);
		free(word);
	    }

	    /* 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. */
	    if ((!wholeword || found_whole) && (!no_sameline ||
356
		fileptr != openfile->current))
357
		break;
Chris Allegretta's avatar
Chris Allegretta committed
358
	}
359

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

#ifndef NANO_SMALL
368
	if (ISSET(BACKWARDS_SEARCH)) {
369
370
371
372
373
374
	    fileptr = fileptr->prev;
	    current_y_find--;
	} else {
#endif
	    fileptr = fileptr->next;
	    current_y_find++;
375
#ifndef NANO_SMALL
376
	}
377
#endif
378

379
	/* Start or end of buffer reached, so wrap around. */
380
381
	if (fileptr == NULL) {
	    if (!can_display_wrap)
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
382
		return FALSE;
383

384
#ifndef NANO_SMALL
385
	    if (ISSET(BACKWARDS_SEARCH)) {
386
		fileptr = openfile->filebot;
387
388
		current_y_find = editwinrows - 1;
	    } else {
389
#endif
390
		fileptr = openfile->fileage;
391
392
393
394
395
		current_y_find = 0;
#ifndef NANO_SMALL
	    }
#endif

396
397
398
	    if (can_display_wrap)
		statusbar(_("Search Wrapped"));
	}
Chris Allegretta's avatar
Chris Allegretta committed
399

400
	/* Original start line reached. */
401
	if (fileptr == begin)
402
	    search_last_line = TRUE;
403

404
405
	rev_start = fileptr->data;
#ifndef NANO_SMALL
406
	if (ISSET(BACKWARDS_SEARCH))
407
408
409
	    rev_start += strlen(fileptr->data);
#endif
    }
410

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

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

428
429
430
431
432
    /* We've definitely found something. */
    openfile->current = fileptr;
    openfile->current_x = current_x_find;
    openfile->current_y = current_y_find;
    openfile->placewewant = xplustabs();
433
434

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

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

441
442
443
444
445
void findnextstr_wrap_reset(void)
{
    search_last_line = FALSE;
}

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

455
#ifndef DISABLE_WRAPPING
Chris Allegretta's avatar
Chris Allegretta committed
456
    wrap_reset();
457
#endif
458

459
    i = search_init(FALSE, FALSE);
460
461
    if (i == -1)	/* Cancel, Go to Line, blank search string, or
			 * regcomp() failed. */
Chris Allegretta's avatar
Chris Allegretta committed
462
	search_abort();
463
    else if (i == -2)	/* Replace. */
Chris Allegretta's avatar
Chris Allegretta committed
464
	do_replace();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
465
#if !defined(NANO_SMALL) || 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. */
Chris Allegretta's avatar
Chris Allegretta committed
475
    if (answer[0] == '\0')
476
477
478
479
	answer = mallocstrcpy(answer, last_search);
    else
	last_search = mallocstrcpy(last_search, answer);

480
#ifndef NANO_SMALL
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
    didfind = findnextstr(TRUE, FALSE, FALSE, openfile->current,
	openfile->current_x, answer, NULL);
490

491
492
    /* Check to see if there's only one occurrence of the string and
     * we're on it now. */
493
494
    if (fileptr == openfile->current && fileptr_x ==
	openfile->current_x && didfind) {
495
496
497
498
499
500
#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. */
501
502
	if (ISSET(USE_REGEXP) && regexp_bol_or_eol(&search_regexp,
		last_search)) {
503
504
505
506
	    didfind = findnextstr(TRUE, FALSE, TRUE, openfile->current,
		openfile->current_x, answer, NULL);
	    if (fileptr == openfile->current && fileptr_x ==
		openfile->current_x && !didfind)
507
508
509
510
511
512
513
514
		statusbar(_("This is the only occurrence"));
	} else {
#endif
	    statusbar(_("This is the only occurrence"));
#ifdef HAVE_REGEX_H
	}
#endif
    }
515

516
    openfile->placewewant = xplustabs();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
517
    edit_redraw(fileptr, old_pww);
Chris Allegretta's avatar
Chris Allegretta committed
518
519
520
    search_abort();
}

521
#ifndef NANO_SMALL
522
/* Search for the next string without prompting. */
523
void do_research(void)
524
{
525
    filestruct *fileptr = openfile->current;
526
    size_t fileptr_x = openfile->current_x;
527
    size_t old_pww = openfile->placewewant;
528
    bool didfind;
529

530
#ifndef DISABLE_WRAPPING
531
    wrap_reset();
532
#endif
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
533

534
535
536
537
538
    search_init_globals();

    if (last_search[0] != '\0') {

#ifdef HAVE_REGEX_H
539
	/* Since answer is "", use last_search! */
540
	if (ISSET(USE_REGEXP) && regexp_init(last_search) == 0)
541
	    return;
542
543
#endif

544
	findnextstr_wrap_reset();
545
546
	didfind = findnextstr(TRUE, FALSE, FALSE, openfile->current,
		openfile->current_x, last_search, NULL);
547

548
549
	/* Check to see if there's only one occurrence of the string and
	 * we're on it now. */
550
551
	if (fileptr == openfile->current && fileptr_x ==
		openfile->current_x && didfind) {
552
553
554
555
556
557
#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. */
558
559
	    if (ISSET(USE_REGEXP) && regexp_bol_or_eol(&search_regexp,
		last_search)) {
560
561
562
563
564
		didfind = findnextstr(TRUE, FALSE, TRUE,
			openfile->current, openfile->current_x, answer,
			NULL);
		if (fileptr == openfile->current && fileptr_x ==
			openfile->current_x && !didfind)
565
566
567
568
569
570
571
572
		    statusbar(_("This is the only occurrence"));
	    } else {
#endif
		statusbar(_("This is the only occurrence"));
#ifdef HAVE_REGEX_H
	    }
#endif
	}
573
574
575
    } else
        statusbar(_("No current search pattern"));

576
    openfile->placewewant = xplustabs();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
577
    edit_redraw(fileptr, old_pww);
578
579
    search_abort();
}
580
#endif
581

Chris Allegretta's avatar
Chris Allegretta committed
582
583
void replace_abort(void)
{
584
    /* For now, we do the same thing as search_abort(). */
585
    search_abort();
586
587
}

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

595
    const char *c = last_replace;
596
597
598
599
    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;
600

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

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

615
616
	    /* Skip over the replacement expression. */
	    c += 2;
617

618
	    /* But add the length of the subexpression to new_size. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
619
	    new_line_size += i;
620

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

631
    if (create)
Chris Allegretta's avatar
Chris Allegretta committed
632
	*string = '\0';
633

634
    return new_line_size;
635
}
636
#endif
637

638
char *replace_line(const char *needle)
639
{
640
    char *copy;
641
    size_t new_line_size, search_match_count;
642

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

657
    /* Create the buffer. */
658
    copy = charalloc(new_line_size);
659

660
    /* The head of the original line. */
661
    strncpy(copy, openfile->current->data, openfile->current_x);
662

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

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

674
675
    strcat(copy, openfile->current->data + openfile->current_x +
	search_match_count);
676
677

    return copy;
Chris Allegretta's avatar
Chris Allegretta committed
678
679
}

680
/* Step through each replace word and prompt user before replacing.
681
682
683
 * 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.
684
685
 *
 * needle is the string to seek.  We replace it with answer.  Return -1
686
687
 * if needle isn't found, else the number of replacements performed.  If
 * canceled isn't NULL, set it to TRUE if we canceled. */
688
689
690
ssize_t do_replace_loop(const char *needle, const filestruct
	*real_current, size_t *real_current_x, bool wholewords, bool
	*canceled)
Chris Allegretta's avatar
Chris Allegretta committed
691
{
692
693
    ssize_t numreplaced = -1;
    size_t match_len;
694
    bool replaceall = FALSE;
695
#ifdef HAVE_REGEX_H
696
    /* The starting-line match and bol/eol regex flags. */
697
    bool begin_line = FALSE, bol_or_eol = FALSE;
698
#endif
699
#ifndef NANO_SMALL
700
701
    bool old_mark_set = openfile->mark_set;
    filestruct *edittop_save = openfile->edittop, *top, *bot;
702
703
    size_t top_x, bot_x;
    bool right_side_up = FALSE;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
704
	/* TRUE if (mark_begin, mark_begin_x) is the top of the mark,
705
	 * FALSE if (current, current_x) is. */
Chris Allegretta's avatar
Chris Allegretta committed
706

707
    if (old_mark_set) {
708
	/* If the mark is on, partition the filestruct so that it
709
710
	 * contains only the marked text, set edittop to the top of the
	 * partition, turn the mark off, and refresh the screen. */
711
	mark_order((const filestruct **)&top, &top_x,
712
	    (const filestruct **)&bot, &bot_x, &right_side_up);
713
	filepart = partition_filestruct(top, top_x, bot, bot_x);
714
715
	openfile->edittop = openfile->fileage;
	openfile->mark_set = FALSE;
716
717
	edit_refresh();
    }
718
#endif
719

720
721
722
    if (canceled != NULL)
	*canceled = FALSE;

723
    findnextstr_wrap_reset();
724
    while (findnextstr(TRUE, wholewords,
725
#ifdef HAVE_REGEX_H
726
727
728
729
730
	/* 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
731
#else
732
	FALSE
733
#endif
734
	, real_current, *real_current_x, needle, &match_len)) {
735
	int i = 0;
736

737
738
739
740
741
#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. */
742
743
	if (bol_or_eol && begin_line && openfile->current ==
		real_current)
744
745
746
747
748
	    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 {
749
	    if (openfile->current == real_current)
750
751
752
753
754
		begin_line = TRUE;
	    bol_or_eol = FALSE;
	}
#endif

755
756
	if (!replaceall)
	    edit_refresh();
Chris Allegretta's avatar
Chris Allegretta committed
757

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
758
	/* Indicate that we found the search string. */
759
760
	if (numreplaced == -1)
	    numreplaced = 0;
761

762
	if (!replaceall) {
763
	    size_t xpt = xplustabs();
764
765
766
	    char *exp_word = display_string(openfile->current->data,
		xpt, strnlenpt(openfile->current->data,
		openfile->current_x + match_len) - xpt, FALSE);
767

768
	    curs_set(0);
769

770
	    do_replace_highlight(TRUE, exp_word);
771

772
	    i = do_yesno(TRUE, _("Replace this instance?"));
Chris Allegretta's avatar
Chris Allegretta committed
773

774
	    do_replace_highlight(FALSE, exp_word);
775

776
	    free(exp_word);
777

778
	    curs_set(1);
779

780
781
782
	    if (i == -1) {	/* We canceled the replace. */
		if (canceled != NULL)
		    *canceled = TRUE;
783
		break;
784
	    }
785
786
	}

787
#ifdef HAVE_REGEX_H
788
	/* Set the bol_or_eol flag if we're doing a bol and/or eol regex
789
	 * replace ("^", "$", or "^$"). */
790
791
	if (ISSET(USE_REGEXP) && regexp_bol_or_eol(&search_regexp,
		needle))
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
792
	    bol_or_eol = TRUE;
793
794
#endif

795
	if (i > 0 || replaceall) {	/* Yes, replace it!!!! */
796
	    char *match, *copy;
797
	    size_t length_change;
798

799
	    if (i == 2)
800
		replaceall = TRUE;
Chris Allegretta's avatar
Chris Allegretta committed
801

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
802
803
	    /* Make sure the string we replace is the match's length in
	     * single-byte characters. */
804
805
806
807
808
809
810
	    match = mallocstrncpy(NULL, openfile->current->data +
		openfile->current_x, match_len + 1);
	    match[match_len] = '\0';

	    copy = replace_line(match);

	    free(match);
Chris Allegretta's avatar
Chris Allegretta committed
811

812
813
	    length_change = strlen(copy) -
		strlen(openfile->current->data);
Chris Allegretta's avatar
Chris Allegretta committed
814

815
#ifndef NANO_SMALL
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
816
817
	    /* If the mark was on and (mark_begin, mark_begin_x) was the
	     * top of it, don't change mark_begin_x. */
818
	    if (!old_mark_set || !right_side_up) {
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
819
820
821
822
		/* 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 +
823
			match_len)
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
824
			openfile->mark_begin_x = openfile->current_x;
825
		    else
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
826
			openfile->mark_begin_x += length_change;
827
		}
828
	    }
Chris Allegretta's avatar
Chris Allegretta committed
829

830
831
832
	    /* 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) {
833
#endif
834
		/* Keep real_current_x in sync with the text changes. */
835
836
837
838
839
840
		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;
841
842
		    *real_current_x += length_change;
		}
843
#ifndef NANO_SMALL
844
	    }
845
#endif
846

847
	    /* Set the cursor at the last character of the replacement
848
	     * text, so searching will resume after the replacement
849
850
	     * text.  Note that current_x might be set to (size_t)-1
	     * here. */
851
#ifndef NANO_SMALL
852
	    if (!ISSET(BACKWARDS_SEARCH))
853
#endif
854
		openfile->current_x += match_len + length_change - 1;
855

856
	    /* Cleanup. */
857
858
859
	    openfile->totsize += length_change;
	    free(openfile->current->data);
	    openfile->current->data = copy;
860

861
862
	    if (!replaceall) {
#ifdef ENABLE_COLOR
863
864
865
866
		/* If color syntaxes are available and turned on, we
		 * need to call edit_refresh(). */
		if (openfile->colorstrings != NULL &&
			!ISSET(NO_COLOR_SYNTAX))
867
868
869
		    edit_refresh();
		else
#endif
870
		    update_line(openfile->current, openfile->current_x);
871
872
	    }

Chris Allegretta's avatar
Chris Allegretta committed
873
874
	    set_modified();
	    numreplaced++;
875
	}
Chris Allegretta's avatar
Chris Allegretta committed
876
877
    }

878
#ifndef NANO_SMALL
879
    if (old_mark_set) {
880
881
882
	/* 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. */
883
	unpartition_filestruct(&filepart);
884
885
	openfile->edittop = edittop_save;
	openfile->mark_set = TRUE;
886
887
	edit_refresh();
    }
888
889
#endif

890
    /* If text has been added to the magicline, make a new magicline. */
891
    if (openfile->filebot->data[0] != '\0')
892
893
	new_magicline();

Chris Allegretta's avatar
Chris Allegretta committed
894
895
896
    return numreplaced;
}

Chris Allegretta's avatar
Chris Allegretta committed
897
/* Replace a string. */
898
void do_replace(void)
Chris Allegretta's avatar
Chris Allegretta committed
899
{
900
    filestruct *edittop_save, *begin;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
901
    size_t begin_x, pww_save;
902
    ssize_t numreplaced;
903
    int i;
Chris Allegretta's avatar
Chris Allegretta committed
904

Chris Allegretta's avatar
Chris Allegretta committed
905
906
907
    if (ISSET(VIEW_MODE)) {
	print_view_warning();
	replace_abort();
908
	return;
Chris Allegretta's avatar
Chris Allegretta committed
909
910
    }

911
    i = search_init(TRUE, FALSE);
912
913
    if (i == -1) {		/* Cancel, Go to Line, blank search
				 * string, or regcomp() failed. */
Chris Allegretta's avatar
Chris Allegretta committed
914
	replace_abort();
915
	return;
916
    } else if (i == -2) {	/* No Replace. */
Chris Allegretta's avatar
Chris Allegretta committed
917
	do_search();
918
	return;
919
920
921
922
923
    } else if (i == 1)		/* Case Sensitive, Backwards, or Regexp
				 * search toggle. */
	do_replace();

    if (i != 0)
924
	return;
Chris Allegretta's avatar
Chris Allegretta committed
925

926
927
928
    /* If answer is not "", add answer to the search history list and
     * copy answer into last_search. */
    if (answer[0] != '\0') {
929
#ifndef NANO_SMALL
930
	update_history(&search_history, answer);
931
#endif
Chris Allegretta's avatar
Chris Allegretta committed
932
	last_search = mallocstrcpy(last_search, answer);
933
    }
Chris Allegretta's avatar
Chris Allegretta committed
934

935
936
    last_replace = mallocstrcpy(last_replace, "");

937
    i = statusq(FALSE, replace_list_2, last_replace,
938
#ifndef NANO_SMALL
939
	&replace_history,
940
#endif
941
	_("Replace with"));
942

943
#ifndef NANO_SMALL
944
945
946
    /* Add this replace string to the replace history list.  i == 0
     * means that the string is not "". */
    if (i == 0)
947
	update_history(&replace_history, answer);
948
949
950
951
952
953
#endif

    if (i != 0 && i != -2) {
	if (i == -1) {		/* Cancel. */
	    if (last_replace[0] != '\0')
		answer = mallocstrcpy(answer, last_replace);
954
	    statusbar(_("Cancelled"));
955
956
	}
	replace_abort();
957
	return;
958
959
960
    }

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

962
    /* Save where we are. */
963
964
    edittop_save = openfile->edittop;
    begin = openfile->current;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
965
    begin_x = openfile->current_x;
966
    pww_save = openfile->placewewant;
Chris Allegretta's avatar
Chris Allegretta committed
967

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
968
    numreplaced = do_replace_loop(last_search, begin, &begin_x, FALSE,
969
	NULL);
Chris Allegretta's avatar
Chris Allegretta committed
970

971
    /* Restore where we were. */
972
973
    openfile->edittop = edittop_save;
    openfile->current = begin;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
974
    openfile->current_x = begin_x;
975
    openfile->placewewant = pww_save;
976

977
    edit_refresh();
Chris Allegretta's avatar
Chris Allegretta committed
978
979

    if (numreplaced >= 0)
980
981
982
	statusbar(P_("Replaced %lu occurrence",
		"Replaced %lu occurrences", (unsigned long)numreplaced),
		(unsigned long)numreplaced);
Chris Allegretta's avatar
Chris Allegretta committed
983

Chris Allegretta's avatar
Chris Allegretta committed
984
985
986
    replace_abort();
}

987
988
/* 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.
989
990
 * Update the screen afterwards if allow_update is TRUE.  Note that both
 * the line and column numbers should be one-based. */
991
void do_gotolinecolumn(ssize_t line, ssize_t column, bool use_answer,
992
	bool interactive, bool save_pos, bool allow_update)
Chris Allegretta's avatar
Chris Allegretta committed
993
{
994
    if (interactive) {
995
	char *ans = mallocstrcpy(NULL, answer);
996
997

	/* Ask for it. */
998
	int i = statusq(FALSE, gotoline_list, use_answer ? ans : "",
Chris Allegretta's avatar
Chris Allegretta committed
999
#ifndef NANO_SMALL
1000
		NULL,
Chris Allegretta's avatar
Chris Allegretta committed
1001
#endif
1002
		_("Enter line number, column number"));
1003
1004

	free(ans);
Chris Allegretta's avatar
Chris Allegretta committed
1005
1006

	/* Cancel, or Enter with blank string. */
1007
	if (i < 0) {
1008
	    statusbar(_("Cancelled"));
1009
	    display_main_list();
1010
1011
1012
	    return;
	}

1013
	if (i == NANO_TOOTHERWHEREIS_KEY) {
1014
1015
1016
	    /* Keep answer up on the statusbar. */
	    search_init(TRUE, TRUE);

1017
	    do_search();
1018
	    return;
Chris Allegretta's avatar
Chris Allegretta committed
1019
	}
1020

1021
	/* Do a bounds check.  Display a warning on an out-of-bounds
1022
1023
	 * line or column number only if we hit Enter at the statusbar
	 * prompt. */
1024
	if (!parse_line_column(answer, &line, &column) || line < 1 ||
1025
		column < 1) {
1026
1027
	    if (i == 0)
		statusbar(_("Come on, be reasonable"));
Chris Allegretta's avatar
Chris Allegretta committed
1028
	    display_main_list();
1029
	    return;
Chris Allegretta's avatar
Chris Allegretta committed
1030
	}
1031
1032
    } else {
	if (line < 1)
1033
	    line = openfile->current->lineno;
1034

1035
	if (column < 1)
1036
	    column = openfile->placewewant + 1;
Chris Allegretta's avatar
Chris Allegretta committed
1037
1038
    }

1039
1040
1041
    for (openfile->current = openfile->fileage;
	openfile->current->next != NULL && line > 1; line--)
	openfile->current = openfile->current->next;
Chris Allegretta's avatar
Chris Allegretta committed
1042

1043
1044
    openfile->current_x = actual_x(openfile->current->data, column - 1);
    openfile->placewewant = column - 1;
1045

1046
1047
1048
1049
1050
1051
    /* 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. */
1052
    if (allow_update)
1053
	edit_refresh();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1054

Chris Allegretta's avatar
Chris Allegretta committed
1055
    display_main_list();
Chris Allegretta's avatar
Chris Allegretta committed
1056
1057
}

1058
void do_gotolinecolumn_void(void)
Chris Allegretta's avatar
Chris Allegretta committed
1059
{
1060
    do_gotolinecolumn(openfile->current->lineno,
1061
	openfile->placewewant + 1, FALSE, TRUE, FALSE, TRUE);
Chris Allegretta's avatar
Chris Allegretta committed
1062
}
1063

1064
#ifndef DISABLE_SPELLER
1065
1066
void do_gotopos(ssize_t line, size_t pos_x, ssize_t pos_y, size_t
	pos_pww)
1067
{
1068
    /* Since do_gotolinecolumn() resets the x-coordinate but not the
1069
     * y-coordinate, set the coordinates up this way. */
1070
    openfile->current_y = pos_y;
1071
    do_gotolinecolumn(line, pos_x + 1, FALSE, FALSE, TRUE, TRUE);
1072

1073
    /* Set the rest of the coordinates up. */
1074
1075
    openfile->placewewant = pos_pww;
    update_line(openfile->current, pos_x);
1076
1077
}
#endif
1078

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1079
1080
#ifndef NANO_SMALL
#ifdef HAVE_REGEX_H
1081
void do_find_bracket(void)
1082
{
1083
1084
    const char *pos, *bracket_pat = "([{<>}])";
    char cursor_ch, wanted_ch, regexp_pat[] = "[  ]";
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1085
    size_t current_x_save, pww_save;
1086
    int count = 1;
1087
1088
    bool regexp_set = ISSET(USE_REGEXP);
    bool backwards_search_set = ISSET(BACKWARDS_SEARCH);
1089
1090
    filestruct *current_save;

1091
    cursor_ch = openfile->current->data[openfile->current_x];
1092
    pos = strchr(bracket_pat, cursor_ch);
1093

1094
    if (cursor_ch == '\0' || pos == NULL) {
1095
	statusbar(_("Not a bracket"));
1096
	return;
1097
1098
    }

1099
    assert(strlen(bracket_pat) % 2 == 0);
1100

1101
1102
    wanted_ch =
	bracket_pat[(strlen(bracket_pat) - 1) - (pos - bracket_pat)];
1103

1104
1105
1106
    current_save = openfile->current;
    current_x_save = openfile->current_x;
    pww_save = openfile->placewewant;
1107
1108
    SET(USE_REGEXP);

1109
1110
    /* Apparent near redundancy with regexp_pat[] here is needed.
     * "[][]" works, "[[]]" doesn't. */
1111
    if (pos < bracket_pat + (strlen(bracket_pat) / 2)) {
1112
	/* On a left bracket. */
1113
	regexp_pat[1] = wanted_ch;
1114
	regexp_pat[2] = cursor_ch;
1115
	UNSET(BACKWARDS_SEARCH);
1116
1117
    } else {
	/* On a right bracket. */
1118
	regexp_pat[1] = cursor_ch;
1119
	regexp_pat[2] = wanted_ch;
1120
	SET(BACKWARDS_SEARCH);
1121
1122
1123
    }

    regexp_init(regexp_pat);
1124

1125
    /* We constructed regexp_pat to be a valid regular expression. */
1126
    assert(regexp_compiled);
1127

1128
    findnextstr_wrap_reset();
1129
    while (TRUE) {
1130
1131
	if (findnextstr(FALSE, FALSE, FALSE, openfile->current,
		openfile->current_x, regexp_pat, NULL)) {
1132
	    /* Found identical bracket. */
1133
1134
	    if (openfile->current->data[openfile->current_x] ==
		cursor_ch)
1135
		count++;
1136
1137
	    /* Found complementary bracket. */
	    else if (--count == 0) {
1138
		openfile->placewewant = xplustabs();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1139
		edit_redraw(current_save, pww_save);
1140
		break;
1141
	    }
Chris Allegretta's avatar
Chris Allegretta committed
1142
	} else {
1143
	    /* Didn't find either a left or right bracket. */
1144
	    statusbar(_("No matching bracket"));
1145
1146
1147
	    openfile->current = current_save;
	    openfile->current_x = current_x_save;
	    update_line(openfile->current, openfile->current_x);
1148
1149
1150
1151
	    break;
	}
    }

1152
    regexp_cleanup();
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162

    /* Restore search direction. */
    if (backwards_search_set)
	SET(BACKWARDS_SEARCH);
    else
	UNSET(BACKWARDS_SEARCH);

    /* Restore regular expression usage setting. */
    if (!regexp_set)
	UNSET(USE_REGEXP);
1163
}
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1164
#endif /* HAVE_REGEX_H */
1165

1166
#ifdef ENABLE_NANORC
1167
1168
1169
1170
1171
/* Indicate whether any of the history lists have changed. */
bool history_has_changed(void)
{
    return history_changed;
}
1172
#endif
1173

1174
/* Initialize the search and replace history lists. */
1175
1176
void history_init(void)
{
1177
1178
1179
1180
1181
1182
1183
1184
1185
    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;
1186
1187
}

1188
1189
1190
1191
1192
1193
1194
1195
1196
/* 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;
}

1197
1198
1199
1200
1201
/* 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. */
filestruct *find_history(filestruct *h_start, filestruct *h_end, const
	char *s, size_t len)
1202
{
1203
    filestruct *p;
1204

1205
1206
1207
    for (p = h_start; p != h_end->next && p != NULL; p = p->next) {
	if (strncmp(s, p->data, len) == 0)
	    return p;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1208
    }
1209

1210
1211
1212
    return NULL;
}

1213
1214
1215
/* Update a history list.  h should be the current position in the
 * list. */
void update_history(filestruct **h, const char *s)
1216
{
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
    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;
    }
1228

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

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

1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
    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);
	renumber(bar);
1248
1249
    }

1250
1251
1252
1253
1254
1255
1256
1257
1258
    /* If the history is full, delete the beginning entry to make room
     * for the new entry at the end. */
    if ((*hbot)->lineno == MAX_SEARCH_HISTORY + 1) {
	filestruct *foo = *hage;

	*hage = (*hage)->next;
	unlink_node(foo);
	delete_node(foo);
	renumber(*hage);
1259
    }
1260
1261
1262
1263
1264
1265
1266

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

1267
#ifdef ENABLE_NANORC
1268
1269
    /* Indicate that the history's been changed. */
    history_changed = TRUE;
1270
#endif
1271
1272
1273

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

1276
1277
/* 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. */
1278
char *get_history_older(filestruct **h)
1279
{
1280
    assert(h != NULL);
1281

1282
1283
1284
1285
1286
1287
    if ((*h)->prev == NULL)
	return NULL;

    *h = (*h)->prev;

    return (*h)->data;
1288
1289
}

1290
1291
/* 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. */
1292
char *get_history_newer(filestruct **h)
1293
{
1294
    assert(h != NULL);
1295

1296
1297
    if ((*h)->next == NULL)
	return NULL;
1298

1299
1300
1301
1302
    *h = (*h)->next;

    return (*h)->data;
}
1303
1304
1305
1306

#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
1307
1308
 * string.  If there isn't one, or if len is 0, don't move h and return
 * s. */
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
char *get_history_completion(filestruct **h, char *s, size_t len)
{
    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);

1328
1329
1330
	/* Search the history list from the current position to the
	 * bottom for a match of len characters.  Skip over an exact
	 * match. */
1331
1332
	p = find_history((*h)->next, hbot, s, len);

1333
1334
1335
	while (p != NULL && strcmp(p->data, s) == 0)
	    p = find_history(p->next, hbot, s, len);

1336
1337
1338
1339
1340
1341
	if (p != NULL) {
	    *h = p;
	    return (*h)->data;
	}

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

1345
1346
1347
	while (p != NULL && strcmp(p->data, s) == 0)
	    p = find_history(p->next, *h, s, len);

1348
1349
1350
1351
1352
1353
	if (p != NULL) {
	    *h = p;
	    return (*h)->data;
	}
    }

1354
1355
    /* If we're here, we didn't find a match, we didn't find an inexact
     * match, or len is 0.  Return s. */
1356
1357
1358
    return s;
}
#endif
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1359
#endif /* !NANO_SMALL */