Home  · Classes  · Annotated Classes  · Modules  · Members  · Namespaces  · Related Pages
MSNumpressCoder.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-2017.
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: Hannes Roest $
32 // $Authors: Hannes Roest $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
37 #include <OpenMS/FORMAT/Base64.h>
38 
39 #include <string>
40 
41 namespace OpenMS
42 {
43  const double BinaryDataEncoder_default_numpressErrorTolerance = .0001; // 1/100th of one percent
44 
54  class OPENMS_DLLAPI MSNumpressCoder
55  {
56 
57 public:
58 
59  enum NumpressCompression { NONE, LINEAR, PIC, SLOF, SIZE_OF_NUMPRESSCOMPRESSION };
61  static const std::string NamesOfNumpressCompression[SIZE_OF_NUMPRESSCOMPRESSION];
62 
68  struct OPENMS_DLLAPI NumpressConfig
69  {
75 
77  numpressFixedPoint(0.0),
79  np_compression(NONE),
80  estimate_fixed_point(false),
81  linear_fp_mass_acc(-1)
82  {
83  }
84 
92  void setCompression(const std::string& compression)
93  {
94  const std::string* match = std::find(NamesOfNumpressCompression, NamesOfNumpressCompression + SIZE_OF_NUMPRESSCOMPRESSION, compression);
95 
96  if (match == NamesOfNumpressCompression + SIZE_OF_NUMPRESSCOMPRESSION) // == end()
97  {
98  throw Exception::InvalidParameter(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION, "Value '" + compression + "' is not a valid Numpress compression scheme.");
99  }
100 
101  np_compression = (NumpressCompression)std::distance(NamesOfNumpressCompression, match);
102  }
103 
104  };
105 
108 
110  virtual ~MSNumpressCoder() {}
111 
130  void encodeNP(const std::vector<double> & in, String & result,
131  bool zlib_compression, const NumpressConfig & config);
132 
134  void encodeNP(const std::vector<float> & in, String & result,
135  bool zlib_compression, const NumpressConfig & config);
136 
155  void decodeNP(const String & in, std::vector<double> & out,
156  bool zlib_compression, const NumpressConfig & config);
157 
175  void encodeNPRaw(const std::vector<double> & in, String & result, const NumpressConfig & config);
176 
197  void decodeNPRaw(const std::string & in, std::vector<double> & out, const NumpressConfig & config);
198 
199 private:
200 
201  void decodeNPInternal_(const unsigned char* in, size_t in_size, std::vector<double>& out, const NumpressConfig & config);
202 
204  };
205 
206 } //namespace OpenMS
207 
208 
Class to encode and decode data encoded with MSNumpress.
Definition: MSNumpressCoder.h:54
NumpressCompression np_compression
check error tolerance after encoding, guarantee abs(1.0-(encoded/decoded)) <= this, 0=do not guarantee anything
Definition: MSNumpressCoder.h:72
MSNumpressCoder()
default constructor
Definition: MSNumpressCoder.h:107
A more convenient string class.
Definition: String.h:57
Class to encode and decode Base64.
Definition: Base64.h:67
const double BinaryDataEncoder_default_numpressErrorTolerance
Definition: MSNumpressCoder.h:43
void setCompression(const std::string &compression)
set compression using a string mapping to enum NumpressCompression.
Definition: MSNumpressCoder.h:92
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:46
Configuration class for MSNumpress.
Definition: MSNumpressCoder.h:68
bool find(TFinder &finder, const Pattern< TNeedle, FuzzyAC > &me, PatternAuxData< TNeedle > &dh)
Definition: AhoCorasickAmbiguous.h:884
NumpressCompression
Definition: MSNumpressCoder.h:59
double linear_fp_mass_acc
whether to estimate the fixed point or use the one proved with numpressFixedPoint ...
Definition: MSNumpressCoder.h:74
NumpressConfig()
desired mass accuracy for linear encoding (-1 no effect, use 0.0001 for 0.2 ppm accuracy @ 500 m/z) ...
Definition: MSNumpressCoder.h:76
double numpressFixedPoint
Definition: MSNumpressCoder.h:70
Base64 base64coder_
Definition: MSNumpressCoder.h:203
Exception indicating that an invalid parameter was handed over to an algorithm.
Definition: Exception.h:347
bool estimate_fixed_point
which compression schema to use
Definition: MSNumpressCoder.h:73
virtual ~MSNumpressCoder()
Destructor.
Definition: MSNumpressCoder.h:110
double numpressErrorTolerance
fixed point for numpress algorithms
Definition: MSNumpressCoder.h:71
Definition: MSNumpressCoder.h:59

OpenMS / TOPP release 2.3.0 Documentation generated on Wed Apr 18 2018 19:29:06 using doxygen 1.8.14