search.c 29.3 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-2004 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
11
12
13
14
15
16
17
18
19
20
21
 *   any later version.                                                   *
 *                                                                        *
 *   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.                         *
 *                                                                        *
 *   You should have received a copy of the GNU General Public License    *
 *   along with this program; if not, write to the Free Software          *
 *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.            *
 *                                                                        *
 **************************************************************************/

22
23
#include "config.h"

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

34

35
#ifdef HAVE_REGEX_H
36
37
38
39
40
41
42
static int regexp_compiled = FALSE;

/* 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. */
43
int regexp_init(const char *regexp)
44
{
45
46
47
48
49
50
51
52
53
54
55
    int rc = regcomp(&search_regexp, regexp, REG_EXTENDED |
	(ISSET(CASE_SENSITIVE) ? 0 : REG_ICASE));

    assert(!regexp_compiled);
    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);
56
	return 0;
57
    }
58

59
    regexp_compiled = TRUE;
60
    return 1;
61
62
}

63
void regexp_cleanup(void)
64
{
65
66
    if (regexp_compiled) {
	regexp_compiled = FALSE;
67
68
	regfree(&search_regexp);
    }
69
}
70
#endif
71

72
73
void not_found_msg(const char *str)
{
74
75
76
    char *disp;
    int numchars;
 
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
77
    assert(str != NULL);
78
79
80
81
82
83
84
85

    disp = display_string(str, 0, (COLS / 2) + 1);
    numchars = strnlen(disp, COLS / 2);

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

    free(disp);
86
87
88
89
90
}

void search_abort(void)
{
    display_main_list();
91
#ifndef NANO_SMALL
92
    if (ISSET(MARK_ISSET))
93
94
	edit_refresh();
#endif
95
#ifdef HAVE_REGEX_H
96
    regexp_cleanup();
97
98
99
#endif
}

Chris Allegretta's avatar
Chris Allegretta committed
100
101
102
void search_init_globals(void)
{
    if (last_search == NULL) {
103
	last_search = charalloc(1);
Chris Allegretta's avatar
Chris Allegretta committed
104
	last_search[0] = '\0';
Chris Allegretta's avatar
Chris Allegretta committed
105
106
    }
    if (last_replace == NULL) {
107
	last_replace = charalloc(1);
Chris Allegretta's avatar
Chris Allegretta committed
108
	last_replace[0] = '\0';
Chris Allegretta's avatar
Chris Allegretta committed
109
110
111
    }
}

112
113
114
115
116
117
/* 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
118
 *
119
120
121
 * 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
122
{
123
    int i = 0;
124
    char *buf;
125
    static char *backupstring = NULL;
126
127
128
129
130
131
132
133
134
135
136
	/* 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;
    }
137
138
139
140

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

Chris Allegretta's avatar
Chris Allegretta committed
143
    search_init_globals();
144

145
#ifndef NANO_SMALL
146
    search_history.current = (historytype *)&search_history.next;
147
#endif
148
149

    if (last_search[0] != '\0') {
150
151
	char *disp = display_string(last_search, 0, COLS / 3);

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

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

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

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

183
#ifndef NANO_SMALL
184
185
	/* This string is just a modifier for the search prompt; no
	 * grammar is implied. */
186
187
188
	ISSET(REVERSE_SEARCH) ? _(" [Backwards]") :
#endif
		"",
189

Chris Allegretta's avatar
Chris Allegretta committed
190
191
	replacing ? _(" (to replace)") : "",
	buf);
Chris Allegretta's avatar
Chris Allegretta committed
192

193
    /* Release buf now that we don't need it anymore. */
Chris Allegretta's avatar
Chris Allegretta committed
194
195
    free(buf);

196
197
198
    free(backupstring);
    backupstring = NULL;

199
200
201
    /* 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')) {
202
	statusbar(_("Cancelled"));
203
204
205
#ifndef NANO_SMALL
	search_history.current = search_history.next;
#endif
Chris Allegretta's avatar
Chris Allegretta committed
206
	return -1;
Chris Allegretta's avatar
Chris Allegretta committed
207
208
    } else {
	switch (i) {
209
	case -2:	/* It's the same string. */
210
#ifdef HAVE_REGEX_H
211
	    /* Since answer is "", use last_search! */
212
	    if (ISSET(USE_REGEXP) && regexp_init(last_search) == 0)
213
		return -1;
214
#endif
Chris Allegretta's avatar
Chris Allegretta committed
215
	    break;
216
	case 0:		/* They entered something new. */
217
	    last_replace[0] = '\0';
218
#ifdef HAVE_REGEX_H
219
	    if (ISSET(USE_REGEXP) && regexp_init(answer) == 0)
220
		return -1;
221
#endif
Chris Allegretta's avatar
Chris Allegretta committed
222
223
224
225
226
227
228
229
230
231
	    break;
