ProteoWizard
Reader.hpp
Go to the documentation of this file.
1 //
2 // $Id: Reader.hpp 3808 2012-07-24 20:31:10Z donmarsh $
3 //
4 //
5 // Original author: Darren Kessner <darren@proteowizard.org>
6 //
7 // Copyright 2008 Spielberg Family Center for Applied Proteomics
8 // Cedars-Sinai Medical Center, Los Angeles, California 90048
9 //
10 // Licensed under the Apache License, Version 2.0 (the "License");
11 // you may not use this file except in compliance with the License.
12 // You may obtain a copy of the License at
13 //
14 // http://www.apache.org/licenses/LICENSE-2.0
15 //
16 // Unless required by applicable law or agreed to in writing, software
17 // distributed under the License is distributed on an "AS IS" BASIS,
18 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 // See the License for the specific language governing permissions and
20 // limitations under the License.
21 //
22 
23 
24 #ifndef _READER_HPP_
25 #define _READER_HPP_
26 
28 #include "MSData.hpp"
29 #include <string>
30 #include <stdexcept>
31 
32 
33 namespace pwiz {
34 namespace msdata {
35 
36 /// interface for file readers
38 {
39  public:
40 
41 
42  /// Reader configuration
44  {
45  /// when true, sets certain vendor readers to produce SIM/SRM transitions as spectra instead of chromatograms
48 
49  Config();
50  Config(const Config& rhs);
51  };
52 
53 
54  /// return true iff Reader recognizes the file as one it should handle
55  /// that's not to say one it CAN handle, necessarily, as in Thermo on linux,
56  /// see comment for identify() below
57  bool accept(const std::string& filename,
58  const std::string& head) const
59  {
60  return (identify(filename,head).length() != 0);
61  }
62 
63  /// return file type iff Reader recognizes the file, else empty;
64  /// note: for formats requiring a 3rd party DLL identify() should
65  /// return non-empty if it recognized the format, even though reading
66  /// may fail if the 3rd party DLL isn't actually present
67  /// Reader may filter based on filename and/or head of the file
68  virtual std::string identify(const std::string& filename,
69  const std::string& head) const = 0;
70 
71  /// fill in the MSData structure from the first (or only) sample
72  virtual void read(const std::string& filename,
73  const std::string& head,
74  MSData& result,
75  int runIndex = 0,
76  const Config& config = Config()) const = 0;
77 
78  /// fill in a vector of MSData structures; provides support for multi-run input files
79  virtual void read(const std::string& filename,
80  const std::string& head,
81  std::vector<MSDataPtr>& results,
82  const Config& config = Config()) const = 0;
83 
84  /// fill in a vector of MSData.Id values; provides support for multi-run input files
85  virtual void readIds(const std::string& filename,
86  const std::string& head,
87  std::vector<std::string>& dataIds,
88  const Config& config = Config()) const;
89 
90  /// returns a unique string identifying the reader type
91  virtual const char* getType() const = 0;
92 
93  virtual ~Reader(){}
94 };
95 
96 class PWIZ_API_DECL ReaderFail : public std::runtime_error // reader failure exception
97 {
98  public:
99 
100  ReaderFail(const std::string& error)
101  : std::runtime_error(("[ReaderFail] " + error).c_str()),
102  error_(error)
103  {}
104 
105  virtual const std::string& error() const {return error_;}
106  virtual ~ReaderFail() throw() {}
107 
108  private:
109  std::string error_;
110 };
111 
112 typedef boost::shared_ptr<Reader> ReaderPtr;
113 
114 
115 ///
116 /// Reader container (composite pattern).
117 ///
118 /// The template get<reader_type>() gives access to child Readers by type, to facilitate
119 /// Reader-specific configuration at runtime.
120 ///
122  public std::vector<ReaderPtr>
123 {
124  public:
125 
126  /// returns child name iff some child identifies, else empty string
127  virtual std::string identify(const std::string& filename) const;
128 
129  /// returns child name iff some child identifies, else empty string
130  virtual std::string identify(const std::string& filename,
131  const std::string& head) const;
132 
133  /// delegates to first child that identifies
134  virtual void read(const std::string& filename,
135  MSData& result,
136  int runIndex = 0,
137  const Config& config = Config()) const;
138 
139  /// delegates to first child that identifies
140  virtual void read(const std::string& filename,
141  const std::string& head,
142  MSData& result,
143  int runIndex = 0,
144  const Config& config = Config()) const;
145 
146  /// delegates to first child that identifies;
147  /// provides support for multi-run input files
148  virtual void read(const std::string& filename,
149  std::vector<MSDataPtr>& results,
150  const Config& config = Config()) const;
151 
152  /// delegates to first child that identifies;
153  /// provides support for multi-run input files
154  virtual void read(const std::string& filename,
155  const std::string& head,
156  std::vector<MSDataPtr>& results,
157  const Config& config = Config()) const;
158 
159  /// delegates to first child that identifies;
160  /// provides support for multi-run input files
161  virtual void readIds(const std::string& filename,
162  std::vector<std::string>& results,
163  const Config& config = Config()) const;
164 
165  /// delegates to first child that identifies;
166  /// provides support for multi-run input files
167  virtual void readIds(const std::string& filename,
168  const std::string& head,
169  std::vector<std::string>& results,
170  const Config& config = Config()) const;
171 
172  /// appends all of the rhs operand's Readers to the list
173  ReaderList& operator +=(const ReaderList& rhs);
174 
175  /// appends the rhs Reader to the list
176  ReaderList& operator +=(const ReaderPtr& rhs);
177 
178  /// returns a concatenated list of all the Readers from the lhs and rhs operands
179  ReaderList operator +(const ReaderList& rhs) const;
180 
181  /// returns a concatenated list of all the Readers from the lhs and rhs operands
182  ReaderList operator +(const ReaderPtr& rhs) const;
183 
184  /// returns pointer to Reader of the specified type
185  template <typename reader_type>
186  reader_type* get()
187  {
188  for (iterator it=begin(); it!=end(); ++it)
189  {
190  reader_type* p = dynamic_cast<reader_type*>(it->get());
191  if (p) return p;
192  }
193 
194  return 0;
195  }
196 
197  /// returns const pointer to Reader of the specified type
198  template <typename reader_type>
199  const reader_type* get() const
200  {
201  return const_cast<ReaderList*>(this)->get<reader_type>();
202  }
203 
204  virtual const char* getType() const {return "ReaderList";} // satisfy inheritance
205 };
206 
207 
208 /// returns a list containing the lhs and rhs as readers
209 PWIZ_API_DECL ReaderList operator +(const ReaderPtr& lhs, const ReaderPtr& rhs);
210 
211 
212 /// tries to identify a filepath using the provided Reader or ReaderList;
213 /// returns the CVID file format of the specified filepath,
214 /// or CVID_Unknown if the file format has no CV term or the filepath doesn't exist
215 PWIZ_API_DECL CVID identifyFileFormat(const ReaderPtr& reader, const std::string& filepath);
216 
217 
218 } // namespace msdata
219 } // namespace pwiz
220 
221 
222 #endif // _READER_HPP_
223