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
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
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);
|
|
};
|