#ifndef NANO_SMALL
	case TOGGLE_CASE_KEY:
	    TOGGLE(CASE_SENSITIVE);
	    backupstring = mallocstrcpy(backupstring, answer);
	    return 1;
	case TOGGLE_BACKWARDS_KEY:
	    TOGGLE(REVERSE_SEARCH);
	    backupstring = mallocstrcpy(backupstring, answer);
	    return 1;
232
#ifdef HAVE_REGEX_H
Chris Allegretta's avatar
Chris Allegretta committed
233
234
235
236
	case TOGGLE_REGEXP_KEY:
	    TOGGLE(USE_REGEXP);
	    backupstring = mallocstrcpy(backupstring, answer);
	    return 1;
237
#endif
Chris Allegretta's avatar
Chris Allegretta committed
238
#endif /* !NANO_SMALL */
239
	case NANO_TOOTHERSEARCH_KEY:
Chris Allegretta's avatar
Chris Allegretta committed
240
	    backupstring = mallocstrcpy(backupstring, answer);
241
	    return -2;	/* Call the opposite search function. */
242
	case NANO_TOGOTOLINE_KEY:
243
244
245
#ifndef NANO_SMALL
	    search_history.current = search_history.next;
#endif
246
247
	    /* Put answer up on the statusbar. */
	    do_gotoline(-1, FALSE);
248
	    /* Fall through. */
Chris Allegretta's avatar
Chris Allegretta committed
249
	default:
250
	    return -1;
Chris Allegretta's avatar
Chris Allegretta committed
251
	}
Chris Allegretta's avatar
Chris Allegretta committed
252
253
254
255
    }
    return 0;
}

256
bool is_whole_word(int curr_pos, const char *datastr, const char
257
	*searchword)
258
{
Chris Allegretta's avatar
Chris Allegretta committed
259
    size_t sln = curr_pos + strlen(searchword);
260

261
262
    /* Start of line or previous character is not a letter and end of
     * line or next character is not a letter. */
Chris Allegretta's avatar
Chris Allegretta committed
263
264
    return (curr_pos < 1 || !isalpha((int)datastr[curr_pos - 1])) &&
	(sln == strlen(datastr) || !isalpha((int)datastr[sln]));
265
266
}

267
268
269
270
271
272
/* Look for needle, starting at current, column current_x.  If
 * no_sameline is nonzero, skip over begin when looking for needle.
 * begin is the line where we first started searching, at column beginx.
 * If can_display_wrap is nonzero, we put messages on the statusbar, and
 * wrap around the file boundaries.  The return value specifies whether
 * we found anything. */
273
274
275
bool findnextstr(bool can_display_wrap, bool wholeword, bool
	no_sameline, const filestruct *begin, size_t beginx, const char
	*needle)
Chris Allegretta's avatar
Chris Allegretta committed
276
{
Chris Allegretta's avatar
Chris Allegretta committed
277
    filestruct *fileptr = current;
278
279
280
    const char *rev_start = NULL, *found = NULL;
    size_t current_x_find = 0;
	/* Where needle was found. */
281
    int current_y_find = current_y;
282
283
284
285
286
287
288
289
290
291
292
293

    /* 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. */
#ifndef NANO_SMALL
    if (ISSET(REVERSE_SEARCH))
	rev_start = fileptr->data + (current_x - 1);
    else
#endif
	rev_start = fileptr->data + (current_x + 1);
Chris Allegretta's avatar
Chris Allegretta committed
294

295
    /* Look for needle in searchstr. */
296
    while (TRUE) {
297
	found = strstrwrapper(fileptr->data, needle, rev_start);
Chris Allegretta's avatar
Chris Allegretta committed
298

299
300
301
302
	if (found != NULL && (!wholeword || is_whole_word(found -
		fileptr->data, fileptr->data, needle))) {
	    if (!no_sameline || fileptr != current)
		break;
Chris Allegretta's avatar
Chris Allegretta committed
303
	}
304

305
306
307
	/* Finished processing file, get out. */
	if (search_last_line) {
	    if (can_display_wrap)
Chris Allegretta's avatar
Chris Allegretta committed
308
		not_found_msg(needle);
309
	    return 0;
310
	}
311
312
313
314
315
316
317
318
319

#ifndef NANO_SMALL
	if (ISSET(REVERSE_SEARCH)) {
	    fileptr = fileptr->prev;
	    current_y_find--;
	} else {
#endif
	    fileptr = fileptr->next;
	    current_y_find++;
320
#ifndef NANO_SMALL
321
	}
322
#endif
323

324
325
326
327
	/* Start or end of buffer reached; wrap around. */
	if (fileptr == NULL) {
	    if (!can_display_wrap)
		return 0;
328

329
#ifndef NANO_SMALL
330
331
332
333
	    if (ISSET(REVERSE_SEARCH)) {
		fileptr = filebot;
		current_y_find = editwinrows - 1;
	    } else {
334
#endif
335
336
337
338
339
340
		fileptr = fileage;
		current_y_find = 0;
#ifndef NANO_SMALL
	    }
#endif

341
342
343
	    if (can_display_wrap)
		statusbar(_("Search Wrapped"));
	}
Chris Allegretta's avatar
Chris Allegretta committed
344

345
346
	/* Original start line reached. */
	if (fileptr == begin)
347
	    search_last_line = TRUE;
348
349
350
351
352
353
	rev_start = fileptr->data;
#ifndef NANO_SMALL
	if (ISSET(REVERSE_SEARCH))
	    rev_start += strlen(fileptr->data);
#endif
    }
354

355
356
    /* We found an instance. */
    current_x_find = found - fileptr->data;
Chris Allegretta's avatar
Chris Allegretta committed
357

358
359
360
361
362
363
364
365
366
    /* Ensure we haven't wrapped around again! */
    if (search_last_line &&
#ifndef NANO_SMALL
	((!ISSET(REVERSE_SEARCH) && current_x_find > beginx) ||
	(ISSET(REVERSE_SEARCH) && current_x_find < beginx))
#else
	current_x_find > beginx
#endif
	) {
Chris Allegretta's avatar
Chris Allegretta committed
367

368
369
370
	if (can_display_wrap)
	    not_found_msg(needle);
	return 0;
Chris Allegretta's avatar
Chris Allegretta committed
371
372
    }

373
    /* Set globals now that we are sure we found something. */
374
375
    current = fileptr;
    current_x = current_x_find;
376
    current_y = current_y_find;
377

378
    return 1;
Chris Allegretta's avatar
Chris Allegretta committed
379
380
}

