Home  · Classes  · Annotated Classes  · Modules  · Members  · Namespaces  · Related Pages
SVOutStream.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: Hendrik Weisser $
32 // $Authors: Hendrik Weisser $
33 // --------------------------------------------------------------------------
34 
35 #ifndef OPENMS_FORMAT_SVOUTSTREAM_H
36 #define OPENMS_FORMAT_SVOUTSTREAM_H
37 
39 #include <ostream>
40 #include <fstream> // std::ofstream
41 #include <boost/math/special_functions/fpclassify.hpp> // for "isnan"
42 
43 namespace OpenMS
44 {
46  enum Newline {nl};
47 
55  class OPENMS_DLLAPI SVOutStream :
56  public std::ostream
57  {
58 public:
59 
68  SVOutStream(const String& file_out,
69  const String& sep = "\t",
70  const String& replacement = "_",
72 
81  SVOutStream(std::ostream& out,
82  const String& sep = "\t",
83  const String& replacement = "_",
85 
92  ~SVOutStream();
93 
99  SVOutStream& operator<<(String str); // use call-by-value here
100 
101 
107  SVOutStream& operator<<(const std::string& str);
108 
109 
115  SVOutStream& operator<<(const char* c_str);
116 
117 
123  SVOutStream& operator<<(const char c);
124 
126  SVOutStream& operator<<(std::ostream& (*fp)(std::ostream&));
127 
134 
136  template <typename T>
137  SVOutStream& operator<<(const T& value)
138  {
139  if (!newline_) static_cast<std::ostream&>(*this) << sep_;
140  else newline_ = false;
141  static_cast<std::ostream&>(*this) << value;
142  return *this;
143  }
144 
146  SVOutStream& write(const String& str); // write unmodified string
147 
148 
154  bool modifyStrings(bool modify);
155 
156 
158  template <typename NumericT>
159  SVOutStream& writeValueOrNan(NumericT thing)
160  {
161  if ((boost::math::isfinite)(thing)) return operator<<(thing);
162 
163  bool old = modifyStrings(false);
164  if ((boost::math::isnan)(thing)) operator<<(nan_);
165  else if (thing < 0) operator<<("-" + inf_);
166  else operator<<(inf_);
167  modifyStrings(old);
168  return *this;
169  }
170 
171 protected:
173  std::ofstream* ofs_;
174 
177 
180 
183 
186 
189 
192 
194  bool newline_;
195 
197  std::stringstream ss_;
198  };
199 
200 }
201 
202 #endif
A more convenient string class.
Definition: String.h:57
Definition: String.h:80
const double c
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
std::stringstream ss_
Stream for testing if a manipulator is "std::endl".
Definition: SVOutStream.h:197
QuotingMethod
How to handle embedded quotes when quoting strings.
Definition: String.h:80
bool newline_
Are we at the beginning of a line? (Otherwise, insert separator before next item.) ...
Definition: SVOutStream.h:194
String nan_
String to use for NaN values.
Definition: SVOutStream.h:182
Definition: SVOutStream.h:46
std::ostream & operator<<(std::ostream &os, const AccurateMassSearchResult &amsr)
SVOutStream & operator<<(const T &value)
Generic stream output operator (for non-character-based types)
Definition: SVOutStream.h:137
String replacement_
Replacement for separator.
Definition: SVOutStream.h:179
std::ofstream * ofs_
internal file stream when C&#39;tor is called with a filename
Definition: SVOutStream.h:173
String inf_
String to use for Inf values.
Definition: SVOutStream.h:185
SVOutStream & writeValueOrNan(NumericT thing)
Write a numeric value or "nan"/"inf"/"-inf", if applicable (would not be needed for Linux) ...
Definition: SVOutStream.h:159
String sep_
Separator string.
Definition: SVOutStream.h:176
Stream class for writing to comma/tab/...-separated values files.
Definition: SVOutStream.h:55
Newline
custom newline indicator
Definition: SVOutStream.h:46
String::QuotingMethod quoting_
String quoting method.
Definition: SVOutStream.h:188
bool modify_strings_
On/off switch for modification of strings.
Definition: SVOutStream.h:191

OpenMS / TOPP release 2.3.0 Documentation generated on Tue Jan 9 2018 18:22:04 using doxygen 1.8.13