OpenMS
MzQuantMLHandler.h
Go to the documentation of this file.
1 // --------------------------------------------------------------------------
2 // OpenMS -- Open-Source Mass Spectrometry
3 // --------------------------------------------------------------------------
4 // Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
5 // ETH Zurich, and Freie Universitaet Berlin 2002-2023.
6 //
7 // This software is released under a three-clause BSD license:
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above copyright
11 // notice, this list of conditions and the following disclaimer in the
12 // documentation and/or other materials provided with the distribution.
13 // * Neither the name of any author or any participating institution
14 // may be used to endorse or promote products derived from this software
15 // without specific prior written permission.
16 // For a full list of authors, refer to the file AUTHORS.
17 // --------------------------------------------------------------------------
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 // ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
22 // INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
25 // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26 // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
27 // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
28 // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 //
30 // --------------------------------------------------------------------------
31 // $Maintainer: Mathias Walzer $
32 // $Authors: Mathias Walzer $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
40 
41 #include <map>
42 
43 namespace OpenMS
44 {
45  class ProgressLogger;
46 
47  namespace Internal
48  {
49 
55  class OPENMS_DLLAPI MzQuantMLHandler :
56  public XMLHandler
57  {
58 public:
62  MzQuantMLHandler(const MSQuantifications & msq, const String & filename, const String & version, const ProgressLogger & logger);
63 
65  MzQuantMLHandler(MSQuantifications & msq, const String & filename, const String & version, const ProgressLogger & logger);
66 
68  ~MzQuantMLHandler() override;
70 
71 
72  // Docu in base class
73  void endElement(const XMLCh * const /*uri*/, const XMLCh * const /*local_name*/, const XMLCh * const qname) override;
74 
75  // Docu in base class
76  void startElement(const XMLCh * const /*uri*/, const XMLCh * const /*local_name*/, const XMLCh * const qname, const xercesc::Attributes & attributes) override;
77 
78  // Docu in base class
79  void characters(const XMLCh * const chars, const XMLSize_t length) override;
80 
81  //Docu in base class
82  void writeTo(std::ostream & os) override;
83 
84 protected:
85 
88 
91 
93 
95 
97 
99  void handleCVParam_(const String & parent_parent_tag, const String & parent_tag, const String & accession, const String & name, const String & value, const xercesc::Attributes & attributes, const String & cv_ref, const String & unit_accession = "");
100 
102  void handleUserParam_(const String & parent_parent_tag, const String & parent_tag, const String & name, const String & type, const String & value);
103 
105  //~ TODO rewirte writeCVParams_ in baseclass to be more convenient
106  //~ void MzQuantMLHandler::writeCVParams_(std::ostream& os, const Map< String, std::vector < CVTerm > > & , UInt indent);
107  void writeCVParams_(String & s, const std::map<String, std::vector<CVTerm> > &, UInt indent);
108 
110  void writeUserParams_(std::ostream & os, const MetaInfoInterface & meta, UInt indent);
111  void writeUserParams_(String & s, const MetaInfoInterface & meta, UInt indent);
112 
114  ControlledVocabulary::CVTerm getChildWithName_(const String & parent_accession, const String & name) const;
115 
116 
118  void writeFeature_(String & feature_xml, const std::vector<FeatureMap >& fm, UInt indentation_level);
119 
121  //void writeSourceFile_(std::ostream& os, const String& id, const SourceFile& software);
122 
123 
124 private:
128 
129  std::map<String, std::vector<ExperimentalSettings> > current_files_;
133 
134  std::vector<MetaInfo> up_stack_;
135  std::vector<CVTerm> cvp_stack_;
137 
138  std::multimap<String, String> cm_cf_ids_;
139  std::map<String, String> f_cf_ids_;
140  std::map<String, ConsensusFeature> cf_cf_obj_;
141  std::map<String, FeatureHandle> f_f_obj_;
142  std::map<String, ConsensusFeature::Ratio> r_rtemp_;
143  std::map<String, String> numden_r_ids_;
144  std::map<String, ConsensusFeature::Ratio> r_r_obj_;
145 
146  //~ Software current_sw_;
147  std::map<String, Software> current_sws_;
148  std::map<int, DataProcessing> current_orderedps_;
149  std::pair<int, DataProcessing> current_dp_;
150  std::set<DataProcessing::ProcessingAction> current_pas_;
151 
152  std::vector<String> current_col_types_;
153  std::vector<double> current_dm_values_;
154  std::vector<double> current_row_;
155 
156  };
157  } // namespace Internal
158 } // namespace OpenMS
159 
Representation of a controlled vocabulary.
Definition: ControlledVocabulary.h:55
XML handler for MzQuantMLFile.
Definition: MzQuantMLHandler.h:57
ControlledVocabulary::CVTerm getChildWithName_(const String &parent_accession, const String &name) const
Looks up a child CV term of parent_accession with the name name. If no such term is found,...
std::map< String, std::vector< ExperimentalSettings > > current_files_
1.rawfilesgroup_ref 2.inputfiles for each assay as ExperimentalSettings
Definition: MzQuantMLHandler.h:129
void writeFeature_(String &feature_xml, const std::vector< FeatureMap > &fm, UInt indentation_level)
Helper method that writes the featuremaps.
std::map< String, ConsensusFeature::Ratio > r_rtemp_
Definition: MzQuantMLHandler.h:142
std::map< int, DataProcessing > current_orderedps_
Definition: MzQuantMLHandler.h:148
MSQuantifications::Assay current_assay_
Definition: MzQuantMLHandler.h:136
Size current_count_
Definition: MzQuantMLHandler.h:132
MzQuantMLHandler(const MzQuantMLHandler &rhs)
MSQuantifications * msq_
Definition: MzQuantMLHandler.h:94
~MzQuantMLHandler() override
Destructor.
MzQuantMLHandler(const MSQuantifications &msq, const String &filename, const String &version, const ProgressLogger &logger)
Constructor for a write-only handler.
std::map< String, ConsensusFeature::Ratio > r_r_obj_
Definition: MzQuantMLHandler.h:144
std::vector< double > current_row_
Definition: MzQuantMLHandler.h:154
void writeTo(std::ostream &os) override
Writes the contents to a stream.
MzQuantMLHandler(MSQuantifications &msq, const String &filename, const String &version, const ProgressLogger &logger)
Constructor for a read-only handler.
std::vector< String > current_col_types_
Definition: MzQuantMLHandler.h:152
const ProgressLogger & logger_
Progress logger.
Definition: MzQuantMLHandler.h:87
ControlledVocabulary cv_
Controlled vocabulary (hopefully the psi-pi from OpenMS/share/OpenMS/CV/psi-pi.obo)
Definition: MzQuantMLHandler.h:90
String tag_
Definition: MzQuantMLHandler.h:92
std::multimap< String, String > cm_cf_ids_
Definition: MzQuantMLHandler.h:138
String current_cf_id_
Definition: MzQuantMLHandler.h:131
String current_id_
Definition: MzQuantMLHandler.h:130
std::vector< CVTerm > cvp_stack_
Definition: MzQuantMLHandler.h:135
std::vector< MetaInfo > up_stack_
Definition: MzQuantMLHandler.h:134
std::pair< int, DataProcessing > current_dp_
Definition: MzQuantMLHandler.h:149
MzQuantMLHandler()
Helper method that writes a source file.
std::vector< double > current_dm_values_
Definition: MzQuantMLHandler.h:153
void handleCVParam_(const String &parent_parent_tag, const String &parent_tag, const String &accession, const String &name, const String &value, const xercesc::Attributes &attributes, const String &cv_ref, const String &unit_accession="")
Handles CV terms.
std::map< String, Software > current_sws_
Definition: MzQuantMLHandler.h:147
const MSQuantifications * cmsq_
Definition: MzQuantMLHandler.h:96
void writeUserParams_(std::ostream &os, const MetaInfoInterface &meta, UInt indent)
Writes user terms.
std::map< String, String > numden_r_ids_
Definition: MzQuantMLHandler.h:143
std::map< String, ConsensusFeature > cf_cf_obj_
Definition: MzQuantMLHandler.h:140
void startElement(const XMLCh *const, const XMLCh *const, const XMLCh *const qname, const xercesc::Attributes &attributes) override
void writeUserParams_(String &s, const MetaInfoInterface &meta, UInt indent)
std::set< DataProcessing::ProcessingAction > current_pas_
Definition: MzQuantMLHandler.h:150
MzQuantMLHandler & operator=(const MzQuantMLHandler &rhs)
void characters(const XMLCh *const chars, const XMLSize_t length) override
void endElement(const XMLCh *const, const XMLCh *const, const XMLCh *const qname) override
void handleUserParam_(const String &parent_parent_tag, const String &parent_tag, const String &name, const String &type, const String &value)
Handles user terms.
void writeCVParams_(String &s, const std::map< String, std::vector< CVTerm > > &, UInt indent)
Write CV term.
std::map< String, FeatureHandle > f_f_obj_
Definition: MzQuantMLHandler.h:141
std::map< String, String > f_cf_ids_
Definition: MzQuantMLHandler.h:139
Base class for XML handlers.
Definition: XMLHandler.h:326
Definition: MSQuantifications.h:53
Interface for classes that can store arbitrary meta information (Type-Name-Value tuples).
Definition: MetaInfoInterface.h:61
Base class for all classes that want to report their progress.
Definition: ProgressLogger.h:53
A more convenient string class.
Definition: String.h:60
unsigned int UInt
Unsigned integer type.
Definition: Types.h:94
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:127
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:48
Representation of a CV term.
Definition: ControlledVocabulary.h:61
Definition: MSQuantifications.h:110