16 #include <boost/math/special_functions/fpclassify.hpp>
45 const String& replacement =
"_",
58 const String& replacement =
"_",
113 typename std::enable_if<std::is_arithmetic<typename std::remove_reference<T>::type>::value,
SVOutStream&>::type
operator<<(
const T& value)
115 if (!newline_)
static_cast<std::ostream&
>(*this) << sep_;
116 else newline_ =
false;
117 static_cast<std::ostream&
>(*this) <<
String(value);
123 typename std::enable_if<!std::is_arithmetic<typename std::remove_reference<T>::type>::value,
SVOutStream&>::type
operator<<(
const T& value)
126 static_cast<std::ostream &
>(*this) << sep_;
129 static_cast<std::ostream &
>(*this) << value;
146 template <
typename NumericT>
149 if ((boost::math::isfinite)(thing))
return operator<<(thing);
151 bool old = modifyStrings(
false);
152 if ((boost::math::isnan)(thing))
Stream class for writing to comma/tab/...-separated values files.
Definition: SVOutStream.h:32
String::QuotingMethod quoting_
String quoting method.
Definition: SVOutStream.h:185
bool newline_
Are we at the beginning of a line? (Otherwise, insert separator before next item.)
Definition: SVOutStream.h:191
SVOutStream & operator<<(const char *c_str)
Stream output operator for char*.
SVOutStream & operator<<(std::ostream &(*fp)(std::ostream &))
Stream output operator for manipulators (used to catch std::endl)
std::enable_if<!std::is_arithmetic< typename std::remove_reference< T >::type >::value, SVOutStream & >::type operator<<(const T &value)
Generic stream output operator (for non-character-based types)
Definition: SVOutStream.h:123
std::stringstream ss_
Stream for testing if a manipulator is "std::endl".
Definition: SVOutStream.h:194
SVOutStream & operator<<(enum Newline)
Stream output operator for custom newline (nl) without flushing.
String sep_
Separator string.
Definition: SVOutStream.h:173
SVOutStream & operator<<(String str)
Stream output operator for String.
String inf_
String to use for Inf values.
Definition: SVOutStream.h:182
bool modifyStrings(bool modify)
Switch modification of strings (quoting/replacing of separators) on/off.
SVOutStream & operator<<(const char c)
Stream output operator for char.
SVOutStream(const String &file_out, const String &sep="\t", const String &replacement="_", String::QuotingMethod quoting=String::DOUBLE)
Constructor.
String replacement_
Replacement for separator.
Definition: SVOutStream.h:176
std::enable_if< std::is_arithmetic< typename std::remove_reference< T >::type >::value, SVOutStream & >::type operator<<(const T &value)
Definition: SVOutStream.h:113
SVOutStream & writeValueOrNan(NumericT thing)
Write a numeric value or "nan"/"inf"/"-inf", if applicable (would not be needed for Linux)
Definition: SVOutStream.h:147
SVOutStream & operator<<(const std::string &str)
Stream output operator for std::string.
~SVOutStream() override
Destructor.
String nan_
String to use for NaN values.
Definition: SVOutStream.h:179
SVOutStream(std::ostream &out, const String &sep="\t", const String &replacement="_", String::QuotingMethod quoting=String::DOUBLE)
Constructor.
std::ofstream * ofs_
internal file stream when C'tor is called with a filename
Definition: SVOutStream.h:170
bool modify_strings_
On/off switch for modification of strings.
Definition: SVOutStream.h:188
SVOutStream & write(const String &str)
Unformatted output (no quoting: useful for comments, but use only on a line of its own!...
A more convenient string class.
Definition: String.h:34
QuotingMethod
How to handle embedded quotes when quoting strings.
Definition: String.h:55
@ DOUBLE
Definition: String.h:55
const double c
Definition: Constants.h:188
Main OpenMS namespace.
Definition: openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:19
std::ostream & operator<<(std::ostream &os, const AccurateMassSearchResult &amsr)
Newline
custom newline indicator
Definition: SVOutStream.h:21
@ nl
Definition: SVOutStream.h:21