All checks were successful
Build Packages / build:rpm (rocky8_nocuda) (push) Successful in 10m51s
Build Packages / build:rpm (ubuntu2404_nocuda) (push) Successful in 8m0s
Build Packages / build:rpm (ubuntu2204_nocuda) (push) Successful in 9m6s
Build Packages / build:rpm (rocky9_nocuda) (push) Successful in 10m7s
Build Packages / build:rpm (rocky8_sls9) (push) Successful in 9m47s
Build Packages / Generate python client (push) Successful in 29s
Build Packages / Build documentation (push) Successful in 43s
Build Packages / Create release (push) Has been skipped
Build Packages / build:rpm (rocky9_sls9) (push) Successful in 10m46s
Build Packages / build:rpm (rocky8) (push) Successful in 9m33s
Build Packages / Unit tests (push) Has been skipped
Build Packages / build:rpm (ubuntu2204) (push) Successful in 8m47s
Build Packages / build:rpm (rocky9) (push) Successful in 9m55s
Build Packages / build:rpm (ubuntu2404) (push) Successful in 9m4s
This is an UNSTABLE release. The release has significant modifications and bug fixes, if things go wrong, it is better to revert to 1.0.0-rc.124. * jfjoch_broker: Default EIGER readout time is 20 microseconds * jfjoch_broker: Multiple improvements regarding performance * jfjoch_broker: Image buffer allows to track frames in preparation and sending * jfjoch_broker: Dedicated thread for ZeroMQ transmission to better utilize the image buffer * jfjoch_broker: Experimental implementation of transmission with raw TCP/IP sockets * jfjoch_writer: Fixes regarding properly closing files in long data collections * jfjoch_process: Scale & merge has been significantly improved, but it is not yet integrated into mainstream code Reviewed-on: #34
82 lines
2.4 KiB
C++
82 lines
2.4 KiB
C++
// SPDX-FileCopyrightText: 2024 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#ifndef JUNGFRAUJOCH_STREAMWRITER_H
|
|
#define JUNGFRAUJOCH_STREAMWRITER_H
|
|
|
|
#include <future>
|
|
|
|
#include "../common/Logger.h"
|
|
#include "../image_puller/ImagePuller.h"
|
|
#include "HDF5DataFile.h"
|
|
#include "FileWriter.h"
|
|
|
|
enum class StreamWriterState {Idle, Started, Receiving, Error, Finalized};
|
|
|
|
struct StreamWriterStatistics {
|
|
uint64_t processed_images;
|
|
float performance_MBs;
|
|
float performance_Hz;
|
|
std::string file_prefix;
|
|
std::string run_name;
|
|
uint64_t run_number;
|
|
uint64_t socket_number;
|
|
StreamWriterState state;
|
|
size_t max_puller_fifo_utilization;
|
|
};
|
|
|
|
struct StreamWriterOutput {
|
|
StreamWriterStatistics stats;
|
|
std::vector<HDF5DataFileStatistics> data_file_stats;
|
|
};
|
|
|
|
class StreamWriter {
|
|
std::atomic<bool> abort = false;
|
|
const bool verbose;
|
|
std::string file_done_address;
|
|
|
|
StreamWriterState state = StreamWriterState::Idle;
|
|
|
|
ImagePullerOutput image_puller_output;
|
|
std::unique_ptr<FileWriter> file_writer;
|
|
|
|
std::atomic<uint64_t> processed_images;
|
|
std::atomic<uint64_t> processed_image_size;
|
|
std::chrono::time_point<std::chrono::system_clock> start_time;
|
|
std::chrono::time_point<std::chrono::system_clock> end_time;
|
|
std::string file_prefix;
|
|
std::string run_name;
|
|
uint64_t run_number;
|
|
uint64_t socket_number;
|
|
uint64_t max_image_number;
|
|
std::string writer_notification_zmq_addr;
|
|
std::string err;
|
|
bool mute_data_msg_in_idle = false;
|
|
std::vector<HDF5DataFileStatistics> hdf5_data_file_statistics;
|
|
|
|
bool debug_skip_write_notification = false;
|
|
|
|
ImagePuller &image_puller;
|
|
Logger &logger;
|
|
void CollectImages();
|
|
bool WaitForImage();
|
|
void NotifyReceiverOnFinalizedWrite(const std::string &detector_update_zmq_addr);
|
|
void ProcessStartMessage();
|
|
void ProcessEndMessage();
|
|
void ProcessDataImage();
|
|
void ProcessCalibrationImage();
|
|
void FinalizeDataCollection();
|
|
public:
|
|
StreamWriter(Logger &in_logger,
|
|
ImagePuller &in_image_puller,
|
|
std::string in_file_done_address = "",
|
|
bool verbose = false);
|
|
StreamWriterOutput Run();
|
|
void Cancel();
|
|
StreamWriterStatistics GetStatistics() const;
|
|
void DebugSkipWriteNotification(bool input);
|
|
};
|
|
|
|
|
|
#endif //JUNGFRAUJOCH_STREAMWRITER_H
|