2000-08-06 21:13:45 +00:00
|
|
|
/* $Id$ */
|
2000-06-06 05:53:49 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* utils.c *
|
|
|
|
* *
|
2002-01-04 17:57:40 +00:00
|
|
|
* Copyright (C) 1999-2002 Chris Allegretta *
|
2000-06-06 05:53:49 +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 *
|
2001-10-24 11:33:54 +00:00
|
|
|
* the Free Software Foundation; either version 2, or (at your option) *
|
2000-06-06 05:53:49 +00:00
|
|
|
* any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software *
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *
|
|
|
|
* *
|
|
|
|
**************************************************************************/
|
|
|
|
|
2002-03-29 16:31:29 +00:00
|
|
|
#include <stdio.h>
|
2000-07-07 04:25:00 +00:00
|
|
|
#include <unistd.h>
|
2000-06-06 05:53:49 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
2002-07-19 01:08:59 +00:00
|
|
|
#include <assert.h>
|
2002-06-13 00:40:19 +00:00
|
|
|
#include "config.h"
|
2000-06-06 05:53:49 +00:00
|
|
|
#include "proto.h"
|
2002-06-13 00:40:19 +00:00
|
|
|
#include "nano.h"
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2002-05-12 19:52:15 +00:00
|
|
|
#ifdef ENABLE_NLS
|
2000-06-19 04:22:15 +00:00
|
|
|
#include <libintl.h>
|
|
|
|
#define _(string) gettext(string)
|
|
|
|
#else
|
|
|
|
#define _(string) (string)
|
|
|
|
#endif
|
|
|
|
|
2002-07-20 13:57:41 +00:00
|
|
|
int is_cntrl_char(int c)
|
|
|
|
{
|
|
|
|
if (iscntrl(c) || ((c & 127) != 127 && iscntrl(c & 127)))
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-02-22 04:30:50 +00:00
|
|
|
int num_of_digits(int n)
|
|
|
|
{
|
|
|
|
int i = 1;
|
|
|
|
|
|
|
|
if (n < 0)
|
|
|
|
n = 0 - n;
|
|
|
|
|
|
|
|
while (n > 10) {
|
|
|
|
n /= 10;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2002-07-19 01:08:59 +00:00
|
|
|
/* Fix the memory allocation for a string. */
|
|
|
|
void align(char **strp)
|
2002-06-13 00:40:19 +00:00
|
|
|
{
|
2002-07-19 01:08:59 +00:00
|
|
|
assert(strp != NULL);
|
|
|
|
*strp = nrealloc(*strp, strlen(*strp) + 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
|
|
|
{
|
2002-07-19 01:08:59 +00:00
|
|
|
assert(data != NULL);
|
|
|
|
*data = (char *)nrealloc(*data, sizeof(char) * (index + 1));
|
|
|
|
(*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
|
|
|
{
|
2002-07-19 01:08:59 +00:00
|
|
|
assert(str != NULL);
|
|
|
|
for(; true_len > 0; true_len--, str++)
|
|
|
|
if (*str == '\0')
|
|
|
|
*str = '\n';
|
|
|
|
}
|
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
|
|
|
|
* normally have newlines in it, so decode its newlines into nulls. */
|
|
|
|
void sunder(char *str)
|
|
|
|
{
|
|
|
|
assert(str != NULL);
|
|
|
|
for(; *str != '\0'; str++)
|
|
|
|
if (*str == '\n')
|
|
|
|
*str = '\0';
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
2001-07-16 00:48:53 +00:00
|
|
|
/* None of this is needed if we're using NANO_SMALL! */
|
|
|
|
#ifndef NANO_SMALL
|
2002-07-19 01:08:59 +00:00
|
|
|
static const char *revstrstr(const char *haystack, const char *needle,
|
|
|
|
const char *rev_start)
|
2001-06-13 02:35:44 +00:00
|
|
|
{
|
2002-07-19 01:08:59 +00:00
|
|
|
for(; rev_start >= haystack ; rev_start--) {
|
|
|
|
const char *r, *q;
|
2001-06-13 02:35:44 +00:00
|
|
|
|
2002-07-19 01:08:59 +00:00
|
|
|
for (r = rev_start, q = needle ; *q == *r && *q != '\0'; r++, q++)
|
2001-06-13 02:35:44 +00:00
|
|
|
;
|
|
|
|
if (*q == '\0')
|
2002-07-19 01:08:59 +00:00
|
|
|
return rev_start;
|
2001-06-13 02:35:44 +00:00
|
|
|
}
|
2002-07-19 01:08:59 +00:00
|
|
|
return NULL;
|
2001-06-13 02:35:44 +00:00
|
|
|
}
|
|
|
|
|
2002-07-19 01:08:59 +00:00
|
|
|
static const char *revstristr(const char *haystack, const char *needle,
|
|
|
|
const char *rev_start)
|
2001-06-13 02:35:44 +00:00
|
|
|
{
|
2002-07-19 01:08:59 +00:00
|
|
|
for (; rev_start >= haystack; rev_start--) {
|
|
|
|
const char *r = rev_start, *q = needle;
|
2001-06-13 02:35:44 +00:00
|
|
|
|
2002-07-19 01:08:59 +00:00
|
|
|
for (; (tolower(*q) == tolower(*r)) && (*q != '\0') ; r++, q++)
|
2001-06-13 02:35:44 +00:00
|
|
|
;
|
|
|
|
if (*q == '\0')
|
2002-07-19 01:08:59 +00:00
|
|
|
return rev_start;
|
2001-06-13 02:35:44 +00:00
|
|
|
}
|
2002-07-19 01:08:59 +00:00
|
|
|
return NULL;
|
2001-06-13 02:35:44 +00:00
|
|
|
}
|
2002-07-19 01:08:59 +00:00
|
|
|
#endif /* !NANO_SMALL */
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2001-05-16 04:20:57 +00:00
|
|
|
/* This is now mutt's version (called mutt_stristr) because it doesn't
|
2001-05-16 04:23:37 +00:00
|
|
|
use memory allocation to do a simple search (yuck). */
|
2002-07-19 01:08:59 +00:00
|
|
|
const char *stristr(const char *haystack, const char *needle)
|
2000-06-06 05:53:49 +00:00
|
|
|
{
|
2001-05-16 04:20:57 +00:00
|
|
|
const char *p, *q;
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2001-05-16 04:20:57 +00:00
|
|
|
if (!haystack)
|
2000-06-06 05:53:49 +00:00
|
|
|
return NULL;
|
2001-05-16 04:20:57 +00:00
|
|
|
if (!needle)
|
|
|
|
return (haystack);
|
|
|
|
|
2001-06-13 02:35:44 +00:00
|
|
|
while (*(p = haystack)) {
|
2002-07-19 01:08:59 +00:00
|
|
|
for (q = needle; *p && *q && tolower(*p) == tolower(*q); p++, q++)
|
2001-05-16 04:20:57 +00:00
|
|
|
;
|
|
|
|
if (!*q)
|
2002-07-19 01:08:59 +00:00
|
|
|
return haystack;
|
2001-06-13 02:35:44 +00:00
|
|
|
haystack++;
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
2001-05-16 04:20:57 +00:00
|
|
|
return NULL;
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
2002-07-19 01:08:59 +00:00
|
|
|
const char *strstrwrapper(const char *haystack, const char *needle,
|
|
|
|
const char *rev_start, int line_pos)
|
2000-06-06 05:53:49 +00:00
|
|
|
{
|
2000-09-06 13:39:17 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
2000-07-07 01:49:52 +00:00
|
|
|
if (ISSET(USE_REGEXP)) {
|
2001-06-13 02:35:44 +00:00
|
|
|
if (!ISSET(REVERSE_SEARCH)) {
|
2002-07-19 01:08:59 +00:00
|
|
|
if (!regexec(&search_regexp, haystack, 10, regmatches, (line_pos > 0) ? REG_NOTBOL : 0))
|
2001-06-13 02:35:44 +00:00
|
|
|
return haystack + regmatches[0].rm_so;
|
2002-07-19 01:08:59 +00:00
|
|
|
}
|
2002-01-28 15:56:15 +00:00
|
|
|
#ifndef NANO_SMALL
|
2002-07-19 01:08:59 +00:00
|
|
|
else {
|
|
|
|
const char *i, *j;
|
2002-01-28 15:56:15 +00:00
|
|
|
|
2002-02-16 20:03:44 +00:00
|
|
|
/* do a quick search forward first */
|
2002-07-19 01:08:59 +00:00
|
|
|
if (!regexec(&search_regexp, haystack, 10, regmatches, 0)) {
|
2002-02-16 20:03:44 +00:00
|
|
|
/* there's a match somewhere in the line - now search for it backwards, much slower */
|
2002-06-21 03:20:06 +00:00
|
|
|
for (i = rev_start; i >= haystack; --i) {
|
2002-07-19 01:08:59 +00:00
|
|
|
if (!regexec(&search_regexp, i, 10, regmatches, (i > haystack) ? REG_NOTBOL : 0)) {
|
2001-06-13 02:35:44 +00:00
|
|
|
j = i + regmatches[0].rm_so;
|
|
|
|
if (j <= rev_start)
|
|
|
|
return j;
|
|
|
|
}
|
2002-06-21 03:20:06 +00:00
|
|
|
}
|
2001-06-13 02:35:44 +00:00
|
|
|
}
|
2002-01-28 15:56:15 +00:00
|
|
|
}
|
2002-07-19 01:08:59 +00:00
|
|
|
#endif
|
2000-10-26 01:44:42 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2000-07-07 04:25:00 +00:00
|
|
|
#endif
|
2001-07-16 00:48:53 +00:00
|
|
|
#ifndef NANO_SMALL
|
2001-10-02 03:54:40 +00:00
|
|
|
if (ISSET(CASE_SENSITIVE)) {
|
2001-07-16 00:48:53 +00:00
|
|
|
if (ISSET(REVERSE_SEARCH))
|
2001-06-13 02:35:44 +00:00
|
|
|
return revstrstr(haystack, needle, rev_start);
|
2001-07-16 00:48:53 +00:00
|
|
|
else
|
2002-06-21 03:20:06 +00:00
|
|
|
return strstr(haystack, needle);
|
2001-06-13 02:35:44 +00:00
|
|
|
} else {
|
2001-07-16 00:48:53 +00:00
|
|
|
if (ISSET(REVERSE_SEARCH))
|
2002-02-28 00:57:18 +00:00
|
|
|
return revstristr(haystack, needle, rev_start);
|
2001-07-16 00:48:53 +00:00
|
|
|
else
|
|
|
|
#endif
|
2002-02-28 00:57:18 +00:00
|
|
|
return stristr(haystack, needle);
|
2001-10-02 03:54:40 +00:00
|
|
|
#ifndef NANO_SMALL
|
2001-06-13 02:35:44 +00:00
|
|
|
}
|
2001-10-02 03:54:40 +00:00
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2002-03-29 16:31:29 +00:00
|
|
|
/* This is a wrapper for the perror function. The wrapper takes care of
|
|
|
|
* ncurses, calls perror (which writes to STDERR), then refreshes the
|
2002-07-19 01:08:59 +00:00
|
|
|
* screen. Note that nperror causes the window to flicker once. */
|
2002-03-29 16:31:29 +00:00
|
|
|
void nperror(const char *s) {
|
|
|
|
/* leave ncurses mode, go to the terminal */
|
|
|
|
if (endwin() != ERR) {
|
|
|
|
perror(s); /* print the error */
|
|
|
|
total_refresh(); /* return to ncurses and repaint */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-06-19 04:22:15 +00:00
|
|
|
/* Thanks BG, many ppl have been asking for this... */
|
|
|
|
void *nmalloc(size_t howmuch)
|
2000-06-21 03:00:43 +00:00
|
|
|
{
|
2000-06-19 04:22:15 +00:00
|
|
|
void *r;
|
2000-06-21 03:00:43 +00:00
|
|
|
|
2000-06-19 04:22:15 +00:00
|
|
|
/* Panic save? */
|
|
|
|
|
|
|
|
if (!(r = malloc(howmuch)))
|
|
|
|
die(_("nano: malloc: out of memory!"));
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
2000-06-21 03:00:43 +00:00
|
|
|
|
2001-05-17 11:35:43 +00:00
|
|
|
/* We're going to need this too - Hopefully this will minimize
|
2002-07-19 01:08:59 +00:00
|
|
|
the transition cost of moving to the appropriate function. */
|
2001-05-17 11:35:43 +00:00
|
|
|
char *charalloc(size_t howmuch)
|
2001-04-18 04:28:54 +00:00
|
|
|
{
|
2002-07-19 01:08:59 +00:00
|
|
|
char *r;
|
2001-04-18 04:28:54 +00:00
|
|
|
|
|
|
|
/* Panic save? */
|
|
|
|
|
2002-07-19 01:08:59 +00:00
|
|
|
if (!(r = (char *)calloc(howmuch, sizeof (char))))
|
2001-04-18 04:28:54 +00:00
|
|
|
die(_("nano: calloc: out of memory!"));
|
|
|
|
|
2002-07-19 01:08:59 +00:00
|
|
|
return r;
|
2001-04-18 04:28:54 +00:00
|
|
|
}
|
|
|
|
|
2000-06-19 04:22:15 +00:00
|
|
|
void *nrealloc(void *ptr, size_t howmuch)
|
2000-06-21 03:00:43 +00:00
|
|
|
{
|
2000-06-19 04:22:15 +00:00
|
|
|
void *r;
|
2000-06-21 03:00:43 +00:00
|
|
|
|
2000-06-19 04:22:15 +00:00
|
|
|
if (!(r = realloc(ptr, howmuch)))
|
2000-11-01 18:43:21 +00:00
|
|
|
die(_("nano: realloc: out of memory!"));
|
2000-06-19 04:22:15 +00:00
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
2000-07-04 22:15:39 +00:00
|
|
|
|
2002-07-19 01:08:59 +00:00
|
|
|
/* Copy one malloc()ed string to another pointer. Should be used as:
|
|
|
|
* dest = mallocstrcpy(dest, src); */
|
|
|
|
char *mallocstrcpy(char *dest, const char *src)
|
2000-11-02 04:40:39 +00:00
|
|
|
{
|
2001-01-07 05:50:36 +00:00
|
|
|
if (src == dest)
|
2002-07-19 01:08:59 +00:00
|
|
|
return dest;
|
2001-01-07 05:50:36 +00:00
|
|
|
|
2002-07-19 01:08:59 +00:00
|
|
|
if (dest)
|
2000-11-02 04:40:39 +00:00
|
|
|
free(dest);
|
|
|
|
|
2002-07-19 01:08:59 +00:00
|
|
|
if (!src)
|
|
|
|
return NULL;
|
2000-11-16 06:01:10 +00:00
|
|
|
|
2001-05-17 11:35:43 +00:00
|
|
|
dest = charalloc(strlen(src) + 1);
|
2000-11-02 04:40:39 +00:00
|
|
|
strcpy(dest, src);
|
|
|
|
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
2002-07-19 01:08:59 +00:00
|
|
|
/* Append a new magic-line to filebot. */
|
2000-10-26 01:44:42 +00:00
|
|
|
void new_magicline(void)
|
|
|
|
{
|
2000-07-04 22:15:39 +00:00
|
|
|
filebot->next = nmalloc(sizeof(filestruct));
|
2001-05-17 11:35:43 +00:00
|
|
|
filebot->next->data = charalloc(1);
|
2000-07-04 22:15:39 +00:00
|
|
|
filebot->next->data[0] = '\0';
|
|
|
|
filebot->next->prev = filebot;
|
|
|
|
filebot->next->next = NULL;
|
|
|
|
filebot->next->lineno = filebot->lineno + 1;
|
|
|
|
filebot = filebot->next;
|
|
|
|
totlines++;
|
2000-12-10 05:54:27 +00:00
|
|
|
totsize++;
|
2000-07-04 22:15:39 +00:00
|
|
|
}
|
2000-11-05 17:54:41 +00:00
|
|
|
|
2001-01-11 05:30:31 +00:00
|
|
|
#ifndef DISABLE_TABCOMP
|
2000-11-05 17:54:41 +00:00
|
|
|
/*
|
|
|
|
* Routine to see if a text string is matched by a wildcard pattern.
|
|
|
|
* Returns TRUE if the text is matched, or FALSE if it is not matched
|
|
|
|
* or if the pattern is invalid.
|
|
|
|
* * matches zero or more characters
|
|
|
|
* ? matches a single character
|
|
|
|
* [abc] matches 'a', 'b' or 'c'
|
|
|
|
* \c quotes character c
|
|
|
|
* Adapted from code written by Ingo Wilken, and
|
|
|
|
* then taken from sash, Copyright (c) 1999 by David I. Bell
|
|
|
|
* Permission is granted to use, distribute, or modify this source,
|
|
|
|
* provided that this copyright notice remains intact.
|
|
|
|
* Permission to distribute this code under the GPL has been granted.
|
|
|
|
*/
|
|
|
|
int check_wildcard_match(const char *text, const char *pattern)
|
|
|
|
{
|
2002-07-19 01:08:59 +00:00
|
|
|
const char *retrypat;
|
|
|
|
const char *retrytext;
|
2000-11-05 17:54:41 +00:00
|
|
|
int ch;
|
|
|
|
int found;
|
|
|
|
int len;
|
|
|
|
|
2002-07-19 01:08:59 +00:00
|
|
|
retrypat = NULL;
|
|
|
|
retrytext = NULL;
|
2000-11-05 17:54:41 +00:00
|
|
|
|
|
|
|
while (*text || *pattern) {
|
|
|
|
ch = *pattern++;
|
|
|
|
|
|
|
|
switch (ch) {
|
|
|
|
case '*':
|
2002-07-19 01:08:59 +00:00
|
|
|
retrypat = pattern;
|
|
|
|
retrytext = text;
|
2000-11-05 17:54:41 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case '[':
|
|
|
|
found = FALSE;
|
|
|
|
|
|
|
|
while ((ch = *pattern++) != ']') {
|
|
|
|
if (ch == '\\')
|
|
|
|
ch = *pattern++;
|
|
|
|
|
|
|
|
if (ch == '\0')
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (*text == ch)
|
|
|
|
found = TRUE;
|
|
|
|
}
|
|
|
|
len = strlen(text);
|
|
|
|
if (found == FALSE && len != 0) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (found == TRUE) {
|
|
|
|
if (strlen(pattern) == 0 && len == 1) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
if (len != 0) {
|
|
|
|
text++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* fall into next case */
|
|
|
|
|
|
|
|
case '?':
|
|
|
|
if (*text++ == '\0')
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '\\':
|
|
|
|
ch = *pattern++;
|
|
|
|
|
|
|
|
if (ch == '\0')
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* fall into next case */
|
|
|
|
|
|
|
|
default:
|
|
|
|
if (*text == ch) {
|
|
|
|
if (*text)
|
|
|
|
text++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*text) {
|
2002-07-19 01:08:59 +00:00
|
|
|
pattern = retrypat;
|
|
|
|
text = ++retrytext;
|
2000-11-05 17:54:41 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2002-07-19 01:08:59 +00:00
|
|
|
if (!pattern)
|
2000-11-05 17:54:41 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2000-11-30 02:31:13 +00:00
|
|
|
#endif
|