search.c 14.1 KB
Newer Older
Chris Allegretta's avatar
Chris Allegretta committed
1
/* $Id$ */
Chris Allegretta's avatar
Chris Allegretta committed
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**************************************************************************
 *   search.c                                                             *
 *                                                                        *
 *   Copyright (C) 2000 Chris Allegretta                                  *
 *   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 *
 *   the Free Software Foundation; either version 1, or (at your option)  *
 *   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.            *
 *                                                                        *
 **************************************************************************/

#include <stdlib.h>
#include <string.h>
24
#include <unistd.h>
Chris Allegretta's avatar
Chris Allegretta committed
25
26
27
28
#include <stdio.h>
#include "config.h"
#include "proto.h"
#include "nano.h"
Chris Allegretta's avatar
Chris Allegretta committed
29

Chris Allegretta's avatar
Chris Allegretta committed
30
31
32
33
34
35
36
#ifndef NANO_SMALL
#include <libintl.h>
#define _(string) gettext(string)
#else
#define _(string) (string)
#endif

37
38
static char *last_search = NULL;	/* Last string we searched for */
static char *last_replace = NULL;	/* Last replacement string */
39
static int search_last_line;
40

41

42
43
/* Regular expression helper functions */

44
#ifdef HAVE_REGEX_H
45
46
47
48
49
50
51
52
53
54
55
void regexp_init(const char *regexp)
{
    regcomp(&search_regexp, regexp, ISSET(CASE_SENSITIVE) ? 0 : REG_ICASE);
    SET(REGEXP_COMPILED);
}

void regexp_cleanup()
{
    UNSET(REGEXP_COMPILED);
    regfree(&search_regexp);
}
56
#endif
57

Chris Allegretta's avatar
Chris Allegretta committed
58
59
60
61
62
63
64
65
66
/* Set up the system variables for a search or replace.  Returns -1 on
   abort, 0 on success, and 1 on rerun calling program 
   Return -2 to run opposite program (searchg -> replace, replace -> search)

   replacing = 1 if we call from do_replace, 0 if called from do_search func.
*/
int search_init(int replacing)
{
    int i;
67
/*    char buf[BUFSIZ]; */
68
    char *prompt, *reprompt = "";
69

70
71
72
73
74
75
76
77
78
   if (last_search == NULL) {
	last_search = nmalloc(1);
	last_search[0] = 0;
   }
   if (last_replace == NULL) {
	last_replace = nmalloc(1);
	last_replace[0] = 0;
   }

79
/*
Chris Allegretta's avatar
Chris Allegretta committed
80
    if (last_search[0]) {
81
	snprintf(buf, BUFSIZ, " [%s]", last_search);
Chris Allegretta's avatar
Chris Allegretta committed
82
83
84
    } else {
	buf[0] = '\0';
    }
85
*/
Chris Allegretta's avatar
Chris Allegretta committed
86

87
    if (ISSET(USE_REGEXP) && ISSET(CASE_SENSITIVE))
88
	prompt = _("Case Sensitive Regexp Search%s%s");
89
    else if (ISSET(USE_REGEXP))
90
91
92
	prompt = _("Regexp Search%s%s");
    else if (ISSET(CASE_SENSITIVE))
	prompt = _("Case Sensitive Search%s%s");
93
    else
94
	prompt = _("Search%s%s");
95
96
97

    if (replacing)
	reprompt = _(" (to replace)");
98

Chris Allegretta's avatar
Chris Allegretta committed
99
    i = statusq(replacing ? replace_list : whereis_list,
100
101
		replacing ? REPLACE_LIST_LEN : WHEREIS_LIST_LEN, last_search,
		prompt, reprompt, "");
Chris Allegretta's avatar
Chris Allegretta committed
102
103
104
105
106
107
108

    /* Cancel any search, or just return with no previous search */
    if ((i == -1) || (i < 0 && !last_search[0])) {
	statusbar(_("Search Cancelled"));
	reset_cursor();
	return -1;
    } else if (i == -2) {	/* Same string */
109
	answer = mallocstrcpy(answer, last_search);
110
#ifdef HAVE_REGEX_H
111
112
	if (ISSET(USE_REGEXP))
	    regexp_init(answer);
113
#endif
Chris Allegretta's avatar
Chris Allegretta committed
114
    } else if (i == 0) {	/* They entered something new */
115
	last_search = mallocstrcpy(last_search, answer);
116
#ifdef HAVE_REGEX_H
117
118
	if (ISSET(USE_REGEXP))
	    regexp_init(answer);
119
#endif
Chris Allegretta's avatar
Chris Allegretta committed
120
121
122
123
124
125
126
127
128
129
130
131
	/* Blow away last_replace because they entered a new search
	   string....uh, right? =) */
	last_replace[0] = '\0';
    } else if (i == NANO_CASE_KEY) {	/* They want it case sensitive */
	if (ISSET(CASE_SENSITIVE))
	    UNSET(CASE_SENSITIVE);
	else
	    SET(CASE_SENSITIVE);

	return 1;
    } else if (i == NANO_OTHERSEARCH_KEY) {
	return -2;		/* Call the opposite search function */
132
133
134
    } else if (i == NANO_FROMSEARCHTOGOTO_KEY) {
	do_gotoline_void();
	return -3;
135
    } else {			/* First line key, etc. */
Chris Allegretta's avatar
Chris Allegretta committed
136
137
138
139
140
141
142
	do_early_abort();
	return -3;
    }

    return 0;
}

