mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-05-01 18:12:23 +02:00
93 lines
2.8 KiB
C++
93 lines
2.8 KiB
C++
#include <cstring>
|
|
#include "ImageAssembler.hpp"
|
|
|
|
using namespace std;
|
|
using namespace core_buffer;
|
|
|
|
ImageAssembler::ImageAssembler(const size_t n_modules) :
|
|
n_modules_(n_modules),
|
|
image_buffer_slot_n_bytes_(BUFFER_BLOCK_SIZE * MODULE_N_BYTES * n_modules_)
|
|
{
|
|
image_buffer_ = new char[IA_N_SLOTS * image_buffer_slot_n_bytes_];
|
|
metadata_buffer_ = new ImageMetadataBlock[IA_N_SLOTS];
|
|
buffer_status_ = new atomic_int[IA_N_SLOTS];
|
|
|
|
for (size_t i=0; i<IA_N_SLOTS; i++) {
|
|
free_slot(i);
|
|
}
|
|
}
|
|
|
|
ImageAssembler::~ImageAssembler()
|
|
{
|
|
delete[] image_buffer_;
|
|
delete[] metadata_buffer_;
|
|
}
|
|
|
|
bool ImageAssembler::is_slot_free(const int bunch_id)
|
|
{
|
|
return buffer_status_[bunch_id % IA_N_SLOTS].load() > 0;
|
|
}
|
|
|
|
bool ImageAssembler::is_slot_full(const int bunch_id)
|
|
{
|
|
return buffer_status_[bunch_id % IA_N_SLOTS].load() == 0;
|
|
}
|
|
|
|
void ImageAssembler::process(
|
|
int bunch_id,
|
|
const int i_module,
|
|
const BufferBinaryBlock* block_buffer)
|
|
{
|
|
bunch_id %= IA_N_SLOTS;
|
|
|
|
// TODO: Temp workaround. Make proper initialization.
|
|
if (i_module == 0) {
|
|
metadata_buffer_[bunch_id].block_start_pulse_id =
|
|
block_buffer->frame[0].metadata.pulse_id;
|
|
metadata_buffer_[bunch_id].block_stop_pulse_id =
|
|
block_buffer->frame[BUFFER_BLOCK_SIZE-1].metadata.pulse_id;
|
|
}
|
|
|
|
size_t slot_offset = bunch_id * image_buffer_slot_n_bytes_;
|
|
size_t module_image_offset = i_module * MODULE_N_BYTES;
|
|
|
|
for (size_t i_pulse=0; i_pulse < BUFFER_BLOCK_SIZE; i_pulse++) {
|
|
size_t image_offset = i_pulse * MODULE_N_BYTES * n_modules_;
|
|
|
|
memcpy(
|
|
image_buffer_ + slot_offset + image_offset + module_image_offset,
|
|
&(block_buffer->frame[i_pulse].data[0]),
|
|
MODULE_N_BYTES);
|
|
|
|
// TODO: Temp workaround. We need to synchronize this access.
|
|
if (i_module == 0) {
|
|
metadata_buffer_[bunch_id].pulse_id[i_pulse] =
|
|
block_buffer->frame[i_pulse].metadata.pulse_id;
|
|
metadata_buffer_[bunch_id].frame_index[i_pulse] =
|
|
block_buffer->frame[i_pulse].metadata.frame_index;
|
|
metadata_buffer_[bunch_id].daq_rec[i_pulse] =
|
|
block_buffer->frame[i_pulse].metadata.daq_rec;
|
|
// metadata_buffer_[slot_id].is_good_image[i_pulse] =
|
|
// block_buffer->frame[i_pulse].is_good_image.pulse_id;
|
|
}
|
|
}
|
|
|
|
buffer_status_[bunch_id].fetch_sub(1);
|
|
}
|
|
|
|
void ImageAssembler::free_slot(const int bunch_id)
|
|
{
|
|
buffer_status_[bunch_id % IA_N_SLOTS].store(n_modules_);
|
|
}
|
|
|
|
ImageMetadataBlock* ImageAssembler::get_metadata_buffer(const int bunch_id)
|
|
{
|
|
return &(metadata_buffer_[bunch_id % IA_N_SLOTS]);
|
|
}
|
|
|
|
char* ImageAssembler::get_data_buffer(const int bunch_id)
|
|
{
|
|
return image_buffer_ +
|
|
((bunch_id % IA_N_SLOTS) * image_buffer_slot_n_bytes_);
|
|
}
|