103 public std::streambuf
422 void setPrefix(
const std::ostream & s,
const std::string & prefix);
450 #define OPENMS_LOG_FATAL_ERROR \
451 OPENMS_THREAD_CRITICAL(LOGSTREAM) \
452 OpenMS_Log_fatal << __FILE__ << "(" << __LINE__ << "): "
455 #define OPENMS_LOG_ERROR \
456 OPENMS_THREAD_CRITICAL(LOGSTREAM) \
460 #define OPENMS_LOG_WARN \
461 OPENMS_THREAD_CRITICAL(LOGSTREAM) \
465 #define OPENMS_LOG_INFO \
466 OPENMS_THREAD_CRITICAL(LOGSTREAM) \
470 #define OPENMS_LOG_DEBUG \
471 OPENMS_THREAD_CRITICAL(LOGSTREAM) \
472 OpenMS_Log_debug << [](){ constexpr const char * x = (past_last_slash(__FILE__)); return x; }() << "(" << __LINE__ << "): "
475 #define OPENMS_LOG_DEBUG_NOFILE \
476 OPENMS_THREAD_CRITICAL(LOGSTREAM) \
Stream buffer used by LogStream.
Definition: LogStream.h:104
Size getNextLogCounter_()
Returns the next free index for a log message.
char * pbuf_
Definition: LogStream.h:208
std::map< Size, std::string > log_time_cache_
Cache of the occurrence sequence of the last two log messages.
Definition: LogStream.h:234
Size log_cache_counter_
Definition: LogStream.h:229
std::string expandPrefix_(const std::string &prefix, time_t time) const
Interpret the prefix format string and return the expanded prefix.
std::string level_
Definition: LogStream.h:209
std::list< StreamStruct > stream_list_
Definition: LogStream.h:210
int counter
Definition: LogStream.h:222
Size timestamp
Definition: LogStream.h:221
std::map< std::string, LogCacheStruct > log_cache_
Cache of the last two log messages.
Definition: LogStream.h:232
int syncLF_()
Non-lock acquiring sync function called in the d'tor.
LogStreamBuf(std::string log_level=UNKNOWN_LOG_LEVEL)
void setLevel(std::string level)
std::string addToCache_(std::string const &line)
std::string incomplete_line_
Definition: LogStream.h:211
static const std::string UNKNOWN_LOG_LEVEL
Definition: LogStream.h:113
bool isInCache_(std::string const &line)
Checks if the line is already in the cache.
static const time_t MAX_TIME
Definition: LogStream.h:112
int overflow(int c=-1) override
void distribute_(std::string outstring)
Distribute a new message to connected streams.
Holds a counter of occurrences and an index for the occurrence sequence of the corresponding log mess...
Definition: LogStream.h:220
Definition: LogStream.h:259
virtual ~LogStreamNotifier()
Destructor.
LogStreamNotifier()
Empty constructor.
LogStream * registered_at_
Definition: LogStream.h:280
void registerAt(LogStream &log_stream)
std::stringstream stream_
Definition: LogStream.h:278
Log Stream Class.
Definition: LogStream.h:313
bool hasStream_(std::ostream &stream)
LogStream(LogStreamBuf *buf=nullptr, bool delete_buf=true, std::ostream *stream=nullptr)
void insert(std::ostream &s)
std::list< LogStreamBuf::StreamStruct >::iterator StreamIterator
Definition: LogStream.h:433
~LogStream() override
Clears all message buffers.
LogStreamBuf * operator->()
Arrow operator.
void setPrefix(const std::ostream &s, const std::string &prefix)
bool delete_buffer_
Definition: LogStream.h:443
void insertNotification(std::ostream &s, LogStreamNotifier &target)
Add a notification target.
void setPrefix(const std::string &prefix)
Set prefix of all output streams, details see setPrefix method with ostream.
void setLevel(std::string level)
void remove(std::ostream &s)
StreamIterator findStream_(const std::ostream &stream)
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:127
const double c
Definition: Constants.h:209
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
Logger::LogStream OpenMS_Log_warn
Global static instance of a LogStream to capture messages classified as warnings. By default it is bo...
Logger::LogStream OpenMS_Log_error
Global static instance of a LogStream to capture messages classified as errors. By default it is boun...
Logger::LogStream OpenMS_Log_info
Global static instance of a LogStream to capture messages classified as information....
Logger::LogStream OpenMS_Log_fatal
Global static instance of a LogStream to capture messages classified as fatal errors....
Logger::LogStream OpenMS_Log_debug
Global static instance of a LogStream to capture messages classified as debug output....
Holds a stream that is connected to the LogStream. It also includes the minimum and maximum level at ...
Definition: LogStream.h:177
std::string prefix
Definition: LogStream.h:179
StreamStruct()
Definition: LogStream.h:182
LogStreamNotifier * target
Definition: LogStream.h:180
~StreamStruct()
Delete the notification target.
Definition: LogStream.h:188
std::ostream * stream
Definition: LogStream.h:178