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);
|
|
|
|
|
2016-03-22 10:42:28 +00:00
|
|
|
rc = regcomp(&search_regexp, fixbounds(regexp), NANO_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,
|
2016-03-17 19:30:29 +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();
|
2015-03-28 17:01:46 +00:00
|
|
|
focusing = FALSE;
|
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
|
|
|
|
}
|
|
|
|
|
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. */
|
2016-03-19 18:51:46 +00:00
|
|
|
functionptrtype func;
|
2004-10-04 22:37:56 +00:00
|
|
|
|
|
|
|
/* 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
|
|
|
|
2015-04-21 18:47:58 +00:00
|
|
|
focusing = TRUE;
|
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
|
|
|
|
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;
|
|
|
|
|
2016-03-19 18:23:37 +00:00
|
|
|
/* If the search was cancelled, or we have a blank answer and
|
|
|
|
* nothing was searched for yet during this session, get out. */
|
|
|
|
if (i == -1 || (i == -2 && *last_search == '\0')) {
|
2004-08-26 04:22:54 +00:00
|
|
|
statusbar(_("Cancelled"));
|
2000-06-19 04:22:15 +00:00
|
|
|
return -1;
|
2016-03-19 18:51:46 +00:00
|
|
|
}
|
2008-03-05 07:34:01 +00:00
|
|
|
|
2016-03-19 18:51:46 +00:00
|
|
|
/* If Enter was pressed, see what we got. */
|
|
|
|
if (i == 0 || i == -2) {
|
|
|
|
/* If an answer was given, remember it. */
|
|
|
|
if (*answer != '\0') {
|
|
|
|
last_search = mallocstrcpy(last_search, answer);
|
2016-03-19 16:19:44 +00:00
|
|
|
#ifndef DISABLE_HISTORIES
|
2016-03-19 18:51:46 +00:00
|
|
|
update_history(&search_history, answer);
|
2016-03-19 16:19:44 +00:00
|
|
|
#endif
|
2016-03-19 18:51:46 +00:00
|
|
|
}
|
|
|
|
#ifdef HAVE_REGEX_H
|
|
|
|
if (ISSET(USE_REGEXP) && !regexp_init(last_search))
|
|
|
|
return -1;
|
|
|
|
else
|
2000-07-07 02:35:34 +00:00
|
|
|
#endif
|
2016-03-19 18:51:46 +00:00
|
|
|
return 0; /* We have a valid string or regex. */
|
|
|
|
}
|
|
|
|
|
|
|
|
func = func_from_key(&i);
|
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2016-03-19 18:51:46 +00:00
|
|
|
if (func == case_sens_void) {
|
|
|
|
TOGGLE(CASE_SENSITIVE);
|
|
|
|
backupstring = mallocstrcpy(backupstring, answer);
|
|
|
|
return 1;
|
|
|
|
} else if (func == backwards_void) {
|
|
|
|
TOGGLE(BACKWARDS_SEARCH);
|
|
|
|
backupstring = mallocstrcpy(backupstring, answer);
|
|
|
|
return 1;
|
2016-04-04 17:38:57 +00:00
|
|
|
} else
|
2005-06-03 20:51:39 +00:00
|
|
|
#endif
|
2001-06-14 02:54:22 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
2016-04-04 17:38:57 +00:00
|
|
|
if (func == regexp_void) {
|
2016-03-19 18:51:46 +00:00
|
|
|
TOGGLE(USE_REGEXP);
|
|
|
|
backupstring = mallocstrcpy(backupstring, answer);
|
|
|
|
return 1;
|
2016-04-04 17:38:57 +00:00
|
|
|
} else
|
2001-06-14 02:54:22 +00:00
|
|
|
#endif
|
2016-04-04 17:38:57 +00:00
|
|
|
if (func == do_replace || func == flip_replace_void) {
|
2016-03-19 18:51:46 +00:00
|
|
|
backupstring = mallocstrcpy(backupstring, answer);
|
|
|
|
return -2; /* Call the opposite search function. */
|
|
|
|
} else if (func == do_gotolinecolumn_void) {
|
|
|
|
do_gotolinecolumn(openfile->current->lineno,
|
2015-12-31 19:20:40 +00:00
|
|
|
openfile->placewewant + 1, TRUE, TRUE);
|
2016-04-25 19:14:18 +00:00
|
|
|
refresh_needed = TRUE;
|
2016-03-19 18:51:46 +00:00
|
|
|
return 3;
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
2005-05-31 17:35:11 +00:00
|
|
|
|
2016-03-19 18:51:46 +00:00
|
|
|
return -1;
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2015-04-25 15:17:22 +00:00
|
|
|
/* Look for needle, starting at (current, current_x). begin is the line
|
2016-03-30 12:00:48 +00:00
|
|
|
* where we first started searching, at column begin_x. Return 1 when we
|
|
|
|
* found something, 0 when nothing, and -2 on cancel. When match_len is
|
|
|
|
* not NULL, set it to the length of the found string, if any. */
|
|
|
|
int findnextstr(
|
2005-11-16 05:59:06 +00:00
|
|
|
#ifndef DISABLE_SPELLER
|
2015-04-25 15:26:09 +00:00
|
|
|
bool whole_word_only,
|
2005-11-16 05:59:06 +00:00
|
|
|
#endif
|
2015-04-25 15:17:22 +00:00
|
|
|
const filestruct *begin, size_t begin_x,
|
2016-03-23 10:19:01 +00:00
|
|
|
const char *needle, size_t *match_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. */
|
2016-03-28 19:00:19 +00:00
|
|
|
int feedback = 0;
|
|
|
|
/* When bigger than zero, show and wipe the "Searching..." message. */
|
2006-03-23 21:25:04 +00:00
|
|
|
filestruct *fileptr = openfile->current;
|
|
|
|
const char *rev_start = fileptr->data, *found = NULL;
|
2016-05-01 10:35:47 +00:00
|
|
|
size_t found_x;
|
|
|
|
/* The x coordinate of a found occurrence. */
|
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
|
|
|
|
2009-01-24 22:40:41 +00:00
|
|
|
enable_nodelay();
|
2016-03-23 10:19:01 +00:00
|
|
|
|
|
|
|
/* Start searching through the lines, looking for the needle. */
|
2004-03-15 20:26:30 +00:00
|
|
|
while (TRUE) {
|
2016-03-23 10:27:54 +00:00
|
|
|
/* Glance at the keyboard once every second. */
|
|
|
|
if (time(NULL) - lastkbcheck > 0) {
|
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"));
|
2016-03-30 12:00:48 +00:00
|
|
|
return -2;
|
2009-01-24 22:40:41 +00:00
|
|
|
}
|
2016-03-28 19:00:19 +00:00
|
|
|
|
|
|
|
if (++feedback > 0)
|
|
|
|
statusbar(_("Searching..."));
|
2009-01-24 22:40:41 +00:00
|
|
|
}
|
|
|
|
|
2016-03-23 10:19:01 +00:00
|
|
|
/* Search for the needle in the current line. */
|
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
|
|
|
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? */
|
2016-03-23 09:52:34 +00:00
|
|
|
|
|
|
|
/* When we're spell-checking, don't search in the starting line
|
|
|
|
* again -- there is no need: we started at x = 0. */
|
|
|
|
if (whole_word_only && search_last_line) {
|
|
|
|
disable_nodelay();
|
2016-03-30 12:00:48 +00:00
|
|
|
return 0;
|
2016-03-23 09:52:34 +00:00
|
|
|
}
|
2005-11-16 05:59:06 +00:00
|
|
|
#endif
|
2016-03-23 10:19:01 +00:00
|
|
|
/* Remember 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
|
2016-03-23 10:19:01 +00:00
|
|
|
/* If we're searching for whole words, see if it is. */
|
2015-04-25 15:26:09 +00:00
|
|
|
if (whole_word_only) {
|
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,
|
2016-03-23 10:19:01 +00:00
|
|
|
fileptr->data, word);
|
2004-10-18 22:19:22 +00:00
|
|
|
free(word);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we're searching for whole words and this potential
|
2015-04-25 15:17:22 +00:00
|
|
|
* match isn't a whole word, continue searching. */
|
2015-04-25 15:26:09 +00:00
|
|
|
if (!whole_word_only || found_whole)
|
2005-11-16 05:59:06 +00:00
|
|
|
#endif
|
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
|
|
|
|
2016-03-23 10:19:01 +00:00
|
|
|
/* If we're back at the beginning, then there is no needle. */
|
2004-02-24 20:41:39 +00:00
|
|
|
if (search_last_line) {
|
2005-11-15 23:45:29 +00:00
|
|
|
not_found_msg(needle);
|
2014-04-14 09:57:06 +00:00
|
|
|
disable_nodelay();
|
2016-03-30 12:00:48 +00:00
|
|
|
return 0;
|
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
|
searching: don't keep track of current_y, but calculate it at the end
Stop keeping track of the vertical screen position when searching for
something. If nothing is found, current_y doesn't change, and all the
incrementing/decrementing was a waste of time. If something is found
and it is onscreen, it is easy to calculate the new current_y. And if
something is found and it is offscreen, then current_y is irrelevant,
because we will be either centering the found occurrence (searching)
or putting it on the top or bottom line (bracket matching).
(The above does not take softwrapping into account, but neither did
the old code, so this doesn't introduce any new bugs.)
(Also, when the search wraps, and the viewport is away from head or
tail of the file, and the found occurrence is within the viewport,
then the incremented/decremented current_y would be way wrong, but
this didn't have any adverse effects as far as I could tell. It
seems that current_y is irrelevant in most cases.)
2016-04-08 16:11:22 +00:00
|
|
|
if (ISSET(BACKWARDS_SEARCH))
|
2004-08-27 20:28:34 +00:00
|
|
|
fileptr = fileptr->prev;
|
searching: don't keep track of current_y, but calculate it at the end
Stop keeping track of the vertical screen position when searching for
something. If nothing is found, current_y doesn't change, and all the
incrementing/decrementing was a waste of time. If something is found
and it is onscreen, it is easy to calculate the new current_y. And if
something is found and it is offscreen, then current_y is irrelevant,
because we will be either centering the found occurrence (searching)
or putting it on the top or bottom line (bracket matching).
(The above does not take softwrapping into account, but neither did
the old code, so this doesn't introduce any new bugs.)
(Also, when the search wraps, and the viewport is away from head or
tail of the file, and the found occurrence is within the viewport,
then the incremented/decremented current_y would be way wrong, but
this didn't have any adverse effects as far as I could tell. It
seems that current_y is irrelevant in most cases.)
2016-04-08 16:11:22 +00:00
|
|
|
else
|
2004-08-27 20:28:34 +00:00
|
|
|
#endif
|
|
|
|
fileptr = fileptr->next;
|
2002-06-21 03:20:06 +00:00
|
|
|
|
2016-03-23 10:19:01 +00:00
|
|
|
/* If we've reached the start or end of the buffer, wrap around. */
|
2004-02-24 20:41:39 +00:00
|
|
|
if (fileptr == NULL) {
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
searching: don't keep track of current_y, but calculate it at the end
Stop keeping track of the vertical screen position when searching for
something. If nothing is found, current_y doesn't change, and all the
incrementing/decrementing was a waste of time. If something is found
and it is onscreen, it is easy to calculate the new current_y. And if
something is found and it is offscreen, then current_y is irrelevant,
because we will be either centering the found occurrence (searching)
or putting it on the top or bottom line (bracket matching).
(The above does not take softwrapping into account, but neither did
the old code, so this doesn't introduce any new bugs.)
(Also, when the search wraps, and the viewport is away from head or
tail of the file, and the found occurrence is within the viewport,
then the incremented/decremented current_y would be way wrong, but
this didn't have any adverse effects as far as I could tell. It
seems that current_y is irrelevant in most cases.)
2016-04-08 16:11:22 +00:00
|
|
|
if (ISSET(BACKWARDS_SEARCH))
|
2005-07-08 20:09:16 +00:00
|
|
|
fileptr = openfile->filebot;
|
searching: don't keep track of current_y, but calculate it at the end
Stop keeping track of the vertical screen position when searching for
something. If nothing is found, current_y doesn't change, and all the
incrementing/decrementing was a waste of time. If something is found
and it is onscreen, it is easy to calculate the new current_y. And if
something is found and it is offscreen, then current_y is irrelevant,
because we will be either centering the found occurrence (searching)
or putting it on the top or bottom line (bracket matching).
(The above does not take softwrapping into account, but neither did
the old code, so this doesn't introduce any new bugs.)
(Also, when the search wraps, and the viewport is away from head or
tail of the file, and the found occurrence is within the viewport,
then the incremented/decremented current_y would be way wrong, but
this didn't have any adverse effects as far as I could tell. It
seems that current_y is irrelevant in most cases.)
2016-04-08 16:11:22 +00:00
|
|
|
else
|
2004-02-24 20:41:39 +00:00
|
|
|
#endif
|
2005-07-08 20:09:16 +00:00
|
|
|
fileptr = openfile->fileage;
|
2005-11-15 23:45:29 +00:00
|
|
|
statusbar(_("Search Wrapped"));
|
2016-03-28 19:00:19 +00:00
|
|
|
/* Delay the "Searching..." message for at least two seconds. */
|
|
|
|
feedback = -2;
|
2004-02-24 20:41:39 +00:00
|
|
|
}
|
2001-06-13 02:35:44 +00:00
|
|
|
|
2016-03-23 10:19:01 +00:00
|
|
|
/* If we've reached the original starting line, take note. */
|
2004-10-27 02:21:01 +00:00
|
|
|
if (fileptr == begin)
|
2004-05-27 18:39:16 +00:00
|
|
|
search_last_line = TRUE;
|
2004-10-27 02:21:01 +00:00
|
|
|
|
2016-03-23 10:19:01 +00:00
|
|
|
/* Set the starting x to the start or end of the line. */
|
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
|
|
|
|
2016-05-01 10:35:47 +00:00
|
|
|
found_x = found - fileptr->data;
|
|
|
|
|
|
|
|
/* Ensure that the found occurrence is not beyond the starting x. */
|
|
|
|
if (search_last_line &&
|
|
|
|
#ifndef NANO_TINY
|
|
|
|
((!ISSET(BACKWARDS_SEARCH) && found_x > begin_x) ||
|
|
|
|
(ISSET(BACKWARDS_SEARCH) && found_x < begin_x))
|
|
|
|
#else
|
|
|
|
found_x > begin_x
|
|
|
|
#endif
|
|
|
|
) {
|
|
|
|
not_found_msg(needle);
|
|
|
|
disable_nodelay();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-24 22:40:41 +00:00
|
|
|
disable_nodelay();
|
2016-03-23 09:52:34 +00:00
|
|
|
|
2016-03-23 10:19:01 +00:00
|
|
|
/* Set the current position to point at what we found. */
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->current = fileptr;
|
2016-05-01 10:35:47 +00:00
|
|
|
openfile->current_x = found_x;
|
searching: don't keep track of current_y, but calculate it at the end
Stop keeping track of the vertical screen position when searching for
something. If nothing is found, current_y doesn't change, and all the
incrementing/decrementing was a waste of time. If something is found
and it is onscreen, it is easy to calculate the new current_y. And if
something is found and it is offscreen, then current_y is irrelevant,
because we will be either centering the found occurrence (searching)
or putting it on the top or bottom line (bracket matching).
(The above does not take softwrapping into account, but neither did
the old code, so this doesn't introduce any new bugs.)
(Also, when the search wraps, and the viewport is away from head or
tail of the file, and the found occurrence is within the viewport,
then the incremented/decremented current_y would be way wrong, but
this didn't have any adverse effects as far as I could tell. It
seems that current_y is irrelevant in most cases.)
2016-04-08 16:11:22 +00:00
|
|
|
openfile->current_y = fileptr->lineno - openfile->edittop->lineno;
|
2004-10-21 15:32:11 +00:00
|
|
|
|
2016-03-23 10:19:01 +00:00
|
|
|
/* When requested, pass back the length of the match. */
|
|
|
|
if (match_len != NULL)
|
|
|
|
*match_len = found_len;
|
2000-11-29 04:33:26 +00:00
|
|
|
|
2016-03-28 19:00:19 +00:00
|
|
|
if (feedback > 0)
|
|
|
|
blank_statusbar();
|
|
|
|
|
2016-03-30 12:00:48 +00:00
|
|
|
return 1;
|
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;
|
|
|
|
}
|
|
|
|
|
2016-03-20 16:57:15 +00:00
|
|
|
/* Ask what to search for and then go looking for it. */
|
2004-07-02 14:31:03 +00:00
|
|
|
void do_search(void)
|
2000-06-19 04:22:15 +00:00
|
|
|
{
|
2016-03-20 16:57:15 +00:00
|
|
|
int i = search_init(FALSE, FALSE);
|
2006-05-22 02:08:49 +00:00
|
|
|
|
2016-03-17 10:06:15 +00:00
|
|
|
if (i == -1) /* Cancelled, or some other exit reason. */
|
2005-12-08 07:09:08 +00:00
|
|
|
search_replace_abort();
|
2016-03-17 10:06:15 +00:00
|
|
|
else if (i == -2) /* Do a replace instead. */
|
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)
|
2016-03-17 10:06:15 +00:00
|
|
|
else if (i == 1) /* Toggled something. */
|
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
|
|
|
|
2016-03-20 16:57:15 +00:00
|
|
|
if (i == 0)
|
|
|
|
go_looking();
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2015-07-26 09:23:24 +00:00
|
|
|
#ifndef NANO_TINY
|
|
|
|
/* Search in the backward direction for the next occurrence. */
|
|
|
|
void do_findprevious(void)
|
|
|
|
{
|
|
|
|
if ISSET(BACKWARDS_SEARCH)
|
|
|
|
do_research();
|
|
|
|
else {
|
|
|
|
SET(BACKWARDS_SEARCH);
|
|
|
|
do_research();
|
|
|
|
UNSET(BACKWARDS_SEARCH);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Search in the forward direction for the next occurrence. */
|
|
|
|
void do_findnext(void)
|
|
|
|
{
|
|
|
|
if ISSET(BACKWARDS_SEARCH) {
|
|
|
|
UNSET(BACKWARDS_SEARCH);
|
|
|
|
do_research();
|
|
|
|
SET(BACKWARDS_SEARCH);
|
|
|
|
} else
|
|
|
|
do_research();
|
|
|
|
}
|
2016-03-17 18:51:46 +00:00
|
|
|
#endif /* !NANO_TINY */
|
2015-07-26 09:23:24 +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
|
|
|
{
|
2015-04-21 18:47:58 +00:00
|
|
|
focusing = TRUE;
|
2003-08-23 21:11:06 +00:00
|
|
|
|
2015-06-20 08:10:25 +00:00
|
|
|
#ifndef DISABLE_HISTORIES
|
|
|
|
/* If nothing was searched for yet during this run of nano, but
|
|
|
|
* there is a search history, take the most recent item. */
|
|
|
|
if (last_search[0] == '\0' && searchbot->prev != NULL)
|
|
|
|
last_search = mallocstrcpy(last_search, searchbot->prev->data);
|
|
|
|
#endif
|
|
|
|
|
2016-03-20 16:03:20 +00:00
|
|
|
if (last_search[0] == '\0') {
|
2016-01-26 09:16:09 +00:00
|
|
|
statusbar(_("No current search pattern"));
|
2016-03-20 16:03:20 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-08-23 21:11:06 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
2016-03-20 16:03:20 +00:00
|
|
|
if (ISSET(USE_REGEXP) && !regexp_init(last_search))
|
|
|
|
return;
|
2003-08-23 21:11:06 +00:00
|
|
|
#endif
|
|
|
|
|
2016-03-20 16:03:20 +00:00
|
|
|
/* Use the search-menu key bindings, to allow cancelling. */
|
|
|
|
currmenu = MWHEREIS;
|
2016-03-17 09:12:30 +00:00
|
|
|
|
2016-03-20 16:57:15 +00:00
|
|
|
go_looking();
|
|
|
|
}
|
|
|
|
#endif /* !NANO_TINY */
|
|
|
|
|
|
|
|
/* Search for the global string 'last_search'. Inform the user when
|
|
|
|
* the string occurs only once. */
|
|
|
|
void go_looking(void)
|
|
|
|
{
|
|
|
|
filestruct *was_current = openfile->current;
|
|
|
|
size_t was_current_x = openfile->current_x;
|
2016-03-30 12:00:48 +00:00
|
|
|
int didfind;
|
2016-03-20 16:57:15 +00:00
|
|
|
|
2016-03-20 16:03:20 +00:00
|
|
|
findnextstr_wrap_reset();
|
|
|
|
didfind = findnextstr(
|
2005-11-16 05:59:06 +00:00
|
|
|
#ifndef DISABLE_SPELLER
|
|
|
|
FALSE,
|
|
|
|
#endif
|
2015-04-25 15:17:22 +00:00
|
|
|
openfile->current, openfile->current_x, last_search, NULL);
|
2003-08-23 21:11:06 +00:00
|
|
|
|
2016-03-20 16:03:20 +00:00
|
|
|
/* If we found something, and we're back at the exact same spot
|
|
|
|
* where we started searching, then this is the only occurrence. */
|
2016-03-30 12:00:48 +00:00
|
|
|
if (didfind == 1 && openfile->current == was_current &&
|
2016-03-20 16:57:15 +00:00
|
|
|
openfile->current_x == was_current_x)
|
2016-03-20 16:03:20 +00:00
|
|
|
statusbar(_("This is the only occurrence"));
|
2003-08-23 21:11:06 +00:00
|
|
|
|
2016-04-10 19:16:19 +00:00
|
|
|
edit_redraw(was_current);
|
2005-12-08 07:09:08 +00:00
|
|
|
search_replace_abort();
|
2003-08-23 21:11:06 +00:00
|
|
|
}
|
|
|
|
|
2000-09-06 13:39:17 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
2015-07-26 17:29:34 +00:00
|
|
|
/* Calculate the size of the replacement text, taking possible
|
2015-07-26 17:04:29 +00:00
|
|
|
* subexpressions \1 to \9 into account. Return the replacement
|
|
|
|
* text in the passed string only when create is TRUE. */
|
2005-05-26 03:47:24 +00:00
|
|
|
int replace_regexp(char *string, bool create)
|
2000-07-07 01:49:52 +00:00
|
|
|
{
|
2016-03-28 19:14:33 +00:00
|
|
|
const char *c = answer;
|
2015-07-26 17:29:34 +00:00
|
|
|
size_t replacement_size = 0;
|
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
|
|
|
|
2016-03-17 19:30:29 +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++;
|
2015-07-26 17:29:34 +00:00
|
|
|
replacement_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. */
|
2015-07-26 17:29:34 +00:00
|
|
|
replacement_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
|
|
|
|
2015-07-26 17:29:34 +00:00
|
|
|
return replacement_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
|
|
|
|
2015-07-26 17:04:29 +00:00
|
|
|
/* Return a copy of the current line with one needle replaced. */
|
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;
|
2015-07-26 17:29:34 +00:00
|
|
|
size_t match_len;
|
|
|
|
size_t new_line_size = strlen(openfile->current->data) + 1;
|
2000-07-07 01:49:52 +00:00
|
|
|
|
2015-07-26 17:29:34 +00:00
|
|
|
/* First adjust the size of the new line for the change. */
|
2000-09-06 13:39:17 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
2000-07-07 01:49:52 +00:00
|
|
|
if (ISSET(USE_REGEXP)) {
|
2015-07-26 17:29:34 +00:00
|
|
|
match_len = regmatches[0].rm_eo - regmatches[0].rm_so;
|
|
|
|
new_line_size += replace_regexp(NULL, FALSE) - match_len;
|
2000-07-07 01:49:52 +00:00
|
|
|
} else {
|
2000-07-07 02:35:34 +00:00
|
|
|
#endif
|
2015-07-26 17:29:34 +00:00
|
|
|
match_len = strlen(needle);
|
|
|
|
new_line_size += strlen(answer) - match_len;
|
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
|
|
|
|
2015-07-26 17:04:29 +00:00
|
|
|
/* Copy 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
|
|
|
|
2015-07-26 17:04:29 +00:00
|
|
|
/* Add 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
|
|
|
|
2015-07-26 17:29:34 +00:00
|
|
|
assert(openfile->current_x + match_len <= strlen(openfile->current->data));
|
2005-05-26 03:32:41 +00:00
|
|
|
|
2015-07-26 17:04:29 +00:00
|
|
|
/* Copy the tail of the original line. */
|
2015-07-26 17:29:34 +00:00
|
|
|
strcat(copy, openfile->current->data + openfile->current_x + match_len);
|
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
|
2015-04-25 15:26:09 +00:00
|
|
|
bool whole_word_only,
|
2005-11-16 05:59:06 +00:00
|
|
|
#endif
|
2016-03-29 15:05:47 +00:00
|
|
|
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;
|
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;
|
2015-04-11 15:21:08 +00:00
|
|
|
filestruct *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) {
|
2015-04-11 15:21:08 +00:00
|
|
|
/* If the mark is on, frame the region, and turn the mark off. */
|
2004-11-03 22:03:41 +00:00
|
|
|
mark_order((const filestruct **)&top, &top_x,
|
2016-03-17 19:30:29 +00:00
|
|
|
(const filestruct **)&bot, &bot_x, &right_side_up);
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->mark_set = FALSE;
|
2015-04-11 15:21:08 +00:00
|
|
|
|
|
|
|
/* Start either at the top or the bottom of the marked region. */
|
|
|
|
if (!ISSET(BACKWARDS_SEARCH)) {
|
|
|
|
openfile->current = top;
|
|
|
|
openfile->current_x = (top_x == 0 ? 0 : top_x - 1);
|
|
|
|
} else {
|
|
|
|
openfile->current = bot;
|
|
|
|
openfile->current_x = bot_x;
|
|
|
|
}
|
2004-10-08 23:06:01 +00:00
|
|
|
}
|
2014-03-17 14:15:57 +00:00
|
|
|
#endif /* !NANO_TINY */
|
2003-09-16 01:16:49 +00:00
|
|
|
|
2004-10-31 13:20:30 +00:00
|
|
|
findnextstr_wrap_reset();
|
2016-03-30 12:00:48 +00:00
|
|
|
while (TRUE) {
|
|
|
|
int i = 0;
|
|
|
|
int result = findnextstr(
|
2005-11-16 05:59:06 +00:00
|
|
|
#ifndef DISABLE_SPELLER
|
2016-03-30 12:00:48 +00:00
|
|
|
whole_word_only,
|
2005-11-16 05:59:06 +00:00
|
|
|
#endif
|
2016-03-30 12:00:48 +00:00
|
|
|
real_current, *real_current_x, needle, &match_len);
|
|
|
|
|
|
|
|
/* If nothing more was found, or the user aborted, stop looping. */
|
|
|
|
if (result < 1) {
|
|
|
|
if (result < 0)
|
|
|
|
numreplaced = -2; /* It's a Cancel instead of Not found. */
|
|
|
|
break;
|
|
|
|
}
|
2004-10-09 16:26:32 +00:00
|
|
|
|
2015-04-11 15:21:08 +00:00
|
|
|
#ifndef NANO_TINY
|
|
|
|
if (old_mark_set) {
|
|
|
|
/* When we've found an occurrence outside of the marked region,
|
|
|
|
* stop the fanfare. */
|
|
|
|
if (openfile->current->lineno > bot->lineno ||
|
2016-03-17 19:30:29 +00:00
|
|
|
openfile->current->lineno < top->lineno ||
|
|
|
|
(openfile->current == bot && openfile->current_x > bot_x) ||
|
|
|
|
(openfile->current == top && openfile->current_x < top_x))
|
2015-04-11 15:21:08 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
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,
|
2016-03-17 19:30:29 +00:00
|
|
|
xpt, strnlenpt(openfile->current->data,
|
|
|
|
openfile->current_x + match_len) - xpt, FALSE);
|
2003-09-16 01:16:49 +00:00
|
|
|
|
2016-02-18 16:31:02 +00:00
|
|
|
/* Refresh the edit window, scrolling it if necessary. */
|
2015-03-27 11:29:23 +00:00
|
|
|
edit_refresh();
|
|
|
|
|
2016-02-13 19:41:12 +00:00
|
|
|
/* Don't show cursor, to not distract from highlighted match. */
|
2000-11-29 04:33:26 +00:00
|
|
|
curs_set(0);
|
2005-06-15 19:15:14 +00:00
|
|
|
|
2016-03-30 12:09:39 +00:00
|
|
|
spotlight(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
|
|
|
|
2016-03-30 12:09:39 +00:00
|
|
|
spotlight(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
|
|
|
|
2016-03-29 15:05:47 +00:00
|
|
|
if (i == -1) /* The replacing was cancelled. */
|
2003-12-29 02:15:23 +00:00
|
|
|
break;
|
2000-11-29 04:33:26 +00:00
|
|
|
}
|
|
|
|
|
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
|
2015-04-11 15:21:08 +00:00
|
|
|
add_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
|
2015-11-07 09:49:34 +00:00
|
|
|
/* If the mark was on and it was located after the cursor,
|
|
|
|
* then adjust its x position for any text length changes. */
|
|
|
|
if (old_mark_set && !right_side_up) {
|
2005-07-12 17:40:16 +00:00
|
|
|
if (openfile->current == openfile->mark_begin &&
|
|
|
|
openfile->mark_begin_x > openfile->current_x) {
|
2015-11-07 09:49:34 +00:00
|
|
|
if (openfile->mark_begin_x < openfile->current_x + 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;
|
2015-04-11 15:21:08 +00:00
|
|
|
bot_x = openfile->mark_begin_x;
|
2004-11-03 22:03:41 +00:00
|
|
|
}
|
2003-01-26 04:26:25 +00:00
|
|
|
}
|
2002-07-19 01:08:59 +00:00
|
|
|
|
2015-11-07 09:49:34 +00:00
|
|
|
/* If the mark was not on or it was before the cursor, then
|
|
|
|
* adjust the cursor's x position for any text length changes. */
|
2004-11-05 14:37:18 +00:00
|
|
|
if (!old_mark_set || right_side_up) {
|
2004-11-03 22:03:41 +00:00
|
|
|
#endif
|
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;
|
2015-04-13 10:59:12 +00:00
|
|
|
#ifndef NANO_TINY
|
2015-04-11 15:21:08 +00:00
|
|
|
bot_x = *real_current_x;
|
2004-11-03 22:03:41 +00:00
|
|
|
}
|
2004-11-05 14:37:18 +00:00
|
|
|
#endif
|
2015-04-13 10:59:12 +00:00
|
|
|
}
|
2002-02-16 20:03:44 +00:00
|
|
|
|
2015-07-26 08:20:28 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
|
|
|
/* Don't find the same zero-length match again. */
|
|
|
|
if (match_len == 0)
|
|
|
|
match_len++;
|
|
|
|
#endif
|
|
|
|
|
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-07-26 17:04:29 +00:00
|
|
|
/* Update the file size, and put the changed line into place. */
|
|
|
|
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-04-11 15:21:08 +00:00
|
|
|
/* Reset the precalculated multiline-regex hints only when
|
|
|
|
* the first replacement has been made. */
|
|
|
|
if (numreplaced == 0)
|
|
|
|
reset_multis(openfile->current, TRUE);
|
2009-02-17 02:01:03 +00:00
|
|
|
#endif
|
2015-03-27 10:49:19 +00:00
|
|
|
|
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(). */
|
2016-01-26 09:16:09 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-04-11 15:21:08 +00:00
|
|
|
if (numreplaced == -1)
|
|
|
|
not_found_msg(needle);
|
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2015-04-11 15:21:08 +00:00
|
|
|
if (old_mark_set)
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->mark_set = TRUE;
|
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;
|
2016-04-10 07:33:49 +00:00
|
|
|
size_t begin_x;
|
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);
|
2016-03-17 10:06:15 +00:00
|
|
|
|
|
|
|
if (i == -1) /* Cancelled, or some other exit reason. */
|
2005-12-08 07:09:08 +00:00
|
|
|
search_replace_abort();
|
2016-03-17 10:06:15 +00:00
|
|
|
else if (i == -2) /* Do a search instead. */
|
2000-11-05 16:52:21 +00:00
|
|
|
do_search();
|
2016-03-17 10:06:15 +00:00
|
|
|
else if (i == 1) /* Toggled something. */
|
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
|
|
|
|
2006-02-07 21:11:05 +00:00
|
|
|
i = do_prompt(FALSE,
|
|
|
|
#ifndef DISABLE_TABCOMP
|
|
|
|
TRUE,
|
|
|
|
#endif
|
2016-03-19 16:41:45 +00:00
|
|
|
MREPLACEWITH, NULL,
|
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
|
|
|
|
|
2016-03-19 20:19:49 +00:00
|
|
|
/* When cancelled, or when a function was run, get out. */
|
|
|
|
if (i == -1 || i > 0) {
|
|
|
|
if (i == -1)
|
2004-08-26 04:22:54 +00:00
|
|
|
statusbar(_("Cancelled"));
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/* 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;
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2005-11-16 05:59:06 +00:00
|
|
|
numreplaced = do_replace_loop(
|
|
|
|
#ifndef DISABLE_SPELLER
|
2016-03-17 19:30:29 +00:00
|
|
|
FALSE,
|
2005-11-16 05:59:06 +00:00
|
|
|
#endif
|
2016-03-29 15:05:47 +00:00
|
|
|
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;
|
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)
|
|
|
|
{
|
2015-12-08 18:54:13 +00:00
|
|
|
for (openfile->current = openfile->fileage; line > 1 &&
|
|
|
|
openfile->current != openfile->filebot; line--)
|
2014-05-15 20:00:46 +00:00
|
|
|
openfile->current = openfile->current->next;
|
|
|
|
|
|
|
|
openfile->current_x = pos_x;
|
|
|
|
openfile->placewewant = xplustabs();
|
|
|
|
|
2016-04-25 19:14:18 +00:00
|
|
|
refresh_needed = TRUE;
|
2014-05-15 20:00:46 +00:00
|
|
|
}
|
|
|
|
|
2005-05-25 18:44:37 +00:00
|
|
|
/* Go to the specified line and column, or ask for them if interactive
|
2015-12-31 19:20:40 +00:00
|
|
|
* is TRUE. In the latter case also update the screen afterwards.
|
2015-12-31 17:20:46 +00:00
|
|
|
* Note that both the line and column number should be one-based. */
|
2005-06-29 00:17:18 +00:00
|
|
|
void do_gotolinecolumn(ssize_t line, ssize_t column, bool use_answer,
|
2015-12-31 19:20:40 +00:00
|
|
|
bool interactive)
|
2000-06-19 04:22:15 +00:00
|
|
|
{
|
2005-07-16 07:06:36 +00:00
|
|
|
if (interactive) {
|
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
|
2016-03-19 17:19:30 +00:00
|
|
|
MGOTOLINE, use_answer ? answer : NULL,
|
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
|
|
|
|
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. */
|
2016-03-17 19:30:29 +00:00
|
|
|
if (!parse_line_column(answer, &line, &column) ||
|
|
|
|
line < 1 || 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
|
|
|
}
|
|
|
|
|
2016-01-13 20:32:40 +00:00
|
|
|
for (openfile->current = openfile->fileage; line > 1 &&
|
|
|
|
openfile->current != openfile->filebot; 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
|
|
|
|
2015-12-31 17:20:46 +00:00
|
|
|
/* Put the top line of the edit window in range of the current line. */
|
2016-04-07 11:58:51 +00:00
|
|
|
edit_update(CENTERING);
|
2005-07-16 22:47:12 +00:00
|
|
|
|
2015-12-31 19:20:40 +00:00
|
|
|
/* When in interactive mode, update the screen. */
|
|
|
|
if (interactive) {
|
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,
|
2015-12-31 19:20:40 +00:00
|
|
|
openfile->placewewant + 1, FALSE, TRUE);
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
2001-09-19 03:19:43 +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;
|
|
|
|
|
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. */
|
2016-04-16 10:44:52 +00:00
|
|
|
if (reverse)
|
|
|
|
rev_start = fileptr->data + (openfile->current_x - 1);
|
|
|
|
else
|
|
|
|
rev_start = fileptr->data + (openfile->current_x + 1);
|
2005-11-15 23:45:29 +00:00
|
|
|
|
|
|
|
/* 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) {
|
2016-04-16 10:44:52 +00:00
|
|
|
if ((rev_start > fileptr->data && *(rev_start - 1) == '\0') ||
|
|
|
|
rev_start < fileptr->data)
|
|
|
|
found = NULL;
|
|
|
|
else if (reverse)
|
|
|
|
found = mbrevstrpbrk(fileptr->data, bracket_set, rev_start);
|
|
|
|
else
|
|
|
|
found = mbstrpbrk(rev_start, bracket_set);
|
2005-11-15 23:45:29 +00:00
|
|
|
|
2016-04-16 10:44:52 +00:00
|
|
|
if (found)
|
2005-11-15 23:45:29 +00:00
|
|
|
break;
|
|
|
|
|
searching: don't keep track of current_y, but calculate it at the end
Stop keeping track of the vertical screen position when searching for
something. If nothing is found, current_y doesn't change, and all the
incrementing/decrementing was a waste of time. If something is found
and it is onscreen, it is easy to calculate the new current_y. And if
something is found and it is offscreen, then current_y is irrelevant,
because we will be either centering the found occurrence (searching)
or putting it on the top or bottom line (bracket matching).
(The above does not take softwrapping into account, but neither did
the old code, so this doesn't introduce any new bugs.)
(Also, when the search wraps, and the viewport is away from head or
tail of the file, and the found occurrence is within the viewport,
then the incremented/decremented current_y would be way wrong, but
this didn't have any adverse effects as far as I could tell. It
seems that current_y is irrelevant in most cases.)
2016-04-08 16:11:22 +00:00
|
|
|
if (reverse)
|
2005-11-15 23:45:29 +00:00
|
|
|
fileptr = fileptr->prev;
|
searching: don't keep track of current_y, but calculate it at the end
Stop keeping track of the vertical screen position when searching for
something. If nothing is found, current_y doesn't change, and all the
incrementing/decrementing was a waste of time. If something is found
and it is onscreen, it is easy to calculate the new current_y. And if
something is found and it is offscreen, then current_y is irrelevant,
because we will be either centering the found occurrence (searching)
or putting it on the top or bottom line (bracket matching).
(The above does not take softwrapping into account, but neither did
the old code, so this doesn't introduce any new bugs.)
(Also, when the search wraps, and the viewport is away from head or
tail of the file, and the found occurrence is within the viewport,
then the incremented/decremented current_y would be way wrong, but
this didn't have any adverse effects as far as I could tell. It
seems that current_y is irrelevant in most cases.)
2016-04-08 16:11:22 +00:00
|
|
|
else
|
2005-11-15 23:45:29 +00:00
|
|
|
fileptr = fileptr->next;
|
|
|
|
|
2016-04-16 10:44:52 +00:00
|
|
|
/* If we've reached the start or end of the buffer, get out. */
|
2005-11-15 23:45:29 +00:00
|
|
|
if (fileptr == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
rev_start = fileptr->data;
|
|
|
|
if (reverse)
|
|
|
|
rev_start += strlen(fileptr->data);
|
|
|
|
}
|
|
|
|
|
2016-04-16 10:44:52 +00:00
|
|
|
/* Set the current position to the found matching bracket. */
|
2005-11-15 23:45:29 +00:00
|
|
|
openfile->current = fileptr;
|
2005-11-16 03:54:22 +00:00
|
|
|
openfile->current_x = found - fileptr->data;
|
searching: don't keep track of current_y, but calculate it at the end
Stop keeping track of the vertical screen position when searching for
something. If nothing is found, current_y doesn't change, and all the
incrementing/decrementing was a waste of time. If something is found
and it is onscreen, it is easy to calculate the new current_y. And if
something is found and it is offscreen, then current_y is irrelevant,
because we will be either centering the found occurrence (searching)
or putting it on the top or bottom line (bracket matching).
(The above does not take softwrapping into account, but neither did
the old code, so this doesn't introduce any new bugs.)
(Also, when the search wraps, and the viewport is away from head or
tail of the file, and the found occurrence is within the viewport,
then the incremented/decremented current_y would be way wrong, but
this didn't have any adverse effects as far as I could tell. It
seems that current_y is irrelevant in most cases.)
2016-04-08 16:11:22 +00:00
|
|
|
openfile->current_y = fileptr->lineno - openfile->edittop->lineno;
|
2005-11-15 23:45:29 +00:00
|
|
|
|
|
|
|
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;
|
2016-04-10 09:14:03 +00:00
|
|
|
size_t current_x_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
|
|
|
|
2015-08-13 17:46:19 +00:00
|
|
|
if ((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;
|
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++)
|
2016-03-17 19:30:29 +00:00
|
|
|
matchhalf += parse_mbchar(matchbrackets + matchhalf, NULL, NULL);
|
2006-01-06 22:35:52 +00:00
|
|
|
|
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,
|
2016-03-17 19:30:29 +00:00
|
|
|
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,
|
2016-03-17 19:30:29 +00:00
|
|
|
found_ch, NULL);
|
2006-01-06 07:10:30 +00:00
|
|
|
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) {
|
2016-04-10 19:16:19 +00:00
|
|
|
edit_redraw(current_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;
|
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
|
|
|
|
2016-03-20 13:38:09 +00:00
|
|
|
for (p = h_start; p != h_end->prev && p != NULL; p = p->prev) {
|
2005-06-02 18:41:31 +00:00
|
|
|
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. */
|
2016-03-20 13:38:09 +00:00
|
|
|
p = find_history(*hbot, *hage, 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);
|
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);
|
|
|
|
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);
|
2015-11-24 13:24:01 +00:00
|
|
|
splice_node(*hbot, make_new_node(*hbot));
|
2005-05-23 16:30:06 +00:00
|
|
|
*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. */
|
2016-02-20 12:16:43 +00:00
|
|
|
char *get_history_completion(filestruct **h, 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);
|
|
|
|
|
2016-03-20 13:38:09 +00:00
|
|
|
/* Search the history list from the current position to the top
|
|
|
|
* for a match of len characters. Skip over an exact match. */
|
|
|
|
p = find_history((*h)->prev, hage, s, len);
|
2005-06-02 18:41:31 +00:00
|
|
|
|
2005-06-13 03:52:33 +00:00
|
|
|
while (p != NULL && strcmp(p->data, s) == 0)
|
2016-03-20 13:38:09 +00:00
|
|
|
p = find_history(p->prev, hage, s, len);
|
2005-06-13 03:52:33 +00:00
|
|
|
|
2005-06-02 18:41:31 +00:00
|
|
|
if (p != NULL) {
|
|
|
|
*h = p;
|
2016-02-20 12:16:43 +00:00
|
|
|
return mallocstrcpy(s, (*h)->data);
|
2005-06-02 18:41:31 +00:00
|
|
|
}
|
|
|
|
|
2016-03-20 13:38:09 +00:00
|
|
|
/* Search the history list from the bottom to the current position
|
2005-06-13 03:52:33 +00:00
|
|
|
* for a match of len characters. Skip over an exact match. */
|
2016-03-20 13:38:09 +00:00
|
|
|
p = find_history(hbot, *h, s, len);
|
2005-06-02 18:41:31 +00:00
|
|
|
|
2005-06-13 03:52:33 +00:00
|
|
|
while (p != NULL && strcmp(p->data, s) == 0)
|
2016-03-20 13:38:09 +00:00
|
|
|
p = find_history(p->prev, *h, s, len);
|
2005-06-13 03:52:33 +00:00
|
|
|
|
2005-06-02 18:41:31 +00:00
|
|
|
if (p != NULL) {
|
|
|
|
*h = p;
|
2016-02-20 12:16:43 +00:00
|
|
|
return mallocstrcpy(s, (*h)->data);
|
2005-06-02 18:41:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 */
|