Files
Jungfraujoch/common/ImageBuffer.h
T
leonarski_f cc3eb8352c
Build Packages / Unit tests (push) Skipped
Build Packages / build:rpm (rocky8_nocuda) (push) Successful in 9m28s
Build Packages / build:rpm (rocky9_nocuda) (push) Successful in 10m9s
Build Packages / build:rpm (ubuntu2404_nocuda) (push) Successful in 9m47s
Build Packages / build:rpm (ubuntu2204_nocuda) (push) Successful in 10m58s
Build Packages / build:rpm (rocky8_sls9) (push) Successful in 11m39s
Build Packages / build:rpm (rocky8) (push) Successful in 11m43s
Build Packages / build:rpm (rocky9_sls9) (push) Successful in 12m59s
Build Packages / Generate python client (push) Successful in 35s
Build Packages / Build documentation (push) Successful in 59s
Build Packages / Create release (push) Skipped
Build Packages / build:rpm (ubuntu2204) (push) Successful in 11m48s
Build Packages / build:rpm (rocky9) (push) Successful in 12m32s
Build Packages / build:rpm (ubuntu2404) (push) Successful in 10m24s
Build Packages / XDS test (durin plugin) (push) Successful in 7m35s
Build Packages / XDS test (neggia plugin) (push) Successful in 6m50s
Build Packages / XDS test (JFJoch plugin) (push) Successful in 7m40s
Build Packages / DIALS test (push) Successful in 11m19s
v1.0.0-rc.148 (#58)
This is an UNSTABLE release. The release has significant modifications for data processing - in case of troubles go back to 1.0.0-rc.144.

* jfjoch_broker: Improve azimuthal integration (add <I^2> calculation)
* jfjoch_broker: Fixes around indexing, aiming to handle multi-lattice crystals (work in progress, it is not fully integrated)
* jfjoch_writer: Save mean(I), stddev(I), and count(I) for each azimuthal bin

Reviewed-on: #58
2026-06-08 08:30:35 +02:00

95 lines
3.0 KiB
C++

// SPDX-FileCopyrightText: 2024 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
// SPDX-License-Identifier: GPL-3.0-only
#pragma once
#include "ThreadSafeFIFO.h"
#include "DiffractionExperiment.h"
class ZeroCopyReturnValue;
enum class ImageBufferEntryStatus {Empty, InPreparation, Sending, Idle};
struct ImageBufferStatus {
std::vector<int64_t> images_in_the_buffer;
int64_t min_image_number;
int64_t max_image_number;
int64_t total_slots;
int64_t available_slots;
int64_t preparation_slots;
int64_t sending_slots;
std::optional<int64_t> current_counter;
};
struct ImageBufferEntry {
int64_t image_number = -1;
size_t image_size = 0;
int64_t readers = 0;
ImageBufferEntryStatus status = ImageBufferEntryStatus::Empty;
bool indexed = false;
};
class ImageBuffer {
mutable std::mutex m;
std::condition_variable cv_preview_done;
std::condition_variable cv_preparation_done;
std::condition_variable cv_send_done;
uint8_t *buffer;
const size_t buffer_size;
size_t slot_size = 0;
int64_t slot_count = 0;
std::queue<uint32_t> free_slots;
std::vector<ImageBufferEntry> v;
std::vector<ZeroCopyReturnValue> send_buffer_zero_copy_ret_val;
int64_t slots_preparation = 0;
int64_t slots_sending = 0;
int64_t slots_in_preview = 0;
int64_t slots_idle = 0;
bool disable_requests = true; // All requests fail in this state
int64_t counter = 0; // Counter is increased when something changes in the image buffer
std::mutex start_message_mutex;
std::vector<uint8_t> start_message;
// Assumes existing lock
bool FinalizeInternal(std::unique_lock<std::mutex> &ul,
std::chrono::microseconds timeout = std::chrono::milliseconds(2500));
std::optional<uint32_t> getHandle(int64_t image_number) const;
std::optional<uint32_t> getHandleMaxImage() const;
std::optional<uint32_t> getHandleMaxIndexedImage() const;
uint8_t *GetBufferLocation(size_t id); // image metadata + image
public:
constexpr static int64_t MaxImage = -1;
constexpr static int64_t MaxIndexedImage = -2;
explicit ImageBuffer(size_t buffer_size_bytes);
~ImageBuffer();
ImageBuffer(const ImageBuffer &) = delete;
ImageBuffer &operator=(const ImageBuffer &) = delete;
void StartMeasurement(size_t buffer_location_size);
void StartMeasurement(const DiffractionExperiment& experiment);
ZeroCopyReturnValue *GetImageSlot();
void ReadyToSend(uint32_t location, int64_t image_number, size_t image_size, bool indexed);
void ReleaseSlot(uint32_t location);
int64_t GetAvailSlots() const;
bool CheckIfBufferReturned(std::chrono::microseconds timeout);
bool Finalize(std::chrono::microseconds timeout);
bool GetImage(std::vector<uint8_t> &out_v, int64_t image_number = MaxImage);
void SaveStartMessage(const std::vector<uint8_t> &msg);
void GetStartMessage(std::vector<uint8_t> &out_v);
ImageBufferStatus GetStatus() const;
};