2000-08-06 21:13:45 +00:00
|
|
|
/* $Id$ */
|
2000-06-19 04:22:15 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* search.c *
|
|
|
|
* *
|
2009-12-02 03:36:22 +00:00
|
|
|
* Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, *
|
2014-04-30 20:18:26 +00:00
|
|
|
* 2008, 2009, 2010, 2011, 2013, 2014 Free Software Foundation, Inc. *
|
2000-06-19 04:22:15 +00:00
|
|
|
* 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 *
|
2007-08-11 05:17:36 +00:00
|
|
|
* the Free Software Foundation; either version 3, or (at your option) *
|
2000-06-19 04:22:15 +00:00
|
|
|
* any later version. *
|
|
|
|
* *
|
2005-05-15 19:57:17 +00:00
|
|
|
* 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. *
|
2000-06-19 04:22:15 +00:00
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software *
|
2005-05-15 19:57:17 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA *
|
|
|
|
* 02110-1301, USA. *
|
2000-06-19 04:22:15 +00:00
|
|
|
* *
|
|
|
|
**************************************************************************/
|
|
|
|
|
2005-12-08 02:47:10 +00:00
|
|
|
#include "proto.h"
|
2001-04-28 18:03:52 +00:00
|
|
|
|
2000-06-19 04:22:15 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
2004-02-24 20:41:39 +00:00
|
|
|
#include <unistd.h>
|
2000-11-05 16:52:21 +00:00
|
|
|
#include <ctype.h>
|
2003-01-05 20:41:21 +00:00
|
|
|
#include <errno.h>
|
2009-01-24 22:40:41 +00:00
|
|
|
#include <time.h>
|
2000-06-21 03:00:43 +00:00
|
|
|
|
2004-10-31 13:20:30 +00:00
|
|
|
static bool search_last_line = FALSE;
|
|
|
|
/* Have we gone past the last line while searching? */
|
2014-06-19 20:05:24 +00:00
|
|
|
#ifndef DISABLE_HISTORIES
|
2005-05-23 16:30:06 +00:00
|
|
|
static bool history_changed = FALSE;
|
|
|
|
/* Have any of the history lists changed? */
|
|
|
|
#endif
|
2000-09-06 13:39:17 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
2004-10-19 21:09:37 +00:00
|
|
|
static bool regexp_compiled = FALSE;
|
|
|
|
/* Have we compiled any regular expressions? */
|
2004-04-30 19:40:03 +00:00
|
|
|
|
2007-01-09 23:35:02 +00:00
|
|
|
/* Compile the regular expression regexp to see if it's valid. Return
|
|
|
|
* TRUE if it is, or FALSE otherwise. */
|
2007-01-09 23:40:24 +00:00
|
|
|
bool regexp_init(const char *regexp)
|
2000-07-07 01:49:52 +00:00
|
|
|
{
|
2007-01-09 23:35:02 +00:00
|
|
|
int rc;
|
|
|
|
|
|
|
|
assert(!regexp_compiled);
|
|
|
|
|
|
|
|
rc = regcomp(&search_regexp, regexp, REG_EXTENDED
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2004-10-11 13:55:33 +00:00
|
|
|
| (ISSET(CASE_SENSITIVE) ? 0 : REG_ICASE)
|
|
|
|
#endif
|
|
|
|
);
|
2004-04-30 19:40:03 +00:00
|
|
|
|
|
|
|
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);
|
2007-01-09 23:35:02 +00:00
|
|
|
|
|
|
|
return FALSE;
|
2004-04-30 19:40:03 +00:00
|
|
|
}
|
2003-01-29 04:18:37 +00:00
|
|
|
|
2004-04-30 19:40:03 +00:00
|
|
|
regexp_compiled = TRUE;
|
2007-01-09 23:35:02 +00:00
|
|
|
|
|
|
|
return TRUE;
|
2000-07-07 01:49:52 +00:00
|
|
|
}
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Decompile the compiled regular expression we used in the last
|
|
|
|
* search, if any. */
|
2001-03-18 16:59:34 +00:00
|
|
|
void regexp_cleanup(void)
|
2000-07-07 01:49:52 +00:00
|
|
|
{
|
2004-04-30 19:40:03 +00:00
|
|
|
if (regexp_compiled) {
|
|
|
|
regexp_compiled = FALSE;
|
2004-02-24 20:41:39 +00:00
|
|
|
regfree(&search_regexp);
|
|
|
|
}
|
2000-07-07 01:49:52 +00:00
|
|
|
}
|
2000-07-07 02:35:34 +00:00
|
|
|
#endif
|
2000-07-07 01:49:52 +00:00
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Indicate on the statusbar that the string at str was not found by the
|
|
|
|
* last search. */
|
2002-09-06 20:35:28 +00:00
|
|
|
void not_found_msg(const char *str)
|
|
|
|
{
|
2004-05-29 16:25:30 +00:00
|
|
|
char *disp;
|
|
|
|
int numchars;
|
2007-04-19 03:15:04 +00:00
|
|
|
|
2004-04-05 01:08:14 +00:00
|
|
|
assert(str != NULL);
|
2004-05-29 16:25:30 +00:00
|
|
|
|
2004-12-23 17:43:27 +00:00
|
|
|
disp = display_string(str, 0, (COLS / 2) + 1, FALSE);
|
2005-01-16 20:05:36 +00:00
|
|
|
numchars = actual_x(disp, mbstrnlen(disp, COLS / 2));
|
2004-05-29 16:25:30 +00:00
|
|
|
|
|
|
|
statusbar(_("\"%.*s%s\" not found"), numchars, disp,
|
2004-12-22 21:38:43 +00:00
|
|
|
(disp[numchars] == '\0') ? "" : "...");
|
2004-05-29 16:25:30 +00:00
|
|
|
|
|
|
|
free(disp);
|
2002-09-06 20:35:28 +00:00
|
|
|
}
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Abort the current search or replace. Clean up by displaying the main
|
|
|
|
* shortcut list, updating the screen if the mark was on before, and
|
|
|
|
* decompiling the compiled regular expression we used in the last
|
|
|
|
* search, if any. */
|
|
|
|
void search_replace_abort(void)
|
2002-09-06 20:35:28 +00:00
|
|
|
{
|
|
|
|
display_main_list();
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-07-08 20:09:16 +00:00
|
|
|
if (openfile->mark_set)
|
2004-02-24 20:41:39 +00:00
|
|
|
edit_refresh();
|
|
|
|
#endif
|
2002-09-06 20:35:28 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
2004-02-24 20:41:39 +00:00
|
|
|
regexp_cleanup();
|
2002-09-06 20:35:28 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Initialize the global search and replace strings. */
|
2000-11-05 16:52:21 +00:00
|
|
|
void search_init_globals(void)
|
|
|
|
{
|
2004-10-16 15:41:57 +00:00
|
|
|
if (last_search == NULL)
|
|
|
|
last_search = mallocstrcpy(NULL, "");
|
|
|
|
if (last_replace == NULL)
|
|
|
|
last_replace = mallocstrcpy(NULL, "");
|
2000-11-05 16:52:21 +00:00
|
|
|
}
|
|
|
|
|
2004-10-04 22:37:56 +00:00
|
|
|
/* Set up the system variables for a search or replace. If use_answer
|
2006-03-23 22:14:40 +00:00
|
|
|
* is TRUE, only set backupstring to answer. Return -2 to run the
|
|
|
|
* opposite program (search -> replace, replace -> search), return -1 if
|
|
|
|
* the search should be canceled (due to Cancel, a blank search string,
|
|
|
|
* Go to Line, or a failed regcomp()), return 0 on success, and return 1
|
|
|
|
* on rerun calling program.
|
2003-01-13 01:35:15 +00:00
|
|
|
*
|
2004-10-04 22:37:56 +00:00
|
|
|
* replacing is TRUE if we call from do_replace(), and FALSE if called
|
|
|
|
* from do_search(). */
|
|
|
|
int search_init(bool replacing, bool use_answer)
|
2000-06-19 04:22:15 +00:00
|
|
|
{
|
2001-07-15 22:24:24 +00:00
|
|
|
int i = 0;
|
2000-11-03 14:23:00 +00:00
|
|
|
char *buf;
|
2000-11-16 06:01:10 +00:00
|
|
|
static char *backupstring = NULL;
|
2004-10-04 22:37:56 +00:00
|
|
|
/* 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;
|
|
|
|
}
|
2004-02-24 20:41:39 +00:00
|
|
|
|
|
|
|
/* 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,
|
2004-10-04 22:37:56 +00:00
|
|
|
* we should put the same search string back up. */
|
2000-10-26 01:44:42 +00:00
|
|
|
|
2000-11-05 16:52:21 +00:00
|
|
|
search_init_globals();
|
2000-11-02 04:40:39 +00:00
|
|
|
|
2003-01-05 21:47:06 +00:00
|
|
|
if (last_search[0] != '\0') {
|
2004-12-23 17:43:27 +00:00
|
|
|
char *disp = display_string(last_search, 0, COLS / 3, FALSE);
|
2003-09-16 01:16:49 +00:00
|
|
|
|
2005-01-02 20:30:15 +00:00
|
|
|
buf = charalloc(strlen(disp) + 7);
|
2015-03-21 21:40:56 +00:00
|
|
|
/* We use (COLS / 3) here because we need to see more on the line. */
|
2003-09-16 01:16:49 +00:00
|
|
|
sprintf(buf, " [%s%s]", disp,
|
2005-10-26 23:14:59 +00:00
|
|
|
(strlenpt(last_search) > COLS / 3) ? "..." : "");
|
2003-09-16 01:16:49 +00:00
|
|
|
free(disp);
|
2004-10-04 22:37:56 +00:00
|
|
|
} else
|
|
|
|
buf = mallocstrcpy(NULL, "");
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* This is now one simple call. It just does a lot. */
|
2006-02-07 21:11:05 +00:00
|
|
|
i = do_prompt(FALSE,
|
|
|
|
#ifndef DISABLE_TABCOMP
|
|
|
|
TRUE,
|
|
|
|
#endif
|
2008-03-05 07:34:01 +00:00
|
|
|
replacing ? MREPLACE : MWHEREIS, backupstring,
|
2014-06-19 20:05:24 +00:00
|
|
|
#ifndef DISABLE_HISTORIES
|
2005-06-02 18:41:31 +00:00
|
|
|
&search_history,
|
2003-01-05 20:41:21 +00:00
|
|
|
#endif
|
2014-05-28 14:34:11 +00:00
|
|
|
/* TRANSLATORS: This is the main search prompt. */
|
2006-02-18 21:32:29 +00:00
|
|
|
edit_refresh, "%s%s%s%s%s%s", _("Search"),
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2014-05-28 14:34:11 +00:00
|
|
|
/* TRANSLATORS: The next three strings are modifiers of the search prompt. */
|
2003-09-16 01:16:49 +00:00
|
|
|
ISSET(CASE_SENSITIVE) ? _(" [Case Sensitive]") :
|
|
|
|
#endif
|
2006-03-24 04:22:45 +00:00
|
|
|
"",
|
2004-04-30 19:40:03 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
|
|
|
ISSET(USE_REGEXP) ? _(" [Regexp]") :
|
|
|
|
#endif
|
2006-03-24 04:22:45 +00:00
|
|
|
"",
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-06-16 18:48:30 +00:00
|
|
|
ISSET(BACKWARDS_SEARCH) ? _(" [Backwards]") :
|
2003-09-16 01:16:49 +00:00
|
|
|
#endif
|
2006-03-24 04:22:45 +00:00
|
|
|
"", replacing ?
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2014-05-28 14:34:11 +00:00
|
|
|
/* TRANSLATORS: The next two strings are modifiers of the search prompt. */
|
2006-03-24 04:22:45 +00:00
|
|
|
openfile->mark_set ? _(" (to replace) in selection") :
|
2004-11-03 23:05:11 +00:00
|
|
|
#endif
|
2006-03-24 04:22:45 +00:00
|
|
|
_(" (to replace)") : "", buf);
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2008-03-05 07:34:01 +00:00
|
|
|
fflush(stderr);
|
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* Release buf now that we don't need it anymore. */
|
2002-03-10 01:22:21 +00:00
|
|
|
free(buf);
|
|
|
|
|
2003-09-16 01:16:49 +00:00
|
|
|
free(backupstring);
|
|
|
|
backupstring = NULL;
|
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* Cancel any search, or just return with no previous search. */
|
2007-07-01 21:33:17 +00:00
|
|
|
if (i == -1 || (i < 0 && *last_search == '\0') || (!replacing &&
|
|
|
|
i == 0 && *answer == '\0')) {
|
2004-08-26 04:22:54 +00:00
|
|
|
statusbar(_("Cancelled"));
|
2000-06-19 04:22:15 +00:00
|
|
|
return -1;
|
2002-07-19 01:08:59 +00:00
|
|
|
} else {
|
2014-07-02 19:12:38 +00:00
|
|
|
functionptrtype func = func_from_key(&i);
|
2008-03-05 07:34:01 +00:00
|
|
|
|
|
|
|
if (i == -2 || i == 0 ) {
|
2000-09-06 13:39:17 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
2005-07-02 17:56:29 +00:00
|
|
|
/* Use last_search if answer is an empty string, or
|
|
|
|
* answer if it isn't. */
|
2007-01-09 23:35:02 +00:00
|
|
|
if (ISSET(USE_REGEXP) && !regexp_init((i == -2) ?
|
|
|
|
last_search : answer))
|
2004-10-16 15:41:57 +00:00
|
|
|
return -1;
|
2000-07-07 02:35:34 +00:00
|
|
|
#endif
|
2008-03-05 07:34:01 +00:00
|
|
|
;
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2011-02-07 14:45:56 +00:00
|
|
|
} else if (func == case_sens_void) {
|
2004-10-16 15:41:57 +00:00
|
|
|
TOGGLE(CASE_SENSITIVE);
|
|
|
|
backupstring = mallocstrcpy(backupstring, answer);
|
|
|
|
return 1;
|
2011-02-07 14:45:56 +00:00
|
|
|
} else if (func == backwards_void) {
|
2005-06-16 18:48:30 +00:00
|
|
|
TOGGLE(BACKWARDS_SEARCH);
|
2004-10-16 15:41:57 +00:00
|
|
|
backupstring = mallocstrcpy(backupstring, answer);
|
|
|
|
return 1;
|
2005-06-03 20:51:39 +00:00
|
|
|
#endif
|
2001-06-14 02:54:22 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
2011-02-07 14:45:56 +00:00
|
|
|
} else if (func == regexp_void) {
|
2004-10-16 15:41:57 +00:00
|
|
|
TOGGLE(USE_REGEXP);
|
|
|
|
backupstring = mallocstrcpy(backupstring, answer);
|
|
|
|
return 1;
|
2001-06-14 02:54:22 +00:00
|
|
|
#endif
|
2014-06-23 18:30:35 +00:00
|
|
|
} else if (func == do_replace || func == flip_replace_void) {
|
2004-10-16 15:41:57 +00:00
|
|
|
backupstring = mallocstrcpy(backupstring, answer);
|
|
|
|
return -2; /* Call the opposite search function. */
|
2011-02-07 14:45:56 +00:00
|
|
|
} else if (func == do_gotolinecolumn_void) {
|
2005-07-08 20:09:16 +00:00
|
|
|
do_gotolinecolumn(openfile->current->lineno,
|
2005-07-16 07:06:36 +00:00
|
|
|
openfile->placewewant + 1, TRUE, TRUE, FALSE,
|
|
|
|
TRUE);
|
2005-05-17 18:06:26 +00:00
|
|
|
/* Put answer up on the statusbar and
|
|
|
|
* fall through. */
|
2008-10-15 01:25:25 +00:00
|
|
|
return 3;
|
2008-03-05 07:34:01 +00:00
|
|
|
} else {
|
2004-10-16 15:41:57 +00:00
|
|
|
return -1;
|
2002-07-19 01:08:59 +00:00
|
|
|
}
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
2005-05-31 17:35:11 +00:00
|
|
|
|
2000-06-19 04:22:15 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-02-12 23:09:27 +00:00
|
|
|
/* Look for needle, starting at (current, current_x). If no_sameline is
|
|
|
|
* TRUE, skip over begin when looking for needle. begin is the line
|
2005-11-15 23:45:29 +00:00
|
|
|
* where we first started searching, at column begin_x. The return
|
|
|
|
* value specifies whether we found anything. If we did, set needle_len
|
|
|
|
* to the length of the string we found if it isn't NULL. */
|
2005-11-16 05:59:06 +00:00
|
|
|
bool findnextstr(
|
|
|
|
#ifndef DISABLE_SPELLER
|
|
|
|
bool whole_word,
|
|
|
|
#endif
|
|
|
|
bool no_sameline, const filestruct *begin, size_t begin_x, const
|
|
|
|
char *needle, size_t *needle_len)
|
2000-06-19 04:22:15 +00:00
|
|
|
{
|
2004-10-18 22:19:22 +00:00
|
|
|
size_t found_len;
|
2006-01-06 07:10:30 +00:00
|
|
|
/* The length of the match we find. */
|
2004-02-24 20:41:39 +00:00
|
|
|
size_t current_x_find = 0;
|
2006-01-06 07:10:30 +00:00
|
|
|
/* The location in the current line of the match we find. */
|
2005-07-08 20:09:16 +00:00
|
|
|
ssize_t current_y_find = openfile->current_y;
|
2006-03-23 21:25:04 +00:00
|
|
|
filestruct *fileptr = openfile->current;
|
|
|
|
const char *rev_start = fileptr->data, *found = NULL;
|
2009-01-24 22:40:41 +00:00
|
|
|
time_t lastkbcheck = time(NULL);
|
2004-02-24 20:41:39 +00:00
|
|
|
|
|
|
|
/* 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. */
|
2006-03-23 21:25:04 +00:00
|
|
|
rev_start +=
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-07-08 20:09:16 +00:00
|
|
|
ISSET(BACKWARDS_SEARCH) ?
|
2015-03-22 11:42:29 +00:00
|
|
|
((openfile->current_x == 0) ? -1 : move_mbleft(fileptr->data, openfile->current_x)) :
|
2004-02-24 20:41:39 +00:00
|
|
|
#endif
|
2015-03-22 11:42:29 +00:00
|
|
|
move_mbright(fileptr->data, openfile->current_x);
|
2001-06-13 02:35:44 +00:00
|
|
|
|
2005-11-15 21:29:05 +00:00
|
|
|
/* Look for needle in the current line we're searching. */
|
2009-01-24 22:40:41 +00:00
|
|
|
enable_nodelay();
|
2004-03-15 20:26:30 +00:00
|
|
|
while (TRUE) {
|
2014-04-14 09:57:06 +00:00
|
|
|
if (time(NULL) - lastkbcheck > 1) {
|
2014-07-02 19:12:38 +00:00
|
|
|
int input = parse_kbinput(edit);
|
|
|
|
|
2014-04-14 09:57:06 +00:00
|
|
|
lastkbcheck = time(NULL);
|
2014-07-02 19:12:38 +00:00
|
|
|
|
|
|
|
if (input && func_from_key(&input) == do_cancel) {
|
2009-01-24 22:40:41 +00:00
|
|
|
statusbar(_("Cancelled"));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
found = strstrwrapper(fileptr->data, needle, rev_start);
|
2001-06-13 02:35:44 +00:00
|
|
|
|
2004-10-18 22:19:22 +00:00
|
|
|
/* We've found a potential match. */
|
|
|
|
if (found != NULL) {
|
2005-11-16 05:59:06 +00:00
|
|
|
#ifndef DISABLE_SPELLER
|
2004-10-18 22:19:22 +00:00
|
|
|
bool found_whole = FALSE;
|
|
|
|
/* Is this potential match a whole word? */
|
2005-11-16 05:59:06 +00:00
|
|
|
#endif
|
2004-10-18 22:19:22 +00:00
|
|
|
|
|
|
|
/* Set found_len to the length of the potential match. */
|
2005-07-18 19:29:27 +00:00
|
|
|
found_len =
|
2004-10-18 22:19:22 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
2005-07-18 19:29:27 +00:00
|
|
|
ISSET(USE_REGEXP) ?
|
|
|
|
regmatches[0].rm_eo - regmatches[0].rm_so :
|
2004-10-18 22:19:22 +00:00
|
|
|
#endif
|
2005-07-18 19:29:27 +00:00
|
|
|
strlen(needle);
|
2004-10-18 22:19:22 +00:00
|
|
|
|
2005-11-16 05:59:06 +00:00
|
|
|
#ifndef DISABLE_SPELLER
|
2004-10-18 22:19:22 +00:00
|
|
|
/* If we're searching for whole words, see if this potential
|
|
|
|
* match is a whole word. */
|
2005-11-15 23:45:29 +00:00
|
|
|
if (whole_word) {
|
2004-11-02 20:48:37 +00:00
|
|
|
char *word = mallocstrncpy(NULL, found, found_len + 1);
|
2004-10-18 22:19:22 +00:00
|
|
|
word[found_len] = '\0';
|
|
|
|
|
|
|
|
found_whole = is_whole_word(found - fileptr->data,
|
|
|
|
fileptr->data, word);
|
|
|
|
free(word);
|
|
|
|
}
|
2005-11-16 05:59:06 +00:00
|
|
|
#endif
|
2004-10-18 22:19:22 +00:00
|
|
|
|
|
|
|
/* 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. */
|
2005-11-16 05:59:06 +00:00
|
|
|
if (
|
|
|
|
#ifndef DISABLE_SPELLER
|
|
|
|
(!whole_word || found_whole) &&
|
|
|
|
#endif
|
|
|
|
(!no_sameline || fileptr != openfile->current))
|
2004-02-24 20:41:39 +00:00
|
|
|
break;
|
2001-06-13 02:35:44 +00:00
|
|
|
}
|
2000-10-24 22:25:36 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
if (search_last_line) {
|
2015-03-21 21:40:56 +00:00
|
|
|
/* We've finished processing the file, so get out. */
|
2005-11-15 23:45:29 +00:00
|
|
|
not_found_msg(needle);
|
2014-04-14 09:57:06 +00:00
|
|
|
disable_nodelay();
|
2004-10-15 16:25:56 +00:00
|
|
|
return FALSE;
|
2000-10-24 22:25:36 +00:00
|
|
|
}
|
2004-08-27 20:28:34 +00:00
|
|
|
|
2006-03-23 21:25:04 +00:00
|
|
|
/* Move to the previous or next line in the file. */
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-06-16 18:48:30 +00:00
|
|
|
if (ISSET(BACKWARDS_SEARCH)) {
|
2004-08-27 20:28:34 +00:00
|
|
|
fileptr = fileptr->prev;
|
|
|
|
current_y_find--;
|
|
|
|
} else {
|
|
|
|
#endif
|
|
|
|
fileptr = fileptr->next;
|
|
|
|
current_y_find++;
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2004-08-27 20:28:34 +00:00
|
|
|
}
|
2004-02-24 20:41:39 +00:00
|
|
|
#endif
|
2002-06-21 03:20:06 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
if (fileptr == NULL) {
|
2015-03-21 21:40:56 +00:00
|
|
|
/* We've reached the start or end of the buffer, so wrap around. */
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-06-16 18:48:30 +00:00
|
|
|
if (ISSET(BACKWARDS_SEARCH)) {
|
2005-07-08 20:09:16 +00:00
|
|
|
fileptr = openfile->filebot;
|
2004-08-27 20:28:34 +00:00
|
|
|
current_y_find = editwinrows - 1;
|
|
|
|
} else {
|
2004-02-24 20:41:39 +00:00
|
|
|
#endif
|
2005-07-08 20:09:16 +00:00
|
|
|
fileptr = openfile->fileage;
|
2004-08-27 20:28:34 +00:00
|
|
|
current_y_find = 0;
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2004-08-27 20:28:34 +00:00
|
|
|
}
|
|
|
|
#endif
|
2005-11-15 23:45:29 +00:00
|
|
|
statusbar(_("Search Wrapped"));
|
2004-02-24 20:41:39 +00:00
|
|
|
}
|
2001-06-13 02:35:44 +00:00
|
|
|
|
2004-10-27 02:21:01 +00:00
|
|
|
if (fileptr == begin)
|
2015-03-21 21:40:56 +00:00
|
|
|
/* We've reached the original starting line. */
|
2004-05-27 18:39:16 +00:00
|
|
|
search_last_line = TRUE;
|
2004-10-27 02:21:01 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
rev_start = fileptr->data;
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-06-16 18:48:30 +00:00
|
|
|
if (ISSET(BACKWARDS_SEARCH))
|
2004-02-24 20:41:39 +00:00
|
|
|
rev_start += strlen(fileptr->data);
|
|
|
|
#endif
|
|
|
|
}
|
2000-10-24 22:25:36 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* We found an instance. */
|
|
|
|
current_x_find = found - fileptr->data;
|
2001-06-13 02:35:44 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* Ensure we haven't wrapped around again! */
|
|
|
|
if (search_last_line &&
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-07-12 17:40:16 +00:00
|
|
|
((!ISSET(BACKWARDS_SEARCH) && current_x_find > begin_x) ||
|
|
|
|
(ISSET(BACKWARDS_SEARCH) && current_x_find < begin_x))
|
2004-02-24 20:41:39 +00:00
|
|
|
#else
|
2005-07-12 17:40:16 +00:00
|
|
|
current_x_find > begin_x
|
2004-02-24 20:41:39 +00:00
|
|
|
#endif
|
|
|
|
) {
|
2005-11-15 23:45:29 +00:00
|
|
|
not_found_msg(needle);
|
2009-01-24 22:40:41 +00:00
|
|
|
disable_nodelay();
|
2004-10-15 16:25:56 +00:00
|
|
|
return FALSE;
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2009-01-24 22:40:41 +00:00
|
|
|
disable_nodelay();
|
2005-07-08 20:09:16 +00:00
|
|
|
/* We've definitely found something. */
|
|
|
|
openfile->current = fileptr;
|
|
|
|
openfile->current_x = current_x_find;
|
|
|
|
openfile->placewewant = xplustabs();
|
2005-11-15 20:32:18 +00:00
|
|
|
openfile->current_y = current_y_find;
|
2004-10-21 15:32:11 +00:00
|
|
|
|
|
|
|
/* needle_len holds the length of needle. */
|
2004-10-18 22:19:22 +00:00
|
|
|
if (needle_len != NULL)
|
|
|
|
*needle_len = found_len;
|
2000-11-29 04:33:26 +00:00
|
|
|
|
2004-10-15 16:25:56 +00:00
|
|
|
return TRUE;
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Clear the flag indicating that a search reached the last line of the
|
|
|
|
* file. We need to do this just before a new search. */
|
2004-10-31 13:20:30 +00:00
|
|
|
void findnextstr_wrap_reset(void)
|
|
|
|
{
|
|
|
|
search_last_line = FALSE;
|
|
|
|
}
|
|
|
|
|
2002-07-19 01:08:59 +00:00
|
|
|
/* Search for a string. */
|
2004-07-02 14:31:03 +00:00
|
|
|
void do_search(void)
|
2000-06-19 04:22:15 +00:00
|
|
|
{
|
2005-07-16 22:35:11 +00:00
|
|
|
filestruct *fileptr = openfile->current;
|
2005-07-08 20:09:16 +00:00
|
|
|
size_t fileptr_x = openfile->current_x;
|
2006-08-26 16:50:51 +00:00
|
|
|
size_t pww_save = openfile->placewewant;
|
2004-08-27 20:28:34 +00:00
|
|
|
int i;
|
|
|
|
bool didfind;
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2004-10-04 22:37:56 +00:00
|
|
|
i = search_init(FALSE, FALSE);
|
2006-05-22 02:08:49 +00:00
|
|
|
|
|
|
|
if (i == -1)
|
2015-03-21 21:40:56 +00:00
|
|
|
/* Cancel, Go to Line, blank search string, or regcomp() failed. */
|
2005-12-08 07:09:08 +00:00
|
|
|
search_replace_abort();
|
2006-05-22 02:08:49 +00:00
|
|
|
else if (i == -2)
|
|
|
|
/* Replace. */
|
2000-06-19 04:22:15 +00:00
|
|
|
do_replace();
|
2005-11-15 03:17:35 +00:00
|
|
|
#if !defined(NANO_TINY) || defined(HAVE_REGEX_H)
|
2006-05-22 02:08:49 +00:00
|
|
|
else if (i == 1)
|
|
|
|
/* Case Sensitive, Backwards, or Regexp search toggle. */
|
2000-06-19 04:22:15 +00:00
|
|
|
do_search();
|
2005-06-03 21:00:55 +00:00
|
|
|
#endif
|
2000-10-31 05:28:33 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
if (i != 0)
|
2004-07-02 14:31:03 +00:00
|
|
|
return;
|
2004-02-24 20:41:39 +00:00
|
|
|
|
|
|
|
/* If answer is now "", copy last_search into answer. */
|
2007-07-01 21:33:17 +00:00
|
|
|
if (*answer == '\0')
|
2000-11-16 06:01:10 +00:00
|
|
|
answer = mallocstrcpy(answer, last_search);
|
|
|
|
else
|
|
|
|
last_search = mallocstrcpy(last_search, answer);
|
|
|
|
|
2014-06-19 20:05:24 +00:00
|
|
|
#ifndef DISABLE_HISTORIES
|
2004-02-24 20:41:39 +00:00
|
|
|
/* If answer is not "", add this search string to the search history
|
|
|
|
* list. */
|
2003-01-14 23:36:11 +00:00
|
|
|
if (answer[0] != '\0')
|
2005-06-02 18:41:31 +00:00
|
|
|
update_history(&search_history, answer);
|
2004-02-24 20:41:39 +00:00
|
|
|
#endif
|
2003-01-05 20:41:21 +00:00
|
|
|
|
2004-10-31 13:20:30 +00:00
|
|
|
findnextstr_wrap_reset();
|
2005-11-16 05:59:06 +00:00
|
|
|
didfind = findnextstr(
|
|
|
|
#ifndef DISABLE_SPELLER
|
|
|
|
FALSE,
|
|
|
|
#endif
|
|
|
|
FALSE, openfile->current, openfile->current_x, answer, NULL);
|
2002-01-21 20:40:14 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* Check to see if there's only one occurrence of the string and
|
|
|
|
* we're on it now. */
|
2005-07-08 20:09:16 +00:00
|
|
|
if (fileptr == openfile->current && fileptr_x ==
|
|
|
|
openfile->current_x && didfind) {
|
2004-02-24 20:41:39 +00:00
|
|
|
#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. */
|
2004-07-17 19:49:12 +00:00
|
|
|
if (ISSET(USE_REGEXP) && regexp_bol_or_eol(&search_regexp,
|
|
|
|
last_search)) {
|
2005-11-16 05:59:06 +00:00
|
|
|
didfind = findnextstr(
|
|
|
|
#ifndef DISABLE_SPELLER
|
|
|
|
FALSE,
|
|
|
|
#endif
|
|
|
|
TRUE, openfile->current,
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->current_x, answer, NULL);
|
|
|
|
if (fileptr == openfile->current && fileptr_x ==
|
|
|
|
openfile->current_x && !didfind)
|
2004-02-24 20:41:39 +00:00
|
|
|
statusbar(_("This is the only occurrence"));
|
|
|
|
} else {
|
|
|
|
#endif
|
|
|
|
statusbar(_("This is the only occurrence"));
|
|
|
|
#ifdef HAVE_REGEX_H
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
2002-01-21 20:40:14 +00:00
|
|
|
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->placewewant = xplustabs();
|
2006-08-26 16:50:51 +00:00
|
|
|
edit_redraw(fileptr, pww_save);
|
2005-12-08 07:09:08 +00:00
|
|
|
search_replace_abort();
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2014-04-04 15:31:40 +00:00
|
|
|
#if !defined(NANO_TINY) || !defined(DISABLE_BROWSER)
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Search for the last string without prompting. */
|
2004-07-02 14:31:03 +00:00
|
|
|
void do_research(void)
|
2003-08-23 21:11:06 +00:00
|
|
|
{
|
2005-07-16 22:35:11 +00:00
|
|
|
filestruct *fileptr = openfile->current;
|
2005-07-08 20:09:16 +00:00
|
|
|
size_t fileptr_x = openfile->current_x;
|
2006-08-26 16:50:51 +00:00
|
|
|
size_t pww_save = openfile->placewewant;
|
2004-08-27 20:28:34 +00:00
|
|
|
bool didfind;
|
2003-08-23 21:11:06 +00:00
|
|
|
|
|
|
|
search_init_globals();
|
|
|
|
|
|
|
|
if (last_search[0] != '\0') {
|
|
|
|
#ifdef HAVE_REGEX_H
|
2004-02-24 20:41:39 +00:00
|
|
|
/* Since answer is "", use last_search! */
|
2007-01-09 23:35:02 +00:00
|
|
|
if (ISSET(USE_REGEXP) && !regexp_init(last_search))
|
2004-07-02 14:31:03 +00:00
|
|
|
return;
|
2003-08-23 21:11:06 +00:00
|
|
|
#endif
|
|
|
|
|
2004-10-31 13:20:30 +00:00
|
|
|
findnextstr_wrap_reset();
|
2005-11-16 05:59:06 +00:00
|
|
|
didfind = findnextstr(
|
|
|
|
#ifndef DISABLE_SPELLER
|
|
|
|
FALSE,
|
|
|
|
#endif
|
|
|
|
FALSE, openfile->current, openfile->current_x,
|
|
|
|
last_search, NULL);
|
2003-08-23 21:11:06 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* Check to see if there's only one occurrence of the string and
|
|
|
|
* we're on it now. */
|
2005-07-08 20:09:16 +00:00
|
|
|
if (fileptr == openfile->current && fileptr_x ==
|
|
|
|
openfile->current_x && didfind) {
|
2004-02-24 20:41:39 +00:00
|
|
|
#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. */
|
2004-07-17 19:49:12 +00:00
|
|
|
if (ISSET(USE_REGEXP) && regexp_bol_or_eol(&search_regexp,
|
|
|
|
last_search)) {
|
2005-11-16 05:59:06 +00:00
|
|
|
didfind = findnextstr(
|
|
|
|
#ifndef DISABLE_SPELLER
|
|
|
|
FALSE,
|
|
|
|
#endif
|
|
|
|
TRUE, openfile->current, openfile->current_x,
|
|
|
|
answer, NULL);
|
2005-07-08 20:09:16 +00:00
|
|
|
if (fileptr == openfile->current && fileptr_x ==
|
|
|
|
openfile->current_x && !didfind)
|
2004-02-24 20:41:39 +00:00
|
|
|
statusbar(_("This is the only occurrence"));
|
|
|
|
} else {
|
2014-03-17 14:15:57 +00:00
|
|
|
#endif /* HAVE_REGEX_H */
|
2004-02-24 20:41:39 +00:00
|
|
|
statusbar(_("This is the only occurrence"));
|
|
|
|
#ifdef HAVE_REGEX_H
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
2003-08-23 21:11:06 +00:00
|
|
|
} else
|
2014-04-14 09:57:06 +00:00
|
|
|
statusbar(_("No current search pattern"));
|
2003-08-23 21:11:06 +00:00
|
|
|
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->placewewant = xplustabs();
|
2006-08-26 16:50:51 +00:00
|
|
|
edit_redraw(fileptr, pww_save);
|
2005-12-08 07:09:08 +00:00
|
|
|
search_replace_abort();
|
2003-08-23 21:11:06 +00:00
|
|
|
}
|
2014-03-17 14:15:57 +00:00
|
|
|
#endif /* !NANO_TINY */
|
2003-08-23 21:11:06 +00:00
|
|
|
|
2000-09-06 13:39:17 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
2005-05-26 03:47:24 +00:00
|
|
|
int replace_regexp(char *string, bool create)
|
2000-07-07 01:49:52 +00:00
|
|
|
{
|
2005-05-26 03:47:24 +00:00
|
|
|
/* We have a split personality here. If create is FALSE, just
|
|
|
|
* calculate the size of the replacement line (necessary because of
|
2004-02-24 20:41:39 +00:00
|
|
|
* subexpressions \1 to \9 in the replaced text). */
|
2000-07-07 01:49:52 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
const char *c = last_replace;
|
2005-07-08 20:09:16 +00:00
|
|
|
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;
|
2000-07-07 01:49:52 +00:00
|
|
|
|
2002-07-19 01:08:59 +00:00
|
|
|
/* Iterate through the replacement text to handle subexpression
|
|
|
|
* replacement using \1, \2, \3, etc. */
|
2002-12-22 16:30:00 +00:00
|
|
|
while (*c != '\0') {
|
2006-07-13 13:27:16 +00:00
|
|
|
int num = (*(c + 1) - '0');
|
2004-02-24 20:41:39 +00:00
|
|
|
|
2005-07-08 20:09:16 +00:00
|
|
|
if (*c != '\\' || num < 1 || num > 9 || num >
|
|
|
|
search_regexp.re_nsub) {
|
2005-05-26 03:47:24 +00:00
|
|
|
if (create)
|
2000-10-26 01:44:42 +00:00
|
|
|
*string++ = *c;
|
|
|
|
c++;
|
2005-06-21 22:37:47 +00:00
|
|
|
new_line_size++;
|
2000-10-26 01:44:42 +00:00
|
|
|
} else {
|
2005-06-21 22:32:50 +00:00
|
|
|
size_t i = regmatches[num].rm_eo - regmatches[num].rm_so;
|
2000-10-26 01:44:42 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* Skip over the replacement expression. */
|
|
|
|
c += 2;
|
2000-10-26 01:44:42 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* But add the length of the subexpression to new_size. */
|
2005-06-21 22:37:47 +00:00
|
|
|
new_line_size += i;
|
2000-10-26 01:44:42 +00:00
|
|
|
|
2005-05-26 03:47:24 +00:00
|
|
|
/* And if create is TRUE, append the result of the
|
2004-02-24 20:41:39 +00:00
|
|
|
* subexpression match to the new line. */
|
2005-05-26 03:47:24 +00:00
|
|
|
if (create) {
|
2005-07-08 20:09:16 +00:00
|
|
|
strncpy(string, openfile->current->data +
|
|
|
|
openfile->current_x + regmatches[num].rm_so, i);
|
2004-02-24 20:41:39 +00:00
|
|
|
string += i;
|
2000-10-26 01:44:42 +00:00
|
|
|
}
|
|
|
|
}
|
2000-07-07 01:49:52 +00:00
|
|
|
}
|
|
|
|
|
2005-05-26 03:47:24 +00:00
|
|
|
if (create)
|
2003-01-13 01:35:15 +00:00
|
|
|
*string = '\0';
|
2000-07-07 01:49:52 +00:00
|
|
|
|
2005-06-21 22:32:50 +00:00
|
|
|
return new_line_size;
|
2000-07-07 01:49:52 +00:00
|
|
|
}
|
2014-03-17 14:15:57 +00:00
|
|
|
#endif /* HAVE_REGEX_H */
|
2000-10-26 01:44:42 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
char *replace_line(const char *needle)
|
2000-07-07 01:49:52 +00:00
|
|
|
{
|
2004-02-24 20:41:39 +00:00
|
|
|
char *copy;
|
2005-05-26 03:32:41 +00:00
|
|
|
size_t new_line_size, search_match_count;
|
2000-07-07 01:49:52 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* Calculate the size of the new line. */
|
2000-09-06 13:39:17 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
2000-07-07 01:49:52 +00:00
|
|
|
if (ISSET(USE_REGEXP)) {
|
2004-05-23 21:11:14 +00:00
|
|
|
search_match_count = regmatches[0].rm_eo - regmatches[0].rm_so;
|
2005-05-26 03:47:24 +00:00
|
|
|
new_line_size = replace_regexp(NULL, FALSE);
|
2000-07-07 01:49:52 +00:00
|
|
|
} else {
|
2000-07-07 02:35:34 +00:00
|
|
|
#endif
|
2004-02-24 20:41:39 +00:00
|
|
|
search_match_count = strlen(needle);
|
2005-07-08 20:09:16 +00:00
|
|
|
new_line_size = strlen(openfile->current->data) -
|
|
|
|
search_match_count + strlen(answer) + 1;
|
2004-02-24 20:41:39 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
2000-07-07 01:49:52 +00:00
|
|
|
}
|
2004-02-24 20:41:39 +00:00
|
|
|
#endif
|
2000-10-26 01:44:42 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* Create the buffer. */
|
2001-05-17 11:35:43 +00:00
|
|
|
copy = charalloc(new_line_size);
|
2000-07-07 01:49:52 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* The head of the original line. */
|
2005-07-08 20:09:16 +00:00
|
|
|
strncpy(copy, openfile->current->data, openfile->current_x);
|
2000-07-07 01:49:52 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* The replacement text. */
|
2000-09-06 13:39:17 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
2004-02-24 20:41:39 +00:00
|
|
|
if (ISSET(USE_REGEXP))
|
2005-07-08 20:09:16 +00:00
|
|
|
replace_regexp(copy + openfile->current_x, TRUE);
|
2000-07-07 01:49:52 +00:00
|
|
|
else
|
2000-07-07 02:35:34 +00:00
|
|
|
#endif
|
2005-07-08 20:09:16 +00:00
|
|
|
strcpy(copy + openfile->current_x, answer);
|
2000-07-07 01:49:52 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* The tail of the original line. */
|
2005-07-08 20:09:16 +00:00
|
|
|
assert(openfile->current_x + search_match_count <= strlen(openfile->current->data));
|
2005-05-26 03:32:41 +00:00
|
|
|
|
2005-07-08 20:09:16 +00:00
|
|
|
strcat(copy, openfile->current->data + openfile->current_x +
|
|
|
|
search_match_count);
|
2000-07-07 01:49:52 +00:00
|
|
|
|
|
|
|
return copy;
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* Step through each replace word and prompt user before replacing.
|
2004-10-08 23:06:01 +00:00
|
|
|
* 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.
|
2004-02-24 20:41:39 +00:00
|
|
|
*
|
|
|
|
* needle is the string to seek. We replace it with answer. Return -1
|
2004-10-26 20:58:30 +00:00
|
|
|
* if needle isn't found, else the number of replacements performed. If
|
|
|
|
* canceled isn't NULL, set it to TRUE if we canceled. */
|
2005-11-16 05:59:06 +00:00
|
|
|
ssize_t do_replace_loop(
|
|
|
|
#ifndef DISABLE_SPELLER
|
|
|
|
bool whole_word,
|
|
|
|
#endif
|
|
|
|
bool *canceled, const filestruct *real_current, size_t
|
|
|
|
*real_current_x, const char *needle)
|
2000-06-19 04:22:15 +00:00
|
|
|
{
|
2004-10-18 22:19:22 +00:00
|
|
|
ssize_t numreplaced = -1;
|
|
|
|
size_t match_len;
|
2004-08-27 20:28:34 +00:00
|
|
|
bool replaceall = FALSE;
|
2003-10-31 17:53:38 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
2004-01-03 21:42:25 +00:00
|
|
|
/* The starting-line match and bol/eol regex flags. */
|
2004-08-27 20:28:34 +00:00
|
|
|
bool begin_line = FALSE, bol_or_eol = FALSE;
|
2003-10-31 17:53:38 +00:00
|
|
|
#endif
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-07-08 20:09:16 +00:00
|
|
|
bool old_mark_set = openfile->mark_set;
|
|
|
|
filestruct *edittop_save = openfile->edittop, *top, *bot;
|
2004-11-03 22:03:41 +00:00
|
|
|
size_t top_x, bot_x;
|
|
|
|
bool right_side_up = FALSE;
|
2005-07-12 17:40:16 +00:00
|
|
|
/* TRUE if (mark_begin, mark_begin_x) is the top of the mark,
|
2004-11-03 22:03:41 +00:00
|
|
|
* FALSE if (current, current_x) is. */
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2004-10-08 23:06:01 +00:00
|
|
|
if (old_mark_set) {
|
2004-11-03 22:03:41 +00:00
|
|
|
/* If the mark is on, partition the filestruct so that it
|
2004-11-05 23:03:03 +00:00
|
|
|
* contains only the marked text, set edittop to the top of the
|
|
|
|
* partition, turn the mark off, and refresh the screen. */
|
2004-11-03 22:03:41 +00:00
|
|
|
mark_order((const filestruct **)&top, &top_x,
|
2004-11-05 23:03:03 +00:00
|
|
|
(const filestruct **)&bot, &bot_x, &right_side_up);
|
2004-11-03 22:03:41 +00:00
|
|
|
filepart = partition_filestruct(top, top_x, bot, bot_x);
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->edittop = openfile->fileage;
|
|
|
|
openfile->mark_set = FALSE;
|
2014-04-04 11:59:03 +00:00
|
|
|
#ifndef DISABLE_COLOR
|
2009-02-17 02:01:03 +00:00
|
|
|
reset_multis(openfile->current, TRUE);
|
|
|
|
#endif
|
2004-10-08 23:06:01 +00:00
|
|
|
edit_refresh();
|
|
|
|
}
|
2014-03-17 14:15:57 +00:00
|
|
|
#endif /* !NANO_TINY */
|
2003-09-16 01:16:49 +00:00
|
|
|
|
2004-10-26 20:58:30 +00:00
|
|
|
if (canceled != NULL)
|
|
|
|
*canceled = FALSE;
|
|
|
|
|
2004-10-31 13:20:30 +00:00
|
|
|
findnextstr_wrap_reset();
|
2005-11-16 05:59:06 +00:00
|
|
|
while (findnextstr(
|
|
|
|
#ifndef DISABLE_SPELLER
|
|
|
|
whole_word,
|
|
|
|
#endif
|
2003-11-28 16:04:24 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
2004-02-24 20:41:39 +00:00
|
|
|
/* 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
|
2003-11-28 16:04:24 +00:00
|
|
|
#else
|
2004-02-24 20:41:39 +00:00
|
|
|
FALSE
|
2003-11-28 16:04:24 +00:00
|
|
|
#endif
|
2004-11-22 17:08:41 +00:00
|
|
|
, real_current, *real_current_x, needle, &match_len)) {
|
2004-02-24 20:41:39 +00:00
|
|
|
int i = 0;
|
2004-10-09 16:26:32 +00:00
|
|
|
|
2004-10-21 15:44:36 +00:00
|
|
|
#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. */
|
2015-03-21 21:40:56 +00:00
|
|
|
if (bol_or_eol && begin_line && openfile->current == real_current)
|
2004-10-21 15:44:36 +00:00
|
|
|
break;
|
|
|
|
/* Otherwise, set the begin_line flag if we've found a match on
|
2015-03-21 21:40:56 +00:00
|
|
|
* the beginning line, reset the bol_or_eol flag, and continue. */
|
2004-10-21 15:44:36 +00:00
|
|
|
else {
|
2005-07-08 20:09:16 +00:00
|
|
|
if (openfile->current == real_current)
|
2004-10-21 15:44:36 +00:00
|
|
|
begin_line = TRUE;
|
|
|
|
bol_or_eol = FALSE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-06-06 03:46:32 +00:00
|
|
|
if (!replaceall)
|
|
|
|
edit_refresh();
|
2003-01-13 01:35:15 +00:00
|
|
|
|
2005-06-13 05:16:55 +00:00
|
|
|
/* Indicate that we found the search string. */
|
2004-02-24 20:41:39 +00:00
|
|
|
if (numreplaced == -1)
|
|
|
|
numreplaced = 0;
|
2003-09-16 01:16:49 +00:00
|
|
|
|
2000-11-29 04:33:26 +00:00
|
|
|
if (!replaceall) {
|
2003-09-16 01:16:49 +00:00
|
|
|
size_t xpt = xplustabs();
|
2005-07-08 20:09:16 +00:00
|
|
|
char *exp_word = display_string(openfile->current->data,
|
|
|
|
xpt, strnlenpt(openfile->current->data,
|
|
|
|
openfile->current_x + match_len) - xpt, FALSE);
|
2003-09-16 01:16:49 +00:00
|
|
|
|
2000-11-29 04:33:26 +00:00
|
|
|
curs_set(0);
|
2005-06-15 19:15:14 +00:00
|
|
|
|
2003-09-16 01:16:49 +00:00
|
|
|
do_replace_highlight(TRUE, exp_word);
|
2000-11-29 04:33:26 +00:00
|
|
|
|
2014-05-28 14:34:11 +00:00
|
|
|
/* TRANSLATORS: This is a prompt. */
|
2005-11-07 21:45:44 +00:00
|
|
|
i = do_yesno_prompt(TRUE, _("Replace this instance?"));
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2003-09-16 01:16:49 +00:00
|
|
|
do_replace_highlight(FALSE, exp_word);
|
2005-06-15 19:15:14 +00:00
|
|
|
|
2003-09-16 01:16:49 +00:00
|
|
|
free(exp_word);
|
2005-06-15 19:15:14 +00:00
|
|
|
|
2000-11-29 04:33:26 +00:00
|
|
|
curs_set(1);
|
2003-12-29 02:15:23 +00:00
|
|
|
|
2004-10-26 20:58:30 +00:00
|
|
|
if (i == -1) { /* We canceled the replace. */
|
|
|
|
if (canceled != NULL)
|
|
|
|
*canceled = TRUE;
|
2003-12-29 02:15:23 +00:00
|
|
|
break;
|
2004-10-26 20:58:30 +00:00
|
|
|
}
|
2000-11-29 04:33:26 +00:00
|
|
|
}
|
|
|
|
|
2003-12-24 03:13:44 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
2004-02-24 20:41:39 +00:00
|
|
|
/* Set the bol_or_eol flag if we're doing a bol and/or eol regex
|
2004-01-03 21:42:25 +00:00
|
|
|
* replace ("^", "$", or "^$"). */
|
2015-03-27 10:49:19 +00:00
|
|
|
if (ISSET(USE_REGEXP) && regexp_bol_or_eol(&search_regexp, needle))
|
2004-04-05 01:08:14 +00:00
|
|
|
bol_or_eol = TRUE;
|
2003-12-24 03:13:44 +00:00
|
|
|
#endif
|
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
if (i > 0 || replaceall) { /* Yes, replace it!!!! */
|
2005-07-18 19:29:27 +00:00
|
|
|
char *copy;
|
2004-10-30 01:16:08 +00:00
|
|
|
size_t length_change;
|
2003-01-26 04:26:25 +00:00
|
|
|
|
2008-08-02 22:31:01 +00:00
|
|
|
#ifndef NANO_TINY
|
2008-08-03 04:48:05 +00:00
|
|
|
update_undo(REPLACE);
|
2008-08-02 22:31:01 +00:00
|
|
|
#endif
|
2004-02-24 20:41:39 +00:00
|
|
|
if (i == 2)
|
2004-07-12 03:10:30 +00:00
|
|
|
replaceall = TRUE;
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2005-07-18 19:29:27 +00:00
|
|
|
copy = replace_line(needle);
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2015-03-27 10:49:19 +00:00
|
|
|
length_change = strlen(copy) - strlen(openfile->current->data);
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-07-12 17:40:16 +00:00
|
|
|
/* If the mark was on and (mark_begin, mark_begin_x) was the
|
|
|
|
* top of it, don't change mark_begin_x. */
|
2004-11-05 14:37:18 +00:00
|
|
|
if (!old_mark_set || !right_side_up) {
|
2005-07-12 17:40:16 +00:00
|
|
|
/* 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 +
|
2005-07-08 20:09:16 +00:00
|
|
|
match_len)
|
2005-07-12 17:40:16 +00:00
|
|
|
openfile->mark_begin_x = openfile->current_x;
|
2004-11-03 22:03:41 +00:00
|
|
|
else
|
2005-07-12 17:40:16 +00:00
|
|
|
openfile->mark_begin_x += length_change;
|
2004-11-03 22:03:41 +00:00
|
|
|
}
|
2003-01-26 04:26:25 +00:00
|
|
|
}
|
2002-07-19 01:08:59 +00:00
|
|
|
|
2004-11-05 14:37:18 +00:00
|
|
|
/* 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) {
|
2004-11-03 22:03:41 +00:00
|
|
|
#endif
|
2004-11-05 14:37:18 +00:00
|
|
|
/* Keep real_current_x in sync with the text changes. */
|
2005-07-08 20:09:16 +00:00
|
|
|
if (openfile->current == real_current &&
|
|
|
|
openfile->current_x <= *real_current_x) {
|
2015-03-27 10:49:19 +00:00
|
|
|
if (*real_current_x < openfile->current_x + match_len)
|
|
|
|
*real_current_x = openfile->current_x + match_len;
|
2004-11-03 22:03:41 +00:00
|
|
|
*real_current_x += length_change;
|
|
|
|
}
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2003-01-26 04:26:25 +00:00
|
|
|
}
|
2004-11-05 14:37:18 +00:00
|
|
|
#endif
|
2002-02-16 20:03:44 +00:00
|
|
|
|
2003-01-26 04:26:25 +00:00
|
|
|
/* Set the cursor at the last character of the replacement
|
2003-11-28 16:04:24 +00:00
|
|
|
* text, so searching will resume after the replacement
|
2004-10-30 01:03:15 +00:00
|
|
|
* text. Note that current_x might be set to (size_t)-1
|
|
|
|
* here. */
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-06-16 18:48:30 +00:00
|
|
|
if (!ISSET(BACKWARDS_SEARCH))
|
2003-01-26 04:26:25 +00:00
|
|
|
#endif
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->current_x += match_len + length_change - 1;
|
2002-02-16 20:03:44 +00:00
|
|
|
|
2015-03-21 21:40:56 +00:00
|
|
|
/* Clean up. */
|
2007-07-09 23:24:37 +00:00
|
|
|
openfile->totsize += mbstrlen(copy) -
|
|
|
|
mbstrlen(openfile->current->data);
|
2005-07-08 20:09:16 +00:00
|
|
|
free(openfile->current->data);
|
|
|
|
openfile->current->data = copy;
|
2000-10-24 22:25:36 +00:00
|
|
|
|
2014-04-04 11:59:03 +00:00
|
|
|
#ifndef DISABLE_COLOR
|
2015-03-27 10:49:19 +00:00
|
|
|
reset_multis(openfile->current, TRUE);
|
2009-02-17 02:01:03 +00:00
|
|
|
#endif
|
2015-03-27 10:49:19 +00:00
|
|
|
edit_refresh();
|
|
|
|
|
2004-05-28 20:44:09 +00:00
|
|
|
if (!replaceall) {
|
2014-04-04 11:59:03 +00:00
|
|
|
#ifndef DISABLE_COLOR
|
2005-07-13 20:18:46 +00:00
|
|
|
/* If color syntaxes are available and turned on, we
|
|
|
|
* need to call edit_refresh(). */
|
|
|
|
if (openfile->colorstrings != NULL &&
|
|
|
|
!ISSET(NO_COLOR_SYNTAX))
|
2004-05-28 20:44:09 +00:00
|
|
|
edit_refresh();
|
|
|
|
else
|
|
|
|
#endif
|
2005-07-08 20:09:16 +00:00
|
|
|
update_line(openfile->current, openfile->current_x);
|
2004-05-28 20:44:09 +00:00
|
|
|
}
|
|
|
|
|
2000-06-19 04:22:15 +00:00
|
|
|
set_modified();
|
|
|
|
numreplaced++;
|
2003-12-29 02:15:23 +00:00
|
|
|
}
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2004-11-03 22:03:41 +00:00
|
|
|
if (old_mark_set) {
|
2004-11-04 16:45:48 +00:00
|
|
|
/* 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. */
|
2004-11-22 00:16:23 +00:00
|
|
|
unpartition_filestruct(&filepart);
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->edittop = edittop_save;
|
|
|
|
openfile->mark_set = TRUE;
|
2004-11-03 22:03:41 +00:00
|
|
|
edit_refresh();
|
|
|
|
}
|
2004-02-24 20:41:39 +00:00
|
|
|
#endif
|
|
|
|
|
2005-11-05 17:35:44 +00:00
|
|
|
/* If the NO_NEWLINES flag isn't set, and text has been added to the
|
|
|
|
* magicline, make a new magicline. */
|
|
|
|
if (!ISSET(NO_NEWLINES) && openfile->filebot->data[0] != '\0')
|
2004-11-03 22:03:41 +00:00
|
|
|
new_magicline();
|
|
|
|
|
2000-11-05 16:52:21 +00:00
|
|
|
return numreplaced;
|
|
|
|
}
|
|
|
|
|
2003-01-13 01:35:15 +00:00
|
|
|
/* Replace a string. */
|
2004-07-02 14:31:03 +00:00
|
|
|
void do_replace(void)
|
2000-11-05 16:52:21 +00:00
|
|
|
{
|
2004-02-24 20:41:39 +00:00
|
|
|
filestruct *edittop_save, *begin;
|
2005-07-12 17:40:16 +00:00
|
|
|
size_t begin_x, pww_save;
|
2004-10-18 22:19:22 +00:00
|
|
|
ssize_t numreplaced;
|
2005-07-16 22:35:11 +00:00
|
|
|
int i;
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2001-04-22 07:10:21 +00:00
|
|
|
if (ISSET(VIEW_MODE)) {
|
|
|
|
print_view_warning();
|
2005-12-08 07:09:08 +00:00
|
|
|
search_replace_abort();
|
2004-07-02 14:31:03 +00:00
|
|
|
return;
|
2001-04-22 07:10:21 +00:00
|
|
|
}
|
|
|
|
|
2004-10-04 22:37:56 +00:00
|
|
|
i = search_init(TRUE, FALSE);
|
2006-05-22 02:08:49 +00:00
|
|
|
if (i == -1) {
|
2015-03-21 21:40:56 +00:00
|
|
|
/* Cancel, Go to Line, blank search string, or regcomp() failed. */
|
2005-12-08 07:09:08 +00:00
|
|
|
search_replace_abort();
|
2004-07-02 14:31:03 +00:00
|
|
|
return;
|
2006-05-22 02:08:49 +00:00
|
|
|
} else if (i == -2) {
|
|
|
|
/* No Replace. */
|
2000-11-05 16:52:21 +00:00
|
|
|
do_search();
|
2004-07-02 14:31:03 +00:00
|
|
|
return;
|
2006-05-22 02:08:49 +00:00
|
|
|
} else if (i == 1)
|
|
|
|
/* Case Sensitive, Backwards, or Regexp search toggle. */
|
2004-02-24 20:41:39 +00:00
|
|
|
do_replace();
|
|
|
|
|
|
|
|
if (i != 0)
|
2004-07-02 14:31:03 +00:00
|
|
|
return;
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* If answer is not "", add answer to the search history list and
|
|
|
|
* copy answer into last_search. */
|
|
|
|
if (answer[0] != '\0') {
|
2014-06-19 20:05:24 +00:00
|
|
|
#ifndef DISABLE_HISTORIES
|
2005-06-02 18:41:31 +00:00
|
|
|
update_history(&search_history, answer);
|
2004-02-24 20:41:39 +00:00
|
|
|
#endif
|
2002-07-19 01:08:59 +00:00
|
|
|
last_search = mallocstrcpy(last_search, answer);
|
2004-02-24 20:41:39 +00:00
|
|
|
}
|
2002-07-19 01:08:59 +00:00
|
|
|
|
2005-07-02 17:49:27 +00:00
|
|
|
last_replace = mallocstrcpy(last_replace, "");
|
|
|
|
|
2006-02-07 21:11:05 +00:00
|
|
|
i = do_prompt(FALSE,
|
|
|
|
#ifndef DISABLE_TABCOMP
|
|
|
|
TRUE,
|
|
|
|
#endif
|
2014-04-16 09:26:15 +00:00
|
|
|
MREPLACEWITH, last_replace,
|
2014-06-19 20:05:24 +00:00
|
|
|
#ifndef DISABLE_HISTORIES
|
2005-06-02 18:41:31 +00:00
|
|
|
&replace_history,
|
2003-01-05 20:41:21 +00:00
|
|
|
#endif
|
2014-05-28 14:34:11 +00:00
|
|
|
/* TRANSLATORS: This is a prompt. */
|
2006-02-18 21:32:29 +00:00
|
|
|
edit_refresh, _("Replace with"));
|
2003-01-05 21:47:06 +00:00
|
|
|
|
2014-06-19 20:05:24 +00:00
|
|
|
#ifndef DISABLE_HISTORIES
|
2015-03-21 21:40:56 +00:00
|
|
|
/* If the replace string is not "", add it to the replace history list. */
|
2004-02-24 20:41:39 +00:00
|
|
|
if (i == 0)
|
2005-06-02 18:41:31 +00:00
|
|
|
update_history(&replace_history, answer);
|
2004-02-24 20:41:39 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if (i != 0 && i != -2) {
|
|
|
|
if (i == -1) { /* Cancel. */
|
|
|
|
if (last_replace[0] != '\0')
|
|
|
|
answer = mallocstrcpy(answer, last_replace);
|
2004-08-26 04:22:54 +00:00
|
|
|
statusbar(_("Cancelled"));
|
2004-02-24 20:41:39 +00:00
|
|
|
}
|
2005-12-08 07:09:08 +00:00
|
|
|
search_replace_abort();
|
2004-07-02 14:31:03 +00:00
|
|
|
return;
|
2004-02-24 20:41:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
last_replace = mallocstrcpy(last_replace, answer);
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* Save where we are. */
|
2005-07-08 20:09:16 +00:00
|
|
|
edittop_save = openfile->edittop;
|
|
|
|
begin = openfile->current;
|
2005-07-12 17:40:16 +00:00
|
|
|
begin_x = openfile->current_x;
|
2005-07-08 20:09:16 +00:00
|
|
|
pww_save = openfile->placewewant;
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2005-11-16 05:59:06 +00:00
|
|
|
numreplaced = do_replace_loop(
|
|
|
|
#ifndef DISABLE_SPELLER
|
|
|
|
FALSE,
|
|
|
|
#endif
|
|
|
|
NULL, begin, &begin_x, last_search);
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* Restore where we were. */
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->edittop = edittop_save;
|
|
|
|
openfile->current = begin;
|
2005-07-12 17:40:16 +00:00
|
|
|
openfile->current_x = begin_x;
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->placewewant = pww_save;
|
2004-10-19 21:09:37 +00:00
|
|
|
|
2004-07-30 20:21:34 +00:00
|
|
|
edit_refresh();
|
2003-01-13 01:35:15 +00:00
|
|
|
|
|
|
|
if (numreplaced >= 0)
|
2005-06-14 23:36:13 +00:00
|
|
|
statusbar(P_("Replaced %lu occurrence",
|
|
|
|
"Replaced %lu occurrences", (unsigned long)numreplaced),
|
|
|
|
(unsigned long)numreplaced);
|
2003-01-13 01:35:15 +00:00
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
search_replace_abort();
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2014-05-15 20:00:46 +00:00
|
|
|
/* Go to the specified line and x position. */
|
|
|
|
void goto_line_posx(ssize_t line, size_t pos_x)
|
|
|
|
{
|
|
|
|
for (openfile->current = openfile->fileage; openfile->current != openfile->filebot &&
|
|
|
|
openfile->current->next != NULL && line > 1; line--)
|
|
|
|
openfile->current = openfile->current->next;
|
|
|
|
|
|
|
|
openfile->current_x = pos_x;
|
|
|
|
openfile->placewewant = xplustabs();
|
|
|
|
|
|
|
|
edit_refresh_needed = TRUE;
|
|
|
|
}
|
|
|
|
|
2005-05-25 18:44:37 +00:00
|
|
|
/* 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.
|
2005-07-16 07:06:36 +00:00
|
|
|
* Update the screen afterwards if allow_update is TRUE. Note that both
|
|
|
|
* the line and column numbers should be one-based. */
|
2005-06-29 00:17:18 +00:00
|
|
|
void do_gotolinecolumn(ssize_t line, ssize_t column, bool use_answer,
|
2005-07-16 07:06:36 +00:00
|
|
|
bool interactive, bool save_pos, bool allow_update)
|
2000-06-19 04:22:15 +00:00
|
|
|
{
|
2005-07-16 07:06:36 +00:00
|
|
|
if (interactive) {
|
2004-03-15 20:26:30 +00:00
|
|
|
char *ans = mallocstrcpy(NULL, answer);
|
2014-07-02 19:12:38 +00:00
|
|
|
functionptrtype func;
|
2005-07-16 07:06:36 +00:00
|
|
|
|
2007-01-01 05:15:32 +00:00
|
|
|
/* Ask for the line and column. */
|
2006-02-07 21:11:05 +00:00
|
|
|
int i = do_prompt(FALSE,
|
|
|
|
#ifndef DISABLE_TABCOMP
|
|
|
|
TRUE,
|
|
|
|
#endif
|
2008-03-05 07:34:01 +00:00
|
|
|
MGOTOLINE, use_answer ? ans : "",
|
2014-06-19 20:05:24 +00:00
|
|
|
#ifndef DISABLE_HISTORIES
|
2004-03-15 20:26:30 +00:00
|
|
|
NULL,
|
2003-01-13 01:35:15 +00:00
|
|
|
#endif
|
2014-05-28 14:34:11 +00:00
|
|
|
/* TRANSLATORS: This is a prompt. */
|
2006-02-18 21:32:29 +00:00
|
|
|
edit_refresh, _("Enter line number, column number"));
|
2004-03-15 20:26:30 +00:00
|
|
|
|
|
|
|
free(ans);
|
2003-02-10 02:55:03 +00:00
|
|
|
|
|
|
|
/* Cancel, or Enter with blank string. */
|
2004-10-04 16:01:37 +00:00
|
|
|
if (i < 0) {
|
2004-09-28 15:06:15 +00:00
|
|
|
statusbar(_("Cancelled"));
|
2004-10-04 16:01:37 +00:00
|
|
|
display_main_list();
|
2004-09-30 22:07:21 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-02 19:12:38 +00:00
|
|
|
func = func_from_key(&i);
|
2008-03-13 08:23:52 +00:00
|
|
|
|
2014-07-02 19:12:38 +00:00
|
|
|
if (func == gototext_void) {
|
2004-10-04 22:37:56 +00:00
|
|
|
/* Keep answer up on the statusbar. */
|
|
|
|
search_init(TRUE, TRUE);
|
|
|
|
|
2004-10-04 16:01:37 +00:00
|
|
|
do_search();
|
2004-07-02 14:31:03 +00:00
|
|
|
return;
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
2001-04-20 01:59:55 +00:00
|
|
|
|
2004-10-15 01:39:46 +00:00
|
|
|
/* Do a bounds check. Display a warning on an out-of-bounds
|
2005-05-25 18:44:37 +00:00
|
|
|
* line or column number only if we hit Enter at the statusbar
|
|
|
|
* prompt. */
|
2005-05-17 18:06:26 +00:00
|
|
|
if (!parse_line_column(answer, &line, &column) || line < 1 ||
|
2005-05-25 18:44:37 +00:00
|
|
|
column < 1) {
|
2004-10-15 01:39:46 +00:00
|
|
|
if (i == 0)
|
2007-11-05 17:18:16 +00:00
|
|
|
statusbar(_("Invalid line or column number"));
|
2003-04-15 01:15:09 +00:00
|
|
|
display_main_list();
|
2004-07-02 14:31:03 +00:00
|
|
|
return;
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
2005-05-17 18:06:26 +00:00
|
|
|
} else {
|
|
|
|
if (line < 1)
|
2005-07-08 20:09:16 +00:00
|
|
|
line = openfile->current->lineno;
|
2005-05-17 18:06:26 +00:00
|
|
|
|
2005-05-25 18:44:37 +00:00
|
|
|
if (column < 1)
|
2005-07-08 20:09:16 +00:00
|
|
|
column = openfile->placewewant + 1;
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2005-07-08 20:09:16 +00:00
|
|
|
for (openfile->current = openfile->fileage;
|
2005-11-03 21:08:39 +00:00
|
|
|
openfile->current != openfile->filebot && line > 1; line--)
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->current = openfile->current->next;
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->current_x = actual_x(openfile->current->data, column - 1);
|
|
|
|
openfile->placewewant = column - 1;
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2005-07-16 22:47:12 +00:00
|
|
|
/* 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. */
|
2014-02-24 10:18:15 +00:00
|
|
|
if (allow_update) {
|
2005-07-16 22:47:12 +00:00
|
|
|
edit_refresh();
|
2014-02-24 10:18:15 +00:00
|
|
|
display_main_list();
|
|
|
|
}
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Go to the specified line and column, asking for them beforehand. */
|
2005-05-17 18:06:26 +00:00
|
|
|
void do_gotolinecolumn_void(void)
|
2000-06-19 04:22:15 +00:00
|
|
|
{
|
2005-07-08 20:09:16 +00:00
|
|
|
do_gotolinecolumn(openfile->current->lineno,
|
2005-07-16 07:06:36 +00:00
|
|
|
openfile->placewewant + 1, FALSE, TRUE, FALSE, TRUE);
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
2001-09-19 03:19:43 +00:00
|
|
|
|
2005-07-16 22:35:11 +00:00
|
|
|
#ifndef DISABLE_SPELLER
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Go to the line with the number specified in pos_line, the
|
|
|
|
* x-coordinate specified in pos_x, the y-coordinate specified in pos_y,
|
|
|
|
* and the place we want specified in pos_pww. */
|
|
|
|
void do_gotopos(ssize_t pos_line, size_t pos_x, ssize_t pos_y, size_t
|
2005-06-28 06:25:34 +00:00
|
|
|
pos_pww)
|
2001-09-19 03:19:43 +00:00
|
|
|
{
|
2005-05-17 18:06:26 +00:00
|
|
|
/* Since do_gotolinecolumn() resets the x-coordinate but not the
|
2004-07-30 20:21:34 +00:00
|
|
|
* y-coordinate, set the coordinates up this way. */
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->current_y = pos_y;
|
2005-12-08 07:09:08 +00:00
|
|
|
do_gotolinecolumn(pos_line, pos_x + 1, FALSE, FALSE, TRUE, TRUE);
|
2001-11-29 03:43:08 +00:00
|
|
|
|
2004-07-30 20:21:34 +00:00
|
|
|
/* Set the rest of the coordinates up. */
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->placewewant = pos_pww;
|
|
|
|
update_line(openfile->current, pos_x);
|
2001-09-19 03:19:43 +00:00
|
|
|
}
|
|
|
|
#endif
|
2001-09-22 22:14:25 +00:00
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-11-15 23:45:29 +00:00
|
|
|
/* Search for a match to one of the two characters in bracket_set. If
|
2005-12-08 07:09:08 +00:00
|
|
|
* reverse is TRUE, search backwards for the leftmost bracket.
|
|
|
|
* Otherwise, search forwards for the rightmost bracket. Return TRUE if
|
|
|
|
* we found a match, and FALSE otherwise. */
|
2005-11-15 23:45:29 +00:00
|
|
|
bool find_bracket_match(bool reverse, const char *bracket_set)
|
|
|
|
{
|
|
|
|
filestruct *fileptr = openfile->current;
|
|
|
|
const char *rev_start = NULL, *found = NULL;
|
|
|
|
ssize_t current_y_find = openfile->current_y;
|
|
|
|
|
2006-01-06 07:10:30 +00:00
|
|
|
assert(mbstrlen(bracket_set) == 2);
|
2005-11-15 23:45:29 +00:00
|
|
|
|
|
|
|
/* rev_start might end up 1 character before the start or after the
|
|
|
|
* end of the line. This won't be a problem because we'll skip over
|
|
|
|
* it below in that case, and rev_start will be properly set when
|
|
|
|
* the search continues on the previous or next line. */
|
|
|
|
rev_start = reverse ? fileptr->data + (openfile->current_x - 1) :
|
|
|
|
fileptr->data + (openfile->current_x + 1);
|
|
|
|
|
|
|
|
/* Look for either of the two characters in bracket_set. rev_start
|
|
|
|
* can be 1 character before the start or after the end of the line.
|
|
|
|
* In either case, just act as though no match is found. */
|
|
|
|
while (TRUE) {
|
|
|
|
found = ((rev_start > fileptr->data && *(rev_start - 1) ==
|
|
|
|
'\0') || rev_start < fileptr->data) ? NULL : (reverse ?
|
2006-01-06 07:10:30 +00:00
|
|
|
mbrevstrpbrk(fileptr->data, bracket_set, rev_start) :
|
|
|
|
mbstrpbrk(rev_start, bracket_set));
|
2005-11-15 23:45:29 +00:00
|
|
|
|
|
|
|
if (found != NULL)
|
2015-03-21 21:40:56 +00:00
|
|
|
/* We've found a potential match. */
|
2005-11-15 23:45:29 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
if (reverse) {
|
|
|
|
fileptr = fileptr->prev;
|
|
|
|
current_y_find--;
|
|
|
|
} else {
|
|
|
|
fileptr = fileptr->next;
|
|
|
|
current_y_find++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fileptr == NULL)
|
2015-03-21 21:40:56 +00:00
|
|
|
/* We've reached the start or end of the buffer, so get out. */
|
2005-11-15 23:45:29 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
rev_start = fileptr->data;
|
|
|
|
if (reverse)
|
|
|
|
rev_start += strlen(fileptr->data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We've definitely found something. */
|
|
|
|
openfile->current = fileptr;
|
2005-11-16 03:54:22 +00:00
|
|
|
openfile->current_x = found - fileptr->data;
|
2005-11-15 23:45:29 +00:00
|
|
|
openfile->placewewant = xplustabs();
|
|
|
|
openfile->current_y = current_y_find;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Search for a match to the bracket at the current cursor position, if
|
|
|
|
* there is one. */
|
2004-07-02 14:31:03 +00:00
|
|
|
void do_find_bracket(void)
|
2001-09-22 22:14:25 +00:00
|
|
|
{
|
2005-07-21 02:20:01 +00:00
|
|
|
filestruct *current_save;
|
2004-10-26 16:29:21 +00:00
|
|
|
size_t current_x_save, pww_save;
|
2006-01-06 07:10:30 +00:00
|
|
|
const char *ch;
|
2006-01-06 21:51:10 +00:00
|
|
|
/* The location in matchbrackets of the bracket at the current
|
2005-11-15 23:45:29 +00:00
|
|
|
* cursor position. */
|
2006-01-06 07:10:30 +00:00
|
|
|
int ch_len;
|
|
|
|
/* The length of ch in bytes. */
|
|
|
|
const char *wanted_ch;
|
2006-01-06 21:51:10 +00:00
|
|
|
/* The location in matchbrackets of the bracket complementing
|
|
|
|
* the bracket at the current cursor position. */
|
2006-01-06 07:10:30 +00:00
|
|
|
int wanted_ch_len;
|
|
|
|
/* The length of wanted_ch in bytes. */
|
|
|
|
char *bracket_set;
|
2005-11-15 23:45:29 +00:00
|
|
|
/* The pair of characters in ch and wanted_ch. */
|
2006-01-06 22:35:52 +00:00
|
|
|
size_t i;
|
|
|
|
/* Generic loop variable. */
|
2006-01-06 21:51:10 +00:00
|
|
|
size_t matchhalf;
|
2006-01-06 22:35:52 +00:00
|
|
|
/* The number of single-byte characters in one half of
|
|
|
|
* matchbrackets. */
|
|
|
|
size_t mbmatchhalf;
|
|
|
|
/* The number of multibyte characters in one half of
|
|
|
|
* matchbrackets. */
|
2005-11-15 23:45:29 +00:00
|
|
|
size_t count = 1;
|
|
|
|
/* The initial bracket count. */
|
|
|
|
bool reverse;
|
|
|
|
/* The direction we search. */
|
2006-01-06 07:10:30 +00:00
|
|
|
char *found_ch;
|
|
|
|
/* The character we find. */
|
2005-11-15 23:45:29 +00:00
|
|
|
|
2006-01-06 21:51:10 +00:00
|
|
|
assert(mbstrlen(matchbrackets) % 2 == 0);
|
2001-09-22 22:14:25 +00:00
|
|
|
|
2006-01-06 07:10:30 +00:00
|
|
|
ch = openfile->current->data + openfile->current_x;
|
2003-01-05 20:41:21 +00:00
|
|
|
|
2006-01-06 21:51:10 +00:00
|
|
|
if (ch == '\0' || (ch = mbstrchr(matchbrackets, ch)) == NULL) {
|
2001-09-22 22:14:25 +00:00
|
|
|
statusbar(_("Not a bracket"));
|
2004-07-02 14:31:03 +00:00
|
|
|
return;
|
2001-09-22 22:14:25 +00:00
|
|
|
}
|
|
|
|
|
2005-07-21 02:20:01 +00:00
|
|
|
/* Save where we are. */
|
2005-07-08 20:09:16 +00:00
|
|
|
current_save = openfile->current;
|
|
|
|
current_x_save = openfile->current_x;
|
|
|
|
pww_save = openfile->placewewant;
|
2005-07-21 02:20:01 +00:00
|
|
|
|
2006-01-06 07:10:30 +00:00
|
|
|
/* If we're on an opening bracket, which must be in the first half
|
2006-01-06 21:51:10 +00:00
|
|
|
* of matchbrackets, we want to search forwards for a closing
|
2006-01-06 07:10:30 +00:00
|
|
|
* bracket. If we're on a closing bracket, which must be in the
|
2006-01-06 21:51:10 +00:00
|
|
|
* second half of matchbrackets, we want to search backwards for an
|
2006-01-06 07:10:30 +00:00
|
|
|
* opening bracket. */
|
2006-01-06 22:35:52 +00:00
|
|
|
matchhalf = 0;
|
|
|
|
mbmatchhalf = mbstrlen(matchbrackets) / 2;
|
|
|
|
|
|
|
|
for (i = 0; i < mbmatchhalf; i++)
|
|
|
|
matchhalf += parse_mbchar(matchbrackets + matchhalf, NULL,
|
|
|
|
NULL);
|
|
|
|
|
2006-01-28 06:04:59 +00:00
|
|
|
reverse = ((ch - matchbrackets) >= matchhalf);
|
2006-01-06 07:10:30 +00:00
|
|
|
|
|
|
|
/* If we're on an opening bracket, set wanted_ch to the character
|
2006-01-06 21:51:10 +00:00
|
|
|
* that's matchhalf characters after ch. If we're on a closing
|
|
|
|
* bracket, set wanted_ch to the character that's matchhalf
|
|
|
|
* characters before ch. */
|
2006-01-06 07:10:30 +00:00
|
|
|
wanted_ch = ch;
|
|
|
|
|
2006-01-06 22:35:52 +00:00
|
|
|
while (mbmatchhalf > 0) {
|
2006-01-06 07:10:30 +00:00
|
|
|
if (reverse)
|
2006-01-06 21:51:10 +00:00
|
|
|
wanted_ch = matchbrackets + move_mbleft(matchbrackets,
|
|
|
|
wanted_ch - matchbrackets);
|
2006-01-06 07:10:30 +00:00
|
|
|
else
|
|
|
|
wanted_ch += move_mbright(wanted_ch, 0);
|
|
|
|
|
2006-01-06 22:35:52 +00:00
|
|
|
mbmatchhalf--;
|
2006-01-06 07:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ch_len = parse_mbchar(ch, NULL, NULL);
|
|
|
|
wanted_ch_len = parse_mbchar(wanted_ch, NULL, NULL);
|
|
|
|
|
|
|
|
/* Fill bracket_set in with the values of ch and wanted_ch. */
|
|
|
|
bracket_set = charalloc((mb_cur_max() * 2) + 1);
|
|
|
|
strncpy(bracket_set, ch, ch_len);
|
|
|
|
strncpy(bracket_set + ch_len, wanted_ch, wanted_ch_len);
|
|
|
|
null_at(&bracket_set, ch_len + wanted_ch_len);
|
|
|
|
|
|
|
|
found_ch = charalloc(mb_cur_max() + 1);
|
2005-07-21 02:20:01 +00:00
|
|
|
|
2004-03-15 20:26:30 +00:00
|
|
|
while (TRUE) {
|
2005-11-15 23:45:29 +00:00
|
|
|
if (find_bracket_match(reverse, bracket_set)) {
|
2005-07-21 02:20:01 +00:00
|
|
|
/* If we found an identical bracket, increment count. If we
|
|
|
|
* found a complementary bracket, decrement it. */
|
2006-01-06 07:10:30 +00:00
|
|
|
parse_mbchar(openfile->current->data + openfile->current_x,
|
|
|
|
found_ch, NULL);
|
|
|
|
count += (strncmp(found_ch, ch, ch_len) == 0) ? 1 : -1;
|
2005-07-21 02:20:01 +00:00
|
|
|
|
|
|
|
/* If count is zero, we've found a matching bracket. Update
|
|
|
|
* the screen and get out. */
|
|
|
|
if (count == 0) {
|
2004-10-26 16:29:21 +00:00
|
|
|
edit_redraw(current_save, pww_save);
|
2004-02-24 20:41:39 +00:00
|
|
|
break;
|
2001-09-22 22:14:25 +00:00
|
|
|
}
|
2003-01-13 01:35:15 +00:00
|
|
|
} else {
|
2005-07-21 02:20:01 +00:00
|
|
|
/* We didn't find either an opening or closing bracket.
|
|
|
|
* Indicate this, restore where we were, and get out. */
|
2001-09-22 22:14:25 +00:00
|
|
|
statusbar(_("No matching bracket"));
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->current = current_save;
|
|
|
|
openfile->current_x = current_x_save;
|
2005-07-21 02:20:01 +00:00
|
|
|
openfile->placewewant = pww_save;
|
2001-09-22 22:14:25 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-01-06 07:10:30 +00:00
|
|
|
|
|
|
|
/* Clean up. */
|
|
|
|
free(bracket_set);
|
|
|
|
free(found_ch);
|
2001-09-22 22:14:25 +00:00
|
|
|
}
|
2014-06-19 20:05:24 +00:00
|
|
|
#endif /* !NANO_TINY */
|
2003-01-05 20:41:21 +00:00
|
|
|
|
2014-06-19 20:05:24 +00:00
|
|
|
#ifndef DISABLE_HISTORIES
|
2005-05-23 16:30:06 +00:00
|
|
|
/* Indicate whether any of the history lists have changed. */
|
|
|
|
bool history_has_changed(void)
|
|
|
|
{
|
|
|
|
return history_changed;
|
|
|
|
}
|
2003-01-05 20:41:21 +00:00
|
|
|
|
2005-05-23 16:30:06 +00:00
|
|
|
/* Initialize the search and replace history lists. */
|
2003-01-05 20:41:21 +00:00
|
|
|
void history_init(void)
|
|
|
|
{
|
2005-05-23 16:30:06 +00:00
|
|
|
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;
|
2003-01-05 20:41:21 +00:00
|
|
|
}
|
|
|
|
|
2005-07-18 07:48:50 +00:00
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
|
2005-06-02 18:41:31 +00:00
|
|
|
/* 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. */
|
2005-07-19 04:53:45 +00:00
|
|
|
filestruct *find_history(const filestruct *h_start, const filestruct
|
|
|
|
*h_end, const char *s, size_t len)
|
2003-01-05 20:41:21 +00:00
|
|
|
{
|
2005-07-19 04:53:45 +00:00
|
|
|
const filestruct *p;
|
2005-05-23 16:30:06 +00:00
|
|
|
|
2005-06-02 18:41:31 +00:00
|
|
|
for (p = h_start; p != h_end->next && p != NULL; p = p->next) {
|
|
|
|
if (strncmp(s, p->data, len) == 0)
|
2005-07-19 04:53:45 +00:00
|
|
|
return (filestruct *)p;
|
2005-05-08 17:08:51 +00:00
|
|
|
}
|
2005-05-23 16:30:06 +00:00
|
|
|
|
2003-01-05 20:41:21 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2005-06-02 18:41:31 +00:00
|
|
|
/* Update a history list. h should be the current position in the
|
|
|
|
* list. */
|
|
|
|
void update_history(filestruct **h, const char *s)
|
2003-01-05 20:41:21 +00:00
|
|
|
{
|
2005-06-02 18:41:31 +00:00
|
|
|
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;
|
|
|
|
}
|
2003-01-05 20:41:21 +00:00
|
|
|
|
2005-06-02 18:41:31 +00:00
|
|
|
assert(hage != NULL && hbot != NULL);
|
2003-01-05 20:41:21 +00:00
|
|
|
|
2005-05-23 16:30:06 +00:00
|
|
|
/* If this string is already in the history, delete it. */
|
2010-01-05 23:35:50 +00:00
|
|
|
p = find_history(*hage, *hbot, s, strlen(s));
|
2003-01-05 20:41:21 +00:00
|
|
|
|
2005-05-23 16:30:06 +00:00
|
|
|
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);
|
2015-03-14 15:59:01 +00:00
|
|
|
renumber(bar);
|
2003-01-05 20:41:21 +00:00
|
|
|
}
|
|
|
|
|
2005-05-23 16:30:06 +00:00
|
|
|
/* If the history is full, delete the beginning entry to make room
|
2005-08-10 20:03:58 +00:00
|
|
|
* for the new entry at the end. We assume that MAX_SEARCH_HISTORY
|
|
|
|
* is greater than zero. */
|
2005-05-23 16:30:06 +00:00
|
|
|
if ((*hbot)->lineno == MAX_SEARCH_HISTORY + 1) {
|
|
|
|
filestruct *foo = *hage;
|
|
|
|
|
|
|
|
*hage = (*hage)->next;
|
|
|
|
unlink_node(foo);
|
|
|
|
delete_node(foo);
|
|
|
|
renumber(*hage);
|
2003-01-05 20:41:21 +00:00
|
|
|
}
|
2005-05-23 16:30:06 +00:00
|
|
|
|
|
|
|
/* Add the new entry to the end. */
|
2006-12-13 00:27:45 +00:00
|
|
|
(*hbot)->data = mallocstrcpy((*hbot)->data, s);
|
2005-05-23 16:30:06 +00:00
|
|
|
splice_node(*hbot, make_new_node(*hbot), (*hbot)->next);
|
|
|
|
*hbot = (*hbot)->next;
|
|
|
|
(*hbot)->data = mallocstrcpy(NULL, "");
|
|
|
|
|
|
|
|
/* Indicate that the history's been changed. */
|
|
|
|
history_changed = TRUE;
|
|
|
|
|
|
|
|
/* Set the current position in the list to the bottom. */
|
|
|
|
*h = *hbot;
|
2003-01-05 20:41:21 +00:00
|
|
|
}
|
|
|
|
|
2005-05-26 02:46:42 +00:00
|
|
|
/* 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. */
|
2005-05-23 16:30:06 +00:00
|
|
|
char *get_history_older(filestruct **h)
|
2003-01-05 20:41:21 +00:00
|
|
|
{
|
2005-05-23 16:30:06 +00:00
|
|
|
assert(h != NULL);
|
2003-01-05 20:41:21 +00:00
|
|
|
|
2005-05-23 16:30:06 +00:00
|
|
|
if ((*h)->prev == NULL)
|
2008-06-03 08:09:05 +00:00
|
|
|
return NULL;
|
2005-05-23 16:30:06 +00:00
|
|
|
|
|
|
|
*h = (*h)->prev;
|
|
|
|
|
|
|
|
return (*h)->data;
|
2003-01-05 20:41:21 +00:00
|
|
|
}
|
|
|
|
|
2005-05-26 02:46:42 +00:00
|
|
|
/* 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. */
|
2005-05-23 16:30:06 +00:00
|
|
|
char *get_history_newer(filestruct **h)
|
2003-01-05 20:41:21 +00:00
|
|
|
{
|
2005-05-23 16:30:06 +00:00
|
|
|
assert(h != NULL);
|
2003-01-05 20:41:21 +00:00
|
|
|
|
2005-05-23 16:30:06 +00:00
|
|
|
if ((*h)->next == NULL)
|
2008-06-03 08:09:05 +00:00
|
|
|
return NULL;
|
2003-01-05 20:41:21 +00:00
|
|
|
|
2005-05-23 16:30:06 +00:00
|
|
|
*h = (*h)->next;
|
|
|
|
|
|
|
|
return (*h)->data;
|
|
|
|
}
|
2005-06-02 18:41:31 +00:00
|
|
|
|
2014-04-08 18:38:45 +00:00
|
|
|
/* More placeholders. */
|
2011-02-07 14:45:56 +00:00
|
|
|
void get_history_newer_void(void)
|
|
|
|
{
|
|
|
|
;
|
|
|
|
}
|
|
|
|
void get_history_older_void(void)
|
|
|
|
{
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2005-06-02 18:41:31 +00:00
|
|
|
#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
|
2005-06-03 14:30:52 +00:00
|
|
|
* string. If there isn't one, or if len is 0, don't move h and return
|
|
|
|
* s. */
|
2005-07-19 04:53:45 +00:00
|
|
|
char *get_history_completion(filestruct **h, const char *s, size_t len)
|
2005-06-02 18:41:31 +00:00
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
2005-06-13 03:52:33 +00:00
|
|
|
/* Search the history list from the current position to the
|
|
|
|
* bottom for a match of len characters. Skip over an exact
|
|
|
|
* match. */
|
2005-06-02 18:41:31 +00:00
|
|
|
p = find_history((*h)->next, hbot, s, len);
|
|
|
|
|
2005-06-13 03:52:33 +00:00
|
|
|
while (p != NULL && strcmp(p->data, s) == 0)
|
|
|
|
p = find_history(p->next, hbot, s, len);
|
|
|
|
|
2005-06-02 18:41:31 +00:00
|
|
|
if (p != NULL) {
|
|
|
|
*h = p;
|
|
|
|
return (*h)->data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Search the history list from the top to the current position
|
2005-06-13 03:52:33 +00:00
|
|
|
* for a match of len characters. Skip over an exact match. */
|
2005-06-02 18:41:31 +00:00
|
|
|
p = find_history(hage, *h, s, len);
|
|
|
|
|
2005-06-13 03:52:33 +00:00
|
|
|
while (p != NULL && strcmp(p->data, s) == 0)
|
|
|
|
p = find_history(p->next, *h, s, len);
|
|
|
|
|
2005-06-02 18:41:31 +00:00
|
|
|
if (p != NULL) {
|
|
|
|
*h = p;
|
|
|
|
return (*h)->data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-13 03:52:33 +00:00
|
|
|
/* If we're here, we didn't find a match, we didn't find an inexact
|
|
|
|
* match, or len is 0. Return s. */
|
2005-07-19 04:53:45 +00:00
|
|
|
return (char *)s;
|
2005-06-02 18:41:31 +00:00
|
|
|
}
|
2005-08-11 18:30:47 +00:00
|
|
|
#endif /* !DISABLE_TABCOMP */
|
2014-06-19 20:05:24 +00:00
|
|
|
#endif /* !DISABLE_HISTORIES */
|