21#include <unordered_map>
29 class ImzMLInterceptConsumer;
65 friend class ImzMLInterceptConsumer;
77 const std::string& filename,
95 void openIBD(
const std::string& ibd_path);
104 const std::vector<ImzMLSpectrumIndex>&
getIndex() const noexcept {
return index_; }
113 bool append_spectra_to_map,
114 bool decode_ibd =
true);
138 bool is_mz {
false };
139 bool is_int {
false };
140 bool is_ext {
false };
141 uint64_t offset { 0 };
142 uint64_t count { 0 };
152 uint32_t x {0}, y {0}, z {1};
160 FILE* ibd_ {
nullptr };
163 bool in_spectrum_ {
false };
164 bool in_scan_ {
false };
165 bool in_bda_ {
false };
166 uint32_t cur_x_ { 0 };
167 uint32_t cur_y_ { 0 };
168 uint32_t cur_z_ { 1 };
176 using CvPair = std::pair<std::string, std::string>;
179 bool in_ref_group_ {
false };
180 bool decode_ibd_ {
true };
181 bool cur_x_seen_ {
false };
182 bool cur_y_seen_ {
false };
The interface of a consumer of spectra and chromatograms.
Definition IMSDataConsumer.h:46
SAX2 handler for imzML 1.1.0 files, extending OpenMS MzMLHandler.
Definition ImzMLHandler.h:64
ImzMLMeta & getImzMLMeta() noexcept
Non-const access for ImzMLFile to set the .ibd path before parse.
Definition ImzMLHandler.h:101
ImzMLMeta meta_
Definition ImzMLHandler.h:161
ImzMLHandler(const ImzMLHandler &)=delete
void onStartElement(const char16_t *qname, const XMLAttributes &attrs) override
Parsing method for opening tags.
void handleIMSCvParam_(const std::string &acc, const std::string &val)
ImzMLHandler(PeakMap &exp, const std::string &filename, const ProgressLogger &logger)
Construct an ImzMLHandler.
void applyRefGroup_(const std::string &id)
std::vector< SpecIMS > spec_ims_
IMS state per spectrum (document order)
Definition ImzMLHandler.h:173
void openIBD(const std::string &ibd_path)
Open the companion .ibd file for random-access binary reads.
ArrayMeta int_meta
Definition ImzMLHandler.h:154
const std::vector< ImzMLSpectrumIndex > & getIndex() const noexcept
Per-spectrum binary index built during parse (one entry per spectrum).
Definition ImzMLHandler.h:104
std::vector< ImzMLSpectrumIndex > index_
Full index for OnDiscImzMLExperiment.
Definition ImzMLHandler.h:174
ArrayMeta cur_mz_meta_
Definition ImzMLHandler.h:170
ArrayMeta cur_int_meta_
Definition ImzMLHandler.h:171
const ImzMLMeta & getImzMLMeta() const noexcept
Imaging metadata accumulated during SAX parse (read after parse_() returns).
Definition ImzMLHandler.h:98
ArrayMeta cur_array_
Definition ImzMLHandler.h:169
~ImzMLHandler() override
Closes the .ibd FILE* if open.
void connectDecodeConsumer(Interfaces::IMSDataConsumer *downstream, bool append_spectra_to_map, bool decode_ibd=true)
Wire ImzMLInterceptConsumer between MzMLHandler and an optional downstream consumer.
std::pair< std::string, std::string > CvPair
Definition ImzMLHandler.h:176
std::string cur_ref_id_
Definition ImzMLHandler.h:178
ImzMLHandler & operator=(const ImzMLHandler &)=delete
void onEndElement(const char16_t *qname) override
Parsing method for closing tags.
std::unique_ptr< ImzMLInterceptConsumer > decode_bridge_
Definition ImzMLHandler.h:184
ArrayMeta mz_meta
Definition ImzMLHandler.h:153
std::unordered_map< std::string, std::vector< CvPair > > ref_groups_
Definition ImzMLHandler.h:177
Definition ImzMLHandler.h:151
Handler for mzML file format.
Definition MzMLHandler.h:94
Xerces-free, lightweight view over the attribute list of an XML element.
Definition XMLAttributes.h:32
In-Memory representation of a mass spectrometry run.
Definition MSExperiment.h:49
Base class for all classes that want to report their progress.
Definition ProgressLogger.h:27
Main OpenMS namespace.
Definition openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:19
DataType
Scalar type identifier for binary array elements.
Definition ImzMLHandlerHelper.h:97