Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
logger.h
1/*
2 * Copyright (c) 2000-2022 Inria
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
8 * * Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 * * Neither the name of the ALICE Project-Team nor the names of its
14 * contributors may be used to endorse or promote products derived from this
15 * software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
21 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 * POSSIBILITY OF SUCH DAMAGE.
28 *
29 * Contact: Bruno Levy
30 *
31 * https://www.inria.fr/fr/bruno-levy
32 *
33 * Inria,
34 * Domaine de Voluceau,
35 * 78150 Le Chesnay - Rocquencourt
36 * FRANCE
37 *
38 */
39
40#ifndef GEOGRAM_BASIC_LOGGER
41#define GEOGRAM_BASIC_LOGGER
42
43#ifdef __cplusplus
44
48#include <iostream>
49#include <fstream>
50#include <sstream>
51#include <string>
52#include <set>
53#include <stdlib.h>
54
60namespace GEO {
61
62 class Logger;
63 class LoggerStream;
64
73 class NO_GEOGRAM_API LoggerStreamBuf : public std::stringbuf {
74 public:
81 LoggerStreamBuf(LoggerStream* loggerStream) :
82 loggerStream_(loggerStream) {
83 }
84
85 private:
94 int sync() override;
95
96 private:
97 LoggerStream* loggerStream_;
98 };
99
100 /************************************************************************/
101
110 class NO_GEOGRAM_API LoggerStream : public std::ostream {
111 public:
117 LoggerStream(Logger* logger);
118
122 ~LoggerStream() override;
123
124 protected:
134 void notify(const std::string& str);
135
136 private:
137 Logger* logger_;
138 friend class LoggerStreamBuf;
139 };
140
141 /************************************************************************/
142
156 class GEOGRAM_API LoggerClient : public Counted {
157 public:
163 virtual void div(const std::string& title) = 0;
164
169 virtual void out(const std::string& str) = 0;
170
175 virtual void warn(const std::string& str) = 0;
176
181 virtual void err(const std::string& str) = 0;
182
187 virtual void status(const std::string& str) = 0;
188
192 ~LoggerClient() override;
193 };
194
196 typedef SmartPointer<LoggerClient> LoggerClient_var;
197
198 /************************************************************************/
199
203 class GEOGRAM_API ConsoleLogger : public LoggerClient {
204 public:
208 ConsoleLogger();
209
213 void div(const std::string& title) override;
214
218 void out(const std::string& str) override;
219
223 void warn(const std::string& str) override;
224
228 void err(const std::string& str) override;
229
234 void status(const std::string& str) override;
235
236 protected:
240 ~ConsoleLogger() override;
241 };
242
243 /************************************************************************/
244
248 class GEOGRAM_API FileLogger : public LoggerClient {
249 public:
255 FileLogger();
256
263 FileLogger(const std::string& file_name);
264
268 void div(const std::string& title) override;
269
273 void out(const std::string& str) override;
274
278 void warn(const std::string& str) override;
279
283 void err(const std::string& str) override;
284
289 void status(const std::string& str) override;
290
291 protected:
295 ~FileLogger() override;
296
303 void set_file_name(const std::string& file_name);
304
305 private:
306 std::string log_file_name_;
307 std::ostream* log_file_;
308 };
309
310 /************************************************************************/
311
358 class GEOGRAM_API Logger : public Environment {
359 public:
367 static void initialize();
368
375 static void terminate();
376
387 static Logger* instance();
388
389
399 static bool is_initialized();
400
401
413 static std::ostream& div(const std::string& title);
414
425 static std::ostream& out(const std::string& feature);
426
437 static std::ostream& err(const std::string& feature);
438
449 static std::ostream& warn(const std::string& feature);
450
459 static std::ostream& status();
460
470 void register_client(LoggerClient* client);
471
481 void unregister_client(LoggerClient* client);
482
486 void unregister_all_clients();
487
494 bool is_client(LoggerClient* client) const;
495
506 void set_quiet(bool flag);
507
513 bool is_quiet() const {
514 return quiet_;
515 }
516
517
528 void set_minimal(bool flag);
529
535 bool is_minimal() const {
536 return minimal_;
537 }
538
549 void set_pretty(bool flag);
550
556 bool is_pretty() const {
557 return pretty_;
558 }
559
560 protected:
566 Logger();
567
571 ~Logger() override;
572
574 std::ostream& div_stream(const std::string& title);
575
577 std::ostream& out_stream(const std::string& feature);
578
580 std::ostream& err_stream(const std::string& feature);
581
583 std::ostream& warn_stream(const std::string& feature);
584
586 std::ostream& status_stream();
587
595 std::ostream& err_console();
596
611 void notify(LoggerStream* sender, const std::string& message);
612
624 void notify_out(const std::string& message);
625
635 void notify_warn(const std::string& message);
636
646 void notify_err(const std::string& message);
647
657 void notify_status(const std::string& message);
658
671 bool set_local_value(
672 const std::string& name, const std::string& value
673 ) override;
674
686 bool get_local_value(
687 const std::string& name, std::string& value
688 ) const override;
689
690
695 void indent() {
696 ++indent_;
697 }
698
703 void unindent() {
704 geo_debug_assert(indent_ != 0);
705 --indent_;
706 }
707
708 private:
709 static SmartPointer<Logger> instance_;
710
711 LoggerStream out_;
712 LoggerStream warn_;
713 LoggerStream err_;
714 LoggerStream status_;
715
716 std::ostream* err_console_;
717
718 // features we want or don't want to log (only applies to 'out').
719
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_;
726
727 std::string current_feature_;
728 bool current_feature_changed_;
729
731 typedef std::set<LoggerClient_var> LoggerClients;
732 LoggerClients clients_; // list of registered clients
733
734 bool quiet_;
735 bool pretty_;
736 bool minimal_;
737 bool notifying_error_;
738
739 index_t indent_;
740
741 friend class LoggerStream;
742 friend class LoggerStreamBuf;
743 friend class Stopwatch;
744 };
745
746 /************************************************************************/
747
748}
749
750extern "C" {
759 int GEOGRAM_API geogram_printf(const char* format, ...);
760
774 int GEOGRAM_API geogram_fprintf(FILE* out, const char* format, ...);
775}
776
777#else
778
779#include <stdlib.h>
780
781#ifndef GEOGRAM_API
782#define GEOGRAM_API
783#endif
784
793extern int GEOGRAM_API geogram_printf(const char* format, ...);
794
807extern int GEOGRAM_API geogram_fprintf(FILE* out, const char* format, ...);
808
809#endif
810
811#endif
#define NO_GEOGRAM_API
A place-holder linkage declaration to indicate that the symbol should not be exported by Windows DLLs...
Definition defs.h:93
#define geo_debug_assert(x)
Verifies that a condition is met.
Definition assert.h:196
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.
Definition numeric.h:329
Function and classes for process manipulation.