ProteoWizard
SpectrumListCache.hpp
Go to the documentation of this file.
1 //
2 // $Id: SpectrumListCache.hpp 2691 2011-05-13 15:56:52Z chambm $
3 //
4 //
5 // Original author: Matt Chambers <matt.chambers .@. vanderbilt.edu>
6 //
7 // Copyright 2008 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 #ifndef _SPECTRUMLISTCACHE_HPP_
23 #define _SPECTRUMLISTCACHE_HPP_
24 
25 
27 #include "MSData.hpp"
28 #include "MemoryMRUCache.hpp"
29 #include "SpectrumListWrapper.hpp"
30 
31 
32 namespace pwiz {
33 namespace msdata {
34 
35 
36 /// adds a level of flexible MRU caching to a SpectrumList processor chain
38 {
39  public:
40 
41  /// a cache mapping spectrum indices to SpectrumPtrs
42  typedef std::pair<size_t, SpectrumPtr> KeyValuePair;
43  BOOST_STATIC_CONSTANT(unsigned, first_offset = offsetof(KeyValuePair, first));
45 
47  MemoryMRUCacheMode cacheMode,
48  size_t cacheSize);
49 
50  /// returns the requested spectrum which may or may not be cached depending on
51  /// the current cache mode
52  virtual SpectrumPtr spectrum(size_t index, bool getBinaryData = false) const;
53 
54  /// returns a reference to the cache, to enable clearing it or changing the mode
55  CacheType& spectrumCache();
56 
57  /// returns a const-reference to the cache
58  const CacheType& spectrumCache() const;
59 
60  protected:
62 
63  private:
66 };
67 
68 
69 } // namespace msdata
70 } // namespace pwiz
71 
72 
73 #endif // _SPECTRUMLISTCACHE_HPP_