Files
IfcOpenShell/src/ifcparse/IfcLogger.h
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

116 lines
5.2 KiB
C++
Raw Normal View History

2016-05-11 09:56:40 +01:00
/********************************************************************************
* *
* This file is part of IfcOpenShell. *
* *
* IfcOpenShell is free software: you can redistribute it and/or modify *
* it under the terms of the Lesser GNU General Public License as published by *
* the Free Software Foundation, either version 3.0 of the License, or *
* (at your option) any later version. *
* *
* IfcOpenShell 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 *
* Lesser GNU General Public License for more details. *
* *
* You should have received a copy of the Lesser GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
* *
********************************************************************************/
#ifndef IFCLOGGER_H
#define IFCLOGGER_H
2023-09-17 12:30:17 +02:00
#include "ifc_parse_api.h"
#include "express.h"
2017-12-22 13:51:11 +01:00
2023-09-17 12:30:17 +02:00
#include <boost/optional.hpp>
#include <boost/scope_exit.hpp>
#include <exception>
2022-01-07 15:12:32 +01:00
#include <map>
2023-09-17 12:30:17 +02:00
#include <sstream>
2016-05-11 09:56:40 +01:00
#include <string>
class IFC_PARSE_API Logger {
2023-09-17 12:30:17 +02:00
public:
typedef enum {
LOG_PERF,
LOG_DEBUG,
LOG_NOTICE,
LOG_WARNING,
LOG_ERROR
} Severity;
typedef enum {
FMT_PLAIN,
FMT_JSON
} Format;
private:
// To both stream variants need to exist at runtime or should this be a
// template argument of Logger or controlled using preprocessor directives?
static std::ostream* log1_;
static std::ostream* log2_;
2023-09-17 12:30:17 +02:00
static std::wostream* wlog1_;
static std::wostream* wlog2_;
2023-09-17 12:30:17 +02:00
static std::stringstream log_stream_;
2023-09-17 12:30:17 +02:00
static Severity verbosity_;
static Format format_;
static Severity max_severity_;
2023-09-17 12:30:17 +02:00
static std::optional<long long> first_timepoint_;
static std::map<std::string, double> performance_statistics_;
static std::map<std::string, double> performance_signal_start_;
2023-09-17 12:30:17 +02:00
static bool print_perf_stats_on_element_;
2023-09-17 12:30:17 +02:00
public:
static void SetProduct(std::optional<const express::Base> product);
2023-09-17 12:30:17 +02:00
/// Determines to what stream respectively progress and errors are logged
static void SetOutput(std::wostream* stream1, std::wostream* stream2);
2023-09-17 12:30:17 +02:00
/// Determines to what stream respectively progress and errors are logged
static void SetOutput(std::ostream* stream1, std::ostream* stream2);
2023-09-17 12:30:17 +02:00
/// Determines the types of log messages to get logged
static void Verbosity(Severity severity);
2023-09-17 12:30:17 +02:00
static Severity Verbosity();
static Severity MaxSeverity();
/// Determines output format: plain text or sequence of JSON objects
static void OutputFormat(Format format);
2023-09-17 12:30:17 +02:00
static Format OutputFormat();
/// Log a message to the output stream
static void Message(Severity type, const std::string& message, const express::Base& instance = express::Base());
static void Message(Severity type, const std::exception& exception, const express::Base& instance = express::Base());
2023-09-17 12:30:17 +02:00
static void Notice(const std::string& message, const express::Base& instance = express::Base()) { Message(LOG_NOTICE, message, instance); }
static void Warning(const std::string& message, const express::Base& instance = express::Base()) { Message(LOG_WARNING, message, instance); }
static void Error(const std::string& message, const express::Base& instance = express::Base()) { Message(LOG_ERROR, message, instance); }
2017-08-01 16:45:11 +02:00
static void Notice(const std::exception& exception, const express::Base& instance = express::Base()) { Message(LOG_NOTICE, exception, instance); }
static void Warning(const std::exception& exception, const express::Base& instance = express::Base()) { Message(LOG_WARNING, exception, instance); }
static void Error(const std::exception& exception, const express::Base& instance = express::Base()) { Message(LOG_ERROR, exception, instance); }
2017-08-01 16:45:11 +02:00
2023-09-17 12:30:17 +02:00
static void Status(const std::string& message, bool new_line = true);
2016-05-11 09:56:40 +01:00
2023-09-17 12:30:17 +02:00
static void ProgressBar(int progress);
static std::string GetLog();
static void PrintPerformanceStats();
static void PrintPerformanceStatsOnElement(bool b) { print_perf_stats_on_element_ = b; }
2023-09-17 12:30:17 +02:00
};
2022-01-07 15:12:32 +01:00
2023-09-17 12:30:17 +02:00
#define PERF(x) \
\
Logger::Message(Logger::LOG_PERF, x); \
\
BOOST_SCOPE_EXIT(void) { \
Logger::Message(Logger::LOG_PERF, "done " + std::string(x)); \
} \
BOOST_SCOPE_EXIT_END
2022-01-07 15:12:32 +01:00
#endif