//# StreamLogSink.h: Send log messages to an ostream. //# Copyright (C) 1996,2000,2001,2003 //# Associated Universities, Inc. Washington DC, USA. //# //# This library is free software; you can redistribute it and/or modify it //# under the terms of the GNU Library General Public License as published by //# the Free Software Foundation; either version 2 of the License, or (at your //# option) any later version. //# //# This library is distributed in the hope that it will be useful, but WITHOUT //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public //# License for more details. //# //# You should have received a copy of the GNU Library General Public License //# along with this library; if not, write to the Free Software Foundation, //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA. //# //# Correspondence concerning AIPS++ should be addressed as follows: //# Internet email: aips2-request@nrao.edu. //# Postal address: AIPS++ Project Office //# National Radio Astronomy Observatory //# 520 Edgemont Road //# Charlottesville, VA 22903-2475 USA //# //# //# $Id$ #ifndef CASA_STREAMLOGSINK_H #define CASA_STREAMLOGSINK_H #include #include #include namespace casacore { //# NAMESPACE CASACORE - BEGIN // // Send log messages to an ostream. // // // // // //
  • LogSinkInterface //
  • ostream // // // // "Stream" from the family of standard C++ I/O classes. // // // // StreamLogSink is a straightforward // LogSinkInterface which sends its // messages to an ostream (typically cerr) which it is // given at construction time. It is not intended to be used directly, rather it // should be used through LogSink. // // // // See Logging.h. // // // // Writing to standard output or error will be a common way of displaying log // messages. // // // //
  • Nothing known. // class StreamLogSink : public LogSinkInterface { public: // Defaults to cerr if no stream is supplied. The caller is // responsible for ensuring that the supplied ostream ostream // lives at least as long as this sink. If not filter is supplied, // NORMAL is used. // explicit StreamLogSink(ostream *theStream = 0, bool deleteStream = false); explicit StreamLogSink(LogMessage::Priority filter, ostream *theStream = 0, bool deleteStream = false); explicit StreamLogSink(const LogFilterInterface &filter, ostream *theStream = 0, bool deleteStream = false); // // Make a copy of other. After copying, both objects will post // to the same stream. // StreamLogSink(const StreamLogSink &other); StreamLogSink &operator=(const StreamLogSink &other); // ~StreamLogSink(); // Write message to the stream if it passes the filter. Works // by calling operator<<(ostream &,const LogMesssage&). virtual Bool postLocally(const LogMessage &message); // write any pending output. virtual void flush (Bool global=True); // Returns the id for this class... static String localId( ); // Returns the id of the LogSink in use... String id( ) const; private: ostream *stream_p; bool deleteStream; }; } //# NAMESPACE CASACORE - END #endif