ProteoWizard
SpectrumList_ABI.hpp
Go to the documentation of this file.
1 //
2 // $Id: SpectrumList_ABI.hpp 2735 2011-05-29 05:53:40Z brendanx $
3 //
4 //
5 // Original author: Matt Chambers <matt.chambers .@. vanderbilt.edu>
6 //
7 // Copyright 2009 Vanderbilt University - Nashville, TN 37232
8 //
9 // Licensed under the Apache License, Version 2.0 (the "License");
10 // you may not use this file except in compliance with the License.
11 // You may obtain a copy of the License at
12 //
13 // http://www.apache.org/licenses/LICENSE-2.0
14 //
15 // Unless required by applicable law or agreed to in writing, software
16 // distributed under the License is distributed on an "AS IS" BASIS,
17 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 // See the License for the specific language governing permissions and
19 // limitations under the License.
20 //
21 
22 
26 #include <boost/thread/mutex.hpp>
27 
28 #ifdef PWIZ_READER_ABI
29 #include "pwiz_aux/msrc/utility/vendor_api/ABI/WiffFile.hpp"
31 using namespace pwiz::vendor_api::ABI;
32 #endif // PWIZ_READER_ABI
33 
34 
35 namespace pwiz {
36 namespace msdata {
37 namespace detail {
38 
40 {
41  public:
42 
43  virtual size_t size() const;
44  virtual const SpectrumIdentity& spectrumIdentity(size_t index) const;
45  virtual size_t find(const std::string& id) const;
46  virtual SpectrumPtr spectrum(size_t index, bool getBinaryData) const;
47  virtual SpectrumPtr spectrum(size_t index, DetailLevel detailLevel) const;
48  virtual SpectrumPtr spectrum(size_t index, bool getBinaryData, const pwiz::util::IntegerSet& msLevelsToCentroid) const;
49  virtual SpectrumPtr spectrum(size_t index, DetailLevel detailLevel, const pwiz::util::IntegerSet& msLevelsToCentroid) const;
50 
51 #ifdef PWIZ_READER_ABI
52  SpectrumList_ABI(const MSData& msd, WiffFilePtr wifffile,
53  const ExperimentsMap& experimentsMap, int sample);
54 
55  private:
56 
57  const MSData& msd_;
58  WiffFilePtr wifffile_;
59  ExperimentsMap experimentsMap_;
60  int sample;
61 
62  mutable size_t size_;
63 
64  mutable util::once_flag_proxy indexInitialized_;
65 
66  struct IndexEntry : public SpectrumIdentity
67  {
68  int sample;
69  int period;
70  int cycle;
71  ExperimentPtr experiment;
72  int transition;
73  };
74 
75  mutable std::vector<IndexEntry> index_;
76  mutable std::map<std::string, size_t> idToIndexMap_;
77 
78  // Cache last accessed spectrum for fast in order access
79  mutable boost::mutex spectrum_mutex;
80  mutable size_t spectrumLastIndex_;
81  mutable pwiz::vendor_api::ABI::SpectrumPtr spectrumLast_;
82 
83  void createIndex() const;
84 #endif // PWIZ_READER_ABI
85 };
86 
87 
88 } // detail
89 } // msdata
90 } // pwiz