2000-06-06 05:53:49 +00:00
|
|
|
/**************************************************************************
|
2016-08-29 15:10:49 +00:00
|
|
|
* utils.c -- This file is part of GNU nano. *
|
2000-06-06 05:53:49 +00:00
|
|
|
* *
|
2020-01-15 10:42:38 +00:00
|
|
|
* Copyright (C) 1999-2011, 2013-2020 Free Software Foundation, Inc. *
|
2020-01-15 11:11:56 +00:00
|
|
|
* Copyright (C) 2016, 2017, 2019 Benno Schulenberg *
|
2016-08-29 13:14:18 +00:00
|
|
|
* *
|
2016-08-29 15:10:49 +00:00
|
|
|
* GNU nano is free software: you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published *
|
|
|
|
* by the Free Software Foundation, either version 3 of the License, *
|
|
|
|
* or (at your option) any later version. *
|
2000-06-06 05:53:49 +00:00
|
|
|
* *
|
2016-08-29 15:10:49 +00:00
|
|
|
* GNU nano 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-06 05:53:49 +00:00
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
2016-08-29 15:10:49 +00:00
|
|
|
* along with this program. If not, see http://www.gnu.org/licenses/. *
|
2000-06-06 05:53:49 +00:00
|
|
|
* *
|
|
|
|
**************************************************************************/
|
|
|
|
|
2020-06-20 10:09:31 +00:00
|
|
|
#include "prototypes.h"
|
2002-09-13 18:14:04 +00:00
|
|
|
|
2017-08-06 11:32:44 +00:00
|
|
|
#include <errno.h>
|
2017-02-21 22:04:44 +00:00
|
|
|
#ifdef HAVE_PWD_H
|
2005-02-08 20:37:53 +00:00
|
|
|
#include <pwd.h>
|
2017-02-21 22:04:44 +00:00
|
|
|
#endif
|
2017-08-06 11:32:44 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
/* Return the user's home directory. We use $HOME, and if that fails,
|
2007-01-01 05:15:32 +00:00
|
|
|
* we fall back on the home directory of the effective user ID. */
|
2005-02-08 20:37:53 +00:00
|
|
|
void get_homedir(void)
|
|
|
|
{
|
2017-12-29 18:27:33 +00:00
|
|
|
if (homedir == NULL) {
|
|
|
|
const char *homenv = getenv("HOME");
|
2005-02-08 20:37:53 +00:00
|
|
|
|
2017-02-21 22:04:44 +00:00
|
|
|
#ifdef HAVE_PWD_H
|
2017-12-29 18:27:33 +00:00
|
|
|
/* When HOME isn't set, or when we're root, get the home directory
|
|
|
|
* from the password file instead. */
|
2020-05-29 15:19:38 +00:00
|
|
|
if (homenv == NULL || geteuid() == ROOT_UID) {
|
2017-12-29 18:27:33 +00:00
|
|
|
const struct passwd *userage = getpwuid(geteuid());
|
|
|
|
|
|
|
|
if (userage != NULL)
|
|
|
|
homenv = userage->pw_dir;
|
|
|
|
}
|
2017-02-21 22:04:44 +00:00
|
|
|
#endif
|
2015-06-20 08:21:35 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
/* Only set homedir if some home directory could be determined,
|
|
|
|
* otherwise keep homedir NULL. */
|
2018-03-06 10:59:03 +00:00
|
|
|
if (homenv != NULL && *homenv != '\0')
|
2019-10-13 10:24:27 +00:00
|
|
|
homedir = copy_of(homenv);
|
2017-12-29 18:27:33 +00:00
|
|
|
}
|
2005-02-08 20:37:53 +00:00
|
|
|
}
|
|
|
|
|
2017-11-11 10:34:39 +00:00
|
|
|
/* Return the filename part of the given path. */
|
|
|
|
const char *tail(const char *path)
|
|
|
|
{
|
2017-12-29 18:27:33 +00:00
|
|
|
const char *slash = strrchr(path, '/');
|
2017-11-11 10:34:39 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
if (slash == NULL)
|
|
|
|
return path;
|
|
|
|
else
|
|
|
|
return ++slash;
|
2017-11-11 10:34:39 +00:00
|
|
|
}
|
|
|
|
|
2017-10-27 21:15:06 +00:00
|
|
|
/* Return a copy of the two given strings, welded together. */
|
|
|
|
char *concatenate(const char *path, const char *name)
|
|
|
|
{
|
2017-12-29 18:27:33 +00:00
|
|
|
size_t pathlen = strlen(path);
|
|
|
|
char *joined = charalloc(pathlen + strlen(name) + 1);
|
2017-10-27 21:15:06 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
strcpy(joined, path);
|
|
|
|
strcpy(joined + pathlen, name);
|
2017-10-27 21:15:06 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
return joined;
|
2017-10-27 21:15:06 +00:00
|
|
|
}
|
|
|
|
|
2016-10-20 08:44:29 +00:00
|
|
|
#ifdef ENABLE_LINENUMBERS
|
|
|
|
/* Return the number of digits that the given integer n takes up. */
|
2016-12-09 17:36:01 +00:00
|
|
|
int digits(ssize_t n)
|
2016-10-20 08:44:29 +00:00
|
|
|
{
|
2017-12-29 18:27:33 +00:00
|
|
|
if (n < 100000) {
|
|
|
|
if (n < 1000) {
|
|
|
|
if (n < 100)
|
|
|
|
return 2;
|
|
|
|
else
|
|
|
|
return 3;
|
|
|
|
} else {
|
|
|
|
if (n < 10000)
|
|
|
|
return 4;
|
|
|
|
else
|
|
|
|
return 5;
|
|
|
|
}
|
2017-05-05 20:48:54 +00:00
|
|
|
} else {
|
2017-12-29 18:27:33 +00:00
|
|
|
if (n < 10000000) {
|
|
|
|
if (n < 1000000)
|
|
|
|
return 6;
|
|
|
|
else
|
|
|
|
return 7;
|
|
|
|
} else {
|
|
|
|
if (n < 100000000)
|
|
|
|
return 8;
|
|
|
|
else
|
|
|
|
return 9;
|
|
|
|
}
|
2017-05-05 20:48:54 +00:00
|
|
|
}
|
2016-10-20 08:44:29 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-01-11 18:15:45 +00:00
|
|
|
/* Read an integer from str. If it parses okay, store it in *result
|
|
|
|
* and return TRUE; otherwise, return FALSE. */
|
|
|
|
bool parse_num(const char *str, ssize_t *result)
|
2004-07-12 16:07:14 +00:00
|
|
|
{
|
2017-12-29 18:27:33 +00:00
|
|
|
char *first_error;
|
|
|
|
ssize_t value;
|
2004-07-12 16:07:14 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
/* The manual page for strtol() says this is required. */
|
|
|
|
errno = 0;
|
2013-01-13 08:37:54 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
value = (ssize_t)strtol(str, &first_error, 10);
|
2004-12-08 04:00:26 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
if (errno == ERANGE || *str == '\0' || *first_error != '\0')
|
|
|
|
return FALSE;
|
2004-12-08 04:00:26 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
*result = value;
|
2004-12-08 04:00:26 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
return TRUE;
|
2004-07-12 16:07:14 +00:00
|
|
|
}
|
|
|
|
|
2016-07-04 15:55:25 +00:00
|
|
|
/* Read two numbers, separated by a comma, from str, and store them in
|
|
|
|
* *line and *column. Return FALSE on error, and TRUE otherwise. */
|
2005-06-28 06:25:34 +00:00
|
|
|
bool parse_line_column(const char *str, ssize_t *line, ssize_t *column)
|
2005-05-16 23:23:15 +00:00
|
|
|
{
|
2017-12-29 18:27:33 +00:00
|
|
|
bool retval;
|
|
|
|
char *firstpart;
|
|
|
|
const char *comma;
|
2016-07-04 19:27:53 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
while (*str == ' ')
|
|
|
|
str++;
|
2016-07-04 19:27:53 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
comma = strpbrk(str, "m,. /;");
|
2005-05-16 23:23:15 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
if (comma == NULL)
|
|
|
|
return parse_num(str, line);
|
2005-05-16 23:23:15 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
retval = parse_num(comma + 1, column);
|
2005-05-17 00:25:50 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
if (comma == str)
|
|
|
|
return retval;
|
2005-05-17 00:25:50 +00:00
|
|
|
|
2019-10-13 10:24:27 +00:00
|
|
|
firstpart = copy_of(str);
|
2017-12-29 18:27:33 +00:00
|
|
|
firstpart[comma - str] = '\0';
|
2005-05-17 00:25:50 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
retval = parse_num(firstpart, line) && retval;
|
2016-12-26 10:45:38 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
free(firstpart);
|
2005-05-16 23:23:15 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
return retval;
|
2005-05-16 23:23:15 +00:00
|
|
|
}
|
|
|
|
|
2019-10-13 14:42:45 +00:00
|
|
|
/* In the given string, recode each embedded NUL as a newline. */
|
2020-04-15 15:20:03 +00:00
|
|
|
void recode_NUL_to_LF(char *string, size_t length)
|
2000-06-06 05:53:49 +00:00
|
|
|
{
|
2019-10-13 14:42:45 +00:00
|
|
|
while (length > 0) {
|
|
|
|
if (*string == '\0')
|
|
|
|
*string = '\n';
|
|
|
|
length--;
|
|
|
|
string++;
|
2017-12-29 18:27:33 +00:00
|
|
|
}
|
2002-07-19 01:08:59 +00:00
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2019-10-13 14:42:45 +00:00
|
|
|
/* In the given string, recode each embedded newline as a NUL. */
|
2020-04-15 15:20:03 +00:00
|
|
|
void recode_LF_to_NUL(char *string)
|
2002-07-19 01:08:59 +00:00
|
|
|
{
|
2019-10-13 14:42:45 +00:00
|
|
|
while (*string != '\0') {
|
|
|
|
if (*string == '\n')
|
|
|
|
*string = '\0';
|
|
|
|
string++;
|
2017-12-29 18:27:33 +00:00
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
2017-11-20 18:33:23 +00:00
|
|
|
#if !defined(ENABLE_TINY) || defined(ENABLE_TABCOMP) || defined(ENABLE_BROWSER)
|
|
|
|
/* Free the memory of the given array, which should contain len elements. */
|
|
|
|
void free_chararray(char **array, size_t len)
|
|
|
|
{
|
2017-12-29 18:27:33 +00:00
|
|
|
if (array == NULL)
|
|
|
|
return;
|
2017-11-20 18:33:23 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
while (len > 0)
|
|
|
|
free(array[--len]);
|
2017-11-20 18:33:23 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
free(array);
|
2017-11-20 18:33:23 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-10-31 18:32:42 +00:00
|
|
|
#ifdef ENABLE_SPELLER
|
2016-05-02 20:20:19 +00:00
|
|
|
/* Is the word starting at the given position in buf and of the given length
|
|
|
|
* a separate word? That is: is it not part of a longer word?*/
|
|
|
|
bool is_separate_word(size_t position, size_t length, const char *buf)
|
2005-07-24 19:57:51 +00:00
|
|
|
{
|
2017-12-29 18:27:33 +00:00
|
|
|
char before[MAXCHARLEN], after[MAXCHARLEN];
|
|
|
|
size_t word_end = position + length;
|
2005-07-24 19:57:51 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
/* Get the characters before and after the word, if any. */
|
2019-10-21 10:35:14 +00:00
|
|
|
collect_char(buf + step_left(buf, position), before);
|
|
|
|
collect_char(buf + word_end, after);
|
2005-07-24 19:57:51 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
/* If the word starts at the beginning of the line OR the character before
|
|
|
|
* the word isn't a letter, and if the word ends at the end of the line OR
|
|
|
|
* the character after the word isn't a letter, we have a whole word. */
|
2020-03-12 14:35:02 +00:00
|
|
|
return ((position == 0 || !is_alpha_char(before)) &&
|
|
|
|
(buf[word_end] == '\0' || !is_alpha_char(after)));
|
2005-07-24 19:57:51 +00:00
|
|
|
}
|
2017-10-31 18:32:42 +00:00
|
|
|
#endif /* ENABLE_SPELLER */
|
2005-07-24 19:57:51 +00:00
|
|
|
|
2017-01-26 15:24:18 +00:00
|
|
|
/* Return the position of the needle in the haystack, or NULL if not found.
|
|
|
|
* When searching backwards, we will find the last match that starts no later
|
|
|
|
* than the given start; otherwise, we find the first match starting no earlier
|
|
|
|
* than start. If we are doing a regexp search, and we find a match, we fill
|
|
|
|
* in the global variable regmatches with at most 9 subexpression matches. */
|
2002-07-19 01:08:59 +00:00
|
|
|
const char *strstrwrapper(const char *haystack, const char *needle,
|
2017-12-29 18:27:33 +00:00
|
|
|
const char *start)
|
2000-06-06 05:53:49 +00:00
|
|
|
{
|
2017-12-29 18:27:33 +00:00
|
|
|
if (ISSET(USE_REGEXP)) {
|
|
|
|
if (ISSET(BACKWARDS_SEARCH)) {
|
|
|
|
size_t last_find, ceiling, far_end;
|
|
|
|
size_t floor = 0, next_rung = 0;
|
|
|
|
/* The start of the search range, and the next start. */
|
|
|
|
|
|
|
|
if (regexec(&search_regexp, haystack, 1, regmatches, 0) != 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
far_end = strlen(haystack);
|
|
|
|
ceiling = start - haystack;
|
|
|
|
last_find = regmatches[0].rm_so;
|
|
|
|
|
|
|
|
/* A result beyond the search range also means: no match. */
|
|
|
|
if (last_find > ceiling)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* Move the start-of-range forward until there is no more match;
|
|
|
|
* then the last match found is the first match backwards. */
|
|
|
|
while (regmatches[0].rm_so <= ceiling) {
|
|
|
|
floor = next_rung;
|
|
|
|
last_find = regmatches[0].rm_so;
|
|
|
|
/* If this is the last possible match, don't try to advance. */
|
|
|
|
if (last_find == ceiling)
|
|
|
|
break;
|
2019-06-09 17:37:56 +00:00
|
|
|
next_rung = step_right(haystack, last_find);
|
2017-12-29 18:27:33 +00:00
|
|
|
regmatches[0].rm_so = next_rung;
|
|
|
|
regmatches[0].rm_eo = far_end;
|
|
|
|
if (regexec(&search_regexp, haystack, 1, regmatches,
|
|
|
|
REG_STARTEND) != 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find the last match again, to get possible submatches. */
|
|
|
|
regmatches[0].rm_so = floor;
|
|
|
|
regmatches[0].rm_eo = far_end;
|
|
|
|
if (regexec(&search_regexp, haystack, 10, regmatches,
|
|
|
|
REG_STARTEND) != 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return haystack + regmatches[0].rm_so;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Do a forward regex search from the starting point. */
|
|
|
|
regmatches[0].rm_so = start - haystack;
|
|
|
|
regmatches[0].rm_eo = strlen(haystack);
|
|
|
|
if (regexec(&search_regexp, haystack, 10, regmatches,
|
|
|
|
REG_STARTEND) != 0)
|
|
|
|
return NULL;
|
|
|
|
else
|
|
|
|
return haystack + regmatches[0].rm_so;
|
|
|
|
}
|
2018-04-13 18:43:08 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
if (ISSET(CASE_SENSITIVE)) {
|
|
|
|
if (ISSET(BACKWARDS_SEARCH))
|
|
|
|
return revstrstr(haystack, needle, start);
|
|
|
|
else
|
|
|
|
return strstr(start, needle);
|
2018-04-13 18:43:08 +00:00
|
|
|
}
|
2016-09-08 19:00:51 +00:00
|
|
|
|
2018-04-13 18:43:08 +00:00
|
|
|
if (ISSET(BACKWARDS_SEARCH))
|
|
|
|
return mbrevstrcasestr(haystack, needle, start);
|
|
|
|
else
|
|
|
|
return mbstrcasestr(start, needle);
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* This is a wrapper for the malloc() function that properly handles
|
2017-12-24 10:53:38 +00:00
|
|
|
* things when we run out of memory. */
|
2000-06-19 04:22:15 +00:00
|
|
|
void *nmalloc(size_t howmuch)
|
2000-06-21 03:00:43 +00:00
|
|
|
{
|
2017-12-29 18:27:33 +00:00
|
|
|
void *r = malloc(howmuch);
|
2000-06-21 03:00:43 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
if (r == NULL && howmuch != 0)
|
2018-10-23 17:42:07 +00:00
|
|
|
die(_("Nano is out of memory!\n"));
|
2001-04-18 04:28:54 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
return r;
|
2001-04-18 04:28:54 +00:00
|
|
|
}
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* This is a wrapper for the realloc() function that properly handles
|
|
|
|
* things when we run out of memory. */
|
2000-06-19 04:22:15 +00:00
|
|
|
void *nrealloc(void *ptr, size_t howmuch)
|
2000-06-21 03:00:43 +00:00
|
|
|
{
|
2017-12-29 18:27:33 +00:00
|
|
|
void *r = realloc(ptr, howmuch);
|
2000-06-21 03:00:43 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
if (r == NULL && howmuch != 0)
|
2018-10-23 17:42:07 +00:00
|
|
|
die(_("Nano is out of memory!\n"));
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
return r;
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
2000-07-04 22:15:39 +00:00
|
|
|
|
2019-10-15 14:21:50 +00:00
|
|
|
/* Return an appropriately reallocated dest string holding a copy of src.
|
|
|
|
* Usage: "dest = mallocstrcpy(dest, src);". */
|
2004-11-02 15:18:30 +00:00
|
|
|
char *mallocstrcpy(char *dest, const char *src)
|
|
|
|
{
|
2019-10-14 17:51:24 +00:00
|
|
|
size_t count = strlen(src) + 1;
|
|
|
|
|
|
|
|
dest = charealloc(dest, count);
|
|
|
|
strncpy(dest, src, count);
|
|
|
|
|
|
|
|
return dest;
|
2004-11-02 15:18:30 +00:00
|
|
|
}
|
|
|
|
|
2020-02-20 15:52:48 +00:00
|
|
|
/* Return an allocated copy of the first count characters
|
|
|
|
* of the given string, and NUL-terminate the copy. */
|
2019-10-15 14:27:36 +00:00
|
|
|
char *measured_copy(const char *string, size_t count)
|
2019-10-15 14:24:06 +00:00
|
|
|
{
|
2020-02-20 15:52:48 +00:00
|
|
|
char *thecopy = charalloc(count + 1);
|
2019-10-15 14:24:06 +00:00
|
|
|
|
2020-07-31 08:40:27 +00:00
|
|
|
memcpy(thecopy, string, count);
|
2020-02-20 15:52:48 +00:00
|
|
|
thecopy[count] = '\0';
|
2019-10-15 14:24:06 +00:00
|
|
|
|
2019-10-15 14:27:36 +00:00
|
|
|
return thecopy;
|
2019-10-15 14:24:06 +00:00
|
|
|
}
|
|
|
|
|
2019-10-13 10:24:27 +00:00
|
|
|
/* Return an allocated copy of the given string. */
|
|
|
|
char *copy_of(const char *string)
|
|
|
|
{
|
2020-02-20 15:52:48 +00:00
|
|
|
return measured_copy(string, strlen(string));
|
2019-10-13 10:24:27 +00:00
|
|
|
}
|
|
|
|
|
2016-07-13 13:04:40 +00:00
|
|
|
/* Free the string at dest and return the string at src. */
|
|
|
|
char *free_and_assign(char *dest, char *src)
|
2004-09-05 21:40:31 +00:00
|
|
|
{
|
2017-12-29 18:27:33 +00:00
|
|
|
free(dest);
|
|
|
|
return src;
|
2004-09-05 21:40:31 +00:00
|
|
|
}
|
|
|
|
|
2017-01-31 22:37:10 +00:00
|
|
|
/* When not in softwrap mode, nano scrolls horizontally within a line in
|
|
|
|
* chunks (a bit smaller than the chunks used in softwrapping). Return the
|
|
|
|
* column number of the first character displayed in the edit window when the
|
2005-11-01 17:45:31 +00:00
|
|
|
* cursor is at the given column. Note that (0 <= column -
|
|
|
|
* get_page_start(column) < COLS). */
|
|
|
|
size_t get_page_start(size_t column)
|
|
|
|
{
|
2019-03-03 13:50:43 +00:00
|
|
|
if (column + 2 < editwincols || ISSET(SOFTWRAP) || column == 0)
|
2017-12-29 18:27:33 +00:00
|
|
|
return 0;
|
|
|
|
else if (editwincols > 8)
|
2019-03-03 13:50:43 +00:00
|
|
|
return column - 6 - (column - 6) % (editwincols - 8);
|
2017-12-29 18:27:33 +00:00
|
|
|
else
|
|
|
|
return column - (editwincols - 2);
|
2005-11-01 17:45:31 +00:00
|
|
|
}
|
|
|
|
|
2006-07-28 17:06:27 +00:00
|
|
|
/* Return the placewewant associated with current_x, i.e. the zero-based
|
2016-04-10 15:42:01 +00:00
|
|
|
* column position of the cursor. */
|
2005-10-31 23:07:58 +00:00
|
|
|
size_t xplustabs(void)
|
|
|
|
{
|
2019-04-24 07:08:23 +00:00
|
|
|
return wideness(openfile->current->data, openfile->current_x);
|
2005-10-31 23:07:58 +00:00
|
|
|
}
|
|
|
|
|
2016-05-28 11:23:41 +00:00
|
|
|
/* Return the index in text of the character that (when displayed) will
|
|
|
|
* not overshoot the given column. */
|
|
|
|
size_t actual_x(const char *text, size_t column)
|
2005-10-31 23:07:58 +00:00
|
|
|
{
|
2017-12-29 18:27:33 +00:00
|
|
|
const char *start = text;
|
|
|
|
/* From where we start walking through the text. */
|
|
|
|
size_t width = 0;
|
|
|
|
/* The current accumulated span, in columns. */
|
2005-10-31 23:07:58 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
while (*text != '\0') {
|
2019-10-21 10:21:46 +00:00
|
|
|
int charlen = advance_over(text, &width);
|
2005-10-31 23:07:58 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
if (width > column)
|
|
|
|
break;
|
2005-10-31 23:07:58 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
text += charlen;
|
|
|
|
}
|
2005-10-31 23:07:58 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
return (text - start);
|
2005-10-31 23:07:58 +00:00
|
|
|
}
|
|
|
|
|
2016-04-24 20:02:48 +00:00
|
|
|
/* A strnlen() with tabs and multicolumn characters factored in:
|
|
|
|
* how many columns wide are the first maxlen bytes of text? */
|
2019-04-24 07:08:23 +00:00
|
|
|
size_t wideness(const char *text, size_t maxlen)
|
2005-10-31 23:07:58 +00:00
|
|
|
{
|
2017-12-29 18:27:33 +00:00
|
|
|
size_t width = 0;
|
2005-10-31 23:07:58 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
if (maxlen == 0)
|
|
|
|
return 0;
|
2005-10-31 23:07:58 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
while (*text != '\0') {
|
2019-10-21 10:21:46 +00:00
|
|
|
size_t charlen = advance_over(text, &width);
|
2005-10-31 23:07:58 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
if (maxlen <= charlen)
|
|
|
|
break;
|
2005-10-31 23:07:58 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
maxlen -= charlen;
|
|
|
|
text += charlen;
|
|
|
|
}
|
2005-10-31 23:07:58 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
return width;
|
2005-10-31 23:07:58 +00:00
|
|
|
}
|
|
|
|
|
2017-02-23 20:27:01 +00:00
|
|
|
/* Return the number of columns that the given text occupies. */
|
2019-04-24 06:49:18 +00:00
|
|
|
size_t breadth(const char *text)
|
2005-10-31 23:07:58 +00:00
|
|
|
{
|
2017-12-29 18:27:33 +00:00
|
|
|
size_t span = 0;
|
2017-02-23 20:27:01 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
while (*text != '\0')
|
2019-10-21 10:21:46 +00:00
|
|
|
text += advance_over(text, &span);
|
2017-02-23 20:27:01 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
return span;
|
2005-10-31 23:07:58 +00:00
|
|
|
}
|
|
|
|
|
2019-01-06 14:35:31 +00:00
|
|
|
/* Append a new magic line to the end of the buffer. */
|
2000-10-26 01:44:42 +00:00
|
|
|
void new_magicline(void)
|
|
|
|
{
|
2017-12-29 18:27:33 +00:00
|
|
|
openfile->filebot->next = make_new_node(openfile->filebot);
|
2019-10-13 10:24:27 +00:00
|
|
|
openfile->filebot->next->data = copy_of("");
|
2017-12-29 18:27:33 +00:00
|
|
|
openfile->filebot = openfile->filebot->next;
|
|
|
|
openfile->totsize++;
|
2000-07-04 22:15:39 +00:00
|
|
|
}
|
2000-11-05 17:54:41 +00:00
|
|
|
|
2017-04-25 15:51:45 +00:00
|
|
|
#if !defined(NANO_TINY) || defined(ENABLE_HELP)
|
2019-01-06 14:35:31 +00:00
|
|
|
/* Remove the magic line from the end of the buffer, if there is one and
|
2017-12-24 10:53:38 +00:00
|
|
|
* it isn't the only line in the file. */
|
2004-11-03 22:03:41 +00:00
|
|
|
void remove_magicline(void)
|
|
|
|
{
|
2017-12-29 18:27:33 +00:00
|
|
|
if (openfile->filebot->data[0] == '\0' &&
|
2019-03-21 16:23:49 +00:00
|
|
|
openfile->filebot != openfile->filetop) {
|
2017-12-29 18:27:33 +00:00
|
|
|
openfile->filebot = openfile->filebot->prev;
|
2019-04-28 15:20:08 +00:00
|
|
|
delete_node(openfile->filebot->next);
|
2017-12-29 18:27:33 +00:00
|
|
|
openfile->filebot->next = NULL;
|
|
|
|
openfile->totsize--;
|
|
|
|
}
|
2004-11-03 22:03:41 +00:00
|
|
|
}
|
2017-04-25 15:51:45 +00:00
|
|
|
#endif
|
2004-11-03 22:03:41 +00:00
|
|
|
|
2017-04-25 15:51:45 +00:00
|
|
|
#ifndef NANO_TINY
|
2020-03-05 15:09:56 +00:00
|
|
|
/* Return TRUE when the mark is before or at the cursor, and FALSE otherwise. */
|
|
|
|
bool mark_is_before_cursor(void)
|
|
|
|
{
|
|
|
|
return (openfile->mark->lineno < openfile->current->lineno ||
|
|
|
|
(openfile->mark == openfile->current &&
|
|
|
|
openfile->mark_x <= openfile->current_x));
|
|
|
|
}
|
|
|
|
|
2019-04-28 13:53:33 +00:00
|
|
|
/* Return in (top, top_x) and (bot, bot_x) the start and end "coordinates"
|
2020-03-29 11:14:17 +00:00
|
|
|
* of the marked region. */
|
2020-03-29 18:17:32 +00:00
|
|
|
void get_region(linestruct **top, size_t *top_x, linestruct **bot, size_t *bot_x)
|
2017-12-29 18:27:33 +00:00
|
|
|
{
|
2020-03-05 15:09:56 +00:00
|
|
|
if (mark_is_before_cursor()) {
|
2017-12-29 18:27:33 +00:00
|
|
|
*top = openfile->mark;
|
|
|
|
*top_x = openfile->mark_x;
|
|
|
|
*bot = openfile->current;
|
|
|
|
*bot_x = openfile->current_x;
|
|
|
|
} else {
|
|
|
|
*bot = openfile->mark;
|
|
|
|
*bot_x = openfile->mark_x;
|
|
|
|
*top = openfile->current;
|
|
|
|
*top_x = openfile->current_x;
|
|
|
|
}
|
2004-11-23 04:08:28 +00:00
|
|
|
}
|
2005-07-17 01:44:35 +00:00
|
|
|
|
2017-12-23 20:32:47 +00:00
|
|
|
/* Get the set of lines to work on -- either just the current line, or the
|
|
|
|
* first to last lines of the marked region. When the cursor (or mark) is
|
|
|
|
* at the start of the last line of the region, exclude that line. */
|
2020-03-29 18:17:32 +00:00
|
|
|
void get_range(linestruct **top, linestruct **bot)
|
2017-12-18 16:40:07 +00:00
|
|
|
{
|
2017-12-29 18:27:33 +00:00
|
|
|
if (!openfile->mark) {
|
|
|
|
*top = openfile->current;
|
|
|
|
*bot = openfile->current;
|
|
|
|
} else {
|
|
|
|
size_t top_x, bot_x;
|
2017-12-18 16:40:07 +00:00
|
|
|
|
2020-03-29 11:14:17 +00:00
|
|
|
get_region(top, &top_x, bot, &bot_x);
|
2017-12-20 18:39:37 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
if (bot_x == 0 && *bot != *top && !also_the_last)
|
|
|
|
*bot = (*bot)->prev;
|
|
|
|
else
|
|
|
|
also_the_last = TRUE;
|
|
|
|
}
|
2017-12-18 16:40:07 +00:00
|
|
|
}
|
|
|
|
|
2019-05-24 17:27:04 +00:00
|
|
|
/* Return a pointer to the line that has the given line number. */
|
|
|
|
linestruct *line_from_number(ssize_t number)
|
2008-08-03 04:48:05 +00:00
|
|
|
{
|
2019-05-24 17:27:04 +00:00
|
|
|
linestruct *line = openfile->current;
|
2008-08-03 04:48:05 +00:00
|
|
|
|
2019-05-24 17:27:04 +00:00
|
|
|
if (line->lineno > number)
|
|
|
|
while (line->lineno != number)
|
|
|
|
line = line->prev;
|
2017-12-29 18:27:33 +00:00
|
|
|
else
|
2019-05-24 17:27:04 +00:00
|
|
|
while (line->lineno != number)
|
|
|
|
line = line->next;
|
2008-08-03 04:48:05 +00:00
|
|
|
|
2019-05-24 17:27:04 +00:00
|
|
|
return line;
|
2008-08-03 04:48:05 +00:00
|
|
|
}
|
2016-12-15 12:04:52 +00:00
|
|
|
#endif /* !NANO_TINY */
|
|
|
|
|
|
|
|
/* Count the number of characters from begin to end, and return it. */
|
2020-04-09 10:27:07 +00:00
|
|
|
size_t number_of_characters_in(const linestruct *begin, const linestruct *end)
|
2016-12-15 12:04:52 +00:00
|
|
|
{
|
2019-03-21 16:08:52 +00:00
|
|
|
const linestruct *line;
|
2020-04-09 10:27:07 +00:00
|
|
|
size_t count = 0;
|
2016-12-15 12:04:52 +00:00
|
|
|
|
2017-12-29 18:27:33 +00:00
|
|
|
/* Sum the number of characters (plus a newline) in each line. */
|
|
|
|
for (line = begin; line != end->next; line = line->next)
|
2020-04-09 10:27:07 +00:00
|
|
|
count += mbstrlen(line->data) + 1;
|
2016-12-15 12:04:52 +00:00
|
|
|
|
2020-04-09 10:52:36 +00:00
|
|
|
/* Do not count the final newline. */
|
|
|
|
return (count - 1);
|
2016-12-15 12:04:52 +00:00
|
|
|
}
|