![]() |
Bimetric 3+1 toolkit for spherical symmetry
|
00001 /** 00002 * @file slog.h 00003 * @brief Writing both to cerr and cout simultaneously. 00004 * @author Mikica Kocic 00005 * @copyright GNU General Public License (GPLv3). 00006 */ 00007 00008 #include <sys/stat.h> 00009 // #include <sys/types.h> 00010 00011 /** SLog enables writing both to cerr and cout simultaneously. 00012 */ 00013 struct SLog 00014 { 00015 bool disabled; 00016 bool tty; 00017 00018 SLog () { 00019 disabled = false; 00020 struct stat buf; 00021 tty = fstat( fileno( stderr ), &buf ) >= 0 00022 && (buf.st_mode & S_IFMT) == S_IFCHR; 00023 } 00024 00025 SLog& operator<< ( std::ostream& (*pfun)(std::ostream&) ) 00026 { 00027 if ( disabled ) return *this; 00028 pfun( std::cerr ); 00029 if ( ! tty ) pfun( std::cout ); 00030 return *this; 00031 } 00032 }; 00033 00034 template <class T> 00035 SLog& operator<< ( SLog& st, T val ) 00036 { 00037 if ( st.disabled ) return st; 00038 std::cerr << val; 00039 if ( ! st.tty ) std::cout << val; 00040 return st; 00041 } 00042 00043 static SLog slog;