icinga2/base/fifo.cpp

173 lines
4.5 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
* *
* 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 *
2012-05-11 13:33:57 +02:00
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
2012-03-28 13:24:49 +02:00
#include "i2-base.h"
2012-06-15 19:32:41 +02:00
using std::bad_alloc;
2012-03-28 13:24:49 +02:00
using namespace icinga;
/**
* Constructor for the FIFO class.
*/
2012-03-28 13:24:49 +02:00
FIFO::FIFO(void)
{
m_Buffer = NULL;
m_DataSize = 0;
m_AllocSize = 0;
2012-03-28 13:24:49 +02:00
m_Offset = 0;
}
/**
* Destructor for the FIFO class.
*/
2012-03-28 13:24:49 +02:00
FIFO::~FIFO(void)
{
2012-05-26 20:19:32 +02:00
free(m_Buffer);
2012-03-28 13:24:49 +02:00
}
/**
* Resizes the FIFO's buffer so that it is at least newSize bytes long.
*
* @param newSize The minimum new size of the FIFO buffer.
*/
void FIFO::ResizeBuffer(size_t newSize)
2012-03-28 13:24:49 +02:00
{
if (m_AllocSize >= newSize)
return;
2012-03-28 13:24:49 +02:00
newSize = (newSize / FIFO::BlockSize + 1) * FIFO::BlockSize;
2012-03-28 13:24:49 +02:00
2012-05-26 20:19:32 +02:00
char *newBuffer = (char *)realloc(m_Buffer, newSize);
if (newBuffer == NULL)
throw bad_alloc();
2012-05-27 00:27:55 +02:00
m_Buffer = newBuffer;
m_AllocSize = newSize;
2012-03-28 13:24:49 +02:00
}
/**
* Optimizes memory usage of the FIFO buffer by reallocating
* and moving the buffer.
*/
2012-03-28 13:24:49 +02:00
void FIFO::Optimize(void)
{
//char *newBuffer;
2012-03-28 13:24:49 +02:00
if (m_DataSize < m_Offset) {
memcpy(m_Buffer, m_Buffer + m_Offset, m_DataSize);
2012-03-28 13:24:49 +02:00
m_Offset = 0;
return;
}
/*newBuffer = (char *)ResizeBuffer(NULL, 0, m_BufferSize - m_Offset);
2012-03-28 13:24:49 +02:00
if (newBuffer == NULL)
return;
memcpy(newBuffer, m_Buffer + m_Offset, m_BufferSize - m_Offset);
free(m_Buffer);
m_Buffer = newBuffer;
m_BufferSize -= m_Offset;
m_Offset = 0;*/
2012-03-28 13:24:49 +02:00
}
/**
* Returns the number of bytes that are contained in the FIFO.
*
* @returns The number of bytes.
*/
2012-03-28 13:24:49 +02:00
size_t FIFO::GetSize(void) const
{
return m_DataSize;
2012-03-28 13:24:49 +02:00
}
/**
* Returns a pointer to the start of the read buffer.
*
* @returns Pointer to the read buffer.
*/
2012-03-28 19:50:55 +02:00
const void *FIFO::GetReadBuffer(void) const
2012-03-28 13:24:49 +02:00
{
return m_Buffer + m_Offset;
}
/**
* Reads data from the FIFO and places it in the specified buffer.
*
* @param buffer The buffer where the data should be placed (can be NULL if
* the reader is not interested in the data).
* @param count The number of bytes to read.
* @returns The number of bytes read which may be less than what was requested.
*/
2012-03-28 13:24:49 +02:00
size_t FIFO::Read(void *buffer, size_t count)
{
count = (count <= m_DataSize) ? count : m_DataSize;
2012-03-28 13:24:49 +02:00
if (buffer != NULL)
memcpy(buffer, m_Buffer + m_Offset, count);
m_DataSize -= count;
2012-03-28 13:24:49 +02:00
m_Offset += count;
Optimize();
return count;
}
/**
* Returns a pointer to the start of the write buffer.
*
* @param count Minimum size of the buffer; on return this parameter
* contains the actual size of the available buffer which can
* be larger than the requested size.
*/
void *FIFO::GetWriteBuffer(size_t *count)
2012-03-28 13:24:49 +02:00
{
ResizeBuffer(m_Offset + m_DataSize + *count);
*count = m_AllocSize - m_Offset - m_DataSize;
2012-03-28 19:50:55 +02:00
return m_Buffer + m_Offset + m_DataSize;
2012-03-28 19:50:55 +02:00
}
/**
* Writes data to the FIFO.
*
* @param buffer The data that is to be written (can be NULL if the writer has
* already filled the write buffer, e.g. via GetWriteBuffer()).
* @param count The number of bytes to write.
* @returns The number of bytes written
*/
2012-03-28 19:50:55 +02:00
size_t FIFO::Write(const void *buffer, size_t count)
{
if (buffer != NULL) {
size_t bufferSize = count;
void *target_buffer = GetWriteBuffer(&bufferSize);
2012-03-28 19:50:55 +02:00
memcpy(target_buffer, buffer, count);
}
m_DataSize += count;
2012-03-28 19:50:55 +02:00
2012-03-28 13:24:49 +02:00
return count;
}