21a8ea51ee
Build Packages / build:rpm (ubuntu2404_nocuda) (push) Failing after 8m56s
Build Packages / build:rpm (rocky8_nocuda) (push) Failing after 10m5s
Build Packages / build:rpm (rocky9_nocuda) (push) Failing after 11m41s
Build Packages / build:rpm (ubuntu2204_nocuda) (push) Failing after 11m39s
Build Packages / build:rpm (rocky9_sls9) (push) Failing after 11m42s
Build Packages / build:rpm (rocky8_sls9) (push) Failing after 11m45s
Build Packages / build:rpm (rocky8) (push) Failing after 11m47s
Build Packages / build:rpm (rocky9) (push) Failing after 10m21s
Build Packages / Generate python client (push) Successful in 14s
Build Packages / build:rpm (ubuntu2204) (push) Failing after 9m58s
Build Packages / Create release (push) Skipped
Build Packages / XDS test (neggia plugin) (push) Successful in 8m14s
Build Packages / Build documentation (push) Successful in 36s
Build Packages / XDS test (durin plugin) (push) Successful in 8m52s
Build Packages / build:rpm (ubuntu2404) (push) Failing after 9m4s
Build Packages / XDS test (JFJoch plugin) (push) Successful in 9m7s
Build Packages / DIALS test (push) Successful in 11m49s
Build Packages / Unit tests (push) Successful in 1h8m58s
80 lines
2.4 KiB
C++
80 lines
2.4 KiB
C++
// SPDX-FileCopyrightText: 2024 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#pragma once
|
|
|
|
#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;
|
|
bool tcp_data_fatal_sent = false;
|
|
|
|
ImagePuller &image_puller;
|
|
Logger &logger;
|
|
void CollectImages();
|
|
bool WaitForImage();
|
|
void NotifyReceiverOnFinalizedWrite(const std::string &detector_update_zmq_addr);
|
|
void NotifyTcpAck(TCPFrameType ack_for, bool ok, bool fatal, TCPAckCode code, const std::string &error_text = "");
|
|
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);
|
|
};
|