vdr/ringbuffer.c

310 lines
6.2 KiB
C
Raw Normal View History

/*
* ringbuffer.c: A ring buffer
*
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* Parts of this file were inspired by the 'ringbuffy.c' from the
* LinuxDVB driver (see linuxtv.org).
*
* $Id: ringbuffer.c 1.17 2003/05/12 17:38:11 kls Exp $
*/
#include "ringbuffer.h"
2002-07-28 12:48:44 +02:00
#include <stdlib.h>
#include <unistd.h>
#include "tools.h"
// --- cRingBuffer -----------------------------------------------------------
cRingBuffer::cRingBuffer(int Size, bool Statistics)
{
size = Size;
statistics = Statistics;
maxFill = 0;
lastPercent = 0;
putTimeout = getTimeout = 0;
2001-08-05 12:23:24 +02:00
}
cRingBuffer::~cRingBuffer()
{
if (statistics)
2002-05-13 16:35:49 +02:00
dsyslog("buffer stats: %d (%d%%) used", maxFill, maxFill * 100 / (size - 1));
2001-08-05 12:23:24 +02:00
}
void cRingBuffer::WaitForPut(void)
{
if (putTimeout) {
putMutex.Lock();
readyForPut.TimedWait(putMutex, putTimeout);
putMutex.Unlock();
}
}
void cRingBuffer::WaitForGet(void)
{
if (getTimeout) {
getMutex.Lock();
readyForGet.TimedWait(getMutex, getTimeout);
getMutex.Unlock();
}
}
void cRingBuffer::EnablePut(void)
{
if (putTimeout)
readyForPut.Broadcast();
}
void cRingBuffer::EnableGet(void)
{
if (getTimeout)
readyForGet.Broadcast();
}
void cRingBuffer::SetTimeouts(int PutTimeout, int GetTimeout)
{
putTimeout = PutTimeout;
getTimeout = GetTimeout;
}
// --- cRingBufferLinear -----------------------------------------------------
2001-08-05 12:23:24 +02:00
cRingBufferLinear::cRingBufferLinear(int Size, int Margin, bool Statistics)
2001-08-05 12:23:24 +02:00
:cRingBuffer(Size, Statistics)
{
margin = Margin;
2001-08-05 12:23:24 +02:00
buffer = NULL;
getThreadPid = -1;
2001-08-05 12:23:24 +02:00
if (Size > 1) { // 'Size - 1' must not be 0!
buffer = MALLOC(uchar, Size);
if (!buffer)
2002-05-13 16:35:49 +02:00
esyslog("ERROR: can't allocate ring buffer (size=%d)", Size);
Clear();
}
else
2002-05-13 16:35:49 +02:00
esyslog("ERROR: illegal size for ring buffer (%d)", Size);
}
2001-08-05 12:23:24 +02:00
cRingBufferLinear::~cRingBufferLinear()
{
free(buffer);
}
2001-08-05 12:23:24 +02:00
int cRingBufferLinear::Available(void)
{
2001-08-05 12:23:24 +02:00
Lock();
int diff = head - tail;
2001-08-05 12:23:24 +02:00
Unlock();
return (diff >= 0) ? diff : Size() + diff - margin;
}
2001-08-05 12:23:24 +02:00
void cRingBufferLinear::Clear(void)
{
2001-08-05 12:23:24 +02:00
Lock();
head = tail = margin;
lastGet = -1;
2001-08-05 12:23:24 +02:00
Unlock();
EnablePut();
EnableGet();
}
2001-08-05 12:23:24 +02:00
int cRingBufferLinear::Put(const uchar *Data, int Count)
{
if (Count > 0) {
2001-08-05 12:23:24 +02:00
Lock();
int rest = Size() - head;
int diff = tail - head;
int free = ((tail < margin) ? rest : (diff > 0) ? diff : Size() + diff - margin) - 1;
if (statistics) {
2001-08-05 12:23:24 +02:00
int fill = Size() - free - 1 + Count;
if (fill >= Size())
fill = Size() - 1;
if (fill > maxFill)
maxFill = fill;
int percent = maxFill * 100 / (Size() - 1) / 5 * 5;
if (abs(lastPercent - percent) >= 5) {
if (percent > 75)
dsyslog("buffer usage: %d%% (pid=%d)", percent, getThreadPid);
lastPercent = percent;
}
}
if (free > 0) {
if (free < Count)
Count = free;
if (Count > maxFill)
maxFill = Count;
if (Count >= rest) {
memcpy(buffer + head, Data, rest);
if (Count - rest)
memcpy(buffer + margin, Data + rest, Count - rest);
head = margin + Count - rest;
}
else {
memcpy(buffer + head, Data, Count);
head += Count;
}
}
else
Count = 0;
Unlock();
EnableGet();
if (Count == 0)
WaitForPut();
}
return Count;
}
uchar *cRingBufferLinear::Get(int &Count)
{
uchar *p = NULL;
Lock();
if (getThreadPid < 0)
getThreadPid = getpid();
int rest = Size() - tail;
if (rest < margin && head < tail) {
int t = margin - rest;
memcpy(buffer + t, buffer + tail, rest);
tail = t;
}
int diff = head - tail;
int cont = (diff >= 0) ? diff : Size() + diff - margin;
if (cont > rest)
cont = rest;
if (cont >= margin) {
p = buffer + tail;
Count = lastGet = cont;
}
Unlock();
if (!p)
WaitForGet();
return p;
}
void cRingBufferLinear::Del(int Count)
{
if (Count > 0 && Count <= lastGet) {
Lock();
tail += Count;
lastGet -= Count;
if (tail >= Size())
tail = margin;
Unlock();
EnablePut();
}
else
esyslog("ERROR: invalid Count in cRingBufferLinear::Del: %d", Count);
}
2001-08-05 12:23:24 +02:00
// --- cFrame ----------------------------------------------------------------
cFrame::cFrame(const uchar *Data, int Count, eFrameType Type, int Index)
{
count = abs(Count);
type = Type;
2001-08-05 12:23:24 +02:00
index = Index;
if (Count < 0)
data = (uchar *)Data;
else {
data = MALLOC(uchar, count);
if (data)
memcpy(data, Data, count);
else
esyslog("ERROR: can't allocate frame buffer (count=%d)", count);
}
2001-08-05 12:23:24 +02:00
next = NULL;
}
cFrame::~cFrame()
{
free(data);
2001-08-05 12:23:24 +02:00
}
// --- cRingBufferFrame ------------------------------------------------------
cRingBufferFrame::cRingBufferFrame(int Size, bool Statistics)
2001-08-05 12:23:24 +02:00
:cRingBuffer(Size, Statistics)
{
head = NULL;
currentFill = 0;
}
cRingBufferFrame::~cRingBufferFrame()
{
Clear();
}
void cRingBufferFrame::Clear(void)
{
Lock();
cFrame *p;
while ((p = Get()) != NULL)
2001-08-05 12:23:24 +02:00
Drop(p);
Unlock();
EnablePut();
EnableGet();
2001-08-05 12:23:24 +02:00
}
bool cRingBufferFrame::Put(cFrame *Frame)
{
if (Frame->Count() <= Free()) {
Lock();
if (head) {
Frame->next = head->next;
head->next = Frame;
head = Frame;
}
2001-08-05 12:23:24 +02:00
else {
head = Frame->next = Frame;
}
currentFill += Frame->Count();
Unlock();
EnableGet();
2001-08-05 12:23:24 +02:00
return true;
}
2001-08-05 12:23:24 +02:00
return false;
}
cFrame *cRingBufferFrame::Get(void)
{
2001-08-05 12:23:24 +02:00
Lock();
cFrame *p = head ? head->next : NULL;
Unlock();
return p;
}
void cRingBufferFrame::Delete(cFrame *Frame)
{
2001-08-05 12:23:24 +02:00
currentFill -= Frame->Count();
delete Frame;
}
void cRingBufferFrame::Drop(cFrame *Frame)
2001-08-05 12:23:24 +02:00
{
Lock();
if (head) {
if (Frame == head->next) {
if (head->next != head) {
head->next = Frame->next;
Delete(Frame);
}
else {
Delete(head);
head = NULL;
}
}
else
2002-05-13 16:35:49 +02:00
esyslog("ERROR: attempt to drop wrong frame from ring buffer!");
2001-08-05 12:23:24 +02:00
}
Unlock();
EnablePut();
}
2001-08-05 12:23:24 +02:00
int cRingBufferFrame::Available(void)
{
Lock();
int av = currentFill;
Unlock();
return av;
}