5f2a1d6536
This is the gsoc-2011 project to clean up and backport multibyte support from other nvi forks in a form we can use. USE_WIDECHAR is on unless building for the rescue crunchgen. This should allow editing in the native locale encoding. USE_ICONV depends on make.conf having 'WITH_ICONV=YES' for now. This adds the ability to do things like edit a KOI8-R file while having $LANG set to (say) en_US.UTF-8. iconv is used to transcode the characters for display. Other points: * It uses gencat and catopen/etc instead of homegrown msg catalog stuff. * A lot of stuff has been trimmed out, eg: the perl and tcl bindings which we could never use in base anyway. * It uses ncursesw when in widechar mode. This could be interesting. GSoC info: http://www.google-melange.com/gsoc/proposal/review/google/gsoc2011/zy/1 Repo at: https://github.com/lichray/nvi2 Obtained from: Zhihao Yuan <lichray@gmail.com>
241 lines
7.2 KiB
C
241 lines
7.2 KiB
C
/*-
|
|
* Copyright (c) 1993, 1994
|
|
* The Regents of the University of California. All rights reserved.
|
|
* Copyright (c) 1993, 1994, 1995, 1996
|
|
* Keith Bostic. All rights reserved.
|
|
*
|
|
* See the LICENSE file for redistribution information.
|
|
*
|
|
* $Id: mem.h,v 10.17 2012/10/07 00:40:29 zy Exp $
|
|
*/
|
|
|
|
#ifdef DEBUG
|
|
#define CHECK_TYPE(type, var) \
|
|
type L__lp __attribute__((unused)) = var;
|
|
#else
|
|
#define CHECK_TYPE(type, var)
|
|
#endif
|
|
|
|
/* Increase the size of a malloc'd buffer. Two versions, one that
|
|
* returns, one that jumps to an error label.
|
|
*/
|
|
#define BINC_GOTO(sp, type, lp, llen, nlen) { \
|
|
CHECK_TYPE(type *, lp) \
|
|
void *L__bincp; \
|
|
if ((nlen) > llen) { \
|
|
if ((L__bincp = binc(sp, lp, &(llen), nlen)) == NULL) \
|
|
goto alloc_err; \
|
|
/* \
|
|
* !!! \
|
|
* Possible pointer conversion. \
|
|
*/ \
|
|
lp = L__bincp; \
|
|
} \
|
|
}
|
|
#define BINC_GOTOC(sp, lp, llen, nlen) \
|
|
BINC_GOTO(sp, char, lp, llen, nlen)
|
|
#define BINC_GOTOW(sp, lp, llen, nlen) \
|
|
BINC_GOTO(sp, CHAR_T, lp, llen, (nlen) * sizeof(CHAR_T))
|
|
#define BINC_RET(sp, type, lp, llen, nlen) { \
|
|
CHECK_TYPE(type *, lp) \
|
|
void *L__bincp; \
|
|
if ((nlen) > llen) { \
|
|
if ((L__bincp = binc(sp, lp, &(llen), nlen)) == NULL) \
|
|
return (1); \
|
|
/* \
|
|
* !!! \
|
|
* Possible pointer conversion. \
|
|
*/ \
|
|
lp = L__bincp; \
|
|
} \
|
|
}
|
|
#define BINC_RETC(sp, lp, llen, nlen) \
|
|
BINC_RET(sp, char, lp, llen, nlen)
|
|
#define BINC_RETW(sp, lp, llen, nlen) \
|
|
BINC_RET(sp, CHAR_T, lp, llen, (nlen) * sizeof(CHAR_T))
|
|
|
|
/*
|
|
* Get some temporary space, preferably from the global temporary buffer,
|
|
* from a malloc'd buffer otherwise. Two versions, one that returns, one
|
|
* that jumps to an error label.
|
|
*/
|
|
#define GET_SPACE_GOTO(sp, type, bp, blen, nlen) { \
|
|
CHECK_TYPE(type *, bp) \
|
|
GS *L__gp = (sp) == NULL ? NULL : (sp)->gp; \
|
|
if (L__gp == NULL || F_ISSET(L__gp, G_TMP_INUSE)) { \
|
|
bp = NULL; \
|
|
blen = 0; \
|
|
BINC_GOTO(sp, type, bp, blen, nlen); \
|
|
} else { \
|
|
BINC_GOTOC(sp, L__gp->tmp_bp, L__gp->tmp_blen, nlen); \
|
|
bp = (type *) L__gp->tmp_bp; \
|
|
blen = L__gp->tmp_blen; \
|
|
F_SET(L__gp, G_TMP_INUSE); \
|
|
} \
|
|
}
|
|
#define GET_SPACE_GOTOC(sp, bp, blen, nlen) \
|
|
GET_SPACE_GOTO(sp, char, bp, blen, nlen)
|
|
#define GET_SPACE_GOTOW(sp, bp, blen, nlen) \
|
|
GET_SPACE_GOTO(sp, CHAR_T, bp, blen, (nlen) * sizeof(CHAR_T))
|
|
#define GET_SPACE_RET(sp, type, bp, blen, nlen) { \
|
|
CHECK_TYPE(type *, bp) \
|
|
GS *L__gp = (sp) == NULL ? NULL : (sp)->gp; \
|
|
if (L__gp == NULL || F_ISSET(L__gp, G_TMP_INUSE)) { \
|
|
bp = NULL; \
|
|
blen = 0; \
|
|
BINC_RET(sp, type, bp, blen, nlen); \
|
|
} else { \
|
|
BINC_RETC(sp, L__gp->tmp_bp, L__gp->tmp_blen, nlen); \
|
|
bp = (type *) L__gp->tmp_bp; \
|
|
blen = L__gp->tmp_blen; \
|
|
F_SET(L__gp, G_TMP_INUSE); \
|
|
} \
|
|
}
|
|
#define GET_SPACE_RETC(sp, bp, blen, nlen) \
|
|
GET_SPACE_RET(sp, char, bp, blen, nlen)
|
|
#define GET_SPACE_RETW(sp, bp, blen, nlen) \
|
|
GET_SPACE_RET(sp, CHAR_T, bp, blen, (nlen) * sizeof(CHAR_T))
|
|
|
|
/*
|
|
* Add space to a GET_SPACE returned buffer. Two versions, one that
|
|
* returns, one that jumps to an error label.
|
|
*/
|
|
#define ADD_SPACE_GOTO(sp, type, bp, blen, nlen) { \
|
|
CHECK_TYPE(type *, bp) \
|
|
GS *L__gp = (sp) == NULL ? NULL : (sp)->gp; \
|
|
if (L__gp == NULL || bp == (type *)L__gp->tmp_bp) { \
|
|
F_CLR(L__gp, G_TMP_INUSE); \
|
|
BINC_GOTOC(sp, L__gp->tmp_bp, L__gp->tmp_blen, nlen); \
|
|
bp = (type *) L__gp->tmp_bp; \
|
|
blen = L__gp->tmp_blen; \
|
|
F_SET(L__gp, G_TMP_INUSE); \
|
|
} else \
|
|
BINC_GOTO(sp, type, bp, blen, nlen); \
|
|
}
|
|
#define ADD_SPACE_GOTOC(sp, bp, blen, nlen) \
|
|
ADD_SPACE_GOTO(sp, char, bp, blen, nlen)
|
|
#define ADD_SPACE_GOTOW(sp, bp, blen, nlen) \
|
|
ADD_SPACE_GOTO(sp, CHAR_T, bp, blen, (nlen) * sizeof(CHAR_T))
|
|
#define ADD_SPACE_RET(sp, type, bp, blen, nlen) { \
|
|
CHECK_TYPE(type *, bp) \
|
|
GS *L__gp = (sp) == NULL ? NULL : (sp)->gp; \
|
|
if (L__gp == NULL || bp == (type *)L__gp->tmp_bp) { \
|
|
F_CLR(L__gp, G_TMP_INUSE); \
|
|
BINC_RETC(sp, L__gp->tmp_bp, L__gp->tmp_blen, nlen); \
|
|
bp = (type *) L__gp->tmp_bp; \
|
|
blen = L__gp->tmp_blen; \
|
|
F_SET(L__gp, G_TMP_INUSE); \
|
|
} else \
|
|
BINC_RET(sp, type, bp, blen, nlen); \
|
|
}
|
|
#define ADD_SPACE_RETC(sp, bp, blen, nlen) \
|
|
ADD_SPACE_RET(sp, char, bp, blen, nlen)
|
|
#define ADD_SPACE_RETW(sp, bp, blen, nlen) \
|
|
ADD_SPACE_RET(sp, CHAR_T, bp, blen, (nlen) * sizeof(CHAR_T))
|
|
|
|
/* Free a GET_SPACE returned buffer. */
|
|
#define FREE_SPACE(sp, bp, blen) { \
|
|
GS *L__gp = (sp) == NULL ? NULL : (sp)->gp; \
|
|
if (L__gp != NULL && bp == L__gp->tmp_bp) \
|
|
F_CLR(L__gp, G_TMP_INUSE); \
|
|
else \
|
|
free(bp); \
|
|
}
|
|
#define FREE_SPACEW(sp, bp, blen) { \
|
|
CHECK_TYPE(CHAR_T *, bp) \
|
|
FREE_SPACE(sp, (char *)bp, blen); \
|
|
}
|
|
|
|
/*
|
|
* Malloc a buffer, casting the return pointer. Various versions.
|
|
*
|
|
* !!!
|
|
* The cast should be unnecessary, malloc(3) and friends return void *'s,
|
|
* which is all we need. However, some systems that nvi needs to run on
|
|
* don't do it right yet, resulting in the compiler printing out roughly
|
|
* a million warnings. After awhile, it seemed easier to put the casts
|
|
* in instead of explaining it all the time.
|
|
*/
|
|
#define CALLOC(sp, p, cast, nmemb, size) { \
|
|
if ((p = (cast)calloc(nmemb, size)) == NULL) \
|
|
msgq(sp, M_SYSERR, NULL); \
|
|
}
|
|
#define CALLOC_GOTO(sp, p, cast, nmemb, size) { \
|
|
if ((p = (cast)calloc(nmemb, size)) == NULL) \
|
|
goto alloc_err; \
|
|
}
|
|
#define CALLOC_NOMSG(sp, p, cast, nmemb, size) { \
|
|
p = (cast)calloc(nmemb, size); \
|
|
}
|
|
#define CALLOC_RET(sp, p, cast, nmemb, size) { \
|
|
if ((p = (cast)calloc(nmemb, size)) == NULL) { \
|
|
msgq(sp, M_SYSERR, NULL); \
|
|
return (1); \
|
|
} \
|
|
}
|
|
|
|
#define MALLOC(sp, p, cast, size) { \
|
|
if ((p = (cast)malloc(size)) == NULL) \
|
|
msgq(sp, M_SYSERR, NULL); \
|
|
}
|
|
#define MALLOC_GOTO(sp, p, cast, size) { \
|
|
if ((p = (cast)malloc(size)) == NULL) \
|
|
goto alloc_err; \
|
|
}
|
|
#define MALLOC_NOMSG(sp, p, cast, size) { \
|
|
p = (cast)malloc(size); \
|
|
}
|
|
#define MALLOC_RET(sp, p, cast, size) { \
|
|
if ((p = (cast)malloc(size)) == NULL) { \
|
|
msgq(sp, M_SYSERR, NULL); \
|
|
return (1); \
|
|
} \
|
|
}
|
|
|
|
/*
|
|
* Resize a buffer, free any already held memory if we can't get more.
|
|
* FreeBSD's reallocf(3) does the same thing, but it's not portable yet.
|
|
*/
|
|
#define REALLOC(sp, p, cast, size) { \
|
|
cast newp; \
|
|
if ((newp = (cast)realloc(p, size)) == NULL) { \
|
|
if (p != NULL) \
|
|
free(p); \
|
|
msgq(sp, M_SYSERR, NULL); \
|
|
} \
|
|
p = newp; \
|
|
}
|
|
|
|
/*
|
|
* Versions of bcopy(3) and bzero(3) that use the size of the
|
|
* initial pointer to figure out how much memory to manipulate.
|
|
*/
|
|
#define BCOPY(p, t, len) bcopy(p, t, (len) * sizeof(*(p)))
|
|
#define BZERO(p, len) bzero(p, (len) * sizeof(*(p)))
|
|
|
|
/*
|
|
* p2roundup --
|
|
* Get next power of 2; convenient for realloc.
|
|
*
|
|
* Reference: FreeBSD /usr/src/lib/libc/stdio/getdelim.c
|
|
*/
|
|
static __inline size_t
|
|
p2roundup(size_t n)
|
|
{
|
|
n--;
|
|
n |= n >> 1;
|
|
n |= n >> 2;
|
|
n |= n >> 4;
|
|
n |= n >> 8;
|
|
n |= n >> 16;
|
|
#if SIZE_T_MAX > 0xffffffffU
|
|
n |= n >> 32;
|
|
#endif
|
|
n++;
|
|
return (n);
|
|
}
|
|
|
|
/* Additional TAILQ helper. */
|
|
#define TAILQ_ENTRY_ISVALID(elm, field) \
|
|
((elm)->field.tqe_prev != NULL)
|