Files
wmaker/WINGs/memory.c
T

224 lines
4.3 KiB
C
Raw Normal View History

1998-09-29 22:36:29 +00:00
/*
1998-10-21 14:43:47 +00:00
* Window Maker miscelaneous function library
2004-10-12 21:28:27 +00:00
*
2003-01-16 23:30:45 +00:00
* Copyright (c) 1997-2003 Alfredo K. Kojima
2004-10-12 21:28:27 +00:00
*
1998-09-29 22:36:29 +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
* the Free Software Foundation; either version 2 of the License, or
* (at your option) 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
2013-01-07 21:51:05 +01:00
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
* MA 02110-1301, USA.
1998-09-29 22:36:29 +00:00
*/
#include "wconfig.h"
1998-09-29 22:36:29 +00:00
#include "WUtil.h"
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
#include <string.h>
#include <assert.h>
1999-01-25 19:06:50 +00:00
#include <signal.h>
1998-09-29 22:36:29 +00:00
#ifdef HAVE_STDNORETURN
#include <stdnoreturn.h>
#endif
2010-09-22 18:00:34 +02:00
#ifdef USE_BOEHM_GC
#ifndef GC_DEBUG
#define GC_DEBUG
#endif /* !GC_DEBUG */
1999-10-09 20:07:23 +00:00
#include <gc/gc.h>
2010-09-22 18:00:34 +02:00
#endif /* USE_BOEHM_GC */
1999-10-09 20:07:23 +00:00
1998-09-29 22:36:29 +00:00
#ifndef False
# define False 0
#endif
#ifndef True
# define True 1
#endif
2009-08-20 00:59:40 +02:00
static void defaultHandler(int bla)
1999-01-25 19:06:50 +00:00
{
2009-08-20 00:59:40 +02:00
if (bla)
kill(getpid(), SIGABRT);
else
exit(1);
1999-01-25 19:06:50 +00:00
}
static waborthandler *aborthandler = defaultHandler;
1999-01-25 19:06:50 +00:00
static inline noreturn void wAbort(int bla)
{
(*aborthandler)(bla);
exit(-1);
}
1999-01-25 19:06:50 +00:00
2009-08-20 00:59:40 +02:00
waborthandler *wsetabort(waborthandler * handler)
1999-01-25 19:06:50 +00:00
{
2009-08-20 00:59:40 +02:00
waborthandler *old = aborthandler;
1999-01-25 19:06:50 +00:00
2009-08-20 00:59:40 +02:00
aborthandler = handler;
1999-01-25 19:06:50 +00:00
2009-08-20 00:59:40 +02:00
return old;
1999-01-25 19:06:50 +00:00
}
2009-08-20 00:59:40 +02:00
static int Aborting = 0; /* if we're in the middle of an emergency exit */
1998-09-29 22:36:29 +00:00
static WMHashTable *table = NULL;
2009-08-20 00:59:40 +02:00
void *wmalloc(size_t size)
1998-09-29 22:36:29 +00:00
{
2009-08-20 00:59:40 +02:00
void *tmp;
1999-10-09 20:07:23 +00:00
2009-08-20 00:59:40 +02:00
assert(size > 0);
2000-09-25 19:21:45 +00:00
2010-09-22 18:00:34 +02:00
#ifdef USE_BOEHM_GC
tmp = GC_MALLOC(size);
1999-10-09 20:07:23 +00:00
#else
2009-08-20 00:59:40 +02:00
tmp = malloc(size);
1999-10-09 20:07:23 +00:00
#endif
2009-08-20 00:59:40 +02:00
if (tmp == NULL) {
wwarning("malloc() failed. Retrying after 2s.");
sleep(2);
2010-09-22 18:00:34 +02:00
#ifdef USE_BOEHM_GC
tmp = GC_MALLOC(size);
#else
2009-08-20 00:59:40 +02:00
tmp = malloc(size);
#endif
2009-08-20 00:59:40 +02:00
if (tmp == NULL) {
if (Aborting) {
fputs("Really Bad Error: recursive malloc() failure.", stderr);
exit(-1);
} else {
wfatal("virtual memory exhausted");
Aborting = 1;
wAbort(False);
}
}
}
if (tmp != NULL)
memset(tmp, 0, size);
2009-08-20 00:59:40 +02:00
return tmp;
1998-09-29 22:36:29 +00:00
}
2009-08-20 00:59:40 +02:00
void *wrealloc(void *ptr, size_t newsize)
1998-09-29 22:36:29 +00:00
{
2009-08-20 00:59:40 +02:00
void *nptr;
if (!ptr) {
nptr = wmalloc(newsize);
} else if (newsize == 0) {
wfree(ptr);
nptr = NULL;
} else {
2010-09-22 18:00:34 +02:00
#ifdef USE_BOEHM_GC
nptr = GC_REALLOC(ptr, newsize);
1999-10-09 20:07:23 +00:00
#else
2009-08-20 00:59:40 +02:00
nptr = realloc(ptr, newsize);
1999-10-09 20:07:23 +00:00
#endif
2009-08-20 00:59:40 +02:00
if (nptr == NULL) {
wwarning("realloc() failed. Retrying after 2s.");
sleep(2);
2010-09-22 18:00:34 +02:00
#ifdef USE_BOEHM_GC
nptr = GC_REALLOC(ptr, newsize);
1999-10-09 20:07:23 +00:00
#else
2009-08-20 00:59:40 +02:00
nptr = realloc(ptr, newsize);
1999-10-09 20:07:23 +00:00
#endif
2009-08-20 00:59:40 +02:00
if (nptr == NULL) {
if (Aborting) {
fputs("Really Bad Error: recursive realloc() failure.", stderr);
exit(-1);
} else {
wfatal("virtual memory exhausted");
Aborting = 1;
wAbort(False);
}
}
}
}
return nptr;
1998-09-29 22:36:29 +00:00
}
2009-08-20 00:59:40 +02:00
void *wretain(void *ptr)
1998-09-29 22:36:29 +00:00
{
2009-08-20 00:59:40 +02:00
int *refcount;
2004-10-12 21:28:27 +00:00
2009-08-20 00:59:40 +02:00
if (!table) {
table = WMCreateHashTable(WMIntHashCallbacks);
}
2004-10-12 21:28:27 +00:00
2009-08-20 00:59:40 +02:00
refcount = WMHashGet(table, ptr);
if (!refcount) {
refcount = wmalloc(sizeof(int));
*refcount = 1;
WMHashInsert(table, ptr, refcount);
1998-09-29 22:36:29 +00:00
#ifdef VERBOSE
2009-08-20 00:59:40 +02:00
printf("== %i (%p)\n", *refcount, ptr);
1998-09-29 22:36:29 +00:00
#endif
2009-08-20 00:59:40 +02:00
} else {
(*refcount)++;
1998-09-29 22:36:29 +00:00
#ifdef VERBOSE
2009-08-20 00:59:40 +02:00
printf("+ %i (%p)\n", *refcount, ptr);
1998-09-29 22:36:29 +00:00
#endif
2009-08-20 00:59:40 +02:00
}
2004-10-12 21:28:27 +00:00
2009-08-20 00:59:40 +02:00
return ptr;
1998-09-29 22:36:29 +00:00
}
2009-08-20 00:59:40 +02:00
void wfree(void *ptr)
1999-10-09 20:07:23 +00:00
{
2010-09-22 18:00:34 +02:00
if (ptr)
#ifdef USE_BOEHM_GC
/* This should eventually be removed, once the criss-cross
* of wmalloc()d memory being free()d, malloc()d memory being
* wfree()d, various misuses of calling wfree() on objects
* allocated by libc malloc() and calling libc free() on
* objects allocated by Boehm GC (think external libraries)
* is cleaned up.
*/
if (GC_base(ptr) != 0)
GC_FREE(ptr);
else
free(ptr);
1999-10-09 20:07:23 +00:00
#else
2010-09-22 18:00:34 +02:00
free(ptr);
1999-10-09 20:07:23 +00:00
#endif
2010-09-22 18:00:34 +02:00
ptr = NULL;
1999-10-09 20:07:23 +00:00
}
2009-08-20 00:59:40 +02:00
void wrelease(void *ptr)
1998-09-29 22:36:29 +00:00
{
2009-08-20 00:59:40 +02:00
int *refcount;
refcount = WMHashGet(table, ptr);
if (!refcount) {
wwarning("trying to release unexisting data %p", ptr);
} else {
(*refcount)--;
if (*refcount < 1) {
1998-09-29 22:36:29 +00:00
#ifdef VERBOSE
2009-08-20 00:59:40 +02:00
printf("RELEASING %p\n", ptr);
1998-09-29 22:36:29 +00:00
#endif
2009-08-20 00:59:40 +02:00
WMHashRemove(table, ptr);
wfree(refcount);
wfree(ptr);
}
1998-09-29 22:36:29 +00:00
#ifdef VERBOSE
2009-08-20 00:59:40 +02:00
else {
printf("- %i (%p)\n", *refcount, ptr);
}
1998-09-29 22:36:29 +00:00
#endif
2009-08-20 00:59:40 +02:00
}
1998-09-29 22:36:29 +00:00
}