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
|
|
|
* *
|
2017-04-09 10:09:23 +00:00
|
|
|
* Copyright (C) 1999-2011, 2013-2017 Free Software Foundation, Inc. *
|
2016-08-29 13:14:18 +00:00
|
|
|
* Copyright (C) 2016 Benno Schulenberg *
|
|
|
|
* *
|
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
|
|
|
* *
|
|
|
|
**************************************************************************/
|
|
|
|
|
2005-12-08 02:47:10 +00:00
|
|
|
#include "proto.h"
|
2002-09-13 18:14:04 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
#include <string.h>
|
2004-07-12 16:07:14 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.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
|
2000-06-06 05:53:49 +00:00
|
|
|
#include <ctype.h>
|
2004-07-12 16:07:14 +00:00
|
|
|
#include <errno.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)
|
|
|
|
{
|
|
|
|
if (homedir == NULL) {
|
|
|
|
const char *homenv = getenv("HOME");
|
|
|
|
|
2017-02-21 22:04:44 +00:00
|
|
|
#ifdef HAVE_PWD_H
|
2016-01-22 16:10:36 +00:00
|
|
|
/* When HOME isn't set, or when we're root, get the home directory
|
|
|
|
* from the password file instead. */
|
|
|
|
if (homenv == NULL || geteuid() == 0) {
|
2005-02-08 20:37:53 +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
|
|
|
|
|
|
|
/* Only set homedir if some home directory could be determined,
|
|
|
|
* otherwise keep homedir NULL. */
|
|
|
|
if (homenv != NULL && strcmp(homenv, "") != 0)
|
|
|
|
homedir = mallocstrcpy(NULL, homenv);
|
2005-02-08 20:37:53 +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
|
|
|
{
|
|
|
|
if (n < 100000) {
|
2017-05-05 20:48:54 +00:00
|
|
|
if (n < 1000) {
|
|
|
|
if (n < 100)
|
|
|
|
return 2;
|
|
|
|
else
|
|
|
|
return 3;
|
|
|
|
} else {
|
|
|
|
if (n < 10000)
|
|
|
|
return 4;
|
|
|
|
else
|
|
|
|
return 5;
|
|
|
|
}
|
2016-10-20 08:44:29 +00:00
|
|
|
} else {
|
2017-05-05 20:48:54 +00:00
|
|
|
if (n < 10000000) {
|
|
|
|
if (n < 1000000)
|
|
|
|
return 6;
|
|
|
|
else
|
|
|
|
return 7;
|
|
|
|
} else {
|
|
|
|
if (n < 100000000)
|
|
|
|
return 8;
|
|
|
|
else
|
|
|
|
return 9;
|
|
|
|
}
|
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
|
|
|
{
|
|
|
|
char *first_error;
|
2017-01-11 18:15:45 +00:00
|
|
|
ssize_t value;
|
2004-07-12 16:07:14 +00:00
|
|
|
|
2017-01-11 18:15:45 +00:00
|
|
|
/* The manual page for strtol() says this is required. */
|
2013-01-13 08:37:54 +00:00
|
|
|
errno = 0;
|
|
|
|
|
2017-01-11 18:15:45 +00:00
|
|
|
value = (ssize_t)strtol(str, &first_error, 10);
|
2004-12-08 04:00:26 +00:00
|
|
|
|
2004-07-12 16:07:14 +00:00
|
|
|
if (errno == ERANGE || *str == '\0' || *first_error != '\0')
|
2004-08-04 18:24:53 +00:00
|
|
|
return FALSE;
|
2004-12-08 04:00:26 +00:00
|
|
|
|
2017-01-11 18:15:45 +00:00
|
|
|
*result = value;
|
2004-12-08 04:00:26 +00:00
|
|
|
|
2004-08-04 18:24:53 +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
|
|
|
{
|
2016-07-04 18:51:11 +00:00
|
|
|
bool retval;
|
|
|
|
char *firstpart;
|
2016-07-04 19:27:53 +00:00
|
|
|
const char *comma;
|
|
|
|
|
|
|
|
while (*str == ' ')
|
2017-05-05 20:48:54 +00:00
|
|
|
str++;
|
2016-07-04 19:27:53 +00:00
|
|
|
|
|
|
|
comma = strpbrk(str, "m,. /;");
|
2005-05-16 23:23:15 +00:00
|
|
|
|
2016-07-04 18:51:11 +00:00
|
|
|
if (comma == NULL)
|
|
|
|
return parse_num(str, line);
|
2005-05-16 23:23:15 +00:00
|
|
|
|
2016-12-26 10:45:38 +00:00
|
|
|
retval = parse_num(comma + 1, column);
|
2005-05-17 00:25:50 +00:00
|
|
|
|
2016-07-04 18:51:11 +00:00
|
|
|
if (comma == str)
|
2016-12-26 10:45:38 +00:00
|
|
|
return retval;
|
2005-05-17 00:25:50 +00:00
|
|
|
|
2016-07-11 18:39:53 +00:00
|
|
|
firstpart = mallocstrcpy(NULL, str);
|
2016-07-04 18:51:11 +00:00
|
|
|
firstpart[comma - str] = '\0';
|
2005-05-17 00:25:50 +00:00
|
|
|
|
2017-01-17 13:17:42 +00:00
|
|
|
retval = parse_num(firstpart, line) && retval;
|
2016-12-26 10:45:38 +00:00
|
|
|
|
2016-07-04 18:51:11 +00:00
|
|
|
free(firstpart);
|
2005-05-16 23:23:15 +00:00
|
|
|
|
2005-05-17 00:25:50 +00:00
|
|
|
return retval;
|
2005-05-16 23:23:15 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 19:34:38 +00:00
|
|
|
/* Reduce the memory allocation of a string to what is needed. */
|
|
|
|
void snuggly_fit(char **str)
|
2002-06-13 00:40:19 +00:00
|
|
|
{
|
2005-06-13 14:00:22 +00:00
|
|
|
if (*str != NULL)
|
|
|
|
*str = charealloc(*str, strlen(*str) + 1);
|
2002-06-13 00:40:19 +00:00
|
|
|
}
|
|
|
|
|
2002-07-19 01:08:59 +00:00
|
|
|
/* Null a string at a certain index and align it. */
|
|
|
|
void null_at(char **data, size_t index)
|
2002-06-13 00:40:19 +00:00
|
|
|
{
|
2003-04-15 01:15:09 +00:00
|
|
|
*data = charealloc(*data, index + 1);
|
2002-07-19 01:08:59 +00:00
|
|
|
(*data)[index] = '\0';
|
2002-06-13 00:40:19 +00:00
|
|
|
}
|
|
|
|
|
2002-07-19 01:08:59 +00:00
|
|
|
/* For non-null-terminated lines. A line, by definition, shouldn't
|
|
|
|
* normally have newlines in it, so encode its nulls as newlines. */
|
|
|
|
void unsunder(char *str, size_t true_len)
|
2000-06-06 05:53:49 +00:00
|
|
|
{
|
2004-02-25 03:19:29 +00:00
|
|
|
for (; true_len > 0; true_len--, str++) {
|
2002-07-19 01:08:59 +00:00
|
|
|
if (*str == '\0')
|
|
|
|
*str = '\n';
|
2004-02-25 03:19:29 +00:00
|
|
|
}
|
2002-07-19 01:08:59 +00:00
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2002-07-19 01:08:59 +00:00
|
|
|
/* For non-null-terminated lines. A line, by definition, shouldn't
|
2006-11-27 05:49:32 +00:00
|
|
|
* normally have newlines in it, so decode its newlines as nulls. */
|
2002-07-19 01:08:59 +00:00
|
|
|
void sunder(char *str)
|
|
|
|
{
|
2004-02-25 03:19:29 +00:00
|
|
|
for (; *str != '\0'; str++) {
|
2002-07-19 01:08:59 +00:00
|
|
|
if (*str == '\n')
|
|
|
|
*str = '\0';
|
2004-02-25 03:19:29 +00:00
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
2014-04-14 09:57:06 +00:00
|
|
|
/* Fix the regex if we're on platforms which require an adjustment
|
|
|
|
* from GNU-style to BSD-style word boundaries. */
|
2014-06-04 16:02:51 +00:00
|
|
|
const char *fixbounds(const char *r)
|
|
|
|
{
|
2008-08-30 05:16:20 +00:00
|
|
|
#ifndef GNU_WORDBOUNDS
|
|
|
|
int i, j = 0;
|
|
|
|
char *r2 = charalloc(strlen(r) * 5);
|
|
|
|
char *r3;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, "fixbounds(): Start string = \"%s\"\n", r);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
for (i = 0; i < strlen(r); i++) {
|
2014-06-04 16:02:51 +00:00
|
|
|
if (r[i] != '\0' && r[i] == '\\' && (r[i + 1] == '>' || r[i + 1] == '<')) {
|
|
|
|
strcpy(&r2[j], "[[:");
|
|
|
|
r2[j + 3] = r[i + 1];
|
|
|
|
strcpy(&r2[j + 4], ":]]");
|
|
|
|
i++;
|
|
|
|
j += 6;
|
|
|
|
} else
|
|
|
|
r2[j] = r[i];
|
|
|
|
j++;
|
2008-08-30 05:16:20 +00:00
|
|
|
}
|
|
|
|
r2[j] = '\0';
|
|
|
|
r3 = mallocstrcpy(NULL, r2);
|
|
|
|
free(r2);
|
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, "fixbounds(): Ending string = \"%s\"\n", r3);
|
|
|
|
#endif
|
|
|
|
return (const char *) r3;
|
2015-04-25 14:52:58 +00:00
|
|
|
#endif /* !GNU_WORDBOUNDS */
|
2008-08-30 05:16:20 +00:00
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
2005-07-24 19:57:51 +00:00
|
|
|
|
2005-11-16 05:59:06 +00:00
|
|
|
#ifndef DISABLE_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-03-30 19:56:31 +00:00
|
|
|
char before[MAXCHARLEN], after[MAXCHARLEN];
|
2016-05-02 20:20:19 +00:00
|
|
|
size_t word_end = position + length;
|
2005-07-24 19:57:51 +00:00
|
|
|
|
2016-05-02 20:20:19 +00:00
|
|
|
/* Get the characters before and after the word, if any. */
|
|
|
|
parse_mbchar(buf + move_mbleft(buf, position), before, NULL);
|
|
|
|
parse_mbchar(buf + word_end, after, NULL);
|
2005-07-24 19:57:51 +00:00
|
|
|
|
2016-08-02 20:09:22 +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. */
|
2016-12-26 09:27:42 +00:00
|
|
|
return ((position == 0 || !is_alpha_mbchar(before)) &&
|
|
|
|
(buf[word_end] == '\0' || !is_alpha_mbchar(after)));
|
2005-07-24 19:57:51 +00:00
|
|
|
}
|
2005-11-16 05:59:06 +00:00
|
|
|
#endif /* !DISABLE_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,
|
2004-02-24 20:41:39 +00:00
|
|
|
const char *start)
|
2000-06-06 05:53:49 +00:00
|
|
|
{
|
2017-05-02 08:29:36 +00:00
|
|
|
if (*needle == '\0') {
|
|
|
|
statusline(ALERT, "Searching for nothing -- please report a bug");
|
2017-04-30 18:18:20 +00:00
|
|
|
return (char *)start;
|
2017-05-02 08:29:36 +00:00
|
|
|
}
|
2017-04-30 18:18:20 +00:00
|
|
|
|
2000-07-07 01:49:52 +00:00
|
|
|
if (ISSET(USE_REGEXP)) {
|
2005-06-16 18:48:30 +00:00
|
|
|
if (ISSET(BACKWARDS_SEARCH)) {
|
2017-01-26 15:24:18 +00:00
|
|
|
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;
|
|
|
|
next_rung = move_mbright(haystack, last_find);
|
|
|
|
regmatches[0].rm_so = next_rung;
|
|
|
|
regmatches[0].rm_eo = far_end;
|
|
|
|
if (regexec(&search_regexp, haystack, 1, regmatches,
|
|
|
|
REG_STARTEND) != 0)
|
|
|
|
break;
|
2001-06-13 02:35:44 +00:00
|
|
|
}
|
2003-01-26 04:45:05 +00:00
|
|
|
|
2017-01-26 15:24:18 +00:00
|
|
|
/* 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)
|
2017-05-16 18:05:15 +00:00
|
|
|
return NULL;
|
2017-01-26 15:24:18 +00:00
|
|
|
|
|
|
|
return haystack + regmatches[0].rm_so;
|
2002-01-28 15:56:15 +00:00
|
|
|
}
|
2017-01-26 15:24:18 +00:00
|
|
|
|
|
|
|
/* 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;
|
2000-10-26 01:44:42 +00:00
|
|
|
}
|
2001-10-02 03:54:40 +00:00
|
|
|
if (ISSET(CASE_SENSITIVE)) {
|
2005-06-16 18:48:30 +00:00
|
|
|
if (ISSET(BACKWARDS_SEARCH))
|
2004-02-24 20:41:39 +00:00
|
|
|
return revstrstr(haystack, needle, start);
|
2001-07-16 00:48:53 +00:00
|
|
|
else
|
2004-03-07 21:16:18 +00:00
|
|
|
return strstr(start, needle);
|
2016-09-08 19:00:51 +00:00
|
|
|
} else if (ISSET(BACKWARDS_SEARCH))
|
2005-01-24 01:14:17 +00:00
|
|
|
return mbrevstrcasestr(haystack, needle, start);
|
2016-09-08 19:00:51 +00:00
|
|
|
|
2005-01-22 18:24:16 +00:00
|
|
|
return mbstrcasestr(start, needle);
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2006-06-03 17:31:52 +00:00
|
|
|
/* This is a wrapper for the perror() function. The wrapper temporarily
|
|
|
|
* leaves curses mode, calls perror() (which writes to stderr), and then
|
|
|
|
* reenters curses mode, updating the screen in the process. Note that
|
|
|
|
* nperror() causes the window to flicker once. */
|
2002-09-06 20:35:28 +00:00
|
|
|
void nperror(const char *s)
|
|
|
|
{
|
2006-06-03 17:31:52 +00:00
|
|
|
endwin();
|
|
|
|
perror(s);
|
|
|
|
doupdate();
|
2002-03-29 16:31:29 +00:00
|
|
|
}
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* This is a wrapper for the malloc() function that properly handles
|
|
|
|
* things when we run out of memory. Thanks, BG, many people have been
|
|
|
|
* asking for this... */
|
2000-06-19 04:22:15 +00:00
|
|
|
void *nmalloc(size_t howmuch)
|
2000-06-21 03:00:43 +00:00
|
|
|
{
|
2003-01-13 01:35:15 +00:00
|
|
|
void *r = malloc(howmuch);
|
2000-06-21 03:00:43 +00:00
|
|
|
|
2003-01-13 01:35:15 +00:00
|
|
|
if (r == NULL && howmuch != 0)
|
|
|
|
die(_("nano is out of memory!"));
|
2001-04-18 04:28:54 +00:00
|
|
|
|
2002-07-19 01:08:59 +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
|
|
|
{
|
2003-01-13 01:35:15 +00:00
|
|
|
void *r = realloc(ptr, howmuch);
|
2000-06-21 03:00:43 +00:00
|
|
|
|
2003-01-13 01:35:15 +00:00
|
|
|
if (r == NULL && howmuch != 0)
|
|
|
|
die(_("nano is out of memory!"));
|
2000-06-19 04:22:15 +00:00
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
2000-07-04 22:15:39 +00:00
|
|
|
|
2016-07-11 18:10:10 +00:00
|
|
|
/* Allocate and copy the first n characters of the given src string, after
|
|
|
|
* freeing the destination. Usage: "dest = mallocstrncpy(dest, src, n);". */
|
2004-11-02 15:18:30 +00:00
|
|
|
char *mallocstrncpy(char *dest, const char *src, size_t n)
|
2000-11-02 04:40:39 +00:00
|
|
|
{
|
2004-03-15 20:26:30 +00:00
|
|
|
if (src == NULL)
|
|
|
|
src = "";
|
2001-01-07 05:50:36 +00:00
|
|
|
|
2004-03-15 20:26:30 +00:00
|
|
|
if (src != dest)
|
2000-11-02 04:40:39 +00:00
|
|
|
free(dest);
|
|
|
|
|
2004-11-02 15:18:30 +00:00
|
|
|
dest = charalloc(n);
|
2005-06-21 22:32:50 +00:00
|
|
|
strncpy(dest, src, n);
|
2000-11-02 04:40:39 +00:00
|
|
|
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
2016-07-11 18:10:10 +00:00
|
|
|
/* Free the dest string and return a malloc'ed copy of src. Should be used as:
|
2004-11-02 15:18:30 +00:00
|
|
|
* "dest = mallocstrcpy(dest, src);". */
|
|
|
|
char *mallocstrcpy(char *dest, const char *src)
|
|
|
|
{
|
2015-12-04 21:11:10 +00:00
|
|
|
return mallocstrncpy(dest, src, (src == NULL) ? 1 : strlen(src) + 1);
|
2004-11-02 15:18:30 +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
|
|
|
{
|
|
|
|
free(dest);
|
|
|
|
return src;
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
2017-01-31 22:37:10 +00:00
|
|
|
if (column < editwincols - 1 || ISSET(SOFTWRAP) || column == 0)
|
2005-11-01 17:45:31 +00:00
|
|
|
return 0;
|
2016-10-20 08:44:29 +00:00
|
|
|
else if (editwincols > 8)
|
|
|
|
return column - 7 - (column - 7) % (editwincols - 8);
|
2005-11-01 17:45:31 +00:00
|
|
|
else
|
2016-10-20 08:44:29 +00:00
|
|
|
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)
|
|
|
|
{
|
2016-04-10 15:42:01 +00:00
|
|
|
return strnlenpt(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-04-10 17:25:40 +00:00
|
|
|
const char *start = text;
|
|
|
|
/* From where we start walking through the text. */
|
2016-05-28 11:23:41 +00:00
|
|
|
size_t width = 0;
|
2017-04-10 17:25:40 +00:00
|
|
|
/* The current accumulated span, in columns. */
|
2005-10-31 23:07:58 +00:00
|
|
|
|
2016-05-28 11:23:41 +00:00
|
|
|
while (*text != '\0') {
|
|
|
|
int charlen = parse_mbchar(text, NULL, &width);
|
2005-10-31 23:07:58 +00:00
|
|
|
|
2016-05-28 11:23:41 +00:00
|
|
|
if (width > column)
|
2005-10-31 23:07:58 +00:00
|
|
|
break;
|
|
|
|
|
2016-05-28 11:23:41 +00:00
|
|
|
text += charlen;
|
2005-10-31 23:07:58 +00:00
|
|
|
}
|
|
|
|
|
2017-04-10 17:25:40 +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? */
|
|
|
|
size_t strnlenpt(const char *text, size_t maxlen)
|
2005-10-31 23:07:58 +00:00
|
|
|
{
|
2016-04-24 20:02:48 +00:00
|
|
|
size_t width = 0;
|
|
|
|
/* The screen display width to text[maxlen]. */
|
2005-10-31 23:07:58 +00:00
|
|
|
|
|
|
|
if (maxlen == 0)
|
|
|
|
return 0;
|
|
|
|
|
2016-04-24 20:02:48 +00:00
|
|
|
while (*text != '\0') {
|
|
|
|
int charlen = parse_mbchar(text, NULL, &width);
|
2005-10-31 23:07:58 +00:00
|
|
|
|
2016-04-24 20:02:48 +00:00
|
|
|
if (maxlen <= charlen)
|
2005-10-31 23:07:58 +00:00
|
|
|
break;
|
|
|
|
|
2016-04-24 20:02:48 +00:00
|
|
|
maxlen -= charlen;
|
2016-05-28 11:23:41 +00:00
|
|
|
text += charlen;
|
2005-10-31 23:07:58 +00:00
|
|
|
}
|
|
|
|
|
2016-04-24 20:02:48 +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. */
|
2016-04-24 20:02:48 +00:00
|
|
|
size_t strlenpt(const char *text)
|
2005-10-31 23:07:58 +00:00
|
|
|
{
|
2017-02-23 20:27:01 +00:00
|
|
|
size_t span = 0;
|
|
|
|
|
|
|
|
while (*text != '\0')
|
|
|
|
text += parse_mbchar(text, NULL, &span);
|
|
|
|
|
|
|
|
return span;
|
2005-10-31 23:07:58 +00:00
|
|
|
}
|
|
|
|
|
2004-09-05 21:40:31 +00:00
|
|
|
/* Append a new magicline to filebot. */
|
2000-10-26 01:44:42 +00:00
|
|
|
void new_magicline(void)
|
|
|
|
{
|
2017-02-09 22:00:07 +00:00
|
|
|
openfile->filebot->next = make_new_node(openfile->filebot);
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->filebot->next->data = mallocstrcpy(NULL, "");
|
|
|
|
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)
|
2004-11-07 01:26:39 +00:00
|
|
|
/* Remove the magicline from filebot, if there is one and it isn't the
|
2005-12-08 07:09:08 +00:00
|
|
|
* only line in the file. Assume that edittop and current are not at
|
|
|
|
* filebot. */
|
2004-11-03 22:03:41 +00:00
|
|
|
void remove_magicline(void)
|
|
|
|
{
|
2005-07-08 20:09:16 +00:00
|
|
|
if (openfile->filebot->data[0] == '\0' &&
|
2016-06-14 09:06:04 +00:00
|
|
|
openfile->filebot != openfile->fileage) {
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->filebot = openfile->filebot->prev;
|
|
|
|
free_filestruct(openfile->filebot->next);
|
|
|
|
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
|
2004-11-23 04:08:28 +00:00
|
|
|
/* Set top_x and bot_x to the top and bottom x-coordinates of the mark,
|
|
|
|
* respectively, based on the locations of top and bot. If
|
2007-08-07 18:37:39 +00:00
|
|
|
* right_side_up isn't NULL, set it to TRUE if the mark begins with
|
2005-07-12 17:40:16 +00:00
|
|
|
* (mark_begin, mark_begin_x) and ends with (current, current_x), or
|
2004-11-23 04:08:28 +00:00
|
|
|
* FALSE otherwise. */
|
|
|
|
void mark_order(const filestruct **top, size_t *top_x, const filestruct
|
|
|
|
**bot, size_t *bot_x, bool *right_side_up)
|
|
|
|
{
|
2005-07-12 17:40:16 +00:00
|
|
|
if ((openfile->current->lineno == openfile->mark_begin->lineno &&
|
2016-06-14 09:06:04 +00:00
|
|
|
openfile->current_x > openfile->mark_begin_x) ||
|
|
|
|
openfile->current->lineno > openfile->mark_begin->lineno) {
|
2005-07-12 17:40:16 +00:00
|
|
|
*top = openfile->mark_begin;
|
|
|
|
*top_x = openfile->mark_begin_x;
|
2005-07-08 20:09:16 +00:00
|
|
|
*bot = openfile->current;
|
|
|
|
*bot_x = openfile->current_x;
|
2004-11-23 04:08:28 +00:00
|
|
|
if (right_side_up != NULL)
|
|
|
|
*right_side_up = TRUE;
|
|
|
|
} else {
|
2005-07-12 17:40:16 +00:00
|
|
|
*bot = openfile->mark_begin;
|
|
|
|
*bot_x = openfile->mark_begin_x;
|
2005-07-08 20:09:16 +00:00
|
|
|
*top = openfile->current;
|
|
|
|
*top_x = openfile->current_x;
|
2004-11-23 04:08:28 +00:00
|
|
|
if (right_side_up != NULL)
|
|
|
|
*right_side_up = FALSE;
|
|
|
|
}
|
|
|
|
}
|
2005-07-17 01:44:35 +00:00
|
|
|
|
2016-05-08 08:41:53 +00:00
|
|
|
/* Given a line number, return a pointer to the corresponding struct. */
|
2008-08-03 04:48:05 +00:00
|
|
|
filestruct *fsfromline(ssize_t lineno)
|
|
|
|
{
|
|
|
|
filestruct *f = openfile->current;
|
|
|
|
|
|
|
|
if (lineno <= openfile->current->lineno)
|
2016-05-08 08:41:53 +00:00
|
|
|
while (f->lineno != lineno && f->prev != NULL)
|
|
|
|
f = f->prev;
|
2008-08-03 04:48:05 +00:00
|
|
|
else
|
2016-05-08 08:41:53 +00:00
|
|
|
while (f->lineno != lineno && f->next != NULL)
|
|
|
|
f = f->next;
|
2008-08-03 04:48:05 +00:00
|
|
|
|
2016-05-08 08:51:40 +00:00
|
|
|
if (f->lineno != lineno) {
|
2016-12-08 19:30:59 +00:00
|
|
|
statusline(ALERT, _("Internal error: can't match line %ld. "
|
|
|
|
"Please save your work."), (long)lineno);
|
2016-05-08 08:41:53 +00:00
|
|
|
return NULL;
|
2016-05-08 08:51:40 +00:00
|
|
|
}
|
2016-05-08 08:41:53 +00:00
|
|
|
|
2008-08-03 04:48:05 +00:00
|
|
|
return f;
|
|
|
|
}
|
2016-12-15 12:04:52 +00:00
|
|
|
#endif /* !NANO_TINY */
|
|
|
|
|
|
|
|
/* Count the number of characters from begin to end, and return it. */
|
|
|
|
size_t get_totsize(const filestruct *begin, const filestruct *end)
|
|
|
|
{
|
|
|
|
const filestruct *line;
|
|
|
|
size_t totsize = 0;
|
|
|
|
|
|
|
|
/* Sum the number of characters (plus a newline) in each line. */
|
|
|
|
for (line = begin; line != end->next; line = line->next)
|
|
|
|
totsize += mbstrlen(line->data) + 1;
|
|
|
|
|
|
|
|
/* The last line of a file doesn't have a newline -- otherwise it
|
|
|
|
* wouldn't be the last line -- so subtract 1 when at EOF. */
|
|
|
|
if (line == NULL)
|
|
|
|
totsize--;
|
|
|
|
|
|
|
|
return totsize;
|
|
|
|
}
|
2008-08-03 04:48:05 +00:00
|
|
|
|
2008-08-05 01:35:42 +00:00
|
|
|
#ifdef DEBUG
|
2017-04-19 15:38:34 +00:00
|
|
|
/* Dump the given buffer to stderr. */
|
2008-08-05 01:35:42 +00:00
|
|
|
void dump_filestruct(const filestruct *inptr)
|
|
|
|
{
|
|
|
|
if (inptr == openfile->fileage)
|
|
|
|
fprintf(stderr, "Dumping file buffer to stderr...\n");
|
|
|
|
else if (inptr == cutbuffer)
|
|
|
|
fprintf(stderr, "Dumping cutbuffer to stderr...\n");
|
|
|
|
else
|
|
|
|
fprintf(stderr, "Dumping a buffer to stderr...\n");
|
|
|
|
|
|
|
|
while (inptr != NULL) {
|
|
|
|
fprintf(stderr, "(%ld) %s\n", (long)inptr->lineno, inptr->data);
|
|
|
|
inptr = inptr->next;
|
|
|
|
}
|
|
|
|
}
|
2008-08-03 04:48:05 +00:00
|
|
|
|
2017-04-19 15:38:34 +00:00
|
|
|
/* Dump the current buffer to stderr in reverse. */
|
2005-11-02 15:44:01 +00:00
|
|
|
void dump_filestruct_reverse(void)
|
|
|
|
{
|
|
|
|
const filestruct *fileptr = openfile->filebot;
|
|
|
|
|
|
|
|
while (fileptr != NULL) {
|
|
|
|
fprintf(stderr, "(%ld) %s\n", (long)fileptr->lineno,
|
|
|
|
fileptr->data);
|
|
|
|
fileptr = fileptr->prev;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* DEBUG */
|