gmio/src/gmio_core/buffer.c

88 lines
2.4 KiB
C
Raw Normal View History

2015-03-24 01:16:37 +08:00
/****************************************************************************
** GeomIO Library
** Copyright FougSys (2 Mar. 2015)
** contact@fougsys.fr
**
** This software is a reusable library whose purpose is to provide complete
** I/O support for various CAD file formats (eg. STL)
**
** This software is governed by the CeCILL-B license under French law and
** abiding by the rules of distribution of free software. You can use,
** modify and/ or redistribute the software under the terms of the CeCILL-B
** license as circulated by CEA, CNRS and INRIA at the following URL
2015-03-30 15:05:25 +08:00
** "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html".
2015-03-24 01:16:37 +08:00
****************************************************************************/
#include "buffer.h"
#include <stdlib.h>
#if defined(GMIO_HAVE_BSD_ALLOCA_FUNC)
# include <alloca.h>
#elif defined(GMIO_HAVE_WIN__ALLOCA_FUNC)
# include "error.h"
# include <windows.h>
# include <malloc.h>
#endif
2015-03-31 16:10:26 +08:00
GMIO_INLINE gmio_buffer_t gmio_buffer_null()
{
gmio_buffer_t buff = { 0 };
return buff;
}
gmio_buffer_t gmio_buffer(
void* ptr, size_t size, void (*deallocate_func)(void*))
2015-03-24 01:16:37 +08:00
{
gmio_buffer_t buff;
buff.ptr = ptr;
buff.size = ptr != NULL ? size : 0;
buff.deallocate_func = deallocate_func;
return buff;
}
gmio_buffer_t gmio_buffer_malloc(size_t size)
{
return gmio_buffer(malloc(size), size, &free);
2015-03-24 01:16:37 +08:00
}
gmio_buffer_t gmio_buffer_calloc(size_t num, size_t size)
{
return gmio_buffer(calloc(num, size), num * size, &free);
}
gmio_buffer_t gmio_buffer_realloc(void* ptr, size_t size)
{
return gmio_buffer(realloc(ptr, size), size, &free);
}
gmio_buffer_t gmio_buffer_alloca(size_t size)
{
#if defined(GMIO_HAVE_BSD_ALLOCA_FUNC)
return gmio_buffer(alloca(size), size, NULL);
#elif defined(GMIO_HAVE_WIN__ALLOCA_FUNC)
# ifdef _MSC_VER
__try {
return gmio_buffer(_alloca(size), size, NULL);
}
__except(GetExceptionCode() == STATUS_STACK_OVERFLOW) {
/* The stack overflowed */
if (_resetstkoflw() == 0)
exit(GMIO_ERROR_UNKNOWN);
return gmio_buffer_null();
}
# else
return gmio_buffer(_alloca(size), size, NULL);
# endif /* _MSC_VER */
#else
GMIO_UNUSED(size);
return gmio_buffer_null();
#endif
}
void gmio_buffer_deallocate(gmio_buffer_t *buffer)
{
if (buffer != NULL && buffer->deallocate_func != NULL)
buffer->deallocate_func(buffer->ptr);
}