mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2025-02-02 15:07:36 -05:00
98 lines
1.8 KiB
C
98 lines
1.8 KiB
C
/* Icecast
|
|
*
|
|
* This program is distributed under the GNU General Public License, version 2.
|
|
* A copy of this license is included with this source.
|
|
*
|
|
* Copyright 2000-2004, Jack Moffitt <jack@xiph.org,
|
|
* Michael Smith <msmith@xiph.org>,
|
|
* oddsock <oddsock@xiph.org>,
|
|
* Karl Heyes <karl@xiph.org>
|
|
* and others (see AUTHORS for details).
|
|
*/
|
|
|
|
/* refbuf.c
|
|
**
|
|
** reference counting buffer implementation
|
|
**
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "refbuf.h"
|
|
|
|
#define CATMODULE "refbuf"
|
|
|
|
#include "logging.h"
|
|
|
|
|
|
void refbuf_initialize(void)
|
|
{
|
|
}
|
|
|
|
void refbuf_shutdown(void)
|
|
{
|
|
}
|
|
|
|
refbuf_t *refbuf_new (unsigned int size)
|
|
{
|
|
refbuf_t *refbuf;
|
|
|
|
refbuf = (refbuf_t *)malloc(sizeof(refbuf_t));
|
|
if (refbuf == NULL)
|
|
abort();
|
|
refbuf->data = NULL;
|
|
if (size)
|
|
{
|
|
refbuf->data = malloc (size);
|
|
if (refbuf->data == NULL)
|
|
abort();
|
|
}
|
|
refbuf->len = size;
|
|
refbuf->sync_point = 0;
|
|
refbuf->_count = 1;
|
|
refbuf->next = NULL;
|
|
refbuf->associated = NULL;
|
|
|
|
return refbuf;
|
|
}
|
|
|
|
void refbuf_addref(refbuf_t *self)
|
|
{
|
|
self->_count++;
|
|
}
|
|
|
|
static void refbuf_release_associated (refbuf_t *ref)
|
|
{
|
|
if (ref == NULL)
|
|
return;
|
|
while (ref)
|
|
{
|
|
refbuf_t *to_go = ref;
|
|
ref = to_go->next;
|
|
if ( to_go->_count == 1 )
|
|
to_go->next = NULL;
|
|
refbuf_release (to_go);
|
|
}
|
|
}
|
|
|
|
void refbuf_release(refbuf_t *self)
|
|
{
|
|
if (self == NULL)
|
|
return;
|
|
self->_count--;
|
|
if (self->_count == 0)
|
|
{
|
|
refbuf_release_associated (self->associated);
|
|
if (self->next)
|
|
ICECAST_LOG_ERROR("next not null");
|
|
free(self->data);
|
|
free(self);
|
|
}
|
|
}
|
|
|