143
144
145
146
147
148
149
150
151
152
153
154
155
void not_found_msg(char *str)
{
    char foo[COLS];

    if (strlen(str) < COLS / 2)
	statusbar(_("\"%s\" not found"), str);
    else {
	strncpy(foo, str, COLS / 2);
	foo[COLS / 2] = 0;
	statusbar(_("\"%s...\" not found"), foo);
    }
}

156
157
filestruct *findnextstr(int quiet, filestruct * begin, int beginx,
			char *needle)
Chris Allegretta's avatar
Chris Allegretta committed
158
159
160
{
    filestruct *fileptr;
    char *searchstr, *found = NULL, *tmp;
161
    int past_editbot = 0;
Chris Allegretta's avatar
Chris Allegretta committed
162

163
    fileptr = current;
Chris Allegretta's avatar
Chris Allegretta committed
164

165
    current_x++;
Chris Allegretta's avatar
Chris Allegretta committed
166

167
    /* Are we searching the last line? (i.e. the line where search started) */
168
    if ((fileptr == begin) && (current_x < beginx))
169
	search_last_line = 1;
Chris Allegretta's avatar
Chris Allegretta committed
170

171
    /* Make sure we haven't passed the end of the string */
172
    if (strlen(fileptr->data) < current_x)
173
	current_x--;
Chris Allegretta's avatar
Chris Allegretta committed
174

175
    searchstr = &fileptr->data[current_x];
Chris Allegretta's avatar
Chris Allegretta committed
176

177
    /* Look for needle in searchstr */
178
    while ((found = strstrwrapper(searchstr, needle)) == NULL) {
Chris Allegretta's avatar
Chris Allegretta committed
179

180
	/* finished processing file, get out */
181
	if (search_last_line) {
Chris Allegretta's avatar
Chris Allegretta committed
182
	    if (!quiet)
183
		not_found_msg(needle);
Chris Allegretta's avatar
Chris Allegretta committed
184
185
186
	    return NULL;
	}

187
188
189
190
191
192
193
194
195
196
	fileptr = fileptr->next;

	if (!past_editbot && (fileptr == editbot))
	    past_editbot = 1;

	/* EOF reached, wrap around once */
	if (fileptr == NULL) {
	    fileptr = fileage;

	    past_editbot = 1;
Chris Allegretta's avatar
Chris Allegretta committed
197
198
199

	    if (!quiet)
		statusbar(_("Search Wrapped"));
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
	}

	/* Original start line reached */
	if (fileptr == begin)
	    search_last_line = 1;

	searchstr = fileptr->data;
    }

    /* We found an instance */
    current = fileptr;
    current_x = 0;
    for (tmp = fileptr->data; tmp != found; tmp++)
	current_x++;

    /* Ensure we haven't wrap around again! */
    if ((search_last_line) && (current_x >= beginx)) {
	if (!quiet)
218
	    not_found_msg(needle);
219
	return NULL;
Chris Allegretta's avatar
Chris Allegretta committed
220
221
    }

222
223
224
225
226
227
228
229
    if (past_editbot)
	edit_update(fileptr, CENTER);
    else
	update_line(current, current_x);

    placewewant = xplustabs();
    reset_cursor();

Chris Allegretta's avatar
Chris Allegretta committed
230
231
232
233
234
235
236
237
    return fileptr;
}

