OpenMS
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-2023.
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 
39 
40 #include <algorithm>
41 #include <string>
42 #include <vector>
43 
44 namespace OpenMS
45 {
46  const double BinaryDataEncoder_default_numpressErrorTolerance = .0001; // 1/100th of one percent
47 
68  class OPENMS_DLLAPI MSNumpressCoder
69  {
70 
71 public:
72 
75  NONE,
77  PIC,
78  SLOF,
79  SIZE_OF_NUMPRESSCOMPRESSION
80  };
81  static const std::string NamesOfNumpressCompression[SIZE_OF_NUMPRESSCOMPRESSION];
82 
88  struct OPENMS_DLLAPI NumpressConfig
89  {
132 
134  numpressFixedPoint(0.0),
135  numpressErrorTolerance(BinaryDataEncoder_default_numpressErrorTolerance),
136  np_compression(NONE),
137  estimate_fixed_point(true),
138  linear_fp_mass_acc(-1)
139  {
140  }
141 
149  void setCompression(const std::string& compression)
150  {
151  const std::string* match = std::find(NamesOfNumpressCompression,
152  NamesOfNumpressCompression + SIZE_OF_NUMPRESSCOMPRESSION, compression);
153 
154  if (match == NamesOfNumpressCompression + SIZE_OF_NUMPRESSCOMPRESSION) // == end()
155  {
156  throw Exception::InvalidParameter(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION,
157  "Value '" + compression + "' is not a valid Numpress compression scheme.");
158  }
159 
160  np_compression = (NumpressCompression)std::distance(NamesOfNumpressCompression, match);
161  }
162 
163  };
164 
167 
169  virtual ~MSNumpressCoder() {}
170 
189  void encodeNP(const std::vector<double> & in,
190  String & result,
191  bool zlib_compression,
192  const NumpressConfig & config);
193 
195  void encodeNP(const std::vector<float> & in,
196  String & result,
197  bool zlib_compression,
198  const NumpressConfig & config);
199 
218  void decodeNP(const String & in,
219  std::vector<double> & out,
220  bool zlib_compression,
221  const NumpressConfig & config);
222 
241  void encodeNPRaw(const std::vector<double> & in,
242  String & result,
243  const NumpressConfig & config);
244 
265  void decodeNPRaw(const std::string & in,
266  std::vector<double> & out,
267  const NumpressConfig & config);
268 
269 private:
270 
271  void decodeNPInternal_(const unsigned char* in, size_t in_size, std::vector<double>& out, const NumpressConfig & config);
272  };
273 
274 } //namespace OpenMS
275 
276 
Exception indicating that an invalid parameter was handed over to an algorithm.
Definition: Exception.h:341
Class to encode and decode data encoded with MSNumpress.
Definition: MSNumpressCoder.h:69
void decodeNPInternal_(const unsigned char *in, size_t in_size, std::vector< double > &out, const NumpressConfig &config)
void encodeNP(const std::vector< float > &in, String &result, bool zlib_compression, const NumpressConfig &config)
encodeNP from a float (convert first to double)
virtual ~MSNumpressCoder()
Destructor.
Definition: MSNumpressCoder.h:169
void decodeNPRaw(const std::string &in, std::vector< double > &out, const NumpressConfig &config)
Decode the raw byte array "in" to the result vector "out".
MSNumpressCoder()
default constructor
Definition: MSNumpressCoder.h:166
NumpressCompression
Names of compression schemes.
Definition: MSNumpressCoder.h:74
@ PIC
Pic (MS:1002313, MS-Numpress positive integer compression)
Definition: MSNumpressCoder.h:77
@ SLOF
Slof (MS:1002314, MS-Numpress short logged float compression)
Definition: MSNumpressCoder.h:78
@ NONE
No compression is applied.
Definition: MSNumpressCoder.h:75
@ LINEAR
Linear (MS:1002312, MS-Numpress linear prediction compression)
Definition: MSNumpressCoder.h:76
void encodeNPRaw(const std::vector< double > &in, String &result, const NumpressConfig &config)
Encode the data vector "in" to a raw byte array.
void encodeNP(const std::vector< double > &in, String &result, bool zlib_compression, const NumpressConfig &config)
Encodes a vector of floating point numbers into a Base64 string using numpress.
void decodeNP(const String &in, std::vector< double > &out, bool zlib_compression, const NumpressConfig &config)
Decodes a Base64 string to a vector of floating point numbers using numpress.
A more convenient string class.
Definition: String.h:60
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:48
const double BinaryDataEncoder_default_numpressErrorTolerance
Definition: MSNumpressCoder.h:46
Configuration class for MSNumpress.
Definition: MSNumpressCoder.h:89
double numpressErrorTolerance
Check error tolerance after encoding.
Definition: MSNumpressCoder.h:108
void setCompression(const std::string &compression)
Set compression using a string mapping to enum NumpressCompression.
Definition: MSNumpressCoder.h:149
double linear_fp_mass_acc
Desired mass accuracy for *linear* encoding.
Definition: MSNumpressCoder.h:131
NumpressCompression np_compression
Which compression schema to use.
Definition: MSNumpressCoder.h:114
NumpressConfig()
Definition: MSNumpressCoder.h:133
double numpressFixedPoint
fixed point for numpress algorithms
Definition: MSNumpressCoder.h:98
bool estimate_fixed_point
Whether to estimate the fixed point used for encoding (highly recommended)
Definition: MSNumpressCoder.h:123