2000-08-06 21:13:45 +00:00
|
|
|
/* $Id$ */
|
2000-06-06 05:53:49 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* utils.c *
|
|
|
|
* *
|
2005-01-03 06:56:38 +00:00
|
|
|
* Copyright (C) 1999-2005 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. *
|
|
|
|
* *
|
|
|
|
**************************************************************************/
|
|
|
|
|
2004-11-17 23:17:05 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
2002-09-13 18:14:04 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2004-07-12 16:07:14 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
2005-02-08 20:37:53 +00:00
|
|
|
#include <pwd.h>
|
2000-06-06 05:53:49 +00:00
|
|
|
#include <ctype.h>
|
2004-07-12 16:07:14 +00:00
|
|
|
#include <errno.h>
|
2002-07-19 01:08:59 +00:00
|
|
|
#include <assert.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
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
2003-03-11 03:50:40 +00:00
|
|
|
#ifdef BROKEN_REGEXEC
|
2005-03-21 06:33:41 +00:00
|
|
|
int safe_regexec(const regex_t *preg, const char *string, size_t nmatch,
|
2003-03-11 03:50:40 +00:00
|
|
|
regmatch_t pmatch[], int eflags)
|
|
|
|
{
|
|
|
|
if (string != NULL && *string != '\0')
|
|
|
|
return regexec(preg, string, nmatch, pmatch, eflags);
|
|
|
|
return REG_NOMATCH;
|
|
|
|
}
|
2005-01-07 19:02:47 +00:00
|
|
|
#endif
|
2004-02-24 20:41:39 +00:00
|
|
|
|
|
|
|
int regexp_bol_or_eol(const regex_t *preg, const char *string)
|
|
|
|
{
|
2004-10-18 01:51:43 +00:00
|
|
|
return (regexec(preg, string, 0, NULL, 0) == 0 &&
|
|
|
|
regexec(preg, string, 0, NULL, REG_NOTBOL | REG_NOTEOL) ==
|
2004-10-18 02:17:18 +00:00
|
|
|
REG_NOMATCH);
|
2004-02-24 20:41:39 +00:00
|
|
|
}
|
|
|
|
#endif /* HAVE_REGEX_H */
|
2003-03-11 03:50:40 +00:00
|
|
|
|
2002-02-22 04:30:50 +00:00
|
|
|
int num_of_digits(int n)
|
|
|
|
{
|
|
|
|
int i = 1;
|
|
|
|
|
|
|
|
if (n < 0)
|
2002-08-21 16:10:37 +00:00
|
|
|
n = -n;
|
2002-02-22 04:30:50 +00:00
|
|
|
|
|
|
|
while (n > 10) {
|
|
|
|
n /= 10;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
/* Return the user's home directory. We use $HOME, and if that fails,
|
|
|
|
* we fall back on getpwuid(). */
|
|
|
|
void get_homedir(void)
|
|
|
|
{
|
|
|
|
if (homedir == NULL) {
|
|
|
|
const char *homenv = getenv("HOME");
|
|
|
|
|
|
|
|
if (homenv == NULL) {
|
|
|
|
const struct passwd *userage = getpwuid(geteuid());
|
|
|
|
|
|
|
|
if (userage != NULL)
|
|
|
|
homenv = userage->pw_dir;
|
|
|
|
}
|
|
|
|
homedir = mallocstrcpy(NULL, homenv);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-22 16:11:55 +00:00
|
|
|
/* Read a ssize_t from str, and store it in *val (if val is not NULL).
|
|
|
|
* On error, we return FALSE and don't change *val. Otherwise, we
|
|
|
|
* return TRUE. */
|
2004-08-04 18:24:53 +00:00
|
|
|
bool parse_num(const char *str, ssize_t *val)
|
2004-07-12 16:07:14 +00:00
|
|
|
{
|
|
|
|
char *first_error;
|
|
|
|
ssize_t j;
|
|
|
|
|
|
|
|
assert(str != NULL);
|
2004-12-08 04:00:26 +00:00
|
|
|
|
2004-07-12 16:07:14 +00:00
|
|
|
j = (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
|
|
|
|
2004-07-12 16:07:14 +00:00
|
|
|
if (val != NULL)
|
|
|
|
*val = j;
|
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
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2003-06-14 20:41:34 +00:00
|
|
|
assert(strp != NULL);
|
|
|
|
if (*strp != NULL)
|
|
|
|
*strp = charealloc(*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);
|
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
|
|
|
{
|
2002-07-19 01:08:59 +00:00
|
|
|
assert(str != NULL);
|
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
|
|
|
|
* normally have newlines in it, so decode its newlines into nulls. */
|
|
|
|
void sunder(char *str)
|
|
|
|
{
|
|
|
|
assert(str != NULL);
|
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
|
|
|
}
|
|
|
|
|
2005-01-18 17:00:00 +00:00
|
|
|
#if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
|
2004-08-17 05:23:38 +00:00
|
|
|
#ifndef HAVE_GETLINE
|
|
|
|
/* This function is equivalent to getline(). It was adapted from
|
|
|
|
* GNU mailutils' getline() function. */
|
|
|
|
ssize_t ngetline(char **lineptr, size_t *n, FILE *stream)
|
|
|
|
{
|
|
|
|
return getdelim(lineptr, n, '\n', stream);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_GETDELIM
|
|
|
|
/* This function is equivalent to getdelim(). It was adapted from
|
|
|
|
* GNU mailutils' getdelim() function. */
|
|
|
|
ssize_t ngetdelim(char **lineptr, size_t *n, int delim, FILE *stream)
|
|
|
|
{
|
|
|
|
size_t indx = 0;
|
|
|
|
int c;
|
|
|
|
|
|
|
|
/* Sanity checks. */
|
|
|
|
if (lineptr == NULL || n == NULL || stream == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Allocate the line the first time. */
|
|
|
|
if (*lineptr == NULL) {
|
2004-08-17 16:00:29 +00:00
|
|
|
*lineptr = charalloc(128);
|
|
|
|
*n = 128;
|
2004-08-17 05:23:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
while ((c = getc(stream)) != EOF) {
|
|
|
|
/* Check if more memory is needed. */
|
|
|
|
if (indx >= *n) {
|
2004-08-17 16:00:29 +00:00
|
|
|
*lineptr = charealloc(*lineptr, *n + 128);
|
|
|
|
*n += 128;
|
2004-08-17 05:23:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Push the result in the line. */
|
|
|
|
(*lineptr)[indx++] = (char)c;
|
|
|
|
|
|
|
|
/* Bail out. */
|
|
|
|
if (c == delim)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make room for the null character. */
|
|
|
|
if (indx >= *n) {
|
2004-08-17 19:20:05 +00:00
|
|
|
*lineptr = charealloc(*lineptr, *n + 128);
|
|
|
|
*n += 128;
|
2004-08-17 05:23:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Null terminate the buffer. */
|
2004-08-17 19:20:05 +00:00
|
|
|
null_at(lineptr, indx++);
|
2004-08-17 19:28:54 +00:00
|
|
|
*n = indx;
|
2004-08-17 05:23:38 +00:00
|
|
|
|
|
|
|
/* The last line may not have the delimiter, we have to return what
|
|
|
|
* we got and the error will be seen on the next iteration. */
|
|
|
|
return (c == EOF && (indx - 1) == 0) ? -1 : indx - 1;
|
|
|
|
}
|
|
|
|
#endif
|
2005-01-18 17:00:00 +00:00
|
|
|
#endif /* !NANO_SMALL && ENABLE_NANORC */
|
2004-08-17 05:23:38 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* If we are searching backwards, we will find the last match that
|
|
|
|
* starts no later than start. Otherwise we find the first match
|
|
|
|
* starting no earlier than start. If we are doing a regexp search, we
|
|
|
|
* fill in the global variable regmatches with at most 9 subexpression
|
|
|
|
* matches. Also, all .rm_so elements are relative to the start of the
|
|
|
|
* whole match, so regmatches[0].rm_so == 0. */
|
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
|
|
|
{
|
2004-02-24 20:41:39 +00:00
|
|
|
/* start can be 1 character before the start or after the end of the
|
2004-10-08 20:37:44 +00:00
|
|
|
* line. In either case, we just say no match was found. */
|
2004-02-24 20:41:39 +00:00
|
|
|
if ((start > haystack && *(start - 1) == '\0') || start < haystack)
|
|
|
|
return NULL;
|
|
|
|
assert(haystack != NULL && needle != NULL && start != NULL);
|
2000-09-06 13:39:17 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
2000-07-07 01:49:52 +00:00
|
|
|
if (ISSET(USE_REGEXP)) {
|
2002-01-28 15:56:15 +00:00
|
|
|
#ifndef NANO_SMALL
|
2003-01-26 04:45:05 +00:00
|
|
|
if (ISSET(REVERSE_SEARCH)) {
|
2004-02-24 20:41:39 +00:00
|
|
|
if (regexec(&search_regexp, haystack, 1, regmatches, 0) == 0
|
|
|
|
&& haystack + regmatches[0].rm_so <= start) {
|
2003-01-26 04:45:05 +00:00
|
|
|
const char *retval = haystack + regmatches[0].rm_so;
|
|
|
|
|
2004-10-08 20:34:53 +00:00
|
|
|
/* Search forward until there are no more matches. */
|
2004-01-03 21:42:25 +00:00
|
|
|
while (regexec(&search_regexp, retval + 1, 1, regmatches,
|
2004-02-24 20:41:39 +00:00
|
|
|
REG_NOTBOL) == 0 && retval + 1 +
|
|
|
|
regmatches[0].rm_so <= start)
|
2003-01-26 04:45:05 +00:00
|
|
|
retval += 1 + regmatches[0].rm_so;
|
|
|
|
/* Finally, put the subexpression matches in global
|
|
|
|
* variable regmatches. The REG_NOTBOL flag doesn't
|
|
|
|
* matter now. */
|
|
|
|
regexec(&search_regexp, retval, 10, regmatches, 0);
|
|
|
|
return retval;
|
2001-06-13 02:35:44 +00:00
|
|
|
}
|
2003-01-26 04:45:05 +00:00
|
|
|
} else
|
|
|
|
#endif /* !NANO_SMALL */
|
2004-02-24 20:41:39 +00:00
|
|
|
if (regexec(&search_regexp, start, 10, regmatches,
|
2005-01-22 20:49:14 +00:00
|
|
|
(start > haystack) ? REG_NOTBOL : 0) == 0) {
|
2004-02-24 20:41:39 +00:00
|
|
|
const char *retval = start + regmatches[0].rm_so;
|
2003-01-26 04:45:05 +00:00
|
|
|
|
|
|
|
regexec(&search_regexp, retval, 10, regmatches, 0);
|
|
|
|
return retval;
|
2002-01-28 15:56:15 +00:00
|
|
|
}
|
2003-01-26 04:45:05 +00:00
|
|
|
return NULL;
|
2000-10-26 01:44:42 +00:00
|
|
|
}
|
2003-01-26 04:45:05 +00:00
|
|
|
#endif /* HAVE_REGEX_H */
|
2005-02-22 23:22:37 +00:00
|
|
|
#if !defined(NANO_SMALL) || !defined(DISABLE_SPELLER)
|
2001-10-02 03:54:40 +00:00
|
|
|
if (ISSET(CASE_SENSITIVE)) {
|
2004-02-24 20:41:39 +00:00
|
|
|
#ifndef NANO_SMALL
|
2001-07-16 00:48:53 +00:00
|
|
|
if (ISSET(REVERSE_SEARCH))
|
2004-02-24 20:41:39 +00:00
|
|
|
return revstrstr(haystack, needle, start);
|
2001-07-16 00:48:53 +00:00
|
|
|
else
|
2004-02-24 20:41:39 +00:00
|
|
|
#endif
|
2004-03-07 21:16:18 +00:00
|
|
|
return strstr(start, needle);
|
2004-02-24 20:41:39 +00:00
|
|
|
}
|
|
|
|
#endif /* !DISABLE_SPELLER || !NANO_SMALL */
|
|
|
|
#ifndef NANO_SMALL
|
|
|
|
else if (ISSET(REVERSE_SEARCH))
|
2005-01-24 01:14:17 +00:00
|
|
|
return mbrevstrcasestr(haystack, needle, start);
|
2001-07-16 00:48:53 +00:00
|
|
|
#endif
|
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
|
|
|
|
2004-03-08 19:53:11 +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
|
|
|
|
* screen. Note that nperror() causes the window to flicker once. */
|
2002-09-06 20:35:28 +00:00
|
|
|
void nperror(const char *s)
|
|
|
|
{
|
2002-12-22 16:30:00 +00:00
|
|
|
/* leave ncurses mode, go to the terminal */
|
2002-03-29 16:31:29 +00:00
|
|
|
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
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2004-11-02 15:18:30 +00:00
|
|
|
/* Copy the first n characters of one malloc()ed string to another
|
|
|
|
* pointer. Should be used as: "dest = mallocstrncpy(dest, src,
|
|
|
|
* n);". */
|
|
|
|
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);
|
|
|
|
strncpy(dest, src, n);
|
2000-11-02 04:40:39 +00:00
|
|
|
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
2004-11-02 15:18:30 +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)
|
|
|
|
{
|
|
|
|
return mallocstrncpy(dest, src, src == NULL ? 1 : strlen(src) + 1);
|
|
|
|
}
|
|
|
|
|
2004-09-05 21:40:31 +00:00
|
|
|
/* Free the malloc()ed string at dest and return the malloc()ed string
|
|
|
|
* at src. Should be used as: "answer = mallocstrassn(answer,
|
|
|
|
* real_dir_from_tilde(answer));". */
|
|
|
|
char *mallocstrassn(char *dest, char *src)
|
|
|
|
{
|
|
|
|
free(dest);
|
|
|
|
return src;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Append a new magicline to filebot. */
|
2000-10-26 01:44:42 +00:00
|
|
|
void new_magicline(void)
|
|
|
|
{
|
2003-06-14 20:41:34 +00:00
|
|
|
filebot->next = (filestruct *)nmalloc(sizeof(filestruct));
|
2004-11-03 14:58:04 +00:00
|
|
|
filebot->next->data = mallocstrcpy(NULL, "");
|
2000-07-04 22:15:39 +00:00
|
|
|
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
|
|
|
|
2003-09-16 01:16:49 +00:00
|
|
|
#ifndef NANO_SMALL
|
2004-11-07 01:26:39 +00:00
|
|
|
/* Remove the magicline from filebot, if there is one and it isn't the
|
|
|
|
* only line in the file. */
|
2004-11-03 22:03:41 +00:00
|
|
|
void remove_magicline(void)
|
|
|
|
{
|
2004-11-07 01:22:20 +00:00
|
|
|
if (filebot->data[0] == '\0' && filebot->prev != NULL) {
|
2004-11-03 22:03:41 +00:00
|
|
|
filebot = filebot->prev;
|
|
|
|
free_filestruct(filebot->next);
|
|
|
|
filebot->next = NULL;
|
|
|
|
totlines--;
|
|
|
|
totsize--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
* right_side_up isn't NULL, set it to TRUE If the mark begins with
|
|
|
|
* (mark_beginbuf, mark_beginx) and ends with (current, current_x), or
|
|
|
|
* FALSE otherwise. */
|
|
|
|
void mark_order(const filestruct **top, size_t *top_x, const filestruct
|
|
|
|
**bot, size_t *bot_x, bool *right_side_up)
|
|
|
|
{
|
|
|
|
assert(top != NULL && top_x != NULL && bot != NULL && bot_x != NULL);
|
|
|
|
|
|
|
|
if ((current->lineno == mark_beginbuf->lineno && current_x >
|
2004-11-27 21:10:11 +00:00
|
|
|
mark_beginx) || current->lineno > mark_beginbuf->lineno) {
|
2004-11-23 04:08:28 +00:00
|
|
|
*top = mark_beginbuf;
|
|
|
|
*top_x = mark_beginx;
|
|
|
|
*bot = current;
|
|
|
|
*bot_x = current_x;
|
|
|
|
if (right_side_up != NULL)
|
|
|
|
*right_side_up = TRUE;
|
|
|
|
} else {
|
|
|
|
*bot = mark_beginbuf;
|
|
|
|
*bot_x = mark_beginx;
|
|
|
|
*top = current;
|
|
|
|
*top_x = current_x;
|
|
|
|
if (right_side_up != NULL)
|
|
|
|
*right_side_up = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-11-03 22:03:41 +00:00
|
|
|
/* Calculate the number of lines and the number of characters between
|
|
|
|
* begin and end, and return them in lines and size, respectively. */
|
|
|
|
void get_totals(const filestruct *begin, const filestruct *end, int
|
2005-01-27 20:49:07 +00:00
|
|
|
*lines, size_t *size)
|
2004-11-03 22:03:41 +00:00
|
|
|
{
|
|
|
|
const filestruct *f;
|
|
|
|
|
|
|
|
if (lines != NULL)
|
|
|
|
*lines = 0;
|
|
|
|
if (size != NULL)
|
|
|
|
*size = 0;
|
|
|
|
|
|
|
|
/* Go through the lines from begin to end->prev, if we can. */
|
|
|
|
for (f = begin; f != NULL && f != end; f = f->next) {
|
|
|
|
/* Count this line. */
|
2004-11-22 16:04:18 +00:00
|
|
|
if (lines != NULL)
|
|
|
|
(*lines)++;
|
2004-11-03 22:03:41 +00:00
|
|
|
|
|
|
|
/* Count the number of characters on this line. */
|
2004-11-22 16:04:18 +00:00
|
|
|
if (size != NULL) {
|
2005-01-27 20:49:07 +00:00
|
|
|
*size += mbstrlen(f->data);
|
2004-11-03 22:03:41 +00:00
|
|
|
|
2004-11-22 16:04:18 +00:00
|
|
|
/* Count the newline if we have one. */
|
|
|
|
if (f->next != NULL)
|
|
|
|
(*size)++;
|
|
|
|
}
|
2004-11-03 22:03:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Go through the line at end, if we can. */
|
|
|
|
if (f != NULL) {
|
|
|
|
/* Count this line. */
|
2004-11-22 16:04:18 +00:00
|
|
|
if (lines != NULL)
|
|
|
|
(*lines)++;
|
2004-11-03 22:03:41 +00:00
|
|
|
|
|
|
|
/* Count the number of characters on this line. */
|
2004-11-22 16:04:18 +00:00
|
|
|
if (size != NULL) {
|
2005-01-27 20:49:07 +00:00
|
|
|
*size += mbstrlen(f->data);
|
2004-11-03 22:03:41 +00:00
|
|
|
|
2004-11-22 16:04:18 +00:00
|
|
|
/* Count the newline if we have one. */
|
|
|
|
if (f->next != NULL)
|
|
|
|
(*size)++;
|
|
|
|
}
|
2004-11-03 22:03:41 +00:00
|
|
|
}
|
|
|
|
}
|