#1973 Performance logging

This commit is contained in:
Thomas Krijnen
2022-01-07 15:12:32 +01:00
parent 671ab78c76
commit b8ea42540e
4 changed files with 312 additions and 98 deletions
+22 -6
View File
@@ -661,12 +661,24 @@ int main(int argc, char** argv) {
Logger::SetOutput(quiet ? nullptr : &cout_, vcounter.count > 1 ? &cout_ : &log_stream); Logger::SetOutput(quiet ? nullptr : &cout_, vcounter.count > 1 ? &cout_ : &log_stream);
} }
Logger::Verbosity(vcounter.count switch (vcounter.count) {
? (vcounter.count > 1 case 0:
? Logger::LOG_DEBUG Logger::Verbosity(Logger::LOG_ERROR);
: Logger::LOG_NOTICE) break;
: Logger::LOG_ERROR case 1:
); Logger::Verbosity(Logger::LOG_NOTICE);
break;
case 2:
Logger::Verbosity(Logger::LOG_DEBUG);
break;
case 3:
Logger::Verbosity(Logger::LOG_PERF);
break;
case 4:
Logger::Verbosity(Logger::LOG_PERF);
Logger::PrintPerformanceStatsOnElement(true);
break;
}
path_t output_temp_filename = output_filename + IfcUtil::path::from_utf8(TEMP_FILE_EXTENSION); path_t output_temp_filename = output_filename + IfcUtil::path::from_utf8(TEMP_FILE_EXTENSION);
@@ -1174,6 +1186,10 @@ int main(int argc, char** argv) {
Logger::Status("\nConversion took " + format_duration(start, end)); Logger::Status("\nConversion took " + format_duration(start, end));
} }
if (!quiet && Logger::Verbosity() == Logger::LOG_PERF) {
Logger::PrintPerformanceStats();
}
return successful ? EXIT_SUCCESS : EXIT_FAILURE; return successful ? EXIT_SUCCESS : EXIT_FAILURE;
} }
+209 -85
View File
@@ -474,12 +474,14 @@ namespace {
return M; return M;
} }
void bounding_box_overlap(double p, const TopoDS_Shape& a, const TopTools_ListOfShape& b, TopTools_ListOfShape& c) { int bounding_box_overlap(double p, const TopoDS_Shape& a, const TopTools_ListOfShape& b, TopTools_ListOfShape& c) {
int N = 0;
Bnd_Box A; Bnd_Box A;
BRepBndLib::Add(a, A); BRepBndLib::Add(a, A);
if (A.IsVoid()) { if (A.IsVoid()) {
return; return 0;
} }
TopTools_ListIteratorOfListOfShape it(b); TopTools_ListIteratorOfListOfShape it(b);
@@ -493,8 +495,12 @@ namespace {
if (A.Distance(B) < p) { if (A.Distance(B) < p) {
c.Append(it.Value()); c.Append(it.Value());
} else {
++N;
} }
} }
return N;
} }
bool get_edge_axis(const TopoDS_Edge& e, gp_Ax1& ax) { bool get_edge_axis(const TopoDS_Edge& e, gp_Ax1& ax) {
@@ -4549,8 +4555,12 @@ bool IfcGeom::Kernel::boolean_operation(const TopoDS_Shape& a, const TopoDS_Shap
} }
#else #else
bool IfcGeom::Kernel::boolean_operation(const TopoDS_Shape& a_, const TopTools_ListOfShape& b__, BOPAlgo_Operation op, TopoDS_Shape& result, double fuzziness) { bool IfcGeom::Kernel::boolean_operation(const TopoDS_Shape& a_input, const TopTools_ListOfShape& b_input, BOPAlgo_Operation op, TopoDS_Shape& result, double fuzziness) {
const bool do_unify = true;
const bool do_subtraction_eliminate_disjoint_bbox = true;
const bool do_subtraction_eliminate_touching = true;
const bool debug = getValue(GV_DEBUG_BOOLEAN) > 0.; const bool debug = getValue(GV_DEBUG_BOOLEAN) > 0.;
std::string debug_identifier; std::string debug_identifier;
if (debug) { if (debug) {
@@ -4566,31 +4576,55 @@ bool IfcGeom::Kernel::boolean_operation(const TopoDS_Shape& a_, const TopTools_L
// @todo, it does seem a bit odd, we first triangulate non-planar faces // @todo, it does seem a bit odd, we first triangulate non-planar faces
// to later unify them again. Can we make this a bit more intelligent? // to later unify them again. Can we make this a bit more intelligent?
TopoDS_Shape a = unify(a_, fuzziness); TopoDS_Shape a;
TopTools_ListOfShape b_; TopTools_ListOfShape b;
{
TopTools_ListIteratorOfListOfShape it(b__); if (do_unify) {
for (; it.More(); it.Next()) { PERF("boolean operation: unifying operands");
b_.Append(unify(it.Value(), fuzziness));
a = unify(a_input, fuzziness);
{
TopTools_ListIteratorOfListOfShape it(b_input);
for (; it.More(); it.Next()) {
b.Append(unify(it.Value(), fuzziness));
}
} }
} else {
a = a_input;
b = b_input;
} }
bool success = false; bool success = false;
BRepAlgoAPI_BooleanOperation* builder; BRepAlgoAPI_BooleanOperation* builder;
TopTools_ListOfShape B, b, b_x; TopTools_ListOfShape b_tmp;
if (op == BOPAlgo_CUT) { if (op == BOPAlgo_CUT) {
builder = new BRepAlgoAPI_Cut(); builder = new BRepAlgoAPI_Cut();
bounding_box_overlap(fuzziness, a, b_, b_x);
auto N = eliminate_touching_operands(fuzziness, a, b_x, b); if (do_subtraction_eliminate_disjoint_bbox) {
if (N) { PERF("boolean subtraction: eliminate disjoint bbox");
Logger::Notice("Eliminated " + std::to_string(N) + " touching operands");
auto N = bounding_box_overlap(fuzziness, a, b, b_tmp);
if (N) {
Logger::Notice("Eliminated " + std::to_string(N) + " disjoint operands");
std::swap(b, b_tmp);
}
} }
if (do_subtraction_eliminate_touching) {
PERF("boolean subtraction: eliminate touching");
auto N = eliminate_touching_operands(fuzziness, a, b, b_tmp);
if (N) {
Logger::Notice("Eliminated " + std::to_string(N) + " touching operands");
std::swap(b, b_tmp);
}
}
} else if (op == BOPAlgo_COMMON) { } else if (op == BOPAlgo_COMMON) {
builder = new BRepAlgoAPI_Common(); builder = new BRepAlgoAPI_Common();
b = b_;
} else if (op == BOPAlgo_FUSE) { } else if (op == BOPAlgo_FUSE) {
builder = new BRepAlgoAPI_Fuse(); builder = new BRepAlgoAPI_Fuse();
b = b_;
} else { } else {
return false; return false;
} }
@@ -4600,26 +4634,45 @@ bool IfcGeom::Kernel::boolean_operation(const TopoDS_Shape& a_, const TopTools_L
return true; return true;
} }
// Find a sensible value for the fuzziness, based on precision // Find a sensible value for the fuzziness, based on precision
// and limited by edge lengths and vertex-edge distances. // and limited by edge lengths and vertex-edge distances.
const double len_a = min_edge_length(a_); double min_length_orig;
double min_length_orig = (std::min)(len_a, min_vertex_edge_distance(a_, getValue(GV_PRECISION), len_a));
TopTools_ListIteratorOfListOfShape it(b__); {
for (; it.More(); it.Next()) { PERF("boolean operation: min edge length");
double d = min_edge_length(it.Value());
min_length_orig = min_edge_length(a);
TopTools_ListIteratorOfListOfShape it(b);
for (; it.More(); it.Next()) {
double d = min_edge_length(it.Value());
if (d < min_length_orig) {
min_length_orig = d;
}
}
}
{
PERF("boolean operation: min vertex-edge dist");
double d = min_vertex_edge_distance(a, getValue(GV_PRECISION), min_length_orig);
if (d < min_length_orig) { if (d < min_length_orig) {
min_length_orig = d; min_length_orig = d;
} }
d = min_vertex_edge_distance(it.Value(), getValue(GV_PRECISION), d);
if (d < min_length_orig) { TopTools_ListIteratorOfListOfShape it(b);
min_length_orig = d; for (; it.More(); it.Next()) {
d = min_vertex_edge_distance(it.Value(), getValue(GV_PRECISION), min_length_orig);
if (d < min_length_orig) {
min_length_orig = d;
}
} }
} }
const double fuzz = (std::min)(min_length_orig / 3., fuzziness); const double fuzz = (std::min)(min_length_orig / 3., fuzziness);
Logger::Notice("Used fuzziness: " + std::to_string(fuzz)); Logger::Notice("Used fuzziness: " + std::to_string(fuzz));
TopTools_ListOfShape s1s; TopTools_ListOfShape s1s;
s1s.Append(copy_operand(a)); s1s.Append(copy_operand(a));
@@ -4641,7 +4694,14 @@ bool IfcGeom::Kernel::boolean_operation(const TopoDS_Shape& a_, const TopTools_L
TopTools_ListOfShape b_faces, b_remainder_3d; TopTools_ListOfShape b_faces, b_remainder_3d;
if (is_extrusion(gp::DY(), a, a_face, a_interval)) { bool is_extrusion_a;
{
PERF("boolean subtraction: extrusion check");
is_extrusion_a = is_extrusion(gp::DY(), a, a_face, a_interval);
}
if (is_extrusion_a) {
Logger::Notice("Operand A 1/1 is an extrusion"); Logger::Notice("Operand A 1/1 is an extrusion");
TopTools_ListIteratorOfListOfShape it(b); TopTools_ListIteratorOfListOfShape it(b);
@@ -4649,8 +4709,17 @@ bool IfcGeom::Kernel::boolean_operation(const TopoDS_Shape& a_, const TopTools_L
bool process_2d = false; bool process_2d = false;
TopoDS_Face b_face; TopoDS_Face b_face;
std::pair<double, double> b_interval; std::pair<double, double> b_interval;
if (is_extrusion(gp::DY(), it.Value(), b_face, b_interval)) {
bool is_extrusion_b;
{
PERF("boolean subtraction: extrusion check");
is_extrusion_b = is_extrusion(gp::DY(), it.Value(), b_face, b_interval);
}
if (is_extrusion_b) {
Logger::Notice("Operand B " + std::to_string(nb) + "/" + std::to_string(b.Extent()) + " is an extrusion"); Logger::Notice("Operand B " + std::to_string(nb) + "/" + std::to_string(b.Extent()) + " is an extrusion");
if (b_interval.first < a_interval.first + fuzz && b_interval.second > a_interval.second - fuzz) { if (b_interval.first < a_interval.first + fuzz && b_interval.second > a_interval.second - fuzz) {
Logger::Notice("Operand B creates a through hole"); Logger::Notice("Operand B creates a through hole");
@@ -4670,7 +4739,17 @@ bool IfcGeom::Kernel::boolean_operation(const TopoDS_Shape& a_, const TopTools_L
if (b_faces.Extent()) { if (b_faces.Extent()) {
TopoDS_Shape face_result; TopoDS_Shape face_result;
if (boolean_operation(a_face, b_faces, op, face_result, fuzziness)) {
bool boolean_op_2d_success;
{
PERF("boolean operation: 2d");
boolean_op_2d_success = boolean_operation(a_face, b_faces, op, face_result, fuzziness);
}
if (boolean_op_2d_success) {
PERF("boolean operation: 2d to 3d");
BRepPrimAPI_MakePrism mp(face_result, gp_Vec(gp::DY()) * (a_interval.second - a_interval.first)); BRepPrimAPI_MakePrism mp(face_result, gp_Vec(gp::DY()) * (a_interval.second - a_interval.first));
if (mp.IsDone()) { if (mp.IsDone()) {
if (b_remainder_3d.Extent()) { if (b_remainder_3d.Extent()) {
@@ -4693,16 +4772,21 @@ bool IfcGeom::Kernel::boolean_operation(const TopoDS_Shape& a_, const TopTools_L
Logger::Notice("No second operands can be processed as 2D inner bounds. Retrying in 3D."); Logger::Notice("No second operands can be processed as 2D inner bounds. Retrying in 3D.");
} }
} }
} }
#if OCC_VERSION_HEX >= 0x70000 #if OCC_VERSION_HEX >= 0x70000
builder->SetNonDestructive(true); builder->SetNonDestructive(true);
#endif #endif
builder->SetFuzzyValue(fuzz); builder->SetFuzzyValue(fuzz);
builder->SetArguments(s1s); builder->SetArguments(s1s);
copy_operand(b, B); copy_operand(b, b_tmp);
builder->SetTools(B); std::swap(b, b_tmp);
builder->Build(); builder->SetTools(b);
{
PERF("boolean operation: build");
builder->Build();
}
if (builder->IsDone()) { if (builder->IsDone()) {
if (builder->DSFiller()->HasWarning(STANDARD_TYPE(BOPAlgo_AlertAcquiredSelfIntersection))) { if (builder->DSFiller()->HasWarning(STANDARD_TYPE(BOPAlgo_AlertAcquiredSelfIntersection))) {
Logger::Notice("Builder reports self-intersection in output"); Logger::Notice("Builder reports self-intersection in output");
@@ -4710,29 +4794,77 @@ bool IfcGeom::Kernel::boolean_operation(const TopoDS_Shape& a_, const TopTools_L
} else { } else {
TopoDS_Shape r = *builder; TopoDS_Shape r = *builder;
ShapeFix_Shape fix(r); {
try { PERF("boolean operation: shape healing");
fix.SetMaxTolerance(fuzz);
fix.Perform(); ShapeFix_Shape fix(r);
r = fix.Shape(); try {
} catch (...) { fix.SetMaxTolerance(fuzz);
Logger::Error("Shape healing failed on boolean result"); fix.Perform();
r = fix.Shape();
} catch (...) {
Logger::Error("Shape healing failed on boolean result");
}
} }
BRepCheck_Analyzer ana(r); {
success = ana.IsValid() != 0; PERF("boolean operation: shape analysis");
BRepCheck_Analyzer ana(r);
success = ana.IsValid() != 0;
if (!success) {
Logger::Notice("Boolean operation yields invalid result");
std::stringstream str;
bool any_emitted = false;
std::function<void(const TopoDS_Shape&)> dump;
dump = [&ana, &str, &dump, &any_emitted](const TopoDS_Shape& s) {
if (!ana.Result(s).IsNull()) {
BRepCheck_ListIteratorOfListOfStatus itl;
itl.Initialize(ana.Result(s)->Status());
for (; itl.More(); itl.Next()) {
if (itl.Value() != BRepCheck_NoError) {
if (any_emitted) {
str << ", ";
}
BRepCheck::Print(itl.Value(), str);
str.seekp(str.tellp() - (std::streamoff)1);
str << " on ";
TopAbs::Print(s.ShapeType(), str);
any_emitted = true;
}
}
}
for (TopoDS_Iterator it(s); it.More(); it.Next()) {
dump(it.Value());
}
};
dump(r);
Logger::Notice(str.str());
}
}
if (success) { if (success) {
success = !is_manifold(a) || is_manifold(r); {
PERF("boolean operation: manifoldness check");
success = !is_manifold(a) || is_manifold(r);
}
if (!success) { if (!success) {
PERF("boolean operation: manifoldness check excemption");
// An excemption for the requirement to be manifold: When the cut operands have overlapping edge belonging to faces that do not overlap. // An excemption for the requirement to be manifold: When the cut operands have overlapping edge belonging to faces that do not overlap.
bool operands_nonmanifold = false; bool operands_nonmanifold = false;
if (op == BOPAlgo_CUT) { if (op == BOPAlgo_CUT) {
TopTools_IndexedMapOfShape edges; TopTools_IndexedMapOfShape edges;
TopTools_IndexedDataMapOfShapeListOfShape map; TopTools_IndexedDataMapOfShapeListOfShape map;
for (TopTools_ListIteratorOfListOfShape it2(B); it2.More(); it2.Next()) { for (TopTools_ListIteratorOfListOfShape it2(b); it2.More(); it2.Next()) {
auto& bb = it2.Value(); auto& bb = it2.Value();
TopExp::MapShapes(bb, TopAbs_EDGE, edges); TopExp::MapShapes(bb, TopAbs_EDGE, edges);
TopExp::MapShapesAndAncestors(bb, TopAbs_EDGE, TopAbs_FACE, map); TopExp::MapShapesAndAncestors(bb, TopAbs_EDGE, TopAbs_FACE, map);
@@ -4790,6 +4922,8 @@ bool IfcGeom::Kernel::boolean_operation(const TopoDS_Shape& a_, const TopTools_L
bool has_open_shells = false; bool has_open_shells = false;
if (op == BOPAlgo_CUT) { if (op == BOPAlgo_CUT) {
PERF("boolean operation: open shell face adition check");
for (TopExp_Explorer exp(a, TopAbs_SHELL); exp.More(); exp.Next()) { for (TopExp_Explorer exp(a, TopAbs_SHELL); exp.More(); exp.Next()) {
if (!exp.Current().Closed()) { if (!exp.Current().Closed()) {
// This 'face addition check' is only done when the first operand // This 'face addition check' is only done when the first operand
@@ -4836,17 +4970,39 @@ bool IfcGeom::Kernel::boolean_operation(const TopoDS_Shape& a_, const TopTools_L
// output is not trusted and the operation is attempted with a higher fuzziness. // output is not trusted and the operation is attempted with a higher fuzziness.
int reason = 0; int reason = 0;
double v; double v;
if ((v = min_edge_length(r)) < fuzziness * 3.) {
reason = 0; {
success = false; PERF("boolean operation: result min edge length check");
} else if ((v = min_vertex_edge_distance(r, getValue(GV_PRECISION), fuzziness * 3.)) < fuzziness * 3.) {
reason = 1; if ((v = min_edge_length(r)) < fuzziness * 3.) {
success = false; reason = 0;
} else if ((v = min_face_face_distance(r, 1.e-4)) < 1.e-4) { success = false;
reason = 2;
success = false; goto skip_further_checks;
}
}
{
PERF("boolean operation: result min vertex-edge dist check");
if ((v = min_vertex_edge_distance(r, getValue(GV_PRECISION), fuzziness * 3.)) < fuzziness * 3.) {
reason = 1;
success = false;
goto skip_further_checks;
}
}
{
PERF("boolean operation: result min face-face dist check");
if ((v = min_face_face_distance(r, 1.e-4)) < 1.e-4) {
reason = 2;
success = false;
}
} }
skip_further_checks:
if (!success) { if (!success) {
static const char* const reason_strings[] = { "edge length", "vertex-edge", "face-face" }; static const char* const reason_strings[] = { "edge length", "vertex-edge", "face-face" };
std::stringstream str; std::stringstream str;
@@ -4862,38 +5018,6 @@ bool IfcGeom::Kernel::boolean_operation(const TopoDS_Shape& a_, const TopTools_L
} else { } else {
Logger::Notice("Boolean operation yields non-manifold result"); Logger::Notice("Boolean operation yields non-manifold result");
} }
} else {
Logger::Notice("Boolean operation yields invalid result");
std::stringstream str;
bool any_emitted = false;
std::function<void(const TopoDS_Shape&)> dump;
dump = [&ana, &str, &dump, &any_emitted](const TopoDS_Shape& s) {
if (!ana.Result(s).IsNull()) {
BRepCheck_ListIteratorOfListOfStatus itl;
itl.Initialize(ana.Result(s)->Status());
for (; itl.More(); itl.Next()) {
if (itl.Value() != BRepCheck_NoError) {
if (any_emitted) {
str << ", ";
}
BRepCheck::Print(itl.Value(), str);
str.seekp(str.tellp() - (std::streamoff)1);
str << " on ";
TopAbs::Print(s.ShapeType(), str);
any_emitted = true;
}
}
}
for (TopoDS_Iterator it(s); it.More(); it.Next()) {
dump(it.Value());
}
};
dump(r);
Logger::Notice(str.str());
} }
} }
} else { } else {
+60 -6
View File
@@ -34,31 +34,39 @@
#include <algorithm> #include <algorithm>
#include <ctime> #include <ctime>
#include <iomanip> #include <iomanip>
#include <chrono>
namespace { namespace {
std::string get_time() { std::string get_time(bool with_milliseconds=false) {
std::ostringstream oss; std::ostringstream oss;
time_t now = time(nullptr); time_t now = time(nullptr);
oss << std::put_time(localtime(&now), "%F %T"); oss << std::put_time(localtime(&now), "%F %T");
if (with_milliseconds) {
auto now_chrono = std::chrono::system_clock::now();
auto ms = std::chrono::duration_cast<std::chrono::milliseconds>(now_chrono.time_since_epoch()) % 1000;
oss << '.' << std::setfill('0') << std::setw(3) << ms.count();
}
return oss.str(); return oss.str();
} }
template <typename T> template <typename T>
struct severity_strings { struct severity_strings {
static const std::array<std::basic_string<T>, 4> value; static const std::array<std::basic_string<T>, 5> value;
}; };
template <> template <>
const std::array<std::basic_string<char>, 4> severity_strings<char>::value = { "Debug", "Notice", "Warning", "Error" }; const std::array<std::basic_string<char>, 5> severity_strings<char>::value = { "Performance", "Debug", "Notice", "Warning", "Error" };
template <> template <>
const std::array<std::basic_string<wchar_t>, 4> severity_strings<wchar_t>::value = { L"Debug", L"Notice", L"Warning", L"Error" }; const std::array<std::basic_string<wchar_t>, 5> severity_strings<wchar_t>::value = { L"Performance", L"Debug", L"Notice", L"Warning", L"Error" };
template <typename T> template <typename T>
void plain_text_message(T& os, const boost::optional<IfcUtil::IfcBaseClass*>& current_product, Logger::Severity type, const std::string& message, const IfcUtil::IfcBaseInterface* instance) { void plain_text_message(T& os, const boost::optional<IfcUtil::IfcBaseClass*>& current_product, Logger::Severity type, const std::string& message, const IfcUtil::IfcBaseInterface* instance) {
os << "[" << severity_strings<typename T::char_type>::value[type] << "] "; os << "[" << severity_strings<typename T::char_type>::value[type] << "] ";
os << "[" << get_time().c_str() << "] "; os << "[" << get_time(type <= Logger::LOG_PERF).c_str() << "] ";
if (current_product) { if (current_product) {
std::string global_id = *((IfcUtil::IfcBaseEntity*)*current_product)->get("GlobalId"); std::string global_id = *((IfcUtil::IfcBaseEntity*)*current_product)->get("GlobalId");
os << "{" << global_id.c_str() << "} "; os << "{" << global_id.c_str() << "} ";
@@ -107,9 +115,13 @@ namespace {
} }
void Logger::SetProduct(boost::optional<IfcUtil::IfcBaseClass*> product) { void Logger::SetProduct(boost::optional<IfcUtil::IfcBaseClass*> product) {
if (verbosity == LOG_DEBUG && product) { if (verbosity <= LOG_DEBUG && product) {
Message(LOG_DEBUG, "Begin processing", *product); Message(LOG_DEBUG, "Begin processing", *product);
} }
if (!product && print_perf_stats_on_element) {
PrintPerformanceStats();
performance_statistics.clear();
}
current_product = product; current_product = product;
} }
@@ -135,6 +147,19 @@ void Logger::Message(Logger::Severity type, const std::string& message, const If
static std::mutex m; static std::mutex m;
std::lock_guard<std::mutex> lk(m); std::lock_guard<std::mutex> lk(m);
if (type == LOG_PERF) {
if (!first_timepoint) {
first_timepoint = std::chrono::time_point_cast<std::chrono::nanoseconds>(std::chrono::high_resolution_clock::now()).time_since_epoch().count();
}
double t0 = (std::chrono::time_point_cast<std::chrono::nanoseconds>(std::chrono::high_resolution_clock::now()).time_since_epoch().count() - *first_timepoint) / 1.e9;
if (message.substr(0, 5) == "done ") {
auto orig = message.substr(5);
performance_statistics[orig] += t0 - performance_signal_start[orig];
} else {
performance_signal_start[message] = t0;
}
}
if (type > max_severity) { if (type > max_severity) {
max_severity = type; max_severity = type;
} }
@@ -185,6 +210,31 @@ std::string Logger::GetLog() {
return log_stream.str(); return log_stream.str();
} }
void Logger::PrintPerformanceStats() {
std::vector<std::pair<double, std::string>> items;
for (auto& p : performance_statistics) {
items.push_back({ p.second, p.first });
}
std::sort(items.begin(), items.end());
std::reverse(items.begin(), items.end());
size_t max_size = 0;
for (auto& p : items) {
if (p.second.size() > max_size) {
max_size = p.second.size();
}
}
for (auto& p : items) {
if (log2) {
(*log2) << p.second << std::string(max_size - p.second.size(), ' ') << ": " << p.first << std::endl;
} else if (wlog2) {
(*wlog2) << p.second.c_str() << std::string(max_size - p.second.size(), ' ').c_str() << ": " << p.first << std::endl;
}
}
}
void Logger::Verbosity(Logger::Severity v) { verbosity = v; } void Logger::Verbosity(Logger::Severity v) { verbosity = v; }
Logger::Severity Logger::Verbosity() { return verbosity; } Logger::Severity Logger::Verbosity() { return verbosity; }
@@ -202,3 +252,7 @@ Logger::Severity Logger::verbosity = Logger::LOG_NOTICE;
Logger::Severity Logger::max_severity = Logger::LOG_NOTICE; Logger::Severity Logger::max_severity = Logger::LOG_NOTICE;
Logger::Format Logger::format = Logger::FMT_PLAIN; Logger::Format Logger::format = Logger::FMT_PLAIN;
boost::optional<IfcUtil::IfcBaseClass*> Logger::current_product; boost::optional<IfcUtil::IfcBaseClass*> Logger::current_product;
boost::optional<long long> Logger::first_timepoint;
std::map<std::string, double> Logger::performance_statistics;
std::map<std::string, double> Logger::performance_signal_start;
bool Logger::print_perf_stats_on_element = false;
+21 -1
View File
@@ -22,6 +22,7 @@
#include "../ifcparse/IfcBaseClass.h" #include "../ifcparse/IfcBaseClass.h"
#include <map>
#include <set> #include <set>
#include <string> #include <string>
#include <vector> #include <vector>
@@ -30,12 +31,13 @@
#include <exception> #include <exception>
#include <boost/optional.hpp> #include <boost/optional.hpp>
#include <boost/scope_exit.hpp>
#include "ifc_parse_api.h" #include "ifc_parse_api.h"
class IFC_PARSE_API Logger { class IFC_PARSE_API Logger {
public: public:
typedef enum { LOG_DEBUG, LOG_NOTICE, LOG_WARNING, LOG_ERROR } Severity; typedef enum { LOG_PERF, LOG_DEBUG, LOG_NOTICE, LOG_WARNING, LOG_ERROR } Severity;
typedef enum { FMT_PLAIN, FMT_JSON } Format; typedef enum { FMT_PLAIN, FMT_JSON } Format;
private: private:
@@ -53,6 +55,13 @@ private:
static Format format; static Format format;
static boost::optional<IfcUtil::IfcBaseClass*> current_product; static boost::optional<IfcUtil::IfcBaseClass*> current_product;
static Severity max_severity; static Severity max_severity;
static boost::optional<long long> first_timepoint;
static std::map<std::string, double> performance_statistics;
static std::map<std::string, double> performance_signal_start;
static bool print_perf_stats_on_element;
public: public:
static void SetProduct(boost::optional<IfcUtil::IfcBaseClass*> product); static void SetProduct(boost::optional<IfcUtil::IfcBaseClass*> product);
@@ -87,6 +96,17 @@ public:
static void ProgressBar(int progress); static void ProgressBar(int progress);
static std::string GetLog(); static std::string GetLog();
static void PrintPerformanceStats();
static void PrintPerformanceStatsOnElement(bool b) { print_perf_stats_on_element = b; }
}; };
#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
#endif #endif