mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-11 02:02:22 +00:00
64 lines
2.7 KiB
C++
64 lines
2.7 KiB
C++
/********************************************************************************
|
|
* *
|
|
* 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
|
|
|
|
#include <set>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <sstream>
|
|
#include <algorithm>
|
|
|
|
#ifdef USE_IFC4
|
|
#include "../ifcparse/Ifc4.h"
|
|
#else
|
|
#include "../ifcparse/Ifc2x3.h"
|
|
#endif
|
|
|
|
#include <boost/optional.hpp>
|
|
|
|
#include "IfcParse_Export.h"
|
|
|
|
class IfcParse_EXPORT Logger {
|
|
public:
|
|
typedef enum { LOG_NOTICE, LOG_WARNING, LOG_ERROR } Severity;
|
|
private:
|
|
static std::ostream* log1;
|
|
static std::ostream* log2;
|
|
static std::stringstream log_stream;
|
|
static Severity verbosity;
|
|
static const char* severity_strings[];
|
|
static boost::optional<IfcSchema::IfcProduct*> current_product;
|
|
public:
|
|
static void SetProduct(boost::optional<IfcSchema::IfcProduct*> product);
|
|
/// Determines to what stream respectively progress and errors are logged
|
|
static void SetOutput(std::ostream* l1, std::ostream* l2);
|
|
/// Determines the types of log messages to get logged
|
|
static void Verbosity(Severity v);
|
|
static Severity Verbosity();
|
|
/// Log a message to the output stream
|
|
static void Message(Severity type, const std::string& message, IfcAbstractEntity* entity=0);
|
|
static void Status(const std::string& message, bool new_line=true);
|
|
static void ProgressBar(int progress);
|
|
static std::string GetLog();
|
|
};
|
|
|
|
#endif
|