Chris Allegretta's avatar
Chris Allegretta committed
381
/* Search for a string. */
382
void do_search(void)
Chris Allegretta's avatar
Chris Allegretta committed
383
{
384
    size_t old_pww = placewewant, fileptr_x = current_x;
385
386
    int i;
    bool didfind;
387
    filestruct *fileptr = current;
Chris Allegretta's avatar
Chris Allegretta committed
388

389
#ifndef DISABLE_WRAPPING
Chris Allegretta's avatar
Chris Allegretta committed
390
    wrap_reset();
391
#endif
392

393
    i = search_init(FALSE, FALSE);
394
395
    if (i == -1)	/* Cancel, Go to Line, blank search string, or
			 * regcomp() failed. */
Chris Allegretta's avatar
Chris Allegretta committed
396
	search_abort();
397
    else if (i == -2)	/* Replace. */
Chris Allegretta's avatar
Chris Allegretta committed
398
	do_replace();
399
400
401
#ifndef NANO_SMALL
    else if (i == 1)	/* Case Sensitive, Backwards, or Regexp search
			 * toggle. */
Chris Allegretta's avatar
Chris Allegretta committed
402
	do_search();
403
#endif
404

405
    if (i != 0)
406
	return;
407
408

    /* If answer is now "", copy last_search into answer. */
Chris Allegretta's avatar
Chris Allegretta committed
409
    if (answer[0] == '\0')
410
411
412
413
	answer = mallocstrcpy(answer, last_search);
    else
	last_search = mallocstrcpy(last_search, answer);

414
#ifndef NANO_SMALL
415
416
    /* If answer is not "", add this search string to the search history
     * list. */
Chris Allegretta's avatar
Chris Allegretta committed
417
    if (answer[0] != '\0')
418
	update_history(&search_history, answer);
419
#endif
420

421
    search_last_line = FALSE;
422
    didfind = findnextstr(TRUE, FALSE, FALSE, current, current_x, answer);
423

424
425
426
427
428
429
430
431
432
    /* Check to see if there's only one occurrence of the string and
     * we're on it now. */
    if (fileptr == current && fileptr_x == current_x && didfind) {
#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. */
433
434
	if (ISSET(USE_REGEXP) && regexp_bol_or_eol(&search_regexp,
		last_search)) {
435
436
	    didfind = findnextstr(TRUE, FALSE, TRUE, current, current_x,
		answer);
437
438
439
440
441
442
443
444
445
	    if (fileptr == current && fileptr_x == current_x && !didfind)
		statusbar(_("This is the only occurrence"));
	} else {
#endif
	    statusbar(_("This is the only occurrence"));
#ifdef HAVE_REGEX_H
	}
#endif
    }
446

447
    placewewant = xplustabs();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
448
    edit_redraw(fileptr, old_pww);
Chris Allegretta's avatar
Chris Allegretta committed
449
450
451
    search_abort();
}

