40#ifndef GEOGRAM_BASIC_LOGGER
41#define GEOGRAM_BASIC_LOGGER
81 LoggerStreamBuf(LoggerStream* loggerStream) :
82 loggerStream_(loggerStream) {
97 LoggerStream* loggerStream_;
117 LoggerStream(Logger* logger);
122 ~LoggerStream()
override;
134 void notify(
const std::string& str);
138 friend class LoggerStreamBuf;
156 class GEOGRAM_API LoggerClient :
public Counted {
163 virtual void div(
const std::string& title) = 0;
169 virtual void out(
const std::string& str) = 0;
175 virtual void warn(
const std::string& str) = 0;
181 virtual void err(
const std::string& str) = 0;
187 virtual void status(
const std::string& str) = 0;
192 ~LoggerClient()
override;
196 typedef SmartPointer<LoggerClient> LoggerClient_var;
203 class GEOGRAM_API ConsoleLogger :
public LoggerClient {
213 void div(
const std::string& title)
override;
218 void out(
const std::string& str)
override;
223 void warn(
const std::string& str)
override;
228 void err(
const std::string& str)
override;
234 void status(
const std::string& str)
override;
240 ~ConsoleLogger()
override;
248 class GEOGRAM_API FileLogger :
public LoggerClient {
263 FileLogger(
const std::string& file_name);
268 void div(
const std::string& title)
override;
273 void out(
const std::string& str)
override;
278 void warn(
const std::string& str)
override;
283 void err(
const std::string& str)
override;
289 void status(
const std::string& str)
override;
295 ~FileLogger()
override;
303 void set_file_name(
const std::string& file_name);
306 std::string log_file_name_;
307 std::ostream* log_file_;
358 class GEOGRAM_API Logger :
public Environment {
387 static Logger* instance();
399 static bool is_initialized();
413 static std::ostream& div(
const std::string& title);
425 static std::ostream& out(
const std::string& feature);
437 static std::ostream& err(
const std::string& feature);
449 static std::ostream& warn(
const std::string& feature);
459 static std::ostream& status();
470 void register_client(LoggerClient* client);
481 void unregister_client(LoggerClient* client);
486 void unregister_all_clients();
494 bool is_client(LoggerClient* client)
const;
506 void set_quiet(
bool flag);
513 bool is_quiet()
const {
528 void set_minimal(
bool flag);
535 bool is_minimal()
const {
549 void set_pretty(
bool flag);
556 bool is_pretty()
const {
574 std::ostream& div_stream(
const std::string& title);
577 std::ostream& out_stream(
const std::string& feature);
580 std::ostream& err_stream(
const std::string& feature);
583 std::ostream& warn_stream(
const std::string& feature);
586 std::ostream& status_stream();
595 std::ostream& err_console();
611 void notify(LoggerStream* sender,
const std::string& message);
624 void notify_out(
const std::string& message);
635 void notify_warn(
const std::string& message);
646 void notify_err(
const std::string& message);
657 void notify_status(
const std::string& message);
671 bool set_local_value(
672 const std::string& name,
const std::string& value
686 bool get_local_value(
687 const std::string& name, std::string& value
709 static SmartPointer<Logger> instance_;
714 LoggerStream status_;
716 std::ostream* err_console_;
721 typedef std::set<std::string> FeatureSet;
722 FeatureSet log_features_;
723 FeatureSet log_features_exclude_;
724 bool log_everything_;
725 std::string log_file_name_;
727 std::string current_feature_;
728 bool current_feature_changed_;
731 typedef std::set<LoggerClient_var> LoggerClients;
732 LoggerClients clients_;
737 bool notifying_error_;
741 friend class LoggerStream;
742 friend class LoggerStreamBuf;
743 friend class Stopwatch;
759 int GEOGRAM_API geogram_printf(
const char* format, ...);
774 int GEOGRAM_API geogram_fprintf(FILE* out,
const char* format, ...);
793extern int GEOGRAM_API geogram_printf(
const char* format, ...);
807extern int GEOGRAM_API geogram_fprintf(FILE* out,
const char* format, ...);
#define NO_GEOGRAM_API
A place-holder linkage declaration to indicate that the symbol should not be exported by Windows DLLs...
#define geo_debug_assert(x)
Verifies that a condition is met.
Provides a mechanism to store global variables, retrieve them by their names and attach observers to ...
Common include file, providing basic definitions. Should be included before anything else by all head...
void initialize()
Initializes the command line framework.
void terminate()
Cleans up the command line framework.
Global Vorpaline namespace.
geo_index_t index_t
The type for storing and manipulating indices.
Function and classes for process manipulation.