2012-12-30 18:28:10 +00:00
|
|
|
/*
|
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
*
|
|
|
|
* 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 Foundation,
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
|
|
|
#include "BLI_buffer.h"
|
|
|
|
#include "BLI_utildefines.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2013-01-02 05:00:02 +00:00
|
|
|
static void *buffer_alloc(BLI_Buffer *buffer, int len)
|
|
|
|
{
|
|
|
|
return ((buffer->flag & BLI_BUFFER_USE_CALLOC) ?
|
|
|
|
MEM_callocN : MEM_mallocN)
|
|
|
|
(buffer->elem_size * len, "BLI_Buffer.data");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *buffer_realloc(BLI_Buffer *buffer, int len)
|
|
|
|
{
|
|
|
|
return ((buffer->flag & BLI_BUFFER_USE_CALLOC) ?
|
|
|
|
MEM_recallocN : MEM_reallocN)
|
|
|
|
(buffer->data, (buffer->elem_size * len));
|
|
|
|
}
|
|
|
|
|
2012-12-30 18:28:10 +00:00
|
|
|
void BLI_buffer_resize(BLI_Buffer *buffer, int new_count)
|
|
|
|
{
|
|
|
|
if (new_count > buffer->alloc_count) {
|
2013-01-02 05:00:02 +00:00
|
|
|
if (buffer->flag & BLI_BUFFER_USE_STATIC) {
|
2012-12-30 18:28:10 +00:00
|
|
|
void *orig = buffer->data;
|
2013-01-02 05:00:02 +00:00
|
|
|
|
|
|
|
buffer->data = buffer_alloc(buffer, new_count);
|
2012-12-30 18:28:10 +00:00
|
|
|
memcpy(buffer->data, orig, buffer->elem_size * buffer->count);
|
|
|
|
buffer->alloc_count = new_count;
|
2013-01-02 05:00:02 +00:00
|
|
|
buffer->flag &= ~BLI_BUFFER_USE_STATIC;
|
2012-12-30 18:28:10 +00:00
|
|
|
}
|
|
|
|
else {
|
2013-01-02 05:00:02 +00:00
|
|
|
if (buffer->alloc_count && (new_count < buffer->alloc_count * 2)) {
|
2012-12-30 18:28:10 +00:00
|
|
|
buffer->alloc_count *= 2;
|
2013-01-02 05:00:02 +00:00
|
|
|
}
|
|
|
|
else {
|
2012-12-30 18:28:10 +00:00
|
|
|
buffer->alloc_count = new_count;
|
2013-01-02 05:00:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (buffer->data) {
|
|
|
|
buffer->data = buffer_realloc(buffer, buffer->alloc_count);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
buffer->data = buffer_alloc(buffer, buffer->alloc_count);
|
|
|
|
}
|
2012-12-30 18:28:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer->count = new_count;
|
|
|
|
}
|
|
|
|
|
2013-03-16 00:12:14 +00:00
|
|
|
/* callers use BLI_buffer_free */
|
|
|
|
void _bli_buffer_free(BLI_Buffer *buffer)
|
2012-12-30 18:28:10 +00:00
|
|
|
{
|
2013-01-02 05:00:02 +00:00
|
|
|
if ((buffer->flag & BLI_BUFFER_USE_STATIC) == 0) {
|
|
|
|
if (buffer->data) {
|
|
|
|
MEM_freeN(buffer->data);
|
|
|
|
}
|
|
|
|
}
|
2012-12-30 18:28:10 +00:00
|
|
|
memset(buffer, 0, sizeof(*buffer));
|
|
|
|
}
|