Files
sf_daq_buffer/src/RingBuffer.cpp
T
2018-01-10 14:14:14 +01:00

212 lines
6.6 KiB
C++

#include "RingBuffer.hpp"
#include <stdexcept>
#include <chrono>
#include <thread>
#include <sstream>
#include <cstring>
#include <iostream>
#include <cstddef>
using namespace std;
RingBuffer::RingBuffer(size_t n_slots) : n_slots(n_slots), ringbuffer_slots(n_slots, 0){
#ifdef DEBUG_OUTPUT
cout << "[RingBuffer::RingBuffer] Creating ring buffer with n_slots " << n_slots << endl;
#endif
}
RingBuffer::~RingBuffer() {
// If the frame buffer is allocated, free it.
if (frame_data_buffer != NULL) {
free(frame_data_buffer);
frame_data_buffer = NULL;
}
}
void RingBuffer::initialize(size_t slot_size)
{
// Check if the ring buffer is already initialized.
if (frame_data_buffer != NULL) {
stringstream error_message;
error_message << "Ring buffer already initialized." << endl;
throw runtime_error(error_message.str());
}
#ifdef DEBUG_OUTPUT
cout << "[RingBuffer::initialize] Initializing ring buffer with slot_size " << slot_size << endl;
#endif
this->write_index = 0;
this->slot_size = slot_size;
this->buffer_size = slot_size * n_slots;
this->frame_data_buffer = new char[buffer_size];
this->buffer_used_slots = 0;
this->ring_buffer_initialized = true;
#ifdef DEBUG_OUTPUT
cout << "[RingBuffer::initialize] Total buffer_size " << buffer_size << endl;
#endif
}
void RingBuffer::write(FrameMetadata &metadata, char* data)
{
// Initialize the buffer on the first write.
if (!ring_buffer_initialized) {
initialize(metadata.frame_bytes_size);
}
// All images must fit in the ring buffer.
if (metadata.frame_bytes_size > slot_size) {
stringstream error_message;
error_message << "Received frame index "<< metadata.frame_index <<" that is too large for ring buffer slot." << endl;
error_message << "RingBuffer slot size " << slot_size << ", but frame bytes size " << metadata.frame_bytes_size << endl;
throw runtime_error(error_message.str());
}
// Check and reserve slot in the buffer.
ringbuffer_slots_mutex.lock();
if (!ringbuffer_slots[write_index]) {
ringbuffer_slots[write_index] = 1;
// Set the write index in the FrameMetadata object.
metadata.buffer_slot_index = write_index;
#ifdef DEBUG_OUTPUT
cout << "[RingBuffer::write] Ring buffer slot " << metadata.buffer_slot_index << " reserved for frame_index " << metadata.frame_index << endl;
#endif
// Increase and wrap the write index around if needed.
write_index = (write_index + 1) % n_slots;
// Keep track of the number of used slots.
buffer_used_slots++;
} else {
stringstream error_message;
error_message << "Ring buffer is full. Collision at write_index = " << write_index << endl;
throw runtime_error(error_message.str());
}
ringbuffer_slots_mutex.unlock();
// Write to the buffer. The slot is already reserved.
char* slot_memory_address = get_buffer_slot_address(metadata.buffer_slot_index);
memcpy(slot_memory_address, data, metadata.frame_bytes_size);
#ifdef DEBUG_OUTPUT
cout << "[RingBuffer::write] Copied " << metadata.frame_bytes_size << " frame bytes to buffer_slot_index " << metadata.buffer_slot_index << endl;
#endif
frame_metadata_queue_mutex.lock();
// Send the metadata header to writing process.
frame_metadata_queue.push_back(metadata);
frame_metadata_queue_mutex.unlock();
#ifdef DEBUG_OUTPUT
cout << "[RingBuffer] Metadata for frame_index " << metadata.frame_index << " added to metadata queue." << endl;
#endif
}
char* RingBuffer::get_buffer_slot_address(size_t buffer_slot_index) {
char* slot_memory_address = frame_data_buffer + (buffer_slot_index * slot_size);
// Check if the memory address is valid.
if (slot_memory_address > frame_data_buffer + buffer_size) {
stringstream error_message;
error_message << "Calculated ring buffer address is out of bound for buffer_slot_index " << buffer_slot_index << endl;
throw runtime_error(error_message.str());
}
#ifdef DEBUG_OUTPUT
cout << "[RingBuffer::get_buffer_slot_address] For buffer_slot_index " << buffer_slot_index << " the calculated memory address is " << long(slot_memory_address) << endl;
#endif
return slot_memory_address;
}
pair<FrameMetadata, char*> RingBuffer::read()
{
FrameMetadata frame_metadata;
while (1) {
frame_metadata_queue_mutex.lock();
if (frame_metadata_queue.empty()) {
frame_metadata_queue_mutex.unlock();
continue;
} else {
frame_metadata = frame_metadata_queue.front();
frame_metadata_queue.pop_front();
frame_metadata_queue_mutex.unlock();
#ifdef DEBUG_OUTPUT
cout << "[RingBuffer::read] Received metadata for frame_index " << frame_metadata.frame_index << endl;
#endif
}
// Check if the references ring buffer slot is valid.
ringbuffer_slots_mutex.lock();
if (!ringbuffer_slots[frame_metadata.buffer_slot_index]) {
stringstream error_message;
error_message << "Ring buffer slot referenced in message header " << frame_metadata.buffer_slot_index << " is empty." << endl;
throw runtime_error(error_message.str());
}
ringbuffer_slots_mutex.unlock();
// Memory address of frame in buffer.
char* slot_memory_address = get_buffer_slot_address(frame_metadata.buffer_slot_index);
return {frame_metadata, slot_memory_address};
};
}
void RingBuffer::release(size_t buffer_slot_index) {
// Cannot release a slot index that is out of range.
if (buffer_slot_index >= n_slots) {
stringstream error_message;
error_message << "Slot index to release " << buffer_slot_index << " is out of range. Ring buffer n_slots = " << n_slots << endl;
throw runtime_error(error_message.str());
}
// Release the buffer slot.
ringbuffer_slots_mutex.lock();
if (ringbuffer_slots[buffer_slot_index]) {
ringbuffer_slots[buffer_slot_index] = 0;
// Keep track of the number of used slots.
buffer_used_slots--;
} else {
stringstream error_message;
error_message << "Cannot release empty ring buffer slot " << buffer_slot_index << endl;
throw runtime_error(error_message.str());
}
ringbuffer_slots_mutex.unlock();
}
bool RingBuffer::is_empty(){
ringbuffer_slots_mutex.lock();
bool is_empty = buffer_used_slots == 0;
ringbuffer_slots_mutex.unlock();
return is_empty;
}