452
#ifndef NANO_SMALL
453
/* Search for the next string without prompting. */
454
void do_research(void)
455
{
456
    size_t old_pww = placewewant, fileptr_x = current_x;
457
    bool didfind;
458
    filestruct *fileptr = current;
459

460
#ifndef DISABLE_WRAPPING
461
    wrap_reset();
462
#endif
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
463

464
465
466
467
468
    search_init_globals();

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

#ifdef HAVE_REGEX_H
469
	/* Since answer is "", use last_search! */
470
	if (ISSET(USE_REGEXP) && regexp_init(last_search) == 0)
471
	    return;
472
473
#endif

474
	search_last_line = FALSE;
475
476
	didfind = findnextstr(TRUE, FALSE, FALSE, current, current_x,
		last_search);
477

478
479
480
481
482
483
484
485
486
	/* Check to see if there's only one occurrence of the string and
	 * we're on it now. */
	if (fileptr == current && fileptr_x == current_x && didfind) {
#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. */
487
488
	    if (ISSET(USE_REGEXP) && regexp_bol_or_eol(&search_regexp,
		last_search)) {
489
490
		didfind = findnextstr(TRUE, FALSE, TRUE, current,
			current_x, answer);
491
492
493
494
495
496
497
498
499
		if (fileptr == current && fileptr_x == current_x && !didfind)
		    statusbar(_("This is the only occurrence"));
	    } else {
#endif
		statusbar(_("This is the only occurrence"));
#ifdef HAVE_REGEX_H
	    }
#endif
	}
500
501
502
    } else
        statusbar(_("No current search pattern"));

503
    placewewant = xplustabs();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
504
    edit_redraw(fileptr, old_pww);
505
506
    search_abort();
}
507
#endif
508

Chris Allegretta's avatar
Chris Allegretta committed
509
510
void replace_abort(void)
{
511
512
513
    /* Identical to search_abort(), so we'll call it here.  If it does
     * something different later, we can change it back.  For now, it's
     * just a waste to duplicate code. */
514
    search_abort();
515
    placewewant = xplustabs();
516
517
}

518
#ifdef HAVE_REGEX_H
519
int replace_regexp(char *string, bool create_flag)
520
{
521
    /* Split personality here - if create_flag is FALSE, just calculate
522
     * the size of the replacement line (necessary because of
523
     * subexpressions \1 to \9 in the replaced text). */
524

525
    const char *c = last_replace;
526
    int search_match_count = regmatches[0].rm_eo - regmatches[0].rm_so;
527
    int new_size = strlen(current->data) + 1 - search_match_count;
528

Chris Allegretta's avatar
Chris Allegretta committed
529
530
    /* Iterate through the replacement text to handle subexpression
     * replacement using \1, \2, \3, etc. */
531
    while (*c != '\0') {
532
533
534
	int num = (int)(*(c + 1) - '0');

	if (*c != '\\' || num < 1 || num > 9 || num > search_regexp.re_nsub) {
535
536
537
538
539
	    if (create_flag)
		*string++ = *c;
	    c++;
	    new_size++;
	} else {
540
	    int i = regmatches[num].rm_eo - regmatches[num].rm_so;
541

542
543
	    /* Skip over the replacement expression. */
	    c += 2;
544

545
546
	    /* But add the length of the subexpression to new_size. */
	    new_size += i;
547

548
	    /* And if create_flag is TRUE, append the result of the
549
550
551
552
553
	     * subexpression match to the new line. */
	    if (create_flag) {
		strncpy(string, current->data + current_x +
			regmatches[num].rm_so, i);
		string += i;
554
555
	    }
	}
556
557
558
    }

    if (create_flag)
Chris Allegretta's avatar
Chris Allegretta committed
559
	*string = '\0';
560
561
562

    return new_size;
}
563
#endif
564

565
char *replace_line(const char *needle)
566
{
567
    char *copy;
568
569
570
    int new_line_size;
    int search_match_count;

571
    /* Calculate the size of the new line. */
572
#ifdef HAVE_REGEX_H
573
    if (ISSET(USE_REGEXP)) {
574
	search_match_count = regmatches[0].rm_eo - regmatches[0].rm_so;
575
	new_line_size = replace_regexp(NULL, 0);
576
    } else {
577
#endif
578
579
580
581
	search_match_count = strlen(needle);
	new_line_size = strlen(current->data) - search_match_count +
	    strlen(answer) + 1;
#ifdef HAVE_REGEX_H
582
    }
583
#endif
584

585
    /* Create the buffer. */
586
    copy = charalloc(new_line_size);
587

588
    /* The head of the original line. */
589
590
    strncpy(copy, current->data, current_x);

591
    /* The replacement text. */
592
#ifdef HAVE_REGEX_H
593
594
    if (ISSET(USE_REGEXP))
	replace_regexp(copy + current_x, TRUE);
595
    else
596
#endif
597
	strcpy(copy + current_x, answer);
598

599
600
601
    /* The tail of the original line. */
    assert(current_x + search_match_count <= strlen(current->data));
    strcat(copy, current->data + current_x + search_match_count);
602
603

    return copy;
Chris Allegretta's avatar
Chris Allegretta committed
604
605
}

606
607
608
609
610
611
612
613
/* Step through each replace word and prompt user before replacing.
 * Parameters real_current and real_current_x are needed by the internal
 * speller, to allow the cursor position to be updated when a word
 * before the cursor is replaced by a shorter word.
 *
 * needle is the string to seek.  We replace it with answer.  Return -1
 * if needle isn't found, else the number of replacements performed. */
int do_replace_loop(const char *needle, const filestruct *real_current,
614
	size_t *real_current_x, bool wholewords)
Chris Allegretta's avatar
Chris Allegretta committed
615
{
616
    int numreplaced = -1;
617
    size_t old_pww = placewewant, current_x_save = current_x;
618
    const filestruct *current_save = current;
619
    bool replaceall = FALSE;
620
#ifdef HAVE_REGEX_H
621
    /* The starting-line match and bol/eol regex flags. */
622
    bool begin_line = FALSE, bol_or_eol = FALSE;
623
#endif
624
#ifndef NANO_SMALL
625
    bool old_mark_set = ISSET(MARK_ISSET);
Chris Allegretta's avatar
Chris Allegretta committed
626

627
628
629
    UNSET(MARK_ISSET);
    edit_refresh();
#endif
630

631
    while (findnextstr(TRUE, wholewords,
632
#ifdef HAVE_REGEX_H
633
634
635
636
637
	/* 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
638
#else
639
	FALSE
640
#endif
641
	, current_save, current_x_save, needle)) {
642
643
644

	int i = 0;
	size_t match_len;
645
646

#ifdef HAVE_REGEX_H
647
	/* If the bol_or_eol flag is set, we've found a match on the
648
649
	 * beginning line already, and we're still on the beginning line
	 * after the search, it means that we've wrapped around, so
650
	 * we're done. */
651
652
653
654
655
	if (bol_or_eol && begin_line && current == real_current)
	    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. */
656
	else {
657
	    if (current == real_current)
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
658
659
		begin_line = TRUE;
	    bol_or_eol = FALSE;
660
661
	}
#endif
Chris Allegretta's avatar
Chris Allegretta committed
662

663
664
	if (!replaceall) {
	    placewewant = xplustabs();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
665
	    edit_redraw(current_save, old_pww);
666
667
	    old_pww = placewewant;
	}
Chris Allegretta's avatar
Chris Allegretta committed
668

669
670
671
672
673
#ifdef HAVE_REGEX_H
	if (ISSET(USE_REGEXP))
	    match_len = regmatches[0].rm_eo - regmatches[0].rm_so;
	else
#endif
674
675
676
677
678
	    match_len = strlen(needle);

	/* Record for the return value that we found the search string. */
	if (numreplaced == -1)
	    numreplaced = 0;
679

680
	if (!replaceall) {
681
682
683
684
685
686
	    char *exp_word;
	    size_t xpt = xplustabs();

	    exp_word = display_string(current->data, xpt,
		strnlenpt(current->data, match_len + current_x) - xpt);

687
	    curs_set(0);
688
	    do_replace_highlight(TRUE, exp_word);
689

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

692
693
	    do_replace_highlight(FALSE, exp_word);
	    free(exp_word);
694
	    curs_set(1);
695

696
	    if (i == -1)	/* We canceled the replace. */
697
		break;
698
699
	}

700
#ifdef HAVE_REGEX_H
701
	/* Set the bol_or_eol flag if we're doing a bol and/or eol regex
702
	 * replace ("^", "$", or "^$"). */
703
704
	if (ISSET(USE_REGEXP) && regexp_bol_or_eol(&search_regexp,
		needle))
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
705
	    bol_or_eol = TRUE;
706
707
#endif

708
	if (i > 0 || replaceall) {	/* Yes, replace it!!!! */
709
710
	    char *copy;
	    int length_change;
711

712
	    if (i == 2)
713
		replaceall = TRUE;
Chris Allegretta's avatar
Chris Allegretta committed
714

715
	    copy = replace_line(needle);
Chris Allegretta's avatar
Chris Allegretta committed
716

717
	    length_change = strlen(copy) - strlen(current->data);
Chris Allegretta's avatar
Chris Allegretta committed
718

719
720
721
722
723
724
725
726
#ifndef NANO_SMALL
	    if (current == mark_beginbuf && mark_beginx > current_x) {
		if (mark_beginx < current_x + match_len)
		    mark_beginx = current_x;
		else
		    mark_beginx += length_change;
	    }
#endif
Chris Allegretta's avatar
Chris Allegretta committed
727

728
	    assert(0 <= match_len + length_change);
729
730
731
732
	    if (current == real_current && current_x <= *real_current_x) {
		if (*real_current_x < current_x + match_len)
		    *real_current_x = current_x + match_len;
		*real_current_x += length_change;
733
	    }
734

735
	    /* Set the cursor at the last character of the replacement
736
737
	     * text, so searching will resume after the replacement
	     * text.  Note that current_x might be set to -1 here. */
738
#ifndef NANO_SMALL
739
	    if (!ISSET(REVERSE_SEARCH))
740
741
#endif
		current_x += match_len + length_change - 1;
742

743
	    /* Cleanup. */
744
745
746
	    totsize += length_change;
	    free(current->data);
	    current->data = copy;
747

748
749
750
751
752
753
754
755
756
	    if (!replaceall) {
#ifdef ENABLE_COLOR
		if (ISSET(COLOR_SYNTAX))
		    edit_refresh();
		else
#endif
		    update_line(current, current_x);
	    }

Chris Allegretta's avatar
Chris Allegretta committed
757
758
	    set_modified();
	    numreplaced++;
759
	}
Chris Allegretta's avatar
Chris Allegretta committed
760
761
    }

Chris Allegretta's avatar
Chris Allegretta committed
762
763
764
765
    /* If text has been added to the magicline, make a new magicline. */
    if (filebot->data[0] != '\0')
	new_magicline();

766
#ifndef NANO_SMALL
767
    if (old_mark_set)
768
769
770
	SET(MARK_ISSET);
#endif

Chris Allegretta's avatar
Chris Allegretta committed
771
772
773
    return numreplaced;
}

Chris Allegretta's avatar
Chris Allegretta committed
774
/* Replace a string. */
775
void do_replace(void)
Chris Allegretta's avatar
Chris Allegretta committed
776
{
777
778
779
    int i, numreplaced;
    filestruct *edittop_save, *begin;
    size_t beginx;
Chris Allegretta's avatar
Chris Allegretta committed
780

Chris Allegretta's avatar
Chris Allegretta committed
781
782
783
    if (ISSET(VIEW_MODE)) {
	print_view_warning();
	replace_abort();
784
	return;
Chris Allegretta's avatar
Chris Allegretta committed
785
786
    }

787
    i = search_init(TRUE, FALSE);
788
789
    if (i == -1) {		/* Cancel, Go to Line, blank search
				 * string, or regcomp() failed. */
Chris Allegretta's avatar
Chris Allegretta committed
790
	replace_abort();
791
	return;
792
    } else if (i == -2) {	/* No Replace. */
Chris Allegretta's avatar
Chris Allegretta committed
793
	do_search();
794
	return;
795
796
797
798
799
    } else if (i == 1)		/* Case Sensitive, Backwards, or Regexp
				 * search toggle. */
	do_replace();

    if (i != 0)
800
	return;
Chris Allegretta's avatar
Chris Allegretta committed
801

802
803
804
    /* If answer is not "", add answer to the search history list and
     * copy answer into last_search. */
    if (answer[0] != '\0') {
805
#ifndef NANO_SMALL
806
	update_history(&search_history, answer);
807
#endif
Chris Allegretta's avatar
Chris Allegretta committed
808
	last_search = mallocstrcpy(last_search, answer);
809
    }
Chris Allegretta's avatar
Chris Allegretta committed
810

811
#ifndef NANO_SMALL
812
813
    replace_history.current = (historytype *)&replace_history.next;
    last_replace = mallocstrcpy(last_replace, "");
814
#endif
815

816
    i = statusq(FALSE, replace_list_2, last_replace,
817
#ifndef NANO_SMALL
818
	&replace_history,
819
#endif
820
	_("Replace with"));
821

822
#ifndef NANO_SMALL
823
824
825
    /* Add this replace string to the replace history list.  i == 0
     * means that the string is not "". */
    if (i == 0)
826
	update_history(&replace_history, answer);
827
828
829
830
831
832
#endif

    if (i != 0 && i != -2) {
	if (i == -1) {		/* Cancel. */
	    if (last_replace[0] != '\0')
		answer = mallocstrcpy(answer, last_replace);
833
	    statusbar(_("Cancelled"));
834
835
	}
	replace_abort();
836
	return;
837
838
839
    }

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

841
    /* Save where we are. */
Chris Allegretta's avatar
Chris Allegretta committed
842
    begin = current;
843
    beginx = current_x;
844
845
    edittop_save = edittop;
    search_last_line = FALSE;
Chris Allegretta's avatar
Chris Allegretta committed
846

847
    numreplaced = do_replace_loop(last_search, begin, &beginx, FALSE);
Chris Allegretta's avatar
Chris Allegretta committed
848

849
    /* Restore where we were. */
850
    edittop = edittop_save;
Chris Allegretta's avatar
Chris Allegretta committed
851
    current = begin;
852
    current_x = beginx;
Chris Allegretta's avatar
Chris Allegretta committed
853
    renumber_all();
854
    edit_refresh();
Chris Allegretta's avatar
Chris Allegretta committed
855
856

    if (numreplaced >= 0)
857
	statusbar(P_("Replaced %d occurrence", "Replaced %d occurrences",
Chris Allegretta's avatar
Chris Allegretta committed
858
859
		numreplaced), numreplaced);

Chris Allegretta's avatar
Chris Allegretta committed
860
861
862
    replace_abort();
}

863
void do_gotoline(int line, bool save_pos)
Chris Allegretta's avatar
Chris Allegretta committed
864
{
865
    if (line <= 0) {		/* Ask for it. */
866
	char *ans = mallocstrcpy(NULL, answer);
867
	int i = statusq(FALSE, gotoline_list, line < 0 ? ans : "",
Chris Allegretta's avatar
Chris Allegretta committed
868
#ifndef NANO_SMALL
869
		NULL,
Chris Allegretta's avatar
Chris Allegretta committed
870
#endif
871
872
873
		_("Enter line number"));

	free(ans);
Chris Allegretta's avatar
Chris Allegretta committed
874
875

	/* Cancel, or Enter with blank string. */
876
	if (i < 0) {
877
	    statusbar(_("Cancelled"));
878
	    display_main_list();
879
880
881
	    return;
	}

882
	if (i == NANO_TOOTHERWHEREIS_KEY) {
883
884
885
	    /* Keep answer up on the statusbar. */
	    search_init(TRUE, TRUE);

886
	    do_search();
887
	    return;
Chris Allegretta's avatar
Chris Allegretta committed
888
	}
889

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
890
	/* Bounds check. */
891
	if (!parse_num(answer, &line) || line < 0) {
892
	    statusbar(_("Come on, be reasonable"));
Chris Allegretta's avatar
Chris Allegretta committed
893
	    display_main_list();
894
	    return;
Chris Allegretta's avatar
Chris Allegretta committed
895
896
897
	}
    }

898
899
900
901
902
903
904
905
906
    if (current->lineno > line) {
	for (; current->prev != NULL && current->lineno > line;
		current = current->prev)
	    ;
    } else {
	for (; current->next != NULL && current->lineno < line;
		current = current->next)
	    ;
    }
Chris Allegretta's avatar
Chris Allegretta committed
907

908
    current_x = 0;
909

910
    /* If save_pos is TRUE, don't change the cursor position when
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
911
     * updating the edit window. */
912
    edit_update(save_pos ? NONE : CENTER);
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
913

914
    placewewant = 0;
Chris Allegretta's avatar
Chris Allegretta committed
915
    display_main_list();
Chris Allegretta's avatar
Chris Allegretta committed
916
917
}

918
void do_gotoline_void(void)
Chris Allegretta's avatar
Chris Allegretta committed
919
{
920
    do_gotoline(0, FALSE);
Chris Allegretta's avatar
Chris Allegretta committed
921
}
922

923
#if defined(ENABLE_MULTIBUFFER) || !defined(DISABLE_SPELLER)
924
void do_gotopos(int line, int pos_x, int pos_y, size_t pos_pww)
925
{
926
927
    /* Since do_gotoline() resets the x-coordinate but not the
     * y-coordinate, set the coordinates up this way. */
928
    current_y = pos_y;
929
    do_gotoline(line, TRUE);
930

931
932
933
934
    /* Make sure that the x-coordinate is sane here. */
    current_x = strlen(current->data);
    if (pos_x < current_x)
	current_x = pos_x;
935

936
    /* Set the rest of the coordinates up. */
937
    placewewant = pos_pww;
938
939
940
    update_line(current, pos_x);
}
#endif
941
942

#if !defined(NANO_SMALL) && defined(HAVE_REGEX_H)
943
void do_find_bracket(void)
944
945
{
    char ch_under_cursor, wanted_ch;
946
    const char *pos, *brackets = "([{<>}])";
947
    char regexp_pat[] = "[  ]";
948
949
    size_t old_pww, current_x_save;
    int count = 1;
950
    long flags_save;
951
952
953
    filestruct *current_save;

    ch_under_cursor = current->data[current_x];
954

955
956
    pos = strchr(brackets, ch_under_cursor);
    if (ch_under_cursor == '\0' || pos == NULL) {
957
	statusbar(_("Not a bracket"));
958
	return;
959
960
    }

961
962
    assert(strlen(brackets) % 2 == 0);
    wanted_ch = brackets[(strlen(brackets) - 1) - (pos - brackets)];
963

964
    old_pww = placewewant;
965
966
    current_x_save = current_x;
    current_save = current;
967
    flags_save = flags;
968
969
    SET(USE_REGEXP);

970
971
    /* Apparent near redundancy with regexp_pat[] here is needed.
     * "[][]" works, "[[]]" doesn't. */
972

973
974
    if (pos < brackets + (strlen(brackets) / 2)) {
	/* On a left bracket. */
975
976
977
	regexp_pat[1] = wanted_ch;
	regexp_pat[2] = ch_under_cursor;
	UNSET(REVERSE_SEARCH);
978
979
    } else {
	/* On a right bracket. */
980
981
982
983
984
985
	regexp_pat[1] = ch_under_cursor;
	regexp_pat[2] = wanted_ch;
	SET(REVERSE_SEARCH);
    }

    regexp_init(regexp_pat);
986
    /* We constructed regexp_pat to be a valid expression. */
987
    assert(regexp_compiled);
988

989
    search_last_line = FALSE;
990
    while (TRUE) {
991
992
	if (findnextstr(FALSE, FALSE, FALSE, current, current_x,
		regexp_pat)) {
993
	    /* Found identical bracket. */
Chris Allegretta's avatar
Chris Allegretta committed
994
	    if (current->data[current_x] == ch_under_cursor)
995
		count++;
996
997
998
	    /* Found complementary bracket. */
	    else if (--count == 0) {
		placewewant = xplustabs();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
999
		edit_redraw(current_save, old_pww);
1000
		break;
1001
	    }
Chris Allegretta's avatar
Chris Allegretta committed
1002
	} else {
1003
	    /* Didn't find either a left or right bracket. */
1004
1005
1006
	    statusbar(_("No matching bracket"));
	    current_x = current_x_save;
	    current = current_save;
Chris Allegretta's avatar
Chris Allegretta committed
1007
	    update_line(current, current_x);
1008
1009
1010
1011
	    break;
	}
    }

1012
    regexp_cleanup();
1013
    flags = flags_save;
1014
1015
}
#endif
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040

#ifndef NANO_SMALL
/*
 * search and replace history list support functions
 */

/* initialize search and replace history lists */
void history_init(void)
{
    search_history.next = (historytype *)&search_history.prev;
    search_history.prev = NULL;
    search_history.tail = (historytype *)&search_history.next;
    search_history.current = search_history.next;
    search_history.count = 0;
    search_history.len = 0;

    replace_history.next = (historytype *)&replace_history.prev;
    replace_history.prev = NULL;
    replace_history.tail = (historytype *)&replace_history.next;
    replace_history.current = replace_history.next;
    replace_history.count = 0;
    replace_history.len = 0;
}

/* find first node containing string *s in history list *h */
1041
historytype *find_node(historytype *h, const char *s)
1042
{
Chris Allegretta's avatar
Chris Allegretta committed
1043
    for (; h->next != NULL; h = h->next)
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
	if (strcmp(s, h->data) == 0)
	    return h;
    return NULL;
}

/* remove node *r */
void remove_node(historytype *r)
{
    r->prev->next = r->next;
    r->next->prev = r->prev;
    free(r->data);
    free(r);
}

/* add a node after node *h */
void insert_node(historytype *h, const char *s)
{
    historytype *a;

David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
1063
    a = (historytype *)nmalloc(sizeof(historytype));
1064
    a->next = h->next;
1065
    a->prev = h;
1066
1067
1068
1069
1070
1071
    h->next->prev = a;
    h->next = a;
    a->data = mallocstrcpy(NULL, s);
}

/* update history list */
1072
void update_history(historyheadtype *h, const char *s)
1073
1074
1075
{
    historytype *p;

Chris Allegretta's avatar
Chris Allegretta committed
1076
1077
1078
    if ((p = find_node(h->next, s)) != NULL) {
	if (p == h->next)		/* catch delete and re-insert of
					   same string in 1st node */
1079
	    goto up_hs;
Chris Allegretta's avatar
Chris Allegretta committed
1080
	remove_node(p);			/* delete identical older string */
1081
1082
1083
1084
1085
1086
1087
1088
	h->count--;
    }
    if (h->count == MAX_SEARCH_HISTORY) {	/* list 'full', delete oldest */
	remove_node(h->tail);
	h->count--;
    }
    insert_node((historytype *)h, s);
    h->count++;
1089
    SET(HISTORY_CHANGED);
Chris Allegretta's avatar
Chris Allegretta committed
1090
  up_hs:
1091
1092
1093
1094
1095
1096
    h->current = h->next;
}

/* return a pointer to either the next older history or NULL if no more */
char *get_history_older(historyheadtype *h)
{
Chris Allegretta's avatar
Chris Allegretta committed
1097
    if (h->current->next != NULL) {	/* any older entries? */
1098
1099
1100
1101
1102
1103
1104
1105
	h->current = h->current->next;	/* yes */
	return h->current->data;	/* return it */
    }
    return NULL;			/* end of list */
}

char *get_history_newer(historyheadtype *h)
{
Chris Allegretta's avatar
Chris Allegretta committed
1106
    if (h->current->prev != NULL) {
1107
	h->current = h->current->prev;
Chris Allegretta's avatar
Chris Allegretta committed
1108
	if (h->current->prev != NULL)
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
	    return h->current->data;
    }
    return NULL;
}

/* get a completion */
char *get_history_completion(historyheadtype *h, char *s)
{
    historytype *p;

Chris Allegretta's avatar
Chris Allegretta committed
1119
1120
    for (p = h->current->next; p->next != NULL; p = p->next) {
	if (strncmp(s, p->data, h->len) == 0 && strlen(p->data) != h->len) {
1121
1122
1123
1124
1125
1126
1127
1128
1129
	    h->current = p;
	    return p->data;
	}
    }
    h->current = (historytype*)h;
    null_at(&s, h->len);
    return s;
}

1130
#ifdef DEBUG
1131
1132
1133
/* free a history list */
void free_history(historyheadtype *h)
{
1134
    historytype *p;
1135

1136
    for (p = h->next; p->next != NULL; p = p->next)
1137
1138
	remove_node(p);
}
1139
#endif
1140
1141
1142

/* end of history support functions */
#endif /* !NANO_SMALL */