OpenMS
Loading...
Searching...
No Matches
ImzMLHandler.h
Go to the documentation of this file.
1// Copyright (c) 2002-present, OpenMS Inc. -- EKU Tuebingen, ETH Zurich, and FU Berlin
2// SPDX-License-Identifier: BSD-3-Clause
3//
4// --------------------------------------------------------------------------
5// $Maintainer: Timo Sachsenberg $
6// $Authors: Aditya Sarna $
7// --------------------------------------------------------------------------
8
9#pragma once
10
14
16
17#include <cstdio>
18#include <cstdint>
19#include <memory>
20#include <string>
21#include <unordered_map>
22#include <vector>
23
24namespace OpenMS
25{
26namespace Internal
27{
28
29 class ImzMLInterceptConsumer; // defined in ImzMLHandler.cpp
30
63 class OPENMS_DLLAPI ImzMLHandler final : public MzMLHandler
64 {
65 friend class ImzMLInterceptConsumer;
66
67 public:
68
77 const std::string& filename,
78 const ProgressLogger& logger);
79
80 ~ImzMLHandler() override;
81
82 ImzMLHandler(const ImzMLHandler&) = delete;
84
95 void openIBD(const std::string& ibd_path);
96
98 const ImzMLMeta& getImzMLMeta() const noexcept { return meta_; }
99
101 ImzMLMeta& getImzMLMeta() noexcept { return meta_; }
102
104 const std::vector<ImzMLSpectrumIndex>& getIndex() const noexcept { return index_; }
105
113 bool append_spectra_to_map,
114 bool decode_ibd = true);
115
116 // ------------------------------------------------------------------
117 // SAX2 overrides (MzMLHandler is called through for MS:* terms)
118 // ------------------------------------------------------------------
119
120 void onStartElement(const char16_t* qname, const XMLAttributes& attrs) override;
121
122 void onEndElement(const char16_t* qname) override;
123
124 private:
125
126 // ------------------------------------------------------------------
127 // IMS CV dispatch
128 // ------------------------------------------------------------------
129 void handleIMSCvParam_(const std::string& acc, const std::string& val);
130 void applyRefGroup_ (const std::string& id);
131
132 // ------------------------------------------------------------------
133 // Per-binaryDataArray IMS metadata
134 // ------------------------------------------------------------------
136 {
137 ImzMLSpectrumIndex::DataType dt { ImzMLSpectrumIndex::DataType::UNKNOWN };
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 };
143
144 void reset() noexcept { *this = ArrayMeta{}; }
145 };
146
147 // ------------------------------------------------------------------
148 // Per-spectrum IMS state snapshot (stored at endElement("spectrum"))
149 // ------------------------------------------------------------------
150 struct SpecIMS
151 {
152 uint32_t x {0}, y {0}, z {1};
155 };
156
157 // ------------------------------------------------------------------
158 // State
159 // ------------------------------------------------------------------
160 FILE* ibd_ { nullptr };
162
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 };
172
173 std::vector<SpecIMS> spec_ims_;
174 std::vector<ImzMLSpectrumIndex> index_;
175
176 using CvPair = std::pair<std::string, std::string>;
177 std::unordered_map<std::string, std::vector<CvPair>> ref_groups_;
178 std::string cur_ref_id_;
179 bool in_ref_group_ { false };
180 bool decode_ibd_ { true };
181 bool cur_x_seen_ { false };
182 bool cur_y_seen_ { false };
183
184 std::unique_ptr<ImzMLInterceptConsumer> decode_bridge_;
185 };
186
187} // namespace Internal
188} // namespace OpenMS
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
Dataset-level metadata for imzML mass spectrometry imaging files.
Definition ImzMLHandlerHelper.h:36
Main OpenMS namespace.
Definition openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:19
DataType
Scalar type identifier for binary array elements.
Definition ImzMLHandlerHelper.h:97
Definition ImzMLHandler.h:136
void reset() noexcept
Definition ImzMLHandler.h:144