mirror of
https://github.com/Icinga/icinga2.git
synced 2026-02-11 23:03:24 -05:00
I've used the following command to replace the original copyright header
lines in a C-style comment block:
```
$ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f -exec perl -pi -e 's{/\*[^*]*\(\s*c\s*\)\s*(\d{4})\s*Icinga\s+GmbH[^*]*\*/}{// SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n// SPDX-License-Identifier: GPL-2.0-or-later}gi' {} +
```
For files that use shell-style comments (#) like CMakeLists.txt, I've
used this command:
```
$ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f -exec perl -pi -e 's{#.*\(\s*c\s*\)\s(\d{4})\sIcinga\s+GmbH.*}{# SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n# SPDX-License-Identifier: GPL-2.0-or-later}gi' {} +
```
And for SQL files:
```
$ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f \( -name '*.sql' \) -exec perl -pi -e 's{--.*\(c\)\s(\d{4})\sIcinga\sGmbH.*}{-- SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n-- SPDX-License-Identifier: GPL-2.0-or-later}gi' {} +
$ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f \( -name '*.sql' \) -exec perl -pi -e 's{-- Copyright \(c\)\s(\d{4})\sIcinga\s+Development\sTeam.*}{-- SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n-- SPDX-License-Identifier: GPL-2.0-or-later}gi' {} +
```
110 lines
1.8 KiB
C++
110 lines
1.8 KiB
C++
// SPDX-FileCopyrightText: 2012 Icinga GmbH <https://icinga.com>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "base/fifo.hpp"
|
|
|
|
using namespace icinga;
|
|
|
|
/**
|
|
* Destructor for the FIFO class.
|
|
*/
|
|
FIFO::~FIFO()
|
|
{
|
|
free(m_Buffer);
|
|
}
|
|
|
|
/**
|
|
* 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, bool decrease)
|
|
{
|
|
if (m_AllocSize >= newSize && !decrease)
|
|
return;
|
|
|
|
newSize = (newSize / FIFO::BlockSize + 1) * FIFO::BlockSize;
|
|
|
|
if (newSize == m_AllocSize)
|
|
return;
|
|
|
|
auto *newBuffer = static_cast<char *>(realloc(m_Buffer, newSize));
|
|
|
|
if (!newBuffer)
|
|
BOOST_THROW_EXCEPTION(std::bad_alloc());
|
|
|
|
m_Buffer = newBuffer;
|
|
|
|
m_AllocSize = newSize;
|
|
}
|
|
|
|
/**
|
|
* Optimizes memory usage of the FIFO buffer by reallocating
|
|
* and moving the buffer.
|
|
*/
|
|
void FIFO::Optimize()
|
|
{
|
|
if (m_Offset > m_DataSize / 10 && m_Offset - m_DataSize > 1024) {
|
|
std::memmove(m_Buffer, m_Buffer + m_Offset, m_DataSize);
|
|
m_Offset = 0;
|
|
|
|
if (m_DataSize > 0)
|
|
ResizeBuffer(m_DataSize, true);
|
|
|
|
return;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Implements IOQueue::Read.
|
|
*/
|
|
size_t FIFO::Read(void *buffer, size_t count)
|
|
{
|
|
if (count > m_DataSize)
|
|
count = m_DataSize;
|
|
|
|
if (buffer)
|
|
std::memcpy(buffer, m_Buffer + m_Offset, count);
|
|
|
|
m_DataSize -= count;
|
|
m_Offset += count;
|
|
|
|
Optimize();
|
|
|
|
return count;
|
|
}
|
|
|
|
/**
|
|
* Implements IOQueue::Write.
|
|
*/
|
|
void FIFO::Write(const void *buffer, size_t count)
|
|
{
|
|
ResizeBuffer(m_Offset + m_DataSize + count, false);
|
|
std::memcpy(m_Buffer + m_Offset + m_DataSize, buffer, count);
|
|
m_DataSize += count;
|
|
|
|
SignalDataAvailable();
|
|
}
|
|
|
|
void FIFO::Close()
|
|
{ }
|
|
|
|
bool FIFO::IsEof() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
size_t FIFO::GetAvailableBytes() const
|
|
{
|
|
return m_DataSize;
|
|
}
|
|
|
|
bool FIFO::SupportsWaiting() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool FIFO::IsDataAvailable() const
|
|
{
|
|
return m_DataSize > 0;
|
|
}
|