00001
00002
00003
00004
00005
00006
00007
00008 #ifndef IMP_LOG_H
00009 #define IMP_LOG_H
00010
00011 #include "kernel_config.h"
00012 #include "internal/log_internal.h"
00013 #include "utility.h"
00014 #include "macros.h"
00015
00016 #include <iostream>
00017 #include <fstream>
00018 #include <cstdlib>
00019 #include <cassert>
00020 #include <string>
00021 #include <sstream>
00022 #include <map>
00023
00024 IMP_BEGIN_NAMESPACE
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061 enum LogLevel {DEFAULT=-1, SILENT=0, WARNING=1, TERSE=2, VERBOSE=3,
00062 MEMORY=4
00063 #ifndef IMP_DOXYGEN
00064 , ALL_LOG
00065 #endif
00066 };
00067
00068
00069 #if !defined SWIG && !defined(IMP_DOXYGEN)
00070 namespace internal {
00071 IMPEXPORT extern LogLevel log_level;
00072 IMPEXPORT extern unsigned int log_indent;
00073 }
00074 #endif
00075
00076
00077 IMPEXPORT void add_to_log(std::string to_write);
00078
00079
00080
00081
00082
00083 IMPEXPORT void set_log_level(LogLevel l);
00084
00085
00086
00087
00088
00089
00090
00091 inline LogLevel get_log_level()
00092 {
00093 return internal::log_level;
00094 }
00095
00096 #ifndef IMP_DOXYGEN
00097 inline bool is_log_output(LogLevel l)
00098 {
00099 return l <= get_log_level();
00100 }
00101 #endif
00102
00103 #ifdef IMP_DOXYGEN
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119 #define IMP_IF_LOG(level)\
00120 if (level <= ::IMP::get_log_level())
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133 #define IMP_LOG(level, expr) if (IMP::is_log_output(level)) \
00134 { std::ostringstream oss; \
00135 oss<< expr << std::flush; \
00136 IMP::add_to_log(oss.str()); \
00137 };
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147 #define IMP_LOG_WRITE(level, expr) if (IMP::is_log_output(level)) \
00148 {std::ostringstream IMP_STREAM; \
00149 expr; \
00150 IMP::add_to_log(IMP_STREAM.str()); \
00151 }
00152 #else // IMP_DOXYGEN
00153
00154 #if IMP_BUILD < IMP_FAST
00155
00156 #define IMP_IF_LOG(level)\
00157 if (level <= ::IMP::get_log_level())
00158
00159 #define IMP_LOG(level, expr) if (IMP::is_log_output(level)) \
00160 { std::ostringstream oss; \
00161 oss<< expr << std::flush; \
00162 IMP::add_to_log(oss.str()); \
00163 };
00164
00165 #define IMP_LOG_WRITE(level, expr) if (IMP::is_log_output(level)) \
00166 {std::ostringstream IMP_STREAM; \
00167 expr; \
00168 IMP::add_to_log(IMP_STREAM.str()); \
00169 }
00170
00171 #else
00172 #define IMP_LOG(l,e)
00173 #define IMP_LOG_WRITE(l,e)
00174 #define IMP_IF_LOG(l) if (false)
00175 #endif
00176 #endif // else on IMP_DXOYGEN
00177
00178
00179 #ifdef IMP_DOXYGEN
00180
00181
00182
00183
00184 #define IMP_WARN(expr)
00185
00186
00187
00188
00189
00190
00191
00192
00193 #define IMP_WARN_ONCE(expr, context)
00194
00195
00196
00197
00198
00199 #define IMP_WARN_WRITE(expr)
00200
00201
00202
00203
00204
00205 #define IMP_ERROR(expr)
00206
00207
00208
00209
00210
00211 #define IMP_ERROR_WRITE(expr)
00212
00213 #else
00214 #define IMP_WARN(expr) if (IMP::is_log_output(IMP::WARNING)) \
00215 { std::ostringstream oss; \
00216 oss << "WARNING " << expr << std::flush; \
00217 IMP::add_to_log(oss.str()); \
00218 };
00219
00220
00221 struct WarningContext {
00222 mutable std::map<std::string, int> data_;
00223 public:
00224 void add_warning(std::string str) const {
00225 if (data_.find(str) == data_.end()) {
00226 data_[str]=1;
00227 } else {
00228 ++data_[str];
00229 }
00230 }
00231 void dump_warnings() const {
00232 for (std::map<std::string, int>::const_iterator it= data_.begin();
00233 it != data_.end(); ++it) {
00234 IMP_WARN(it->first << "(" << it->second << " times)" << std::endl);
00235 }
00236 data_.clear();
00237 }
00238 ~WarningContext() {
00239 dump_warnings();
00240 }
00241 };
00242
00243
00244 #define IMP_WARN_ONCE(expr, context) { \
00245 std::ostringstream oss; \
00246 oss << expr << std::flush; \
00247 context.add_warning(oss.str()); \
00248 }
00249
00250
00251 #define IMP_WARN_WRITE(expr) if (IMP::is_log_output(IMP::WARNING)) \
00252 {std::ostringstream IMP_STREAM; \
00253 expr; \
00254 IMP::add_to_log(IMP_STREAM.str()); \
00255 }
00256
00257 #define IMP_ERROR(expr) std::cerr << "ERROR: " << expr << std::endl;
00258
00259 #define IMP_ERROR_WRITE(expr) { \
00260 std::ostream &IMP_STREAM = std::cerr; \
00261 std::cerr<< "ERROR "; \
00262 expr; \
00263 std::cerr << std::endl; \
00264 }
00265 #endif
00266
00267
00268
00269
00270
00271
00272
00273
00274
00275
00276
00277
00278
00279
00280
00281
00282
00283
00284
00285
00286
00287
00288
00289
00290
00291
00292
00293
00294 struct IncreaseIndent: public RAII {
00295 IncreaseIndent(){
00296 internal::log_indent+=2;
00297 }
00298 ~IncreaseIndent() {
00299 internal::log_indent-=2;
00300 }
00301 };
00302
00303
00304
00305 IMP_END_NAMESPACE
00306
00307 #endif