ProteoWizard
|
simple memory cache for common MSData info More...
#include <MSDataCache.hpp>
Classes | |
struct | Config |
MSDataCache configuration. More... |
Public Member Functions | |
MSDataCache (const Config &config=Config()) | |
const SpectrumInfo & | spectrumInfo (size_t index, bool getBinaryData=false) |
access to SpectrumInfo with automatic update (open() must be called first) | |
MSDataAnalyzer interface | |
virtual void | open (const DataInfo &dataInfo) |
start analysis of the data | |
virtual UpdateRequest | updateRequested (const DataInfo &dataInfo, const SpectrumIdentity &spectrumIdentity) const |
ask analyzer if it wants an update | |
virtual void | update (const DataInfo &dataInfo, const Spectrum &spectrum) |
analyze a single spectrum | |
![]() | |
virtual | ~MSDataAnalyzer () |
virtual void | close (const DataInfo &dataInfo) |
end analysis of the data |
Private Member Functions | |
MSDataCache (MSDataCache &) | |
MSDataCache & | operator= (MSDataCache &) |
Private Attributes | |
boost::shared_ptr< Impl > | impl_ |
Additional Inherited Members | |
![]() | |
T | elements |
STL member. |
simple memory cache for common MSData info
Memory caching is useful to minimize data retrieval expenses:
MSDataCache is a vector of SpectrumInfo objects, but also implements the MSDataAnalyzer interface. It can be used in two ways: 1) Updated from the outside via MSDataAnalyzer interface 2) Automatic updating via spectrumInfo() access method
Spectrum binary data (SpectrumInfo::data) is freed from the cache using a LRU (least recently used) algorithm. Binary data will be freed only to make room for a new update. The default cache size is 1, i.e. only the most recently updated binary data array is stored. Note that modifying the SpectrumInfo objects directly through the vector interface circumvents the LRU mechanism.
Usage #1: MSDataCache should be placed first in an MSDataAnalyzerContainer, so that it receives update() first. Other analyzers may then use it (preferably as const MSDataCache&) to access spectrum data when they receive update(). On updateRequested(), MSDataCache returns UpdateRequest_Ok to indicate that it should receive any updates that are requested by other analyzers. If no other analyzer requests an update, the cache will not be updated.
Usage #2: Instantiate independently and call open() to set reference to an MSData object. Calls to spectrumInfo() will return the requested SpectrumInfo, automatically updating the cache via call to SpectrumList::spectrum() if necessary.
Definition at line 74 of file MSDataCache.hpp.
|
private |
|
virtual |
start analysis of the data
Reimplemented from pwiz::analysis::MSDataAnalyzer.
Referenced by extractPeaks(), testAutomaticUpdate(), testDefault(), and testMRU().
|
inlinevirtual |
ask analyzer if it wants an update
Reimplemented from pwiz::analysis::MSDataAnalyzer.
Definition at line 93 of file MSDataCache.hpp.
References UpdateRequest_Ok.
|
virtual |
analyze a single spectrum
Reimplemented from pwiz::analysis::MSDataAnalyzer.
Referenced by testDefault(), and testMRU().
const SpectrumInfo& pwiz::analysis::MSDataCache::spectrumInfo | ( | size_t | index, |
bool | getBinaryData = false |
||
) |
access to SpectrumInfo with automatic update (open() must be called first)
Referenced by extractPeaks(), and testAutomaticUpdate().
|
private |
|
private |
Definition at line 108 of file MSDataCache.hpp.