Build Packages / Unit tests (push) Successful in 1h22m15s
Build Packages / build:windows:nocuda (push) Successful in 18m0s
Build Packages / build:windows:cuda (push) Successful in 20m30s
Build Packages / build:viewer-tgz:cpu (push) Successful in 10m32s
Build Packages / build:viewer-tgz:cuda (push) Successful in 11m39s
Build Packages / build:rugnux-tgz (x86_64) (push) Successful in 8m55s
Build Packages / build:rugnux:windows (push) Successful in 11m25s
Build Packages / build:rpm (rocky8_nocuda) (push) Successful in 20m6s
Build Packages / build:rpm (rocky9_nocuda) (push) Successful in 16m27s
Build Packages / build:rpm (ubuntu2204_nocuda) (push) Successful in 20m19s
Build Packages / build:rpm (ubuntu2404_nocuda) (push) Successful in 15m34s
Build Packages / build:rpm (rocky8_sls9) (push) Successful in 20m25s
Build Packages / build:rpm (rocky9_sls9) (push) Successful in 19m36s
Build Packages / build:rpm (rocky8) (push) Successful in 17m43s
Build Packages / build:rpm (rocky9) (push) Successful in 13m34s
Build Packages / build:rpm (ubuntu2204) (push) Successful in 21m28s
Build Packages / build:rpm (ubuntu2404) (push) Successful in 18m19s
Build Packages / DIALS test (push) Successful in 12m36s
Build Packages / XDS test (durin plugin) (push) Successful in 6m56s
Build Packages / XDS test (JFJoch plugin) (push) Successful in 6m48s
Build Packages / XDS test (neggia plugin) (push) Successful in 6m7s
Build Packages / Generate python client (push) Successful in 11s
Build Packages / Build documentation (push) Successful in 36s
Build Packages / Create release (push) Skipped
Build Packages / build:rugnux:aarch64 (cross) (push) Successful in 5m11s
* `rugnux --mode calibration` writes `<prefix>.json` beside the `.poni`, whose `dataset_settings` member is a `jfjoch_broker` `dataset_settings` body as it stands. * `rugnux` and `jfjoch_viewer` read PILATUS miniCBF sweeps natively, without conversion. * Masters written by other facilities open, including Eiger 1.x and third-party NXmx variants. * `rugnux` measures the beam centre on every run, and indexes with it when the file's value indexes nothing. * A detector swung out on a 2theta arm is placed where the file says it stands, and the calibration can hold the tilt fixed. * `rugnux` writes the unmerged MTZ by default, and a P1 merge beside it, so a wrong space group can be re-merged without reprocessing. * Significant improvements to symmetry handling in `rugnux`: the lattice, the point group, the setting and the systematic absences. * The `rugnux` report gives the resolution the CC1/2 fit reached, beside the range the reflections were written to. * The `rugnux` report gives the twinning statistics measured before the space group was decided, beside the ones measured after. * The `rugnux` report gives the strong-direction diffraction limit, and warns when CC1/2 is not monotone with resolution. * `rugnux` ranks screw axes on the evidence their absences carry, rather than on how many control reflections a candidate happens to have. * Twinning is no longer reported when the L-test contradicts it. * The `rugnux` report gives the detector tilt, the measured tilt and the direct beam beside the beam centre, and a post-refined beam centre is judged against the run's own measurement rather than the file's. * `--no-refine-tilt` holds the detector tilt at the value in the file, instead of zeroing it, when the calibration starts from the spots. * The `jfjoch_viewer` grid scan view draws the cells in the proportion of the scan steps, so the map has the shape of the scanned area. Reviewed-on: #76 Co-authored-by: Filip Leonarski <filip.leonarski@psi.ch>
193 lines
7.2 KiB
C++
193 lines
7.2 KiB
C++
// SPDX-FileCopyrightText: 2024 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#pragma once
|
|
|
|
#include <cstring>
|
|
#include <string>
|
|
#include <exception>
|
|
|
|
enum class JFJochExceptionCategory {
|
|
JSON,
|
|
InputParameterAboveMax,
|
|
InputParameterBelowMin,
|
|
InputParameterInvalid,
|
|
WrongNumber,
|
|
WrongUnit,
|
|
ArrayOutOfBounds,
|
|
HDF5,
|
|
IBVerbs,
|
|
RESTCommandUnknown,
|
|
WrongDAQState,
|
|
WrongReceiverState,
|
|
Detector,
|
|
MemAllocFailed,
|
|
AcquisitionDeviceError,
|
|
GPUCUDAError,
|
|
GainFileOpenError,
|
|
MockFileOpenError,
|
|
Compression,
|
|
SharedMemory,
|
|
ZeroMQ,
|
|
ServiceUndefined,
|
|
TriggerError,
|
|
FileWriteError,
|
|
ZSTDCompressionError,
|
|
LogstashConnectionFailure,
|
|
TIFFGeneratorError,
|
|
gRPCError,
|
|
PreviewError,
|
|
HardwareParityError,
|
|
SpotFinderError,
|
|
PCIeError,
|
|
CBORError,
|
|
UDPError,
|
|
CommunicationError,
|
|
SimplonError,
|
|
CalibrationError,
|
|
IndexerError
|
|
};
|
|
|
|
class JFJochException : public std::exception {
|
|
protected:
|
|
std::string msg;
|
|
JFJochExceptionCategory category;
|
|
static std::string DecodeCategory(JFJochExceptionCategory category) {
|
|
switch (category) {
|
|
case JFJochExceptionCategory::JSON:
|
|
return "JSON parsing or analysis error";
|
|
case JFJochExceptionCategory::InputParameterAboveMax:
|
|
return "Input parameter above max";
|
|
case JFJochExceptionCategory::InputParameterBelowMin:
|
|
return "Input parameter below min";
|
|
case JFJochExceptionCategory::InputParameterInvalid:
|
|
return "Input parameter invalid";
|
|
case JFJochExceptionCategory::WrongNumber:
|
|
return "Wrong number";
|
|
case JFJochExceptionCategory::WrongUnit:
|
|
return "Wrong unit";
|
|
case JFJochExceptionCategory::ArrayOutOfBounds:
|
|
return "Array out of bounds";
|
|
case JFJochExceptionCategory::HDF5:
|
|
return "HDF5 error";
|
|
case JFJochExceptionCategory::IBVerbs:
|
|
return "Infiniband error";
|
|
case JFJochExceptionCategory::RESTCommandUnknown:
|
|
return "REST command unknown";
|
|
case JFJochExceptionCategory::WrongDAQState:
|
|
return "DAQ state error";
|
|
case JFJochExceptionCategory::Detector:
|
|
return "Detector error";
|
|
case JFJochExceptionCategory::MemAllocFailed:
|
|
return "Memory error";
|
|
case JFJochExceptionCategory::AcquisitionDeviceError:
|
|
return "Acquisition device error";
|
|
case JFJochExceptionCategory::GPUCUDAError:
|
|
return "CUDA (GPU) error";
|
|
case JFJochExceptionCategory::GainFileOpenError:
|
|
return "Gain file open error";
|
|
case JFJochExceptionCategory::MockFileOpenError:
|
|
return "Mock file open error";
|
|
case JFJochExceptionCategory::Compression:
|
|
return "Compression error";
|
|
case JFJochExceptionCategory::SharedMemory:
|
|
return "Shared memory error";
|
|
case JFJochExceptionCategory::ZeroMQ:
|
|
return "ZeroMQ error";
|
|
case JFJochExceptionCategory::ServiceUndefined:
|
|
return "Service undefined error";
|
|
case JFJochExceptionCategory::TriggerError:
|
|
return "Trigger error";
|
|
case JFJochExceptionCategory::FileWriteError:
|
|
return "File writer error";
|
|
case JFJochExceptionCategory::ZSTDCompressionError:
|
|
return "Zstd compressor error";
|
|
case JFJochExceptionCategory::LogstashConnectionFailure:
|
|
return "Logstash connection error";
|
|
case JFJochExceptionCategory::TIFFGeneratorError:
|
|
return "TIFF writer error";
|
|
case JFJochExceptionCategory::gRPCError:
|
|
return "Remote node (gRPC) error";
|
|
case JFJochExceptionCategory::PreviewError:
|
|
return "Preview error";
|
|
case JFJochExceptionCategory::HardwareParityError:
|
|
return "Parity error (HW)";
|
|
case JFJochExceptionCategory::SpotFinderError:
|
|
return "Spot finder";
|
|
case JFJochExceptionCategory::PCIeError:
|
|
return "PCIe driver error";
|
|
case JFJochExceptionCategory::CBORError:
|
|
return "CBOR serialization error";
|
|
case JFJochExceptionCategory::UDPError:
|
|
return "UDP simulator error";
|
|
case JFJochExceptionCategory::CommunicationError:
|
|
return "Communication error";
|
|
case JFJochExceptionCategory::SimplonError:
|
|
return "Simplon API error";
|
|
case JFJochExceptionCategory::CalibrationError:
|
|
return "Detector calibration error";
|
|
case JFJochExceptionCategory::IndexerError:
|
|
return "Indexer error";
|
|
default:
|
|
return "";
|
|
}
|
|
}
|
|
public:
|
|
JFJochException(JFJochExceptionCategory in_val, const std::string &description) noexcept :
|
|
category(in_val) {
|
|
try {
|
|
msg = DecodeCategory(category) + " (" + description + ")";
|
|
} catch (...) {}
|
|
}
|
|
|
|
JFJochException(const JFJochException &e) noexcept {
|
|
try {
|
|
category = e.category;
|
|
msg = e.msg;
|
|
} catch (...) {}
|
|
}
|
|
|
|
[[nodiscard]] const char *what() const noexcept override {
|
|
return msg.c_str();
|
|
}
|
|
|
|
[[nodiscard]] JFJochExceptionCategory Category() const noexcept {
|
|
return category;
|
|
}
|
|
};
|
|
|
|
class WrongDAQStateException : public JFJochException {
|
|
public:
|
|
explicit WrongDAQStateException(const std::string &description)
|
|
: JFJochException(JFJochExceptionCategory::WrongDAQState, description) {}
|
|
};
|
|
|
|
// Thrown when an operation leaves a subsystem (typically the detector) in an undefined state that a
|
|
// simple retry cannot recover from - the broker must re-initialise. The state machine catches this
|
|
// separately and goes to the Error state, whereas ordinary acquisition failures return to Idle.
|
|
class JFJochCriticalException : public JFJochException {
|
|
public:
|
|
explicit JFJochCriticalException(const std::string &description,
|
|
JFJochExceptionCategory in_category = JFJochExceptionCategory::Detector)
|
|
: JFJochException(in_category, description) {}
|
|
};
|
|
|
|
// A PCIe/FPGA hardware fault leaves the acquisition device in an undefined state that a retry cannot
|
|
// recover from, so it is critical: the state machine forces re-initialisation (Error state) rather
|
|
// than returning to Idle as it does for ordinary acquisition failures.
|
|
class PCIeDeviceException : public JFJochCriticalException {
|
|
public:
|
|
explicit PCIeDeviceException(const std::string &description)
|
|
: JFJochCriticalException(description, JFJochExceptionCategory::PCIeError) {
|
|
msg += " (" + std::string(strerror(errno)) + ")";
|
|
}
|
|
};
|
|
|
|
// Thrown by JFJochBitShuffleCompressor::Compress when the compressed output does not fit in the
|
|
// caller-provided destination buffer. Lets callers (e.g. the receiver) drop just that frame.
|
|
class CompressionBufferTooSmallException : public JFJochException {
|
|
public:
|
|
explicit CompressionBufferTooSmallException(const std::string &description)
|
|
: JFJochException(JFJochExceptionCategory::Compression, description) {}
|
|
};
|