void search_abort(void)
{
    UNSET(KEEP_CUTBUFFER);
    display_main_list();
    wrefresh(bottomwin);
238
    if (ISSET(MARK_ISSET))
239
	edit_refresh_clearok();
240

241
#ifdef HAVE_REGEX_H
242
    if (ISSET(REGEXP_COMPILED))
243
	regexp_cleanup();
244
#endif
Chris Allegretta's avatar
Chris Allegretta committed
245
246
247
248
249
250
251
252
253
}

/* Search for a string */
int do_search(void)
{
    int i;
    filestruct *fileptr = current;

    wrap_reset();
254
255
256
    i = search_init(0);
    switch (i) {
    case -1:
Chris Allegretta's avatar
Chris Allegretta committed
257
258
259
	current = fileptr;
	search_abort();
	return 0;
260
    case -3:
Chris Allegretta's avatar
Chris Allegretta committed
261
262
	search_abort();
	return 0;
263
    case -2:
Chris Allegretta's avatar
Chris Allegretta committed
264
265
	do_replace();
	return 0;
266
    case 1:
Chris Allegretta's avatar
Chris Allegretta committed
267
268
269
270
	do_search();
	search_abort();
	return 1;
    }
271
272
273

    /* The sneaky user deleted the previous search string */
    if (!strcmp(answer, "")) {
Jordi Mallach's avatar
   
Jordi Mallach committed
274
	statusbar(_("Search Cancelled"));
275
276
277
278
	search_abort();
	return 0;
    }

279
280
    search_last_line = 0;
    findnextstr(0, current, current_x, answer);
Chris Allegretta's avatar
Chris Allegretta committed
281
282
283
284
285
286
287
288
289
290
291
292
293
294
    search_abort();
    return 1;
}

void print_replaced(int num)
{
    if (num > 1)
	statusbar(_("Replaced %d occurences"), num);
    else if (num == 1)
	statusbar(_("Replaced 1 occurence"));
}

void replace_abort(void)
{
295
296
297
298
    /* Identicle 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 duplicat code */
    search_abort();
299
    placewewant = xplustabs();
300
301
}

302
#ifdef HAVE_REGEX_H
303
304
305
306
307
308
309
310
int replace_regexp(char *string, int create_flag)
{
    /* split personality here - if create_flag is null, just calculate
     * the size of the replacement line (necessary because of
     * subexpressions like \1 \2 \3 in the replaced text) */

    char *c;
    int new_size = strlen(current->data) + 1;
311
    int search_match_count = regmatches[0].rm_eo - regmatches[0].rm_so;
312
313
314
315
316
317
318
319

    new_size -= search_match_count;

    /* Iterate through the replacement text to handle
     * subexpression replacement using \1, \2, \3, etc */

    c = last_replace;
    while (*c) {
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
	if (*c != '\\') {
	    if (create_flag)
		*string++ = *c;
	    c++;
	    new_size++;
	} else {
	    int num = (int) *(c + 1) - (int) '0';
	    if (num >= 1 && num <= 9) {

		int i = regmatches[num].rm_so;

		if (num > search_regexp.re_nsub) {
		    /* Ugh, they specified a subexpression that doesn't
		       exist.  */
		    return -1;
		}

		/* Skip over the replacement expression */
		c += 2;

		/* But add the length of the subexpression to new_size */
		new_size += regmatches[num].rm_eo - regmatches[num].rm_so;

		/* And if create_flag is set, append the result of the
		 * subexpression match to the new line */
		while (create_flag && i < regmatches[num].rm_eo)
		    *string++ = *(current->data + i++);

	    } else {
		if (create_flag)
		    *string++ = *c;
		c++;
		new_size++;
	    }
	}
355
356
357
    }

    if (create_flag)
358
	*string = 0;
359
360
361

    return new_size;
}
362
#endif
363

Chris Allegretta's avatar
Chris Allegretta committed
364
char *replace_line(void)
365
366
367
368
369
370
{
    char *copy, *tmp;
    int new_line_size;
    int search_match_count;

    /* Calculate size of new line */
371
#ifdef HAVE_REGEX_H
372
    if (ISSET(USE_REGEXP)) {
373
374
375
376
377
378
	search_match_count = regmatches[0].rm_eo - regmatches[0].rm_so;
	new_line_size = replace_regexp(NULL, 0);
	/* If they specified an invalid subexpression in the replace
	 * text, return NULL indicating an error */
	if (new_line_size < 0)
	    return NULL;
379
    } else {
380
381
382
#else
    {
#endif
383
384
385
	search_match_count = strlen(last_search);
	new_line_size = strlen(current->data) - strlen(last_search) +
	    strlen(last_replace) + 1;
386
    }
387

388
389
390
391
392
393
394
395
396
    /* Create buffer */
    copy = nmalloc(new_line_size);

    /* Head of Original Line */
    strncpy(copy, current->data, current_x);
    copy[current_x] = 0;

    /* Replacement Text */
    if (!ISSET(USE_REGEXP))
397
	strcat(copy, last_replace);
398
#ifdef HAVE_REGEX_H
399
    else
400
	(void) replace_regexp(copy + current_x, 1);
401
#endif
402
403
404
405
406
407
408
409
410
411
412
413

    /* The tail of the original line */
    /* This may expose other bugs, because it no longer
       goes through each character on the string
       and tests for string goodness.  But because
       we can assume the invariant that current->data
       is less than current_x + strlen(last_search) long,
       this should be safe.  Or it will expose bugs ;-) */
    tmp = current->data + current_x + search_match_count;
    strcat(copy, tmp);

    return copy;
Chris Allegretta's avatar
Chris Allegretta committed
414
415
}

416
/* Replace a string */
Chris Allegretta's avatar
Chris Allegretta committed
417
418
419
420
int do_replace(void)
{
    int i, replaceall = 0, numreplaced = 0, beginx;
    filestruct *fileptr, *begin;
421
    char *copy, *prevanswer = NULL;
Chris Allegretta's avatar
Chris Allegretta committed
422

423
424
425
    i = search_init(1);
    switch (i) {
    case -1:
Chris Allegretta's avatar
Chris Allegretta committed
426
427
428
	statusbar(_("Replace Cancelled"));
	replace_abort();
	return 0;
429
    case 1:
Chris Allegretta's avatar
Chris Allegretta committed
430
431
	do_replace();
	return 1;
432
    case -2:
Chris Allegretta's avatar
Chris Allegretta committed
433
434
	do_search();
	return 0;
435
    case -3:
Chris Allegretta's avatar
Chris Allegretta committed
436
437
438
	replace_abort();
	return 0;
    }
439

440
441
442
443
444
445
446
    /* Again, there was a previous string but they deleted it and hit enter */
    if (!strcmp(answer, "")) {
	statusbar(_("Replace Cancelled"));
	replace_abort();
	return 0;
    }

447
    prevanswer = mallocstrcpy(prevanswer, answer);
Chris Allegretta's avatar
Chris Allegretta committed
448

449
    i = statusq(replace_list_2, REPLACE_LIST_2_LEN, last_replace, 
450
			_("Replace with"));
Chris Allegretta's avatar
Chris Allegretta committed
451

452
453
    switch (i) {
    case -1:				/* Aborted enter */
454
	if (strcmp(last_replace, ""))
455
	    answer = mallocstrcpy(answer, last_replace);
456
457
458
	statusbar(_("Replace Cancelled"));
	replace_abort();
	return 0;
459
    case 0:		/* They actually entered something */
460
	last_replace = mallocstrcpy(last_replace, answer);
461
462
463
	break;
    default:
        if (i != -2) {	/* First page, last page, for example 
464
				   could get here */
Chris Allegretta's avatar
Chris Allegretta committed
465
466
467
	    do_early_abort();
	    replace_abort();
	    return 0;
468
        }
Chris Allegretta's avatar
Chris Allegretta committed
469
470
471
472
    }

    /* save where we are */
    begin = current;
473
474
    beginx = current_x + 1;
    search_last_line = 0;
Chris Allegretta's avatar
Chris Allegretta committed
475
476
477

    while (1) {

478
479
	/* Sweet optimization by Rocco here */
	fileptr = findnextstr(replaceall, begin, beginx, prevanswer);
Chris Allegretta's avatar
Chris Allegretta committed
480
481
482
483
484
485
486
487
488
489
490
491
492

	/* No more matches.  Done! */
	if (!fileptr)
	    break;

	/* If we're here, we've found the search string */
	if (!replaceall)
	    i = do_yesno(1, 1, _("Replace this instance?"));

	if (i > 0 || replaceall) {	/* Yes, replace it!!!! */
	    if (i == 2)
		replaceall = 1;

493
494
	    copy = replace_line();
	    if (!copy) {
Jordi Mallach's avatar
   
Jordi Mallach committed
495
		statusbar(_("Replace failed: unknown subexpression!"));
496
		replace_abort();
Chris Allegretta's avatar
Chris Allegretta committed
497
		return 0;
498
	    }
Chris Allegretta's avatar
Chris Allegretta committed
499
500
501
502
503
504

	    /* Cleanup */
	    free(current->data);
	    current->data = copy;

	    /* Stop bug where we replace a substring of the replacement text */
505
	    current_x += strlen(last_replace) - 1;
Chris Allegretta's avatar
Chris Allegretta committed
506

507
508
509
510
511
512
513
514
515
516
	    /* Adjust the original cursor position - COULD BE IMPROVED */
	    if (search_last_line) {
		beginx += strlen(last_replace) - strlen(last_search);

		/* For strings that cross the search start/end boundary */
		/* Don't go outside of allocated memory */
		if (beginx < 1)
		    beginx = 1;
	    }

Chris Allegretta's avatar
Chris Allegretta committed
517
518
519
520
521
522
523
524
	    edit_refresh();
	    set_modified();
	    numreplaced++;
	} else if (i == -1)	/* Abort, else do nothing and continue loop */
	    break;
    }

    current = begin;
525
    current_x = beginx - 1;
Chris Allegretta's avatar
Chris Allegretta committed
526
    renumber_all();
527
    edit_update(current, CENTER);
Chris Allegretta's avatar
Chris Allegretta committed
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
    print_replaced(numreplaced);
    replace_abort();
    return 1;
}

void goto_abort(void)
{
    UNSET(KEEP_CUTBUFFER);
    display_main_list();
}

int do_gotoline(long defline)
{
    long line, i = 1, j = 0;
    filestruct *fileptr;

    if (defline > 0)		/* We already know what line we want to go to */
	line = defline;
    else {			/* Ask for it */

	j = statusq(goto_list, GOTO_LIST_LEN, "", _("Enter line number"));
	if (j == -1) {
	    statusbar(_("Aborted"));
	    goto_abort();
	    return 0;
	} else if (j != 0) {
	    do_early_abort();
	    goto_abort();
	    return 0;
	}
	if (!strcmp(answer, "$")) {
	    current = filebot;
	    current_x = 0;
561
	    edit_update(current, CENTER);
Chris Allegretta's avatar
Chris Allegretta committed
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
	    goto_abort();
	    return 1;
	}
	line = atoi(answer);
    }

    /* Bounds check */
    if (line <= 0) {
	statusbar(_("Come on, be reasonable"));
	goto_abort();
	return 0;
    }
    if (line > totlines) {
	statusbar(_("Only %d lines available, skipping to last line"),
		  filebot->lineno);
	current = filebot;
	current_x = 0;
579
	edit_update(current, CENTER);
Chris Allegretta's avatar
Chris Allegretta committed
580
581
582
583
584
585
    } else {
	for (fileptr = fileage; fileptr != NULL && i < line; i++)
	    fileptr = fileptr->next;

	current = fileptr;
	current_x = 0;
586
	edit_update(current, CENTER);
Chris Allegretta's avatar
Chris Allegretta committed
587
588
589
590
591
592
593
594
595
596
    }

    goto_abort();
    return 1;
}

int do_gotoline_void(void)
{
    return do_gotoline